fasthttp @ v1.52.0
integrity
- size
- 294.7 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/valyala/fasthttp
release notes
What's Changed
Minor backwards incompatible changes
These changes are only backwards incompatible if you are sending bad requests.
- Prevent request smuggling by @erikdubbelboer in https://github.com/valyala/fasthttp/pull/1719
- Follow RFCs 7230 and 9112 for HTTP versions by @erikdubbelboer in https://github.com/valyala/fasthttp/pull/1710
New features
- Implement
GetRejectedConnectionsCountfunction by @mopeneko in https://github.com/valyala/fasthttp/pull/1704 - add DisableDNSResolution for TCPDialer. by @xuxiao415 in https://github.com/valyala/fasthttp/pull/1702
- feat: add function to parse HTTP header parameters by @nickajacks1 in https://github.com/valyala/fasthttp/pull/1685
- add support for custom dial function with timeouts by @avivcarmis in https://github.com/valyala/fasthttp/pull/1669
Other
- Enable wastedassign, whitespace linters; fix issues by @alexandear in https://github.com/valyala/fasthttp/pull/1665
- chore: Use 'any' instead of 'interface{}' by @alexandear in https://github.com/valyala/fasthttp/pull/1666
- bug: Flush the write buffer before putting it to the pool by @Jille in https://github.com/valyala/fasthttp/pull/1672
- copyZeroAlloc: Try WriteTo and ReadFrom before acquiring a buffer by @Jille in https://github.com/valyala/fasthttp/pull/1673
- writeBodyFixedSize: Only do an early flush if the reader is an *os.File by @Jille in https://github.com/valyala/fasthttp/pull/1674
- chore: Set max line length to 130 characters by @alexandear in https://github.com/valyala/fasthttp/pull/1676
- docs: Add missing dots at the end of comments by @alexandear in https://github.com/valyala/fasthttp/pull/1677
- chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 by @dependabot in https://github.com/valyala/fasthttp/pull/1678
- chore: move cookie fuzz test to go 1.18 fuzzing by @nickajacks1 in https://github.com/valyala/fasthttp/pull/1686
- Change empty string checks to be more idiomatic by @alexandear in https://github.com/valyala/fasthttp/pull/1684
- test(expvarhandler): fix failure when using -count to run more than once by @nickajacks1 in https://github.com/valyala/fasthttp/pull/1688
- test: migrate remaining fuzzit tests to go 1.18 fuzzing by @nickajacks1 in https://github.com/valyala/fasthttp/pull/1687
- Add CIFuzz by @AdamKorcz in https://github.com/valyala/fasthttp/pull/1443
- refactor: move manually created tchar table to bytesconv_table_gen by @nickajacks1 in https://github.com/valyala/fasthttp/pull/1689
- Bump supported Go version in readme by @erikdubbelboer in https://github.com/valyala/fasthttp/pull/1690
- update build tag by @tylitianrui in https://github.com/valyala/fasthttp/pull/1695
- Updates to GitHub Actions, add go1.22 to Test Matrix by @gaby in https://github.com/valyala/fasthttp/pull/1707
- chore(deps): bump golangci/golangci-lint-action from 3 to 4 by @dependabot in https://github.com/valyala/fasthttp/pull/1711
- Bump dependencies by @erikdubbelboer in https://github.com/valyala/fasthttp/pull/1718
New Contributors
- @avivcarmis made their first contribution in https://github.com/valyala/fasthttp/pull/1669
- @Jille made their first contribution in https://github.com/valyala/fasthttp/pull/1672
- @nickajacks1 made their first contribution in https://github.com/valyala/fasthttp/pull/1685
- @AdamKorcz made their first contribution in https://github.com/valyala/fasthttp/pull/1443
- @mopeneko made their first contribution in https://github.com/valyala/fasthttp/pull/1704
- @gaby made their first contribution in https://github.com/valyala/fasthttp/pull/1707
Full Changelog: https://github.com/valyala/fasthttp/compare/v1.51.0...v1.52.0
download
unix · zip
curl -fL -o v1.52.0.zip https://ratatoskr.space/pkg/fasthttp/v1.52.0.zip
printf '%s %s\n' '0fe889d114a5e41c80999ca2aeb5610c21c1bcf4ec56b039b10a422f0ce79ea8' 'v1.52.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fasthttp/v1.52.0.zip"
$out = "v1.52.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0fe889d114a5e41c80999ca2aeb5610c21c1bcf4ec56b039b10a422f0ce79ea8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.52.0.tar.gz https://ratatoskr.space/pkg/fasthttp/v1.52.0.tar.gz
printf '%s %s\n' 'd8f5f4e2ed6126e44731f931f2ac3a748ceb995ee0180f3e741418337a37ada0' 'v1.52.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fasthttp/v1.52.0.tar.gz"
$out = "v1.52.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d8f5f4e2ed6126e44731f931f2ac3a748ceb995ee0180f3e741418337a37ada0") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.52.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.52.0.zip
printf '%s %s\n' '0fe889d114a5e41c80999ca2aeb5610c21c1bcf4ec56b039b10a422f0ce79ea8' 'v1.52.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.52.0.zip"
$out = "v1.52.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0fe889d114a5e41c80999ca2aeb5610c21c1bcf4ec56b039b10a422f0ce79ea8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.52.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.52.0.tar.gz
printf '%s %s\n' 'd8f5f4e2ed6126e44731f931f2ac3a748ceb995ee0180f3e741418337a37ada0' 'v1.52.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.52.0.tar.gz"
$out = "v1.52.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d8f5f4e2ed6126e44731f931f2ac3a748ceb995ee0180f3e741418337a37ada0") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.52.0.zip | zip | 298.1 KiB |
blake3-24 b77ccefa885784968df0e9ef276aea84acb2728c1f9864cb
sha256 0fe889d114a5e41c80999ca2aeb5610c21c1bcf4ec56b039b10a422f0ce79ea8
sha1 566c51a99f61f971e5430d111cc0325fb1cc4a33
|
| v1.52.0.tar.gz | tar.gz | 244.4 KiB |
blake3-24 fd99592625b53316c1696d1e402792b477ae051ecb3ad927
sha256 d8f5f4e2ed6126e44731f931f2ac3a748ceb995ee0180f3e741418337a37ada0
sha1 8a55dafc9997ae2337105a969989957445069dcc
|
go module archive
module zip with the module path rewritten to this mirror; fetched by go get through the
GOPROXY route
| artifact | format | size | hashes |
|---|---|---|---|
| v1.52.0.zip | zip | 301.5 KiB |
blake3-24 82dd2d38ab963ccb58dbaddb6588b7086c5e59596f6e52c2
sha256 241e90b0c915d4e1a8f75d023c5f7a2a367ab37b643c3138c2420cf79614dc05
sha1 5a33471807ef898fb80c50c60ab12f9918aa875b
|
install
bazel
http_archive(
name = "fasthttp",
urls = ["https://ratatoskr.space/pkg/fasthttp/v1.52.0.tar.gz"],
integrity = "sha256-2PX04u1hJuRHMfkx8qw6dIzrmV7gGA8+dBQYM3o3raA=",
strip_prefix = "fasthttp-v1.52.0",
)
zig
.url = "https://ratatoskr.space/pkg/fasthttp/v1.52.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fasthttp@v1.52.0
install via yggdrasil mesh
bazel
http_archive(
name = "fasthttp",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.52.0.tar.gz"],
integrity = "sha256-2PX04u1hJuRHMfkx8qw6dIzrmV7gGA8+dBQYM3o3raA=",
strip_prefix = "fasthttp-v1.52.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.52.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp@v1.52.0