openfga @ v1.4.1
integrity
- size
- 704.5 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Changed
-
Reduce goroutine overhead in ListObjects (#1173)
-
Added
openfgaprefix to custom exported Prometheus metrics⚠️ This change may impact existing deployments of OpenFGA if you're integrating with the metrics reported by OpenFGA.
Custom metrics reported by the OpenFGA server are now prefixed with
openfga_. For example,request_duration_by_query_count_msis now exported asopenfga_request_duration_by_query_count_ms.
Added
- Support for cancellation/timeouts when evaluating Conditions (#1237)
- Tracing span info for Condition evaluation (#1251)
Fixed
download
unix · zip
curl -fL -o v1.4.1.zip https://ratatoskr.space/pkg/openfga/v1.4.1.zip
printf '%s %s\n' 'acce0e2474819b146b76288a60fd66c58a87ff4303643d271ba8a933641789a8' 'v1.4.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v1.4.1.zip"
$out = "v1.4.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "acce0e2474819b146b76288a60fd66c58a87ff4303643d271ba8a933641789a8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.1.tar.gz https://ratatoskr.space/pkg/openfga/v1.4.1.tar.gz
printf '%s %s\n' 'f4e926cdcd63402909bd261a904302b15bcbed20880a3e3902d4873cf8a74014' 'v1.4.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v1.4.1.tar.gz"
$out = "v1.4.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f4e926cdcd63402909bd261a904302b15bcbed20880a3e3902d4873cf8a74014") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.4.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.1.zip
printf '%s %s\n' 'acce0e2474819b146b76288a60fd66c58a87ff4303643d271ba8a933641789a8' 'v1.4.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.1.zip"
$out = "v1.4.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "acce0e2474819b146b76288a60fd66c58a87ff4303643d271ba8a933641789a8") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.1.tar.gz
printf '%s %s\n' 'f4e926cdcd63402909bd261a904302b15bcbed20880a3e3902d4873cf8a74014' 'v1.4.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.1.tar.gz"
$out = "v1.4.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f4e926cdcd63402909bd261a904302b15bcbed20880a3e3902d4873cf8a74014") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.4.1.zip | zip | 705.3 KiB |
blake3-24 6e789ef5daacf0cb387f874f67c492b0b6dcd00f373c80ca
sha256 acce0e2474819b146b76288a60fd66c58a87ff4303643d271ba8a933641789a8
sha1 3b2107a0d39ec77d9d1de097089776dbf4e8ab4b
|
| v1.4.1.tar.gz | tar.gz | 581.9 KiB |
blake3-24 f498b5407321650c4cdd1d101f50ab7baf4420e1c8e3ce29
sha256 f4e926cdcd63402909bd261a904302b15bcbed20880a3e3902d4873cf8a74014
sha1 51669471f98d0a93772290cb54f41bfa6d54f0b7
|
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.1.zip | zip | 709.5 KiB |
blake3-24 d709c40719260eef6c2c97176d40d1f009a30dea3a569744
sha256 8cab3527780e749c37f1e5f9419a05d67ead61a7ea92bb156e7b3c024e85d61c
sha1 4d7b1575ba942ac11441b1b5954616aa3fcb5759
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v1.4.1.tar.gz"],
integrity = "sha256-9Okmzc1jQCkJvSYakEMCsVvL7SCICj45AtSHPPinQBQ=",
strip_prefix = "openfga-v1.4.1",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v1.4.1.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v1.4.1
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.1.tar.gz"],
integrity = "sha256-9Okmzc1jQCkJvSYakEMCsVvL7SCICj45AtSHPPinQBQ=",
strip_prefix = "openfga-v1.4.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.4.1.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v1.4.1