gin-go @ v1.7.7
integrity
- size
- 184.2 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/gin-gonic/gin
release notes
BUGFIXES
- Fixed X-Forwarded-For unsafe handling of CVE-2020-28483 #2844, closed issue #2862
- Tree: updated the code logic for
latestNode#2897, closed issue #2894 #2878 - Tree: fixed the misplacement of adding slashes #2847, closed issue #2843
- Tree: fixed tsr with mixed static and wildcard paths #2924, closed issue #2918
ENHANCEMENTS
- TrustedProxies: make it backward-compatible #2887, closed issue #2819
- TrustedPlatform: provide custom options for another CDN services #2906
DOCS
- NoMethod: added usage annotation (#2832)
download
unix · zip
curl -fL -o v1.7.7.zip https://ratatoskr.space/pkg/gin-go/v1.7.7.zip
printf '%s %s\n' 'b410ea68b4c103edda61385e320c8cd381e5875ad29fb4ee99b12fee886b9ce5' 'v1.7.7.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/gin-go/v1.7.7.zip"
$out = "v1.7.7.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b410ea68b4c103edda61385e320c8cd381e5875ad29fb4ee99b12fee886b9ce5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.7.7.tar.gz https://ratatoskr.space/pkg/gin-go/v1.7.7.tar.gz
printf '%s %s\n' 'e64342df0857d0cbf2c4db8d59b5d757d46770366fa8b90ccf99f513f27355ad' 'v1.7.7.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/gin-go/v1.7.7.tar.gz"
$out = "v1.7.7.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e64342df0857d0cbf2c4db8d59b5d757d46770366fa8b90ccf99f513f27355ad") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.7.7.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.7.7.zip
printf '%s %s\n' 'b410ea68b4c103edda61385e320c8cd381e5875ad29fb4ee99b12fee886b9ce5' 'v1.7.7.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.7.7.zip"
$out = "v1.7.7.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b410ea68b4c103edda61385e320c8cd381e5875ad29fb4ee99b12fee886b9ce5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.7.7.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.7.7.tar.gz
printf '%s %s\n' 'e64342df0857d0cbf2c4db8d59b5d757d46770366fa8b90ccf99f513f27355ad' 'v1.7.7.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.7.7.tar.gz"
$out = "v1.7.7.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e64342df0857d0cbf2c4db8d59b5d757d46770366fa8b90ccf99f513f27355ad") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.7.7.zip | zip | 186.5 KiB |
blake3-24 80c1511dfbbfcc378d13c4e0847625adc12fcada8edd0e10
sha256 b410ea68b4c103edda61385e320c8cd381e5875ad29fb4ee99b12fee886b9ce5
sha1 3bf01a41635361ca44bce2b453ce635af5c2109b
|
| v1.7.7.tar.gz | tar.gz | 143.6 KiB |
blake3-24 9c82dbf22d9f8e73e8d0eec74406a0599edcc1064afed202
sha256 e64342df0857d0cbf2c4db8d59b5d757d46770366fa8b90ccf99f513f27355ad
sha1 a1da19eefd8a50ec5a9a30f666e974d45fc2e4a8
|
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.7.7.zip | zip | 188.9 KiB |
blake3-24 83beb1215fd9d524b29e43cd28557b84a676fa0d0665ed4a
sha256 8563fbad0a73f0a5bed02335feb98cf745c535f8a6c9a48355ee3efa41080254
sha1 84b227ed229c56a7f10d8a64917ab05b34c35d1a
|
install
bazel
http_archive(
name = "gin-go",
urls = ["https://ratatoskr.space/pkg/gin-go/v1.7.7.tar.gz"],
integrity = "sha256-5kNC3whX0MvyxNuNWbXXV9RncDZvqLkMz5n1E/JzVa0=",
strip_prefix = "gin-go-v1.7.7",
)
zig
.url = "https://ratatoskr.space/pkg/gin-go/v1.7.7.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/gin-go@v1.7.7
install via yggdrasil mesh
bazel
http_archive(
name = "gin-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.7.7.tar.gz"],
integrity = "sha256-5kNC3whX0MvyxNuNWbXXV9RncDZvqLkMz5n1E/JzVa0=",
strip_prefix = "gin-go-v1.7.7",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.7.7.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go@v1.7.7