openfga @ v1.3.3
integrity
- size
- 642.3 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Added
-
Configurable size limit for Authorization Models (#1032)
We've introduced a new size limit for authorization models, providing a consistent behavior across datastores, which defaults to
256KB. This can be configured by using the--max-authorization-model-size-in-bytesflag.
Fixed
- Reduce use of GOB in encoded cache key (#1029)
Changed
-
Persist Authorization Models serialized protobuf in the database (#1028)
In the next series of releases will progressively introduce changes via code and database migrations that will allow authorization models to be stored in a single database row.
download
unix · zip
curl -fL -o v1.3.3.zip https://ratatoskr.space/pkg/openfga/v1.3.3.zip
printf '%s %s\n' 'e7d9f66d80dd009cdfde1fce4975e5d532e636fb99410c1db753a7319e78a662' 'v1.3.3.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v1.3.3.zip"
$out = "v1.3.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e7d9f66d80dd009cdfde1fce4975e5d532e636fb99410c1db753a7319e78a662") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.3.3.tar.gz https://ratatoskr.space/pkg/openfga/v1.3.3.tar.gz
printf '%s %s\n' '9ceb84aad2f54b3ebaeedfeea89c50d0ac466dddfa6d9925a245182d95c7388d' 'v1.3.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v1.3.3.tar.gz"
$out = "v1.3.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "9ceb84aad2f54b3ebaeedfeea89c50d0ac466dddfa6d9925a245182d95c7388d") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.3.3.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.3.3.zip
printf '%s %s\n' 'e7d9f66d80dd009cdfde1fce4975e5d532e636fb99410c1db753a7319e78a662' 'v1.3.3.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.3.3.zip"
$out = "v1.3.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e7d9f66d80dd009cdfde1fce4975e5d532e636fb99410c1db753a7319e78a662") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.3.3.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.3.3.tar.gz
printf '%s %s\n' '9ceb84aad2f54b3ebaeedfeea89c50d0ac466dddfa6d9925a245182d95c7388d' 'v1.3.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.3.3.tar.gz"
$out = "v1.3.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "9ceb84aad2f54b3ebaeedfeea89c50d0ac466dddfa6d9925a245182d95c7388d") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.3.3.zip | zip | 642.5 KiB |
blake3-24 d63bc173e0dec29a8a3781f146f2357877495876f06f56b4
sha256 e7d9f66d80dd009cdfde1fce4975e5d532e636fb99410c1db753a7319e78a662
sha1 988f8b1a1b28099d366dc665d79e3e4ba56c760c
|
| v1.3.3.tar.gz | tar.gz | 536.7 KiB |
blake3-24 e0fd4d74c52fb93a4b7ce056986b107b3b8a0aa0726d96a8
sha256 9ceb84aad2f54b3ebaeedfeea89c50d0ac466dddfa6d9925a245182d95c7388d
sha1 4ae4f7a8d347dccfcc908e76e6c6d412042fb220
|
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.3.3.zip | zip | 645.8 KiB |
blake3-24 860478d3f60efe7643a570b17b5681e052290bd532f44e70
sha256 76b281a16e2b7b58c0f1b41d5c340770586d7bc18741195e686a11c2d031fe45
sha1 69409db08ec5804b3224da1aba5bf7501bfa295c
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v1.3.3.tar.gz"],
integrity = "sha256-nOuEqtL1Sz667t/uqJxQ0KxGbd36bZklokUYLZXHOI0=",
strip_prefix = "openfga-v1.3.3",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v1.3.3.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v1.3.3
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.3.3.tar.gz"],
integrity = "sha256-nOuEqtL1Sz667t/uqJxQ0KxGbd36bZklokUYLZXHOI0=",
strip_prefix = "openfga-v1.3.3",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.3.3.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v1.3.3