openfga @ v1.5.3
integrity
- size
- 736.3 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Added
- Apply tags to requests that have been intentionally throttled (https://github.com/openfga/openfga/pull/1531). This will add a new log field titled "throttled" to such requests.
Fixed
- Panic that occurred on Check API with some authorization models and tuples (https://github.com/openfga/openfga/pull/1517)
Changed
- Modular Models (Schema 1.2) support is enabled by default and the experimental flag for it has been dropped (https://github.com/openfga/openfga/pull/1520)
- Bumped to Go 1.21.9 (https://github.com/openfga/openfga/pull/1523)
Security
- Patch CVE-2024-31452 - a critical issue where Check and ListObjects APIs returns incorrect results for some models and tuples. See the CVE report for more details.
download
unix · zip
curl -fL -o v1.5.3.zip https://ratatoskr.space/pkg/openfga/v1.5.3.zip
printf '%s %s\n' '61479c458c880bbb7cc087c0f09d29e6d52eabe74a4094a36f6e28727577b86e' 'v1.5.3.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v1.5.3.zip"
$out = "v1.5.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "61479c458c880bbb7cc087c0f09d29e6d52eabe74a4094a36f6e28727577b86e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.5.3.tar.gz https://ratatoskr.space/pkg/openfga/v1.5.3.tar.gz
printf '%s %s\n' '59030dd22b8780e5d657a9ed1a0aef7d7b5add3bfeef368709d04596a148bf6a' 'v1.5.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v1.5.3.tar.gz"
$out = "v1.5.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "59030dd22b8780e5d657a9ed1a0aef7d7b5add3bfeef368709d04596a148bf6a") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.5.3.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.5.3.zip
printf '%s %s\n' '61479c458c880bbb7cc087c0f09d29e6d52eabe74a4094a36f6e28727577b86e' 'v1.5.3.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.5.3.zip"
$out = "v1.5.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "61479c458c880bbb7cc087c0f09d29e6d52eabe74a4094a36f6e28727577b86e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.5.3.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.5.3.tar.gz
printf '%s %s\n' '59030dd22b8780e5d657a9ed1a0aef7d7b5add3bfeef368709d04596a148bf6a' 'v1.5.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.5.3.tar.gz"
$out = "v1.5.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "59030dd22b8780e5d657a9ed1a0aef7d7b5add3bfeef368709d04596a148bf6a") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.5.3.zip | zip | 738.0 KiB |
blake3-24 c9c1b3e05f878ba2646019587f041ee4fad84eb0f6ed055e
sha256 61479c458c880bbb7cc087c0f09d29e6d52eabe74a4094a36f6e28727577b86e
sha1 c4aa2cd34ff319624f881c7e113327966ea05572
|
| v1.5.3.tar.gz | tar.gz | 611.8 KiB |
blake3-24 8219c557352c17672229e46f94e5f8eaf335386523a20d42
sha256 59030dd22b8780e5d657a9ed1a0aef7d7b5add3bfeef368709d04596a148bf6a
sha1 697eb30ac23232d8e6cbe01b2373895fb06f220b
|
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.3.zip | zip | 744.8 KiB |
blake3-24 10422267a486e0890149f02d9f8d1a36567efb76090c1e92
sha256 3074eeb13c29c3bdb6c20c55c2d53fb3f8a6b4aa4328f29d6c61e5fe4b423b98
sha1 abd606b68f457ea6cc3ef3b640762a84710a4431
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v1.5.3.tar.gz"],
integrity = "sha256-WQMN0iuHgOXWV6ntGgrvfXta3Tv+7zaHCdBFlqFIv2o=",
strip_prefix = "openfga-v1.5.3",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v1.5.3.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v1.5.3
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.5.3.tar.gz"],
integrity = "sha256-WQMN0iuHgOXWV6ntGgrvfXta3Tv+7zaHCdBFlqFIv2o=",
strip_prefix = "openfga-v1.5.3",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.5.3.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v1.5.3