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

推荐订阅源

D
Docker
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
美团技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
T
Tailwind CSS Blog
U
Unit 42
C
Check Point Blog
S
SegmentFault 最新的问题
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
罗磊的独立博客
小众软件
小众软件
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net

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.51.0: Policy lifecycle management, audit en...
Alex Olivier · 2026-02-10 · via Cerbos - All Posts

The Cerbos PDP v0.51.0 release introduces new Admin API capabilities for policy lifecycle management, enhanced audit logging with request context, and several important updates to scope handling that improve consistency across the evaluation engine.

Policy lifecycle management

DeletePolicies RPC

Managing policy lifecycles in production environments just got easier. The new DeletePolicies RPC enables secure removal of policies from database-backed stores through the Admin API. Critically, the endpoint includes integrity validation; any deletion request that would compromise policy store integrity is automatically rejected.

This feature is particularly useful for teams managing large policy repositories who need to clean up deprecated or superseded policies without risking broken authorization.

PurgeStoreRevisions RPC

Database stores accumulate backup copies of policies with each add or update operation. Over time, this can consume significant storage. The new PurgeStoreRevisions RPC allows administrators to reclaim this space by removing historical policy revisions.

Note: Database users will require DELETE privileges on the policy_revision table to use this feature.

Enhancements

Request context for audit logs

A new optional requestContext field is now available in CheckResources and PlanResources requests. This field allows applications to attach arbitrary metadata, such as correlation IDs, user session identifiers, or trace context, that flows through to audit logs.

This enhancement significantly improves the ability to correlate authorization decisions with broader application activity during debugging and compliance audits.

Explicit versioning for role policies

Role policies now support optional explicit version declarations rather than assuming "default." While currently optional for backward compatibility, explicit versioning will become mandatory in a future release. Teams using role policies should begin adding explicit version fields to prepare for this change.

Improved test filtering

The cerbos compile command introduces a new --test-filter flag, replacing the now-deprecated --run flag. The new flag offers filtering across five dimensions:

  • Suite name
  • Test name
  • Principal
  • Resource
  • Action

This provides much finer control when running specific subsets of policy tests during development and CI pipelines.

Scope updates

This release includes several important updates to scope handling:

  • Blob storage reliability: Fixed an issue where failed blob store downloads could leave empty files, potentially causing unexpected policy behavior
  • Lenient scope search consistency: Corrected lenient scope search activation in both CheckResources and PlanResources evaluations
  • Scope chain traversal: Principal and resource policies now traverse their scope chains independently, fixing edge cases where coupled traversal produced incorrect results
  • Role policy inheritance: Fixed an issue with permission inheritance on unspecified resources in role policies

For the complete list of changes, see the full changelog.