Skip to content

Commit a951399

Browse files
committed
- Merged last released
2 parents 3f9eeb3 + 2c7ec1c commit a951399

3 files changed

Lines changed: 46 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ All notable changes to this project are documented in this file following the [K
66
- Issues reported on [OW2's GitLab](https://gitlab.ow2.org/authzforce/core/issues) are referenced in the form of `[GL-N]`, where N is the issue number.
77

88

9+
## 21.1.0
10+
### Changed
11+
- Upgraded authzforce-ce-parent: 9.2.0
12+
- Upgraded dependencies:
13+
- authzforce-ce-xacml-model / authzforce-ce-pdp-ext-model: 9.2.0
14+
- authzforce-ce-xacml-json-model: 4.2.0: what's changed?
15+
- authzforce-ce-core-pdp-api: 22.1.1:
16+
- logback: 1.5.32
17+
- slf4j: 2.0.17
18+
- jaxb-runtime: 4.0.6
19+
- spring-core: 6.2.15
20+
- mongodb-driver-sync: 4.11.5
21+
- XACML datatype 'xpathExpression' (XPathValue class) support modified to support the 'attribute-selector' function from the XACML v3.0 Related and Nested Entities Profile Version 1.0
22+
- 'XPathCategory' attribute made optional
23+
- Added evaluate(xml, variables) method without an EvaluationContext parameter, for XPath expression evaluation
24+
25+
### Fixed
26+
- Bugfix: AttributeSelectors in a Target are rejected (error) even if Policy(Set)Defaults/XPathVersion properly declared before the Target
27+
- Bad regex for validating XACML dnsName values with a wildcard
28+
29+
930
## 21.0.1
1031
### Fixed
1132
- [GH-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).

pdp-cli/pom.xml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
<dependency>
3131
<groupId>org.ow2.authzforce</groupId>
3232
<artifactId>authzforce-ce-core-pdp-engine</artifactId>
33-
<version>21.1.1-SNAPSHOT</version>
33+
<version>${project.parent.version}</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.ow2.authzforce</groupId>
3737
<artifactId>authzforce-ce-core-pdp-io-xacml-json</artifactId>
38-
<version>21.1.1-SNAPSHOT</version>
38+
<version>${project.parent.version}</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>junit</groupId>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.ow2.authzforce</groupId>
5656
<artifactId>authzforce-ce-core-pdp-testutils</artifactId>
57-
<version>21.1.1-SNAPSHOT</version>
57+
<version>${project.parent.version}</version>
5858
<scope>test</scope>
5959
</dependency>
6060
</dependencies>
@@ -218,6 +218,15 @@
218218
</execution>
219219
</executions>
220220
</plugin>
221+
<plugin>
222+
<groupId>org.sonatype.central</groupId>
223+
<artifactId>central-publishing-maven-plugin</artifactId>
224+
<version>0.9.0</version>
225+
<extensions>true</extensions>
226+
<configuration>
227+
<skipPublishing>true</skipPublishing>
228+
</configuration>
229+
</plugin>
221230
</plugins>
222231
</build>
223232
</project>

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@
1111
<name>${project.groupId}:${project.artifactId}</name>
1212
<description>AuthzForce - XACML-compliant Core PDP Engine and associated test modules</description>
1313
<url>${project.url}</url>
14+
<licenses>
15+
<license>
16+
<name>Apache License Version 2.0</name>
17+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18+
</license>
19+
</licenses>
20+
<developers>
21+
<developer>
22+
<name>The AuthzForce Team</name>
23+
<organization>THALES</organization>
24+
<organizationUrl>http://thalesgroup.com</organizationUrl>
25+
</developer>
26+
</developers>
1427
<scm>
1528
<!-- Used by Jenkins - Maven release plugin -->
1629
<connection>scm:git:${git.url.base}/core.git</connection>

0 commit comments

Comments
 (0)