You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add tier and organizationId fields to dynamic policy types (#76)
* feat: add tier and organizationId fields to dynamic policy types
Add PolicyTier and organizationId support to DynamicPolicy and
CreateDynamicPolicyRequest to enable tiered policy scoping (system,
organization, tenant) for multi-tenant policy management.
* docs: add 3.2.0 changelog and bump version for tier field on dynamic policy requests
* fix: address code review issues for dynamic policy tier field
- Add tier and organizationId to UpdateDynamicPolicyRequest
- Add tier and organizationId filters to ListDynamicPoliciesOptions
- Update listDynamicPolicies to pass tier/org_id query params
- Add Javadoc to CreateDynamicPolicyRequest builder methods
* chore: align changelog format with cross-SDK conventions
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,15 @@ All notable changes to the AxonFlow Java SDK will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [3.2.0] - 2026-02-05
9
+
10
+
### Added
11
+
12
+
-**Dynamic policy tier support**: `tier` (`PolicyTier`) and `organizationId` fields on `CreateDynamicPolicyRequest`, `UpdateDynamicPolicyRequest`, and `DynamicPolicy` response. Defaults to `PolicyTier.TENANT` when not specified. Builder: `.tier(PolicyTier.ORGANIZATION).organizationId("org-123")`.
13
+
-**`ListDynamicPoliciesOptions` filters**: Filter dynamic policies by `tier` and `organizationId`, matching `ListStaticPoliciesOptions` parity.
0 commit comments