Merge pull request #2490 from nghttp2/bump-ngtcp2

Bump ngtcp2 and its dependencies
This commit is contained in:
Tatsuhiro Tsujikawa
2025-08-24 12:04:15 +09:00
committed by GitHub
3 changed files with 13 additions and 13 deletions

View File

@@ -7,12 +7,12 @@ permissions: read-all
env:
LIBBPF_VERSION: v1.5.1
OPENSSL1_VERSION: 1_1_1w+quic
OPENSSL3_VERSION: 3.5.0
BORINGSSL_VERSION: 9295969e1dad2c31d0d99481734c1c68dcbc6403
AWSLC_VERSION: v1.52.0
NGHTTP3_VERSION: v1.10.1
NGTCP2_VERSION: v1.13.0
WOLFSSL_VERSION: v5.8.0-stable
OPENSSL3_VERSION: 3.5.2
BORINGSSL_VERSION: 729648fb79df7bc46c145e49b0dfd8d2a24232f1
AWSLC_VERSION: v1.58.1
NGHTTP3_VERSION: v1.11.0
NGTCP2_VERSION: v1.15.0
WOLFSSL_VERSION: v5.8.2-stable
jobs:
build-cache:

View File

@@ -126,7 +126,7 @@ following libraries are required:
<https://github.com/quictls/openssl/tree/OpenSSL_1_1_1w+quic>`_; or
wolfSSL; or LibreSSL (does not support 0RTT); or aws-lc; or
`BoringSSL <https://boringssl.googlesource.com/boringssl/>`_ (commit
9295969e1dad2c31d0d99481734c1c68dcbc6403); or OpenSSL >= 3.5.0
729648fb79df7bc46c145e49b0dfd8d2a24232f1); or OpenSSL >= 3.5.0
* `ngtcp2 <https://github.com/ngtcp2/ngtcp2>`_ >= 1.12.0
* `nghttp3 <https://github.com/ngtcp2/nghttp3>`_ >= 1.1.0
@@ -340,7 +340,7 @@ Build aws-lc:
.. code-block:: text
$ git clone --depth 1 -b v1.52.0 https://github.com/aws/aws-lc
$ git clone --depth 1 -b v1.58.1 https://github.com/aws/aws-lc
$ cd aws-lc
$ cmake -B build -DDISABLE_GO=ON --install-prefix=$PWD/opt
$ make -j$(nproc) -C build
@@ -351,7 +351,7 @@ Build nghttp3:
.. code-block:: text
$ git clone --depth 1 -b v1.9.0 https://github.com/ngtcp2/nghttp3
$ git clone --depth 1 -b v1.11.0 https://github.com/ngtcp2/nghttp3
$ cd nghttp3
$ git submodule update --init --depth 1
$ autoreconf -i
@@ -364,7 +364,7 @@ Build ngtcp2:
.. code-block:: text
$ git clone --depth 1 -b v1.12.0 https://github.com/ngtcp2/ngtcp2
$ git clone --depth 1 -b v1.15.0 https://github.com/ngtcp2/ngtcp2
$ cd ngtcp2
$ git submodule update --init --depth 1
$ autoreconf -i

View File

@@ -9,7 +9,7 @@ RUN apt-get update && \
zlib1g-dev libev-dev libjemalloc-dev ruby-dev libc-ares-dev bison \
libelf-dev libbrotli-dev
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.52.0 https://github.com/aws/aws-lc && \
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.58.1 https://github.com/aws/aws-lc && \
cd aws-lc && \
export CC=clang-19 CXX=clang++-19 && \
cmake -B build -DDISABLE_GO=ON && \
@@ -18,7 +18,7 @@ RUN git clone --recursive --shallow-submodules --depth 1 -b v1.52.0 https://gith
cd .. && \
rm -rf aws-lc
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.10.1 https://github.com/ngtcp2/nghttp3 && \
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.11.0 https://github.com/ngtcp2/nghttp3 && \
cd nghttp3 && \
autoreconf -i && \
./configure --disable-dependency-tracking --enable-lib-only \
@@ -28,7 +28,7 @@ RUN git clone --recursive --shallow-submodules --depth 1 -b v1.10.1 https://gith
cd .. && \
rm -rf nghttp3
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.13.0 https://github.com/ngtcp2/ngtcp2 && \
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.15.0 https://github.com/ngtcp2/ngtcp2 && \
cd ngtcp2 && \
autoreconf -i && \
./configure --disable-dependency-tracking --enable-lib-only \