Skip to content

Commit f6de935

Browse files
committed
Update Curl to 8.9.1, ngtcp2 to 1.6.0, and nghttp3 to 1.4.0
1 parent d0af40e commit f6de935

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
-
3232
name: Verify Curl
3333
run: |
34-
docker run -t justdanz/curl-http3 curl --version | grep "curl 8.8.0"
34+
docker run -t justdanz/curl-http3 curl --version | grep "curl 8.9.1"
3535
3636
-
3737
name: Verify Brotli support

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN git clone --depth 1 -b openssl-3.1.5+quic https://github.com/quictls/openssl
2626
RUN cp -r /usr/local/openssl/lib64 /usr/local/openssl/lib 2>/dev/null || :
2727

2828
RUN cd .. \
29-
&& git clone --depth 1 -b v1.3.0 https://github.com/ngtcp2/nghttp3 \
29+
&& git clone --depth 1 -b v1.4.0 https://github.com/ngtcp2/nghttp3 \
3030
&& cd nghttp3 \
3131
&& git submodule update --init \
3232
&& autoreconf -i \
@@ -35,15 +35,15 @@ RUN cd .. \
3535
&& make install
3636

3737
RUN cd .. \
38-
&& git clone --depth 1 -b v1.5.0 https://github.com/ngtcp2/ngtcp2 \
38+
&& git clone --depth 1 -b v1.6.0 https://github.com/ngtcp2/ngtcp2 \
3939
&& cd ngtcp2 \
4040
&& autoreconf -fi \
4141
&& ./configure PKG_CONFIG_PATH=/usr/local/openssl/lib/pkgconfig:/usr/local/nghttp3/lib/pkgconfig LDFLAGS="-Wl,-rpath,/usr/local/openssl/lib" --prefix=/usr/local/ngtcp2 --enable-lib-only \
4242
&& make \
4343
&& make install
4444

4545
RUN cd .. \
46-
&& git clone --depth 1 -b curl-8_8_0 https://github.com/curl/curl \
46+
&& git clone --depth 1 -b curl-8_9_1 https://github.com/curl/curl \
4747
&& cd curl \
4848
&& autoreconf -fi \
4949
&& export PKG_CONFIG_PATH=/usr/local/openssl/lib/pkgconfig:/usr/local/nghttp3/lib/pkgconfig:/usr/local/ngtcp2/lib/pkgconfig \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test:
2-
docker run -t justdanz/curl-http3 curl --version | grep "curl 8.8.0"
2+
docker run -t justdanz/curl-http3 curl --version | grep "curl 8.9.1"
33
docker run --rm justdanz/curl-http3 curl -sIL https://httpbin.org/brotli | grep -i 'content-encoding: br'
44
docker run --rm justdanz/curl-http3 curl -sIL https://blog.cloudflare.com --http3 -H 'user-agent: mozilla' | grep 'HTTP/3'
55

0 commit comments

Comments
 (0)