nats-go @ v1.7.2
integrity
- size
- 156.9 KiB
- downloaded
- last checked
release notes
Changelog
Added
- Ability to set MaxPingsOutstanding as an Option (#414)
- Conn.ConnectedAddr() (#426)
- FlushWithContext() (#433)
Updated
- Handle host names that resolve to more than one IP (#417)
- Disable automatic TLS skip verify (#420)
- Examples and Benchmarks can use new credentials based authentication and authorization (#419)
- Smarter kickFlusher behavior (#429)
- Smarter processing on NextMsg() when a message already available (#432)
Improved
- Better handling of TLS errors. Thanks to @brianshannan for the contribution (#418)
- Updates to samples in docs (#422, #421)
- Uses staticcheck now vs megacheck
Fixed
- Maintain string case for async errors from the server (#415)
Complete Changes
download
unix · zip
curl -fL -o v1.7.2.zip https://ratatoskr.space/pkg/nats-go/v1.7.2.zip
printf '%s %s\n' 'bc9f69e6956259e0dee54e657dedeb6da9004fd16583970ba9894d4edb7b241c' 'v1.7.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/nats-go/v1.7.2.zip"
$out = "v1.7.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bc9f69e6956259e0dee54e657dedeb6da9004fd16583970ba9894d4edb7b241c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.7.2.tar.gz https://ratatoskr.space/pkg/nats-go/v1.7.2.tar.gz
printf '%s %s\n' 'a7480bb1c29d37610d7f2900e04f5b0331ad7343a52f8c30bfdf9bd5f1916c48' 'v1.7.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/nats-go/v1.7.2.tar.gz"
$out = "v1.7.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a7480bb1c29d37610d7f2900e04f5b0331ad7343a52f8c30bfdf9bd5f1916c48") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.7.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.7.2.zip
printf '%s %s\n' 'bc9f69e6956259e0dee54e657dedeb6da9004fd16583970ba9894d4edb7b241c' 'v1.7.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.7.2.zip"
$out = "v1.7.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bc9f69e6956259e0dee54e657dedeb6da9004fd16583970ba9894d4edb7b241c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.7.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.7.2.tar.gz
printf '%s %s\n' 'a7480bb1c29d37610d7f2900e04f5b0331ad7343a52f8c30bfdf9bd5f1916c48' 'v1.7.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.7.2.tar.gz"
$out = "v1.7.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a7480bb1c29d37610d7f2900e04f5b0331ad7343a52f8c30bfdf9bd5f1916c48") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.7.2.zip | zip | 156.4 KiB |
blake3-24 a1df1cb0a477443e637e69df11d618e991fdc278ec8017c8
sha256 bc9f69e6956259e0dee54e657dedeb6da9004fd16583970ba9894d4edb7b241c
sha1 c7a2f2544f58906631bdd42cf1371a98e5c484b2
|
| v1.7.2.tar.gz | tar.gz | 118.1 KiB |
blake3-24 dbffcb8e0c56e4710f444f3702a6be816550e79e09884719
sha256 a7480bb1c29d37610d7f2900e04f5b0331ad7343a52f8c30bfdf9bd5f1916c48
sha1 c60e112b9bb5282ba3aba9907d2f116799f04d3c
|
install
bazel
http_archive(
name = "nats-go",
urls = ["https://ratatoskr.space/pkg/nats-go/v1.7.2.tar.gz"],
integrity = "sha256-p0gLscKdN2ENfykA4E9bAzGtc0OlL4wwv9+b1fGRbEg=",
strip_prefix = "nats-go-v1.7.2",
)
zig
.url = "https://ratatoskr.space/pkg/nats-go/v1.7.2.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "nats-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.7.2.tar.gz"],
integrity = "sha256-p0gLscKdN2ENfykA4E9bAzGtc0OlL4wwv9+b1fGRbEg=",
strip_prefix = "nats-go-v1.7.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.7.2.tar.gz",