Skip to content

Commit 99f593b

Browse files
committed
Curl to 8.10.1 and quictls to 3.3.0
1 parent f6de935 commit 99f593b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.9.1"
34+
docker run -t justdanz/curl-http3 curl --version | grep "curl 8.10.1"
3535
3636
-
3737
name: Verify Brotli support

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apk add --no-cache \
1616
libpsl-dev
1717

1818
# https://curl.se/docs/http3.html
19-
RUN git clone --depth 1 -b openssl-3.1.5+quic https://github.com/quictls/openssl \
19+
RUN git clone --depth 1 -b openssl-3.3.0+quic https://github.com/quictls/openssl \
2020
&& cd openssl \
2121
&& ./config enable-tls1_3 --prefix=/usr/local/openssl \
2222
&& make \
@@ -43,7 +43,7 @@ RUN cd .. \
4343
&& make install
4444

4545
RUN cd .. \
46-
&& git clone --depth 1 -b curl-8_9_1 https://github.com/curl/curl \
46+
&& git clone --depth 1 -b curl-8_10_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.9.1"
2+
docker run -t justdanz/curl-http3 curl --version | grep "curl 8.10.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)