nats-go @ v1.9.1
integrity
- size
- 161.8 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/nats-io/nats.go
release notes
Changelog
Fixed
- In preparation for JetStream and support of subject rewriting, a bug was introduced that would cause multiple deliveries when before the delivery should have been only one per response. This affects only v1.9.0 (#528)
Complete Changes
download
unix · zip
curl -fL -o v1.9.1.zip https://ratatoskr.space/pkg/nats-go/v1.9.1.zip
printf '%s %s\n' 'd9036769e3e8378f5a44ebaeea7696b373d9b6ff60e5d46054ffe8a33ef575c3' 'v1.9.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/nats-go/v1.9.1.zip"
$out = "v1.9.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d9036769e3e8378f5a44ebaeea7696b373d9b6ff60e5d46054ffe8a33ef575c3") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.9.1.tar.gz https://ratatoskr.space/pkg/nats-go/v1.9.1.tar.gz
printf '%s %s\n' '5510e2c0c242602d846890e9bd81a16e2fc88b722b0a2b708a7d0d746524bac9' 'v1.9.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/nats-go/v1.9.1.tar.gz"
$out = "v1.9.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5510e2c0c242602d846890e9bd81a16e2fc88b722b0a2b708a7d0d746524bac9") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.9.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.9.1.zip
printf '%s %s\n' 'd9036769e3e8378f5a44ebaeea7696b373d9b6ff60e5d46054ffe8a33ef575c3' 'v1.9.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.9.1.zip"
$out = "v1.9.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d9036769e3e8378f5a44ebaeea7696b373d9b6ff60e5d46054ffe8a33ef575c3") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.9.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.9.1.tar.gz
printf '%s %s\n' '5510e2c0c242602d846890e9bd81a16e2fc88b722b0a2b708a7d0d746524bac9' 'v1.9.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.9.1.tar.gz"
$out = "v1.9.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5510e2c0c242602d846890e9bd81a16e2fc88b722b0a2b708a7d0d746524bac9") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.9.1.zip | zip | 161.3 KiB |
blake3-24 184216803a4e566865c4dd5d59147a3102d39ca6f77cd877
sha256 d9036769e3e8378f5a44ebaeea7696b373d9b6ff60e5d46054ffe8a33ef575c3
sha1 f623dafe9ed4f25816056b7e5c79a04b0d016287
|
| v1.9.1.tar.gz | tar.gz | 122.1 KiB |
blake3-24 39d7499e8b0a0c998dbe5458dde440a60c2fec36798bee23
sha256 5510e2c0c242602d846890e9bd81a16e2fc88b722b0a2b708a7d0d746524bac9
sha1 deabf632c9963eebf55f54d8eb947d38a9bb60f0
|
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.9.1.zip | zip | 162.9 KiB |
blake3-24 afc19ec8a5b6788f89223f3a289226a7363e3a59c38eac78
sha256 06965e579acb8d7312d1a1fcfdbdd171201533bd6a7669fc348721c9bfd4a422
sha1 d275c393563bafbe1c465b916a1f7f57e9756e9c
|
install
bazel
http_archive(
name = "nats-go",
urls = ["https://ratatoskr.space/pkg/nats-go/v1.9.1.tar.gz"],
integrity = "sha256-VRDiwMJCYC2EaJDpvYGhbi/Ii3IrCitwin0NdGUkusk=",
strip_prefix = "nats-go-v1.9.1",
)
zig
.url = "https://ratatoskr.space/pkg/nats-go/v1.9.1.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/nats-go@v1.9.1
install via yggdrasil mesh
bazel
http_archive(
name = "nats-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.9.1.tar.gz"],
integrity = "sha256-VRDiwMJCYC2EaJDpvYGhbi/Ii3IrCitwin0NdGUkusk=",
strip_prefix = "nats-go-v1.9.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.9.1.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go@v1.9.1