From 7c7ba0586e7b837b3c97bfd196a79e242b8c6e36 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 24 Dec 2022 16:35:11 +0900 Subject: [PATCH] Bump ngtcp2 dependencies --- .github/workflows/build.yml | 6 +++--- README.rst | 6 +++--- docker/Dockerfile | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94754263..e78a8cb9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -127,7 +127,7 @@ jobs: run: | git clone https://boringssl.googlesource.com/boringssl cd boringssl - git checkout b2536a2c6234496ef609e7c909936bbf828dac6d + git checkout 31bad2514d21f6207f3925ba56754611c462a873 mkdir build cd build cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON .. @@ -148,7 +148,7 @@ jobs: - name: Build nghttp3 if: matrix.http3 == 'http3' run: | - git clone --depth 1 -b v0.7.1 https://github.com/ngtcp2/nghttp3 + git clone --depth 1 -b v0.8.0 https://github.com/ngtcp2/nghttp3 cd nghttp3 autoreconf -i ./configure --prefix=$PWD/build --enable-lib-only @@ -157,7 +157,7 @@ jobs: - name: Build ngtcp2 if: matrix.http3 == 'http3' run: | - git clone --depth 1 -b v0.11.0 https://github.com/ngtcp2/ngtcp2 + git clone --depth 1 -b v0.12.0 https://github.com/ngtcp2/ngtcp2 cd ngtcp2 autoreconf -i ./configure --prefix=$PWD/build --enable-lib-only PKG_CONFIG_PATH="../openssl/build/lib/pkgconfig" $EXTRA_NGTCP2_OPTS diff --git a/README.rst b/README.rst index 5387db58..17519133 100644 --- a/README.rst +++ b/README.rst @@ -142,7 +142,7 @@ following libraries are required: * `OpenSSL with QUIC support `_; or `BoringSSL `_ (commit - b2536a2c6234496ef609e7c909936bbf828dac6d) + 31bad2514d21f6207f3925ba56754611c462a873) * `ngtcp2 `_ >= 0.10.0 * `nghttp3 `_ >= 0.7.0 @@ -367,7 +367,7 @@ Build nghttp3: .. code-block:: text - $ git clone --depth 1 -b v0.7.1 https://github.com/ngtcp2/nghttp3 + $ git clone --depth 1 -b v0.8.0 https://github.com/ngtcp2/nghttp3 $ cd nghttp3 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only @@ -379,7 +379,7 @@ Build ngtcp2: .. code-block:: text - $ git clone --depth 1 -b v0.11.0 https://github.com/ngtcp2/ngtcp2 + $ git clone --depth 1 -b v0.12.0 https://github.com/ngtcp2/ngtcp2 $ cd ngtcp2 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only \ diff --git a/docker/Dockerfile b/docker/Dockerfile index 3e687bba..18331c5d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,7 +15,7 @@ RUN git clone --depth 1 -b OpenSSL_1_1_1s+quic https://github.com/quictls/openss cd .. && \ rm -rf openssl -RUN git clone --depth 1 -b v0.7.1 https://github.com/ngtcp2/nghttp3 && \ +RUN git clone --depth 1 -b v0.8.0 https://github.com/ngtcp2/nghttp3 && \ cd nghttp3 && \ autoreconf -i && \ ./configure --enable-lib-only && \ @@ -24,7 +24,7 @@ RUN git clone --depth 1 -b v0.7.1 https://github.com/ngtcp2/nghttp3 && \ cd .. && \ rm -rf nghttp3 -RUN git clone --depth 1 -b v0.11.0 https://github.com/ngtcp2/ngtcp2 && \ +RUN git clone --depth 1 -b v0.12.0 https://github.com/ngtcp2/ngtcp2 && \ cd ngtcp2 && \ autoreconf -i && \ ./configure --enable-lib-only \