From 1a8456e8ff7120953744513f78fb075ce064d3ce Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 21 Jan 2024 16:31:02 +0900 Subject: [PATCH] Bump ngtcp2 to v1.2.0 --- .github/workflows/build.yml | 4 ++-- README.rst | 4 ++-- docker/Dockerfile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3f63e87..51dcdfed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,10 +8,10 @@ env: LIBBPF_VERSION: v1.3.0 OPENSSL1_VERSION: 1_1_1w+quic OPENSSL3_VERSION: 3.1.4+quic - BORINGSSL_VERSION: 6ca49385b168f47a50e7172d82a590b218f55e4d + BORINGSSL_VERSION: f42be90d665b6a376177648ccbb76fbbd6497c13 AWSLC_VERSION: v1.20.0 NGHTTP3_VERSION: v1.1.0 - NGTCP2_VERSION: v1.1.0 + NGTCP2_VERSION: v1.2.0 jobs: build-cache: diff --git a/README.rst b/README.rst index 1d2693d0..2af1bcca 100644 --- a/README.rst +++ b/README.rst @@ -127,7 +127,7 @@ following libraries are required: `_; or LibreSSL (does not support 0RTT); or aws-lc; or `BoringSSL `_ (commit - 6ca49385b168f47a50e7172d82a590b218f55e4d) + f42be90d665b6a376177648ccbb76fbbd6497c13) * `ngtcp2 `_ >= 1.0.0 * `nghttp3 `_ >= 1.1.0 @@ -364,7 +364,7 @@ Build ngtcp2: .. code-block:: text - $ git clone --depth 1 -b v1.1.0 https://github.com/ngtcp2/ngtcp2 + $ git clone --depth 1 -b v1.2.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 ede629d2..25a7261d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -24,7 +24,7 @@ RUN git clone --depth 1 -b v1.1.0 https://github.com/ngtcp2/nghttp3 && \ cd .. && \ rm -rf nghttp3 -RUN git clone --depth 1 -b v1.1.0 https://github.com/ngtcp2/ngtcp2 && \ +RUN git clone --depth 1 -b v1.2.0 https://github.com/ngtcp2/ngtcp2 && \ cd ngtcp2 && \ autoreconf -i && \ ./configure --enable-lib-only \