nats-go @ v1.12.3
integrity
- size
- 264.7 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/nats-io/nats.go
release notes
Changelog
JetStream users
Please review release notes from v1.12.0 regarding important changes if upgrading from an earlier release.
Fixed
- JetStream:
- Received message may have wrong subject. This is a regression due to an attempt to reduce subject string copy in v1.12.2 (#827)
Complete Changes
https://github.com/nats-io/nats.go/compare/v1.12.2...v1.12.3
download
unix · zip
curl -fL -o v1.12.3.zip https://ratatoskr.space/pkg/nats-go/v1.12.3.zip
printf '%s %s\n' 'ac6debccfa91bbd67d2d4252e0455628e591c91146dd9de45080c56b602efdf0' 'v1.12.3.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/nats-go/v1.12.3.zip"
$out = "v1.12.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ac6debccfa91bbd67d2d4252e0455628e591c91146dd9de45080c56b602efdf0") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.12.3.tar.gz https://ratatoskr.space/pkg/nats-go/v1.12.3.tar.gz
printf '%s %s\n' 'a121aeeff1a862374da1eac1e79000dad90231836c1524722074a00b69bea1d6' 'v1.12.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/nats-go/v1.12.3.tar.gz"
$out = "v1.12.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a121aeeff1a862374da1eac1e79000dad90231836c1524722074a00b69bea1d6") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.12.3.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.12.3.zip
printf '%s %s\n' 'ac6debccfa91bbd67d2d4252e0455628e591c91146dd9de45080c56b602efdf0' 'v1.12.3.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.12.3.zip"
$out = "v1.12.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ac6debccfa91bbd67d2d4252e0455628e591c91146dd9de45080c56b602efdf0") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.12.3.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.12.3.tar.gz
printf '%s %s\n' 'a121aeeff1a862374da1eac1e79000dad90231836c1524722074a00b69bea1d6' 'v1.12.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.12.3.tar.gz"
$out = "v1.12.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a121aeeff1a862374da1eac1e79000dad90231836c1524722074a00b69bea1d6") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.12.3.zip | zip | 265.4 KiB |
blake3-24 bfb4218b423269f09a12afe4d0d98b6bde9fb9887671545c
sha256 ac6debccfa91bbd67d2d4252e0455628e591c91146dd9de45080c56b602efdf0
sha1 60f06438cd14e541e166f071f18d6dc43d23c7a3
|
| v1.12.3.tar.gz | tar.gz | 217.2 KiB |
blake3-24 8617a6072ed88d1ee672774729137dc85b627fb2d2340f04
sha256 a121aeeff1a862374da1eac1e79000dad90231836c1524722074a00b69bea1d6
sha1 f3720b02acfa6d44f10ffe0fe1c985325e57b1ae
|
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.12.3.zip | zip | 267.3 KiB |
blake3-24 9c3be3cb739de5f2b0e5c3a56b33c645927bf7385c259f9c
sha256 220f13cbb963b0c37c941c2083d73992326a1647929ae9ecd06a09b517d26297
sha1 fd0f248642820c9f5be849b455b5292c29c51f6c
|
install
bazel
http_archive(
name = "nats-go",
urls = ["https://ratatoskr.space/pkg/nats-go/v1.12.3.tar.gz"],
integrity = "sha256-oSGu7/GoYjdNoerB55AA2tkCMYNsFSRyIHSgC2m+odY=",
strip_prefix = "nats-go-v1.12.3",
)
zig
.url = "https://ratatoskr.space/pkg/nats-go/v1.12.3.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/nats-go@v1.12.3
install via yggdrasil mesh
bazel
http_archive(
name = "nats-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.12.3.tar.gz"],
integrity = "sha256-oSGu7/GoYjdNoerB55AA2tkCMYNsFSRyIHSgC2m+odY=",
strip_prefix = "nats-go-v1.12.3",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go/v1.12.3.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/nats-go@v1.12.3