nats-go @ v1.5.0
integrity
- size
- 130.9 KiB
- downloaded
- last checked
release notes
Changelog
Added
Conn.Barrier()API. This is an advance API that can be useful in some specific situations. Thanks to @nussjustin for reporting an issue during development of this feature (#338, #346)ReconnectBufSize()option setter. Thanks to @ripienaar (#340)
Improved
- Reduce memory usage during reconnect. Thanks to @charlievieth (#341)
- No need for regex in Connect(). Thanks to @charlievieth (#342)
- List of servers is now updated when the cluster topology changes. Will require server at version 1.0.7+ (#344, #352)
Fixed
- Protocol(s) received right after initial PONG may be missed. This would manifest with the handling of cluster topology state on connect with server 1.0.7+ (#348)
Changed
- Moved to Apache 2.0 License as part of the move to CNCF (#354)
Complete Changes
download
unix · zip
curl -fL -o v1.5.0.zip https://ratatoskr.space/pkg/nats-go/v1.5.0.zip
printf '%s %s\n' 'ff61ff8d9ca71a255aebae70f44290a3d44e310fdb615e26aca9a9e745ace73a' 'v1.5.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/nats-go/v1.5.0.zip"
$out = "v1.5.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ff61ff8d9ca71a255aebae70f44290a3d44e310fdb615e26aca9a9e745ace73a") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.5.0.tar.gz https://ratatoskr.space/pkg/nats-go/v1.5.0.tar.gz
printf '%s %s\n' 'd1a674166fd73e6663adadb82cdacc7c1ad511cf8c17ad81d697f2bd92f63509' 'v1.5.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/nats-go/v1.5.0.tar.gz"
$out = "v1.5.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d1a674166fd73e6663adadb82cdacc7c1ad511cf8c17ad81d697f2bd92f63509") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.5.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.5.0.zip
printf '%s %s\n' 'ff61ff8d9ca71a255aebae70f44290a3d44e310fdb615e26aca9a9e745ace73a' 'v1.5.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.5.0.zip"
$out = "v1.5.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ff61ff8d9ca71a255aebae70f44290a3d44e310fdb615e26aca9a9e745ace73a") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.5.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.5.0.tar.gz
printf '%s %s\n' 'd1a674166fd73e6663adadb82cdacc7c1ad511cf8c17ad81d697f2bd92f63509' 'v1.5.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.5.0.tar.gz"
$out = "v1.5.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d1a674166fd73e6663adadb82cdacc7c1ad511cf8c17ad81d697f2bd92f63509") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.5.0.zip | zip | 131.1 KiB |
blake3-24 516902053216c1d893fd4652f6bc7762a16ac1b6e1cc7ab0
sha256 ff61ff8d9ca71a255aebae70f44290a3d44e310fdb615e26aca9a9e745ace73a
sha1 173aa4751f3f723ab9a1b87a1b5e885aa2ce1f21
|
| v1.5.0.tar.gz | tar.gz | 98.6 KiB |
blake3-24 6444686728a6e15d3db251ae5dd00955a46c49765f3a0d08
sha256 d1a674166fd73e6663adadb82cdacc7c1ad511cf8c17ad81d697f2bd92f63509
sha1 40fc57b0e3609111fbd0605177ea42a4543bb17a
|
install
bazel
http_archive(
name = "nats-go",
urls = ["https://ratatoskr.space/pkg/nats-go/v1.5.0.tar.gz"],
integrity = "sha256-0aZ0Fm/XPmZjra24LNrMfBrVEc+MF62B1pfyvZL2NQk=",
strip_prefix = "nats-go-v1.5.0",
)
zig
.url = "https://ratatoskr.space/pkg/nats-go/v1.5.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "nats-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.5.0.tar.gz"],
integrity = "sha256-0aZ0Fm/XPmZjra24LNrMfBrVEc+MF62B1pfyvZL2NQk=",
strip_prefix = "nats-go-v1.5.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.5.0.tar.gz",