Skip to content

Commit cf89b02

Browse files
authored
AMS Java 4.1.0 CHANGELOG (#28)
* AMS Java 4.1.0 CHANGELOG
1 parent aff5a00 commit cf89b02

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

docs/Libraries/java/cap-ams.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,13 @@ cds:
3939
security:
4040
authorization:
4141
ams:
42+
edge-service:
43+
url: http://localhost:8080 # Edge service URL (optional)
4244
bundle-loader:
4345
polling-interval: 20000 # Bundle update polling interval in ms (default: 20000)
4446
initial-retry-delay: 1000 # Initial retry delay after failure in ms (default: 1000)
4547
max-retry-delay: 20000 # Maximum retry delay in ms (default: 20000)
4648
retry-delay-factor: 2 # Exponential backoff factor (default: 2)
4749
features:
4850
generateExists: true # Generate EXISTS predicates for filter attributes behind 1:N associations (default: true)
49-
```
51+
```

docs/Libraries/java/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Version 4
44

5+
### 4.1.0
6+
7+
- Feature: added configuration option for fetching authorization bundles from an AMS Edge Service.
8+
- Fix: Support for multiple Mock Policy Assignment sources (file-path, map structure) has been added to prevent startup errors when a file-path is configured in the Spring properties.
9+
- Fix: added DEBUG log when the AMS CAP Plugin falls back to `UserInfo#getTenant` or `UserInfo#getId` because `app_tid` and/or `scim_id` claims cannot be found on `UserInfo` to allow analysis when policy assignments of a user unexpectedly do not apply.
10+
511
### 4.0.7
612

713
- Fix: Read Number constants from DCN as `Double` instead of `Long/Int` to avoid runtime errors when comparing with `Double` attribute input

docs/Libraries/java/spring-boot-ams.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ Configure the starter in `application.yml`:
171171
```yaml
172172
sap:
173173
ams:
174+
edge-service:
175+
url: http://localhost:8080 # Edge service URL (optional)
176+
174177
bundle-loader:
175178
polling-interval: 20000 # Bundle update polling interval in ms (default: 20000)
176179
initial-retry-delay: 1000 # Initial retry delay after failure in ms (default: 1000)
@@ -185,4 +188,4 @@ sap:
185188
enabled: true # Enable health indicator (default: true)
186189
readiness:
187190
enabled: true # Enable readiness state contributor (default: true)
188-
```
191+
```

0 commit comments

Comments
 (0)