guzzle @ 7.14.0
integrity
- size
- 152.5 KiB
- downloaded
- last checked
- overlays
- composer
- detected
- composer guzzlehttp/guzzle
release notes
Added
- Added the
on_trailersrequest option to expose parsed HTTP response trailers - Added the
multiplexrequest option withMultiplexing::*modes to control or require HTTP/2 multiplexing - Added rejection of explicit
multiplexrequests whenCURLMOPT_PIPELININGdisables multiplexing - Added the
max_host_connectionsandmax_total_connectionsclient and cURL multi handler options
Changed
- Redirects that discard the request body no longer require it to be rewindable
- Synchronous cURL multi handler requests no longer wait for other queued transfers
- Section SOCKS proxy connections by credentials on libcurl before 7.69.0
- Reject request-level
CURLOPT_SHAREwhen combined with authenticated SOCKS proxy configuration - Redact proxy userinfo containing raw control bytes in cURL errors
- Check linked curl/libcurl NTLM support before applying NTLM auth
- Clarify that NTLM is deprecated by both Guzzle and curl/libcurl
- Remove deprecation for the raw cURL
CURLOPT_CERTINFOoption - Warn when a cURL multi option cannot be applied
Deprecated
- Deprecate the raw
CURLOPT_PIPEWAITcURL option in favour of themultiplexrequest option - Deprecate unknown handler constructor options
- Deprecate invalid
select_timeoutcURL multi handler option values - Deprecate raw cURL multi connection cap options in favour of the named options
download
unix · zip
curl -fL -o 7.14.0.zip https://ratatoskr.space/pkg/guzzle/7.14.0.zip
printf '%s %s\n' '0cb8cfc11528297262c5ae3dc5d70e369b0d90317146aa74df10d3d418b75e44' '7.14.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/guzzle/7.14.0.zip"
$out = "7.14.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0cb8cfc11528297262c5ae3dc5d70e369b0d90317146aa74df10d3d418b75e44") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 7.14.0.tar.gz https://ratatoskr.space/pkg/guzzle/7.14.0.tar.gz
printf '%s %s\n' '792a0209a29dd46237dc478ab31ff1072e7320909a6e4eee75fdf4c5041c6e48' '7.14.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/guzzle/7.14.0.tar.gz"
$out = "7.14.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "792a0209a29dd46237dc478ab31ff1072e7320909a6e4eee75fdf4c5041c6e48") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 7.14.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/7.14.0.zip
printf '%s %s\n' '0cb8cfc11528297262c5ae3dc5d70e369b0d90317146aa74df10d3d418b75e44' '7.14.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/7.14.0.zip"
$out = "7.14.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0cb8cfc11528297262c5ae3dc5d70e369b0d90317146aa74df10d3d418b75e44") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 7.14.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/7.14.0.tar.gz
printf '%s %s\n' '792a0209a29dd46237dc478ab31ff1072e7320909a6e4eee75fdf4c5041c6e48' '7.14.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/7.14.0.tar.gz"
$out = "7.14.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "792a0209a29dd46237dc478ab31ff1072e7320909a6e4eee75fdf4c5041c6e48") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 7.14.0.zip | zip | 153.4 KiB |
blake3-24 76120ee9c84010e40b41e1a7a74a68b68ff33845d4780c9b
sha256 0cb8cfc11528297262c5ae3dc5d70e369b0d90317146aa74df10d3d418b75e44
sha1 0dd97c0dffab451b1c117e5dc4dd75189164541f
|
| 7.14.0.tar.gz | tar.gz | 128.3 KiB |
blake3-24 06d823226f047e288a8b9ce2306ca056ac14b1f3f241fd9a
sha256 792a0209a29dd46237dc478ab31ff1072e7320909a6e4eee75fdf4c5041c6e48
sha1 92840eef6e08bfb9afb36137ac0803e1b977116c
|
install
bazel
http_archive(
name = "guzzle",
urls = ["https://ratatoskr.space/pkg/guzzle/7.14.0.tar.gz"],
integrity = "sha256-eSoCCaKd1GI33EeKsx/xBy5zIJCabk7udf30xQQcbkg=",
strip_prefix = "guzzle-7.14.0",
)
zig
.url = "https://ratatoskr.space/pkg/guzzle/7.14.0.tar.gz",
composer
composer config repositories.yggvault composer https://ratatoskr.space/pkg composer require guzzlehttp/guzzle:7.14.0
install via yggdrasil mesh
bazel
http_archive(
name = "guzzle",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/7.14.0.tar.gz"],
integrity = "sha256-eSoCCaKd1GI33EeKsx/xBy5zIJCabk7udf30xQQcbkg=",
strip_prefix = "guzzle-7.14.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/7.14.0.tar.gz",
composer
composer config secure-http false composer config repositories.yggvault composer http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg composer require guzzlehttp/guzzle:7.14.0