guzzle @ 5.0.3
integrity
- size
- 473.6 KiB
- downloaded
- last checked
- overlays
- composer
- detected
- composer guzzlehttp/guzzle
release notes
This change updates query strings so that they are treated as un-encoded values by default where the value represents an un-encoded value to send over the wire. A Query object then encodes the value before sending over the wire. This means that even value query string values (e.g., ":") are url encoded. This makes the Query class match PHP's http_build_query function. However, if you want to send requests over the wire using valid query string characters that do not need to be encoded, then you can provide a string to Url::setQuery() and pass true as the second argument to specify that the query string is a raw string that should not be parsed or encoded (unless a call to getQuery() is subsequently made, forcing the query-string to be converted into a Query object).
download
curl -fL -o 5.0.3.zip https://ratatoskr.space/pkg/guzzle/5.0.3.zip
printf '%s %s\n' '9109c20a1b8fefcc48ea08fd6e424ced0190375961b626f1c669ce7bdcf44811' '5.0.3.zip' | sha256sum -c -
$url = "https://ratatoskr.space/pkg/guzzle/5.0.3.zip"
$out = "5.0.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "9109c20a1b8fefcc48ea08fd6e424ced0190375961b626f1c669ce7bdcf44811") { throw "sha256 mismatch" }
curl -fL -o 5.0.3.tar.gz https://ratatoskr.space/pkg/guzzle/5.0.3.tar.gz
printf '%s %s\n' 'b8c6f0c3f8b644f2a763f97927ee35ba2c50476340469568e7f2ac87ec641255' '5.0.3.tar.gz' | sha256sum -c -
$url = "https://ratatoskr.space/pkg/guzzle/5.0.3.tar.gz"
$out = "5.0.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b8c6f0c3f8b644f2a763f97927ee35ba2c50476340469568e7f2ac87ec641255") { throw "sha256 mismatch" }
download via yggdrasil mesh
curl -fL -o 5.0.3.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/5.0.3.zip
printf '%s %s\n' '9109c20a1b8fefcc48ea08fd6e424ced0190375961b626f1c669ce7bdcf44811' '5.0.3.zip' | sha256sum -c -
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/5.0.3.zip"
$out = "5.0.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "9109c20a1b8fefcc48ea08fd6e424ced0190375961b626f1c669ce7bdcf44811") { throw "sha256 mismatch" }
curl -fL -o 5.0.3.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/5.0.3.tar.gz
printf '%s %s\n' 'b8c6f0c3f8b644f2a763f97927ee35ba2c50476340469568e7f2ac87ec641255' '5.0.3.tar.gz' | sha256sum -c -
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/5.0.3.tar.gz"
$out = "5.0.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b8c6f0c3f8b644f2a763f97927ee35ba2c50476340469568e7f2ac87ec641255") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 5.0.3.zip | zip | 474.3 KiB |
blake3-24 87ddc500a06cac88271abf16dd9b7636223563d146de9f22
sha256 9109c20a1b8fefcc48ea08fd6e424ced0190375961b626f1c669ce7bdcf44811
sha1 cf18ee98209c9b1f0bb4c8ea204bbcd3e7a91b7e
|
| 5.0.3.tar.gz | tar.gz | 416.2 KiB |
blake3-24 0c5cee138440c5448daf602087be5e821d4b527b729a2d65
sha256 b8c6f0c3f8b644f2a763f97927ee35ba2c50476340469568e7f2ac87ec641255
sha1 47f4eaf97301fdf6d64a6481ff99f4a208770e1d
|
install
http_archive(
name = "guzzle",
urls = ["https://ratatoskr.space/pkg/guzzle/5.0.3.tar.gz"],
integrity = "sha256-uMbww/i2RPKnY/l5J+41uixQR2NARpVo5/Ksh+xkElU=",
strip_prefix = "guzzle-5.0.3",
)
.url = "https://ratatoskr.space/pkg/guzzle/5.0.3.tar.gz",
composer config repositories.yggvault composer https://ratatoskr.space/pkg composer require guzzlehttp/guzzle:5.0.3
install via yggdrasil mesh
http_archive(
name = "guzzle",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/5.0.3.tar.gz"],
integrity = "sha256-uMbww/i2RPKnY/l5J+41uixQR2NARpVo5/Ksh+xkElU=",
strip_prefix = "guzzle-5.0.3",
)
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/5.0.3.tar.gz",
composer config secure-http false composer config repositories.yggvault composer http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg composer require guzzlehttp/guzzle:5.0.3