squirrel @ v1.5.1
integrity
- size
- 46.4 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/Masterminds/squirrel
release notes
What's Changed
- doc: fix deprecated usage of NewStmtCache by @elvizlai in https://github.com/Masterminds/squirrel/pull/274
- Add missing MustSql methods by @swithek in https://github.com/Masterminds/squirrel/pull/288
- Fix Select subquery with DollarPlaceholder by @lann in https://github.com/Masterminds/squirrel/pull/298
New Contributors
- @swithek made their first contribution in https://github.com/Masterminds/squirrel/pull/288
Full Changelog: https://github.com/Masterminds/squirrel/compare/v1.5.0...v1.5.1
download
unix · zip
curl -fL -o v1.5.1.zip https://ratatoskr.space/pkg/squirrel/v1.5.1.zip
printf '%s %s\n' '6a459d642f1b5e536b2e1d3f1fb65719fe21c905e85252810e4368360c4a965d' 'v1.5.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/squirrel/v1.5.1.zip"
$out = "v1.5.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "6a459d642f1b5e536b2e1d3f1fb65719fe21c905e85252810e4368360c4a965d") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.5.1.tar.gz https://ratatoskr.space/pkg/squirrel/v1.5.1.tar.gz
printf '%s %s\n' '38c3509999ec081c179119cae88a92a23721f9013cc2fd5e99b1e41adcb15523' 'v1.5.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/squirrel/v1.5.1.tar.gz"
$out = "v1.5.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "38c3509999ec081c179119cae88a92a23721f9013cc2fd5e99b1e41adcb15523") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.5.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/squirrel/v1.5.1.zip
printf '%s %s\n' '6a459d642f1b5e536b2e1d3f1fb65719fe21c905e85252810e4368360c4a965d' 'v1.5.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/squirrel/v1.5.1.zip"
$out = "v1.5.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "6a459d642f1b5e536b2e1d3f1fb65719fe21c905e85252810e4368360c4a965d") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.5.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/squirrel/v1.5.1.tar.gz
printf '%s %s\n' '38c3509999ec081c179119cae88a92a23721f9013cc2fd5e99b1e41adcb15523' 'v1.5.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/squirrel/v1.5.1.tar.gz"
$out = "v1.5.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "38c3509999ec081c179119cae88a92a23721f9013cc2fd5e99b1e41adcb15523") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.5.1.zip | zip | 47.4 KiB |
blake3-24 b6904e3dc737333a921778a09ce040a9520b76352f770e78
sha256 6a459d642f1b5e536b2e1d3f1fb65719fe21c905e85252810e4368360c4a965d
sha1 a87b39c3abf81742c3cf24dc651756bb77d3785b
|
| v1.5.1.tar.gz | tar.gz | 30.1 KiB |
blake3-24 6133c41db3616ad28cd85602a817f7851da25ae9b573436a
sha256 38c3509999ec081c179119cae88a92a23721f9013cc2fd5e99b1e41adcb15523
sha1 261775b46c542e462a8c7bb3dddb68f1603dbe5f
|
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.5.1.zip | zip | 44.8 KiB |
blake3-24 7a3e152fbfb01c22023324cb8a3be03d4c10608bf95d7c1d
sha256 3fe4f1fb2fcb67dc189ceb10d07debc1413cd1a6a7fabd8166e8eb4433705607
sha1 dbd1bb2d9118f51cc22662baf09e6e5e54679a1c
|
install
bazel
http_archive(
name = "squirrel",
urls = ["https://ratatoskr.space/pkg/squirrel/v1.5.1.tar.gz"],
integrity = "sha256-OMNQmZnsCBwXkRnK6IqSojch+QE8wv1embHkGtyxVSM=",
strip_prefix = "squirrel-v1.5.1",
)
zig
.url = "https://ratatoskr.space/pkg/squirrel/v1.5.1.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/squirrel@v1.5.1
install via yggdrasil mesh
bazel
http_archive(
name = "squirrel",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/squirrel/v1.5.1.tar.gz"],
integrity = "sha256-OMNQmZnsCBwXkRnK6IqSojch+QE8wv1embHkGtyxVSM=",
strip_prefix = "squirrel-v1.5.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/squirrel/v1.5.1.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/squirrel@v1.5.1