openfga @ v1.11.0
integrity
- size
- 982.4 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
What's Changed
Added
- Breaking: Update PostgreSQL to use pgxpool instead of
database/sqlto allow for finer PostgreSQL connection control. #2734, #2789.- PostgreSQL will have the following configuration changes.
- Idle connections are now controlled by
OPENFGA_DATASTORE_MIN_IDLE_CONNS(default 0) instead ofOPENFGA_DATASTORE_MAX_IDLE_CONNS. - Added configuration on minimum connections via
OPENFGA_DATASTORE_MIN_OPEN_CONNS(default to 0).
- Idle connections are now controlled by
- Metrics for PostgreSQL will change from the default Prometheus DB Stats Collector to PGX Pool Prometheus Collector. See PGX Pool Prometheus Collector for the list of available metrics.
- PostgreSQL will have the following configuration changes.
Full Changelog: https://github.com/openfga/openfga/compare/v1.10.5...v1.11.0
download
unix · zip
curl -fL -o v1.11.0.zip https://ratatoskr.space/pkg/openfga/v1.11.0.zip
printf '%s %s\n' 'ef78f7f714212e7eeb1f433790eb470f3719e1497b40b0f20afb130306e7396c' 'v1.11.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v1.11.0.zip"
$out = "v1.11.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ef78f7f714212e7eeb1f433790eb470f3719e1497b40b0f20afb130306e7396c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.11.0.tar.gz https://ratatoskr.space/pkg/openfga/v1.11.0.tar.gz
printf '%s %s\n' '8c279e9a9e63c8acf01a15aa64735999e20d4cb69239373d272f754373548c43' 'v1.11.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v1.11.0.tar.gz"
$out = "v1.11.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8c279e9a9e63c8acf01a15aa64735999e20d4cb69239373d272f754373548c43") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.11.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.11.0.zip
printf '%s %s\n' 'ef78f7f714212e7eeb1f433790eb470f3719e1497b40b0f20afb130306e7396c' 'v1.11.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.11.0.zip"
$out = "v1.11.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ef78f7f714212e7eeb1f433790eb470f3719e1497b40b0f20afb130306e7396c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.11.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.11.0.tar.gz
printf '%s %s\n' '8c279e9a9e63c8acf01a15aa64735999e20d4cb69239373d272f754373548c43' 'v1.11.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.11.0.tar.gz"
$out = "v1.11.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8c279e9a9e63c8acf01a15aa64735999e20d4cb69239373d272f754373548c43") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.11.0.zip | zip | 985.8 KiB |
blake3-24 6d6d33a72c8f4c11ed50ddc0716cd78c6cb07213157e0714
sha256 ef78f7f714212e7eeb1f433790eb470f3719e1497b40b0f20afb130306e7396c
sha1 c1ea303503c2659a60d1a2ef0f1c33e0aafd4e11
|
| v1.11.0.tar.gz | tar.gz | 781.7 KiB |
blake3-24 2c51d9694fdc415af4826c20c799591bd13615168d938a35
sha256 8c279e9a9e63c8acf01a15aa64735999e20d4cb69239373d272f754373548c43
sha1 59cdd51e387d510a8bc8e5a3e9631d0d0bad4cf1
|
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.11.0.zip | zip | 996.7 KiB |
blake3-24 a93feef580178503555c1874a48ffc07b4013daac79cc1ae
sha256 c876c86594bf0bc81438f6122f0fafeed27032f7a2de394a2cbbcabd90041c44
sha1 bec70463ba12853be871b3ce5dac58b8dbb529ce
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v1.11.0.tar.gz"],
integrity = "sha256-jCeemp5jyKzwGhWqZHNZmeINTLaSOTc9Jy91Q3NUjEM=",
strip_prefix = "openfga-v1.11.0",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v1.11.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v1.11.0
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.11.0.tar.gz"],
integrity = "sha256-jCeemp5jyKzwGhWqZHNZmeINTLaSOTc9Jy91Q3NUjEM=",
strip_prefix = "openfga-v1.11.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v1.11.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v1.11.0