openfga @ v1.4.3
integrity
- size
- 712.2 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Added
- Add ability to close all server resources through
server.Stop()(#1318)
Changed
- Increase performance by removing redundant
map.Clone()calls in model validation (#1281)
Fixed
- Fix the sorting of contextual tuples when generating a cache key during check (#1299)
Security
- Patch CVE-2024-23820 - a critical issue where issuing many
ListObjectsAPI calls that hit the--listObjects-deadlinesetting can lead to an out of memory error. See the CVE report for more details
download
unix · zip
curl -fL -o v1.4.3.zip https://ratatoskr.space/pkg/openfga/v1.4.3.zip
printf '%s %s\n' '631cf5aeea9c1e84e135237d1e9ae2d1e9da63f75c884b12ff354d9c4927a9b5' 'v1.4.3.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v1.4.3.zip"
$out = "v1.4.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "631cf5aeea9c1e84e135237d1e9ae2d1e9da63f75c884b12ff354d9c4927a9b5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.3.tar.gz https://ratatoskr.space/pkg/openfga/v1.4.3.tar.gz
printf '%s %s\n' 'edac1d8f22b66f4d51505dc30daff81fdfe72509e0dea3fc64ea3e7d49e76d11' 'v1.4.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v1.4.3.tar.gz"
$out = "v1.4.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "edac1d8f22b66f4d51505dc30daff81fdfe72509e0dea3fc64ea3e7d49e76d11") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.4.3.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.3.zip
printf '%s %s\n' '631cf5aeea9c1e84e135237d1e9ae2d1e9da63f75c884b12ff354d9c4927a9b5' 'v1.4.3.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.3.zip"
$out = "v1.4.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "631cf5aeea9c1e84e135237d1e9ae2d1e9da63f75c884b12ff354d9c4927a9b5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.3.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.3.tar.gz
printf '%s %s\n' 'edac1d8f22b66f4d51505dc30daff81fdfe72509e0dea3fc64ea3e7d49e76d11' 'v1.4.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.3.tar.gz"
$out = "v1.4.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "edac1d8f22b66f4d51505dc30daff81fdfe72509e0dea3fc64ea3e7d49e76d11") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.4.3.zip | zip | 713.4 KiB |
blake3-24 d1cb8c1c19014ebaa6a13d687dcd4fe35bd316cf8ecb8510
sha256 631cf5aeea9c1e84e135237d1e9ae2d1e9da63f75c884b12ff354d9c4927a9b5
sha1 d7c39a8cf4beda7e4ee3690ede8c3816f02b13c9
|
| v1.4.3.tar.gz | tar.gz | 590.4 KiB |
blake3-24 73f5324fc8d45e4c559f7d7d4b50e9856800092e0f6d61b7
sha256 edac1d8f22b66f4d51505dc30daff81fdfe72509e0dea3fc64ea3e7d49e76d11
sha1 4db95e2d014904bcd3e70ddcfa2be9729ab99bf0
|
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.4.3.zip | zip | 718.8 KiB |
blake3-24 2a337a250c0e0383fb29981c007719b8edbe313b25ee8468
sha256 78f5f6d2268a75b74bfd03908078a0346b83a16b3822d30030bacff5371b7d2a
sha1 3246f923ef3db0f5a22fefb6dc93b368c16ba165
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v1.4.3.tar.gz"],
integrity = "sha256-7awdjyK2b01RUF3DDa/4H9/nJQng3qP8ZOo+fUnnbRE=",
strip_prefix = "openfga-v1.4.3",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v1.4.3.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v1.4.3
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.3.tar.gz"],
integrity = "sha256-7awdjyK2b01RUF3DDa/4H9/nJQng3qP8ZOo+fUnnbRE=",
strip_prefix = "openfga-v1.4.3",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.3.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v1.4.3