openfga @ v1.15.0
integrity
- size
- 1.2 MiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Changed
- Implemented edge pruning in the list objects pipeline algorithm. This introduces a measurable improvement to request latency for larger, more complex authorization models. #3075
Fixed
- Fixed experimental
weighted_graph_checkquery cache being skipped when the cache controller returns a zero invalidation time (e.g., on cold start or when disabled), despite the cache controller documenting that zero time should allow cache use. #3086
Security
- Update toolchain Go version to 1.26.2 to address the Go standard library vulnerabilities documented in the Go 1.26.2 release notes. #3084
New Contributors
- @officialasishkumar made their first contribution in https://github.com/openfga/openfga/pull/3033
Full Changelog: https://github.com/openfga/openfga/compare/v1.14.2...v1.15.0
download
unix · zip
curl -fL -o v1.15.0.zip https://ratatoskr.space/pkg/openfga/v1.15.0.zip
printf '%s %s\n' 'a9d812516d5b79a568d73e66128c25a080e3db141969791a56051a80d290f6b4' 'v1.15.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v1.15.0.zip"
$out = "v1.15.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a9d812516d5b79a568d73e66128c25a080e3db141969791a56051a80d290f6b4") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.15.0.tar.gz https://ratatoskr.space/pkg/openfga/v1.15.0.tar.gz
printf '%s %s\n' 'fbe3f4f69419b7e5242dde3ec552638c0e38b4634c2c72d12418d9d1604509c4' 'v1.15.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v1.15.0.tar.gz"
$out = "v1.15.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "fbe3f4f69419b7e5242dde3ec552638c0e38b4634c2c72d12418d9d1604509c4") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.15.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.15.0.zip
printf '%s %s\n' 'a9d812516d5b79a568d73e66128c25a080e3db141969791a56051a80d290f6b4' 'v1.15.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.15.0.zip"
$out = "v1.15.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a9d812516d5b79a568d73e66128c25a080e3db141969791a56051a80d290f6b4") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.15.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.15.0.tar.gz
printf '%s %s\n' 'fbe3f4f69419b7e5242dde3ec552638c0e38b4634c2c72d12418d9d1604509c4' 'v1.15.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.15.0.tar.gz"
$out = "v1.15.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "fbe3f4f69419b7e5242dde3ec552638c0e38b4634c2c72d12418d9d1604509c4") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.15.0.zip | zip | 1.2 MiB |
blake3-24 b4ba8c0c03e8f8b617fd8f8a2caa3f6956e3739d285fbb58
sha256 a9d812516d5b79a568d73e66128c25a080e3db141969791a56051a80d290f6b4
sha1 4610670a40fc6a7c2214467972281aaee7a32693
|
| v1.15.0.tar.gz | tar.gz | 984.5 KiB |
blake3-24 b7c99ab67c9d825c6ac6c50030efed12ddfba6ccd7e87401
sha256 fbe3f4f69419b7e5242dde3ec552638c0e38b4634c2c72d12418d9d1604509c4
sha1 c2394a6b0b18a76b40400db6c558bbc66af142ea
|
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.15.0.zip | zip | 1.2 MiB |
blake3-24 01718b0450af82485c8265d4b41dae13f3cfa89412fca061
sha256 962ac16723d7afc349982a8708ada45620e5b8a5e259f1ab807c4beb754f1591
sha1 837e947809480b62a1771d133df9ebc40960541c
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v1.15.0.tar.gz"],
integrity = "sha256-++P09pQZt+UkLd4+xVJjjA44tGNMLHLRJBjZ0WBFCcQ=",
strip_prefix = "openfga-v1.15.0",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v1.15.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v1.15.0
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.15.0.tar.gz"],
integrity = "sha256-++P09pQZt+UkLd4+xVJjjA44tGNMLHLRJBjZ0WBFCcQ=",
strip_prefix = "openfga-v1.15.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.15.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v1.15.0