openfga @ v0.3.1
integrity
- size
- 584.2 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Added
-
Datastore configuration flags to control connection pool settings
--datastore-max-open-conns--datastore-max-idle-conns--datastore-conn-max-idle-time--datastore-conn-max-lifetimeThese flags can be used to fine-tune database connections for your specific deployment of OpenFGA. -
Log level configuration flags
--log-level(can be one of ['none', 'debug', 'info', 'warn', 'error', 'panic', 'fatal']) -
Support for Experimental Feature flags A new flag
--experimentalshas been added to enable certain experimental features in OpenFGA. For more information see Experimental Features.
Security
- Patches CVE-2022-23542 - relationship reads now respect type restrictions from prior models [openfga/openfga#422]
download
unix · zip
curl -fL -o v0.3.1.zip https://ratatoskr.space/pkg/openfga/v0.3.1.zip
printf '%s %s\n' '26b9bb99d352c92fe7eb9fab2c5dcaa1680df28ff76efc67cc8d0ee3f91e5e87' 'v0.3.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v0.3.1.zip"
$out = "v0.3.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "26b9bb99d352c92fe7eb9fab2c5dcaa1680df28ff76efc67cc8d0ee3f91e5e87") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.3.1.tar.gz https://ratatoskr.space/pkg/openfga/v0.3.1.tar.gz
printf '%s %s\n' 'fc7225e569133ff90fdda4b3c9318543d47c9d423ad9f6e7a4c95a90d5132112' 'v0.3.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v0.3.1.tar.gz"
$out = "v0.3.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "fc7225e569133ff90fdda4b3c9318543d47c9d423ad9f6e7a4c95a90d5132112") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v0.3.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.3.1.zip
printf '%s %s\n' '26b9bb99d352c92fe7eb9fab2c5dcaa1680df28ff76efc67cc8d0ee3f91e5e87' 'v0.3.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.3.1.zip"
$out = "v0.3.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "26b9bb99d352c92fe7eb9fab2c5dcaa1680df28ff76efc67cc8d0ee3f91e5e87") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.3.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.3.1.tar.gz
printf '%s %s\n' 'fc7225e569133ff90fdda4b3c9318543d47c9d423ad9f6e7a4c95a90d5132112' 'v0.3.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.3.1.tar.gz"
$out = "v0.3.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "fc7225e569133ff90fdda4b3c9318543d47c9d423ad9f6e7a4c95a90d5132112") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v0.3.1.zip | zip | 586.6 KiB |
blake3-24 a40250182e5509db774d0f6e642bf39b05fd9d4114fb3b86
sha256 26b9bb99d352c92fe7eb9fab2c5dcaa1680df28ff76efc67cc8d0ee3f91e5e87
sha1 dbc06b936e3d21cdb0e97a16f2f143eaf42263fb
|
| v0.3.1.tar.gz | tar.gz | 516.0 KiB |
blake3-24 6a0ec25d5839f3a91f9bfdb03780f5647b946102c1474092
sha256 fc7225e569133ff90fdda4b3c9318543d47c9d423ad9f6e7a4c95a90d5132112
sha1 14a4fc9336841059e1134d91c00ba3bb401e70b5
|
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 |
|---|---|---|---|
| v0.3.1.zip | zip | 544.5 KiB |
blake3-24 9e3fca491a5026a3065cb355453572f65c17c72c84ca4481
sha256 5eb54e5a1e1e9d23c25dc6e79d199d5bdbaa0d25e16f3bf0455cce63be175efb
sha1 dd919994877eccb784ca8fbffa88b25700cd2cf4
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v0.3.1.tar.gz"],
integrity = "sha256-/HIl5WkTP/kP3aSzyTGFQ9R8nUI62fbnpMlakNUTIRI=",
strip_prefix = "openfga-v0.3.1",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v0.3.1.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v0.3.1
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.3.1.tar.gz"],
integrity = "sha256-/HIl5WkTP/kP3aSzyTGFQ9R8nUI62fbnpMlakNUTIRI=",
strip_prefix = "openfga-v0.3.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.3.1.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v0.3.1