summaryrefslogtreecommitdiff
path: root/src/authorization/server.rs
AgeCommit message (Collapse)Author
2025-07-17feat: migrate from Cedar to SpiceDB authorization systemmo khan
This is a major architectural change that replaces the Cedar policy-based authorization system with SpiceDB's relation-based authorization. Key changes: - Migrate from Rust to Go implementation - Replace Cedar policies with SpiceDB schema and relationships - Switch from envoy `ext_authz` with Cedar to SpiceDB permission checks - Update build system and dependencies for Go ecosystem - Maintain Envoy integration for external authorization This change enables more flexible permission modeling through SpiceDB's Google Zanzibar inspired relation-based system, supporting complex hierarchical permissions that were difficult to express in Cedar. Breaking change: Existing Cedar policies and Rust-based configuration will no longer work and need to be migrated to SpiceDB schema.
2025-07-14chore: handle health checks in envoy rather than authzdmo khan
2025-07-11chore: tidy up request logsmo khan
2025-07-05refactor: pass the PaC autorizer to the server to allow trying different onesmo khan
2025-07-05feat: allow requests from localhostmo khan
2025-07-04chore: fix the request headers formatting in the json logsmo khan
2025-07-02feat: implement cargo vendor and optimize Docker buildsmo khan
2025-07-02chore: fix linter errormo khan
2025-07-02fix: report serving status from health check endpointmo khan
2025-07-02fix: install the reflection service for the health check probe discoverymo khan
2025-07-02chore: rename log messagemo khan
2025-07-02chore: request method, path and headers in tracingmo khan
2025-07-02chore: add requst timeout of 30 secondsmo khan
2025-07-02chore: remove logging interceptormo khan
2025-06-27chore: add a logging interceptor to log requestmo khan
2025-06-27refactor: remove the reflection servicemo khan
2025-06-27refactor: attempt to create constructor that allows passing in servicesmo khan
2025-06-27refactor: extract authorization::Server typemo khan