nats-go @ v1.20.0
integrity
- size
- 431.5 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/nats-io/nats.go
release notes
Changelog
Changed
- JetStream:
- [BREAKING CHANGE] Extract
nats: Consumer Deletedserver error toErrConsumerDeletedvariable. This error is returned when consumer is deleted while waiting on pull request and was introduced in nats-server v2.9.6 (#1125)
- [BREAKING CHANGE] Extract
Improved
- JetStream:
- Fix broken comments on
ErrConsumerNameAlreadyInUseandStreamNameBySubject(). Thanks to @subtle-byte for the contribution (#1128)
- Fix broken comments on
- Core NATS:
- Improve comment on
RetryOnFailedConnectconnect option (#1127)
- Improve comment on
Complete Changes
https://github.com/nats-io/nats.go/compare/v1.19.1...v1.20.0
download
unix · zip
curl -fL -o v1.20.0.zip https://ratatoskr.space/pkg/nats-go/v1.20.0.zip
printf '%s %s\n' '82da6b3eedadd4dbc8674cb17377b06ea9140b81a3fed59dcbe9c7663345cf45' 'v1.20.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/nats-go/v1.20.0.zip"
$out = "v1.20.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "82da6b3eedadd4dbc8674cb17377b06ea9140b81a3fed59dcbe9c7663345cf45") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.20.0.tar.gz https://ratatoskr.space/pkg/nats-go/v1.20.0.tar.gz
printf '%s %s\n' 'afec1dfcf806ebd6342a220310f1f9bf0fb69f1b9fa7254671522e3018aa73a7' 'v1.20.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/nats-go/v1.20.0.tar.gz"
$out = "v1.20.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "afec1dfcf806ebd6342a220310f1f9bf0fb69f1b9fa7254671522e3018aa73a7") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.20.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.20.0.zip
printf '%s %s\n' '82da6b3eedadd4dbc8674cb17377b06ea9140b81a3fed59dcbe9c7663345cf45' 'v1.20.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.20.0.zip"
$out = "v1.20.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "82da6b3eedadd4dbc8674cb17377b06ea9140b81a3fed59dcbe9c7663345cf45") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.20.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.20.0.tar.gz
printf '%s %s\n' 'afec1dfcf806ebd6342a220310f1f9bf0fb69f1b9fa7254671522e3018aa73a7' 'v1.20.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.20.0.tar.gz"
$out = "v1.20.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "afec1dfcf806ebd6342a220310f1f9bf0fb69f1b9fa7254671522e3018aa73a7") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.20.0.zip | zip | 432.5 KiB |
blake3-24 1d164d7143e0ce93dba786cb3c1be3cb7983c85b50cf0ca9
sha256 82da6b3eedadd4dbc8674cb17377b06ea9140b81a3fed59dcbe9c7663345cf45
sha1 450999c57f23e5969d4fcb11cbfa2fadcbdd284d
|
| v1.20.0.tar.gz | tar.gz | 375.1 KiB |
blake3-24 e8d0e6afbdc3bf0f8fa87260aaf5df4d59a899e6a9c56f05
sha256 afec1dfcf806ebd6342a220310f1f9bf0fb69f1b9fa7254671522e3018aa73a7
sha1 71c8fd7321ed87f3b9dc398bbe2d053124bad60a
|
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.20.0.zip | zip | 434.8 KiB |
blake3-24 77b7999a33ea901f54475334d417ebf5f27a84da33fff9dd
sha256 6b5b539ab2f36298c24772fd84adcfc42c8e724dbcd1ee14b3a8ec88e841a3a7
sha1 6844578f62ace6df45ff55fd9f080cfa0f1fb797
|
install
bazel
http_archive(
name = "nats-go",
urls = ["https://ratatoskr.space/pkg/nats-go/v1.20.0.tar.gz"],
integrity = "sha256-r+wd/PgG69Y0KiIDEPH5vw+2nxufpyVGcVIuMBiqc6c=",
strip_prefix = "nats-go-v1.20.0",
)
zig
.url = "https://ratatoskr.space/pkg/nats-go/v1.20.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/nats-go@v1.20.0
install via yggdrasil mesh
bazel
http_archive(
name = "nats-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.20.0.tar.gz"],
integrity = "sha256-r+wd/PgG69Y0KiIDEPH5vw+2nxufpyVGcVIuMBiqc6c=",
strip_prefix = "nats-go-v1.20.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.20.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go@v1.20.0