| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| checksums.txt | 2026-05-13 | 984 Bytes | |
| spicedb_1.53.0_linux_amd64.deb | 2026-05-13 | 24.4 MB | |
| spicedb_1.53.0_linux_arm64.deb | 2026-05-13 | 22.1 MB | |
| spicedb_1.53.0_linux_amd64.apk | 2026-05-13 | 25.4 MB | |
| spicedb_1.53.0_linux_amd64.rpm | 2026-05-13 | 24.4 MB | |
| spicedb_1.53.0_linux_arm64.apk | 2026-05-13 | 23.0 MB | |
| spicedb_1.53.0_linux_arm64.rpm | 2026-05-13 | 22.1 MB | |
| spicedb_1.53.0_darwin_amd64.tar.gz | 2026-05-13 | 25.0 MB | |
| spicedb_1.53.0_darwin_arm64.tar.gz | 2026-05-13 | 23.4 MB | |
| spicedb_1.53.0_linux_amd64.tar.gz | 2026-05-13 | 24.4 MB | |
| spicedb_1.53.0_linux_arm64.tar.gz | 2026-05-13 | 22.2 MB | |
| spicedb_1.53.0_windows_amd64.zip | 2026-05-13 | 25.0 MB | |
| windows_checksums.txt | 2026-05-13 | 99 Bytes | |
| development.wasm | 2026-05-13 | 75.3 MB | |
| README.md | 2026-05-11 | 4.4 kB | |
| v1.53.0 source code.tar.gz | 2026-05-11 | 3.2 MB | |
| v1.53.0 source code.zip | 2026-05-11 | 4.0 MB | |
| Totals: 17 Items | 344.0 MB | 2 | |
Added
- Add DispatchExecutor, a query plan executor that is Dispatch-aware and sends subproblems on Alias boundaries (https://github.com/authzed/spicedb/pull/3074)
- Implement Dispatch caching for query plan execution (https://github.com/authzed/spicedb/pull/3079)
- Add new optimizer to query planner based on set theory laws for simplifications (https://github.com/authzed/spicedb/pull/3051)
- Experimental: Add unified schema storage with
ReadStoredSchema/WriteStoredSchemaAPIs for improved schema read performance (https://github.com/authzed/spicedb/pull/2924)
This feature stores the entire schema as a single serialized proto rather than reading individual namespace and caveat definitions separately, significantly improving schema read performance.
Migration to unified schema storage is controlled by the --experimental-schema-mode flag, which supports a 4-phase rolling migration:
read-legacy-write-legacy(default) - No change; reads and writes use legacy per-definition storage.read-legacy-write-both- Reads from legacy storage, writes to both legacy and unified storage. This is the first migration step and backfills the unified schema table.read-new-write-both- Reads from unified storage, writes to both. Validates the new read path while maintaining backward compatibility.read-new-write-new- Reads and writes only unified storage. This is the final migration target.
Deployment:
- With the SpiceDB Operator:* Configure the operator to roll through stages 1 through 4 in sequence. The operator handles the rolling update of SpiceDB instances at each stage.
- Without the operator:* Progress through the stages manually by updating the
--experimental-schema-modeflag and performing a rolling restart at each stage. You can also take the system down briefly and move directly from stage 1 to stage 4, which runs the full migration in one step.
Changed
- Build: strip quarantine attribute for MacOS (https://github.com/authzed/spicedb/pull/3082)
Fixed
- Query plan contexts are written to during recursive calls -- for now, disable dispatch inside recursive calls (https://github.com/authzed/spicedb/pull/3078)
What's Changed
- chore: roll changelog by @tstirrat15 in https://github.com/authzed/spicedb/pull/3080
- feat: add a DispatchExecutor for query plans to the dispatch package by @barakmich in https://github.com/authzed/spicedb/pull/3074
- test: prevent flaky TestCertWatcher by @miparnisari in https://github.com/authzed/spicedb/pull/3083
- fix: do not dispatch within a recursive context by @barakmich in https://github.com/authzed/spicedb/pull/3078
- build: strip quarantine attribute for macos by @miparnisari in https://github.com/authzed/spicedb/pull/3082
- chore(deps): bump github.com/jackc/pgx/v5 from 5.9.1 to 5.9.2 by @dependabot[bot] in https://github.com/authzed/spicedb/pull/3068
- feat: implement handling of dispatch and caching for DispatchQueryPlan by @barakmich in https://github.com/authzed/spicedb/pull/3079
- feat: add unified schema storage with ReadStoredSchema/WriteStoredSchema by @josephschorr in https://github.com/authzed/spicedb/pull/2924
- chore: remove errant comment by @tstirrat15 in https://github.com/authzed/spicedb/pull/3090
- fix: add benchmark fixes after schema cache, applying optimizations by @barakmich in https://github.com/authzed/spicedb/pull/3091
- fix: wire DispatchExecutor into the GRPC path properly and fix correctness by @barakmich in https://github.com/authzed/spicedb/pull/3093
- chore: bump go version to 1.26.3 by @barakmich in https://github.com/authzed/spicedb/pull/3098
- ci: save benchmarks to cache on main by @miparnisari in https://github.com/authzed/spicedb/pull/3103
- chore(deps): bump the github-actions group across 1 directory with 18 updates by @dependabot[bot] in https://github.com/authzed/spicedb/pull/3104
- refactor: wire QueryPlanMetadata through dispatch as well by @barakmich in https://github.com/authzed/spicedb/pull/3096
- feat(queryopt): set simplification optimizer by @jzelinskie in https://github.com/authzed/spicedb/pull/3051
Full Changelog: https://github.com/authzed/spicedb/compare/v1.52.0...v1.53.0
Docker Images
This release is available at authzed/spicedb:v1.53.0, quay.io/authzed/spicedb:v1.53.0, ghcr.io/authzed/spicedb:v1.53.0