openfga @ v1.1.1
integrity
- size
- 586.1 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Added
- Official Homebrew installation instructions (#781) - thanks @chenrui333
- The
--verboseflag has been added to theopenfga migratecommand (#776) - The
openfga validate-modelsCLI command has been introduced to validate all models across all stores (#817)
Changed
- Updated the version of the
grpc-health-probebinary included in OpenFGA builds (#784) - Cache inflight requests when looking up the latest authorization model (#820)
Fixed
- Validation of models with non-zero entrypoints (#802)
- Remove unintended newlines in model validation error messages (#816) - thanks @Galzzly
Security
- Patches CVE-2023-35933 - additional model validations are now applied to models that can lead to the vulnerability. See the CVE report for more details, and don't hesitate to reach out if you have questions.
download
unix · zip
curl -fL -o v1.1.1.zip https://ratatoskr.space/pkg/openfga/v1.1.1.zip
printf '%s %s\n' '08bef82e500caea4750a5a5eb56e93aea895fa62dc7ad9b64487a816ea81245e' 'v1.1.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v1.1.1.zip"
$out = "v1.1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "08bef82e500caea4750a5a5eb56e93aea895fa62dc7ad9b64487a816ea81245e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.1.tar.gz https://ratatoskr.space/pkg/openfga/v1.1.1.tar.gz
printf '%s %s\n' '74bfafcf79b3de2eda8dc92ec9d22e325199c16d7aafce546fc36abefd01553f' 'v1.1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v1.1.1.tar.gz"
$out = "v1.1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "74bfafcf79b3de2eda8dc92ec9d22e325199c16d7aafce546fc36abefd01553f") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.1.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.1.1.zip
printf '%s %s\n' '08bef82e500caea4750a5a5eb56e93aea895fa62dc7ad9b64487a816ea81245e' 'v1.1.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.1.1.zip"
$out = "v1.1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "08bef82e500caea4750a5a5eb56e93aea895fa62dc7ad9b64487a816ea81245e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.1.1.tar.gz
printf '%s %s\n' '74bfafcf79b3de2eda8dc92ec9d22e325199c16d7aafce546fc36abefd01553f' 'v1.1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.1.1.tar.gz"
$out = "v1.1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "74bfafcf79b3de2eda8dc92ec9d22e325199c16d7aafce546fc36abefd01553f") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.1.1.zip | zip | 586.9 KiB |
blake3-24 710a1c29f8d78be7cfa72c5404815ab33a9dc0e10f7d5ce5
sha256 08bef82e500caea4750a5a5eb56e93aea895fa62dc7ad9b64487a816ea81245e
sha1 6976966b1fc17cd1a4c8fd4bffd8554350028e45
|
| v1.1.1.tar.gz | tar.gz | 501.1 KiB |
blake3-24 67517e8c54a8c6742aa916be9c4effa66c4212f65ccbe758
sha256 74bfafcf79b3de2eda8dc92ec9d22e325199c16d7aafce546fc36abefd01553f
sha1 92d7a8651616bfb91f25035e88ed398d77ae6911
|
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.1.1.zip | zip | 589.3 KiB |
blake3-24 eb24bce2d155a4e5e3a2431e4af16a890a41fac6056f6461
sha256 7846c162e55d2920a98c4225375278a1f31ef3a8b7c9b7efbd224df402031208
sha1 ab6155c54765b4314aae9e955222a543839f5554
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v1.1.1.tar.gz"],
integrity = "sha256-dL+vz3mz3i7ajckuydIuMlGZwW16r85Ub8Nqvv0BVT8=",
strip_prefix = "openfga-v1.1.1",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v1.1.1.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v1.1.1
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.1.1.tar.gz"],
integrity = "sha256-dL+vz3mz3i7ajckuydIuMlGZwW16r85Ub8Nqvv0BVT8=",
strip_prefix = "openfga-v1.1.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.1.1.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v1.1.1