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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,46 @@ All notable changes to this project are documented in this file following the [K
4
4
Issues reported on [GitHub](https://github.com/authzforce/server/issues) are referenced in the form of `[GH-N]`, where N is the issue number. Issues reported on [OW2](https://jira.ow2.org/browse/AUTHZFORCE/) are mentioned in the form of `[OW2-N]`, where N is the issue number.
-**Migrated to Java 17 (as the minimum required JRE version from now on), JAXB 4.0 (javax.xml.bind.\* imports replaced with jakarta.xml.bind.\*) and JAX-RS 3.0.0 (javax.ws.\* imports replaced with jakarta.ws.\*)**
11
+
12
+
- Upgraded dependencies:
13
+
- authzforce-ce-rest-api-model: 7.0.0
14
+
- authzforce-ce-atom-model: 9.1.0
15
+
- authzforce-ce-xacml-model: 9.1.0
16
+
- authzforce-ce-pdp-ext-model: 9.1.0
17
+
- Jakarta REST API: javax.ws.rs-api replaced with **jakarta.ws.rs-api: 3.0.0**
18
+
- org.json:json: 20231013
19
+
- authzforce-ce-jaxrs-utils: 3.0.0
20
+
- authzforce-ce-xacml-json-model: 4.1.0
21
+
- everit-json-schema: 1.14.3
22
+
- authzforce-ce-core-pap-dao-flat-file: 15.0.0
23
+
- authzforce-ce-core-pap-api: 13.0.0
24
+
- authzforce-ce-core-pdp-engine: 21.0.1:
25
+
- Fixed [GH-69](https://github.com/authzforce/core/issues/69): Support for XACML <StatusDetail> / <MissingAttributeDetail>s, returned when missing named Attribute(s) in AttributeDesignator/AttributeSelector expressions, and may be returned by custom PDP extensions as well.
26
+
- Fixed [GH-73](https://github.com/authzforce/core/issues/73): (Rule's Condition that always returns False was considered invalid).
27
+
- Fixed [GH-83](https://github.com/authzforce/core/issues/83): `NoSuchElementException` thrown when the rule combining algorithm is permit-unless-deny and there is no Deny rule but at least one Permit rule with Obligation/Advice.
28
+
- Fixed [GH-92](https://github.com/authzforce/core/issues/92) Deny-overrides rule combining algorithm - Missing obligations in case of multiple Permit Rules and no Deny Rule (only the Obligations from the first Permit Rule were returned).
29
+
- authzforce-ce-core-pdp-io-xacml-json: 21.0.1
30
+
- java-uuid-generator: 4.2.0
31
+
- Servlet API: javax.servlet-api replaced with **jakarta.servlet-api: 5.0**.
- Upgraded Tomcat used in integration tests: 10.1.18
39
+
40
+
### Added
41
+
- Added support for GeoXACML content mime types on the REST API (WADL)
42
+
43
+
### Removed
44
+
- Removed dependency: logback-ext-spring
45
+
46
+
7
47
## 11.0.1
8
48
### Fixed
9
49
- Fixed Docker image: replaced vulnerable Tomcat base image with latest official (tomcat:9-jre11-temurin-focal) for Docker. [More info](https://github.com/authzforce/fiware/issues/22).
Copy file name to clipboardExpand all lines: rest-service/src/main/java/org/ow2/authzforce/rest/service/jaxrs/PolicyVersionResourceImpl.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ public class PolicyVersionResourceImpl implements PolicyVersionDaoClient, Policy
44
44
privatestaticfinalIllegalArgumentExceptionILLEGAL_VERSION_DAO_ARGUMENT_EXCEPTION = newIllegalArgumentException("Policy version DAO for policy version resource undefined");
45
45
46
46
/**
47
-
* Name of the (Apache CXF) MessageContext property where the XML namespace contexts (Java {@link Map <String, String>} ) used for input XML (esp. usable in XACML PolicySet's XPath expressions) is to be injected.
47
+
* Name of the (Apache CXF) MessageContext property where the XML namespace contexts (Java {@code java.util.Map <String, String>} ) used for input XML (esp. usable in XACML PolicySet's XPath expressions) is to be injected.
0 commit comments