惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
P
Proofpoint News Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
Jina AI
Jina AI
B
Blog
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
腾讯CDC
C
Check Point Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
罗磊的独立博客
B
Blog RSS Feed
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 叶小钗
M
MIT News - Artificial intelligence
GbyAI
GbyAI

Cerbos - All Posts

Authentik vs Keycloak: Self-hosted IdP comparison Mapping business requirements to authorization policy for automotive Fine-grained authorization for AI gateways EIC 2026: Stop counting agents, protect what they can touch Agent skill for writing authorization policies in Claude Desktop Identity security in 2026 EIC 2026 takeaways: the identity stack built for humans will not hold up for AI agents Already have authentication? Here's the authorization layer you still need. Tokens are authorization decisions: a guide to policy-driven token issuance What is a Runtime Authorization Platform It's a dimmer switch, not a kill switch. How CISOs are rethinking AI agent governance From maps to bitmaps (and from bitmaps to bitmaps) AuthZEN, Shared Signals, SCIM Events, IPSIE: Notes from the OpenID Enterprise Panel How do you update authorization policies without redeploying your application? IIW42 recap: Where agent authorization got real Cerbos PDP v0.52.0/v0.53.0: Engine performance, security hardening, and CEL path functions Authorization Management Platforms: what they do, how they work, and where they fit PocketOS AI coding agent deleted a production database in 9 seconds Non-Human Identity management still has a blind spot Supabase alternative in 2026: Best open source auth options Benefits of on-premise authorization: Why enterprises are moving toward self-hosted Authorization policies: How to write, test, and validate them (faster with AI) Agent skill for writing authorization policies How much does it cost to build authorization in-house? Why centralized authorization governance reduces incident response time OPA alternative Why AI agents make authorization a right now problem Modernizing legacy application authorization: why it’s your biggest security blind spot How to add authorization to legacy applications without code changes 5 authorization blind spots auditors find, and how to fix them
Cerbos PDP v0.48: OpenID AuthZEN support, improved query ...
Alex Olivier · 2025-12-09 · via Cerbos - All Posts

The v0.48 release of Cerbos PDP introduces first-class support for the AuthZEN Authorization API, a more capable Git upload flow for Hub stores, and a set of under-the-hood improvements that make policy distribution and evaluation faster and more predictable. It also includes several targeted fixes that remove edge-case inconsistencies discovered by users integrating Cerbos into large multi-tenant deployments. As always, the full changelog is available in the repository.

AuthZEN Authorization API 1.0

The PDP now implements the endpoints defined in version 1.0 of the AuthZEN Authorization API. This includes the metadata endpoint and the evaluation endpoints required for AuthZEN-compatible clients. Cerbos maps AuthZEN requests to the native evaluation model while preserving response semantics, making it possible to adopt Cerbos in environments standardising on AuthZEN without changing existing client code.

See the API reference for the supported request shapes and mapping details.

Support for the new bundle format

When running with a Hub storage driver, the PDP can now consume bundles generated using a new, more efficient format. The updated layout is closer to the internal data structures used by the engine, which reduces load times and improves memory use in large installations.

Simplified plan generation for all operations

The planner now recognises when a collection is a known value and simplifies collection.all(t, <expr>) into a logical AND of <expr> evaluated for each element. This applies to lists and maps, and works for both one-variable and two-variable lambda operations. The result is a more compact and deterministic query plan, especially for policies that rely heavily on set membership filters.

Detect diff parameters for hubctl upload-git

The hubctl upload-git command now automatically determines the last git reference recorded in the remote store and uploads only the files that have changed since that revision. If a store has no git metadata yet, its contents are replaced using the files from the current HEAD.

As part of this work, the from and to parameters have been replaced with explicit flags. Any automation depending on the positional argument format will need to be updated. The new cerbos-store-action GitHub Action relies on this updated behaviour to provide consistent, idempotent policy sync from GitHub repositories to Hub stores.