nats-go @ v1.19.1
integrity
- size
- 431.2 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/nats-io/nats.go
release notes
Changelog
Added
- JetStream:
- Expose
StreamNameBySubjectmethod onJetStreamContextinterface for looking up stream by subject (#1114) - Return stream alternates when fetching stream info (#1118)
- Expose
Changed
- KV:
- Use BindStream for watcher so it works with mirrors (#1116)
Fixed
- KV:
- Delete key not working correctly across mirrors (#1115)
Complete Changes
https://github.com/nats-io/nats.go/compare/v1.19.0...v1.19.1
download
unix · zip
curl -fL -o v1.19.1.zip https://ratatoskr.space/pkg/nats-go/v1.19.1.zip
printf '%s %s\n' 'cfcc82695e9546621240796bbde4d84b96ad142718e8e3cd1ab0f49cd6b44f91' 'v1.19.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/nats-go/v1.19.1.zip"
$out = "v1.19.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "cfcc82695e9546621240796bbde4d84b96ad142718e8e3cd1ab0f49cd6b44f91") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.19.1.tar.gz https://ratatoskr.space/pkg/nats-go/v1.19.1.tar.gz
printf '%s %s\n' '6563ed788a2340ffad81a06e571749c7df3ca7f9604935deb51690c5661bb741' 'v1.19.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/nats-go/v1.19.1.tar.gz"
$out = "v1.19.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "6563ed788a2340ffad81a06e571749c7df3ca7f9604935deb51690c5661bb741") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.19.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.19.1.zip
printf '%s %s\n' 'cfcc82695e9546621240796bbde4d84b96ad142718e8e3cd1ab0f49cd6b44f91' 'v1.19.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.19.1.zip"
$out = "v1.19.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "cfcc82695e9546621240796bbde4d84b96ad142718e8e3cd1ab0f49cd6b44f91") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.19.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.19.1.tar.gz
printf '%s %s\n' '6563ed788a2340ffad81a06e571749c7df3ca7f9604935deb51690c5661bb741' 'v1.19.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.19.1.tar.gz"
$out = "v1.19.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "6563ed788a2340ffad81a06e571749c7df3ca7f9604935deb51690c5661bb741") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.19.1.zip | zip | 432.2 KiB |
blake3-24 684ab140bde27cf4d6792c859d5d7429b79af40c1702fb38
sha256 cfcc82695e9546621240796bbde4d84b96ad142718e8e3cd1ab0f49cd6b44f91
sha1 c616d2de8ebbf24cfe37e397c405eed84ef72600
|
| v1.19.1.tar.gz | tar.gz | 374.7 KiB |
blake3-24 5a6644029c02f0e4432ba85bccc5590f9917e1a5f00c8455
sha256 6563ed788a2340ffad81a06e571749c7df3ca7f9604935deb51690c5661bb741
sha1 0cac384947acf4370b052fb1033ea4136e789333
|
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.19.1.zip | zip | 434.4 KiB |
blake3-24 489172b5d59929cdbfad1577762efa9d51313bcd953ebee9
sha256 4a85ecc694c974834063fad8a8bfc2d34bb427d8e277c8e6cb2da8e589527eb0
sha1 1802e102a2ee42353f0b89b4d38f49f0a1271727
|
install
bazel
http_archive(
name = "nats-go",
urls = ["https://ratatoskr.space/pkg/nats-go/v1.19.1.tar.gz"],
integrity = "sha256-ZWPteIojQP+tgaBuVxdJx988p/lgSTXetRaQxWYbt0E=",
strip_prefix = "nats-go-v1.19.1",
)
zig
.url = "https://ratatoskr.space/pkg/nats-go/v1.19.1.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/nats-go@v1.19.1
install via yggdrasil mesh
bazel
http_archive(
name = "nats-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.19.1.tar.gz"],
integrity = "sha256-ZWPteIojQP+tgaBuVxdJx988p/lgSTXetRaQxWYbt0E=",
strip_prefix = "nats-go-v1.19.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.19.1.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go@v1.19.1