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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Recent Announcements
Recent Announcements
Vercel News
Vercel News
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
G
Google Developers Blog
罗磊的独立博客
爱范儿
爱范儿
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
月光博客
月光博客
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research

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.50.0: Stricter CEL, more predictable scope ...
Alex Olivier · 2025-12-22 · via Cerbos - All Posts

The Cerbos PDP v0.50.0 release brings a set of important changes to policy semantics, scope handling, and evaluation performance. This version tightens CEL identifier rules, aligns query plan behavior with actual decisions across scopes, and introduces optimizations that reduce compute usage and speed up policy evaluation. As always, the full changelog is available in the repository.

Before upgrading in production, we strongly recommend validating your policies and workloads in a staging environment due to the breaking changes outlined below.

Stricter CEL identifier rules

In v0.50.0, the PDP enforces more precise CEL semantics around how constants, globals, and variables are accessed. Previously, it was possible to treat these top-level identifiers as map-like containers using index syntax (e.g., V["foo"]). This undocumented pattern is no longer supported.

Now, all access must use dot notation (V.foo), and names must be valid CEL identifiers. Identifiers that do not match the allowed pattern or that collide with reserved keywords will cause policy compilation to fail.

This change eliminates ambiguity in CEL expressions and improves predictability at compile time, but may require edits to existing policies that rely on index lookups.

Default scopes and scope consistency

This release introduces the ability to configure a default scope via the PDP’s configuration (engine.DefaultScope). When set, any CheckResources or PlanResources request that omits a scope will automatically inherit the configured default.

In addition, we’ve improved how scoped query plans are generated: the planner now considers rules from parent scopes, making its output consistent with the check API’s actual evaluation logic. If your policies use hierarchical scopes, you may see slight differences in the plans you get back as a result.

Together, these changes make scoped authorization more intuitive and aligned with runtime behavior.

Major performance and usability improvements

Performance optimizations

Under-the-hood improvements to the rule engine significantly reduce CPU and memory usage during evaluation. Across a wide range of workloads, this makes decisions faster and lowers the compute cost of running Cerbos PDP at scale.

InspectPolicies support

You can now use the InspectPolicies API, improving introspection and easing debugging in environments that rely on these stores.

Dot alias for empty scope

When you configure a default scope, you can now use the literal . in check and plan requests as an alias for an empty (root) scope. This makes certain caller workflows more ergonomic and explicit.

Bug fixes

This release also includes targeted fixes to the query planner:

  • Role policy restrictions now isolate correctly in the planner, addressing a regression affecting principals with multiple roles.
  • Conditions across scope boundaries are now properly unioned when evaluating ancestor and descendant rules, rather than short-circuiting early.

Be aware that the change to how conditions are merged across scopes can alter query plans if you rely on legacy planner behavior.

For full details, see the changelog.