Skip to content

Commit d94c8ac

Browse files
committed
Merge branch 'release/4.4.1'
2 parents eced86e + 5364804 commit d94c8ac

10 files changed

Lines changed: 24 additions & 12 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
**target/
22
/.project
3+
/.settings/

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Change log
22
All notable changes to this project are documented in this file following the [Keep a CHANGELOG](http://keepachangelog.com) conventions.
33

4+
## 4.4.1
5+
### Changed
6+
- Default domain rootPolicyRef no longer has 'Version' specified so that the root policy is always the latest version added via the PAP (by default).
7+
8+
### Fixed
9+
- Hidding file paths from error messages
10+
11+
412
## 4.4.0
513
### Added
614
- XACML 3.0: Support for new XACML 3.0 standard string functions: type-from-string and string-from-type where type can be any XACML datatype (boolean, integer, double, time, date, etc.), string-starts-with, string-ends-with, anyURI-ends-with, anyURI-starts-with, string-contains, anyURI-contains, string-substring, anyURI-substring.

dist/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.settings/
2+
/.classpath
3+
/.project

dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.ow2.authzforce</groupId>
55
<artifactId>authzforce-ce-server</artifactId>
6-
<version>4.4.0</version>
6+
<version>4.4.1</version>
77
<relativePath>..</relativePath>
88
</parent>
99
<artifactId>authzforce-ce-server-dist</artifactId>

dist/src/conf/domain.tmpl/pdp.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
<rootPolicyProvider
1616
id="rootPolicyProvider"
1717
xsi:type="StaticRefBasedRootPolicyProvider">
18-
<policyRef Version="0.1.0">root</policyRef>
18+
<policyRef>root</policyRef>
1919
</rootPolicyProvider>
20-
</pdp>
20+
</pdp>

dist/src/data/domains/A0bdIbmGEeWhFwcKrC9gSQ/pdp.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
<rootPolicyProvider
1616
id="rootPolicyProvider"
1717
xsi:type="StaticRefBasedRootPolicyProvider">
18-
<policyRef Version="0.1.0">root</policyRef>
18+
<policyRef>root</policyRef>
1919
</rootPolicyProvider>
20-
</pdp>
20+
</pdp>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</parent>
99
<artifactId>authzforce-ce-server</artifactId>
1010
<!-- FIWARE Versioning -->
11-
<version>4.4.0</version>
11+
<version>4.4.1</version>
1212
<packaging>pom</packaging>
1313
<name>${project.groupId}:${project.artifactId}</name>
1414
<description>AuthZForce CE Server</description>

rest-service/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.ow2.authzforce</groupId>
55
<artifactId>authzforce-ce-server</artifactId>
6-
<version>4.4.0</version>
6+
<version>4.4.1</version>
77
<relativePath>..</relativePath>
88
</parent>
99
<artifactId>authzforce-ce-server-rest-service</artifactId>
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>${project.groupId}</groupId>
4747
<artifactId>${artifactId.prefix}-pap-dao-file</artifactId>
48-
<version>3.6.0</version>
48+
<version>3.6.1</version>
4949
</dependency>
5050
<!-- Test dependencies -->
5151
<dependency>
@@ -209,4 +209,4 @@
209209
</plugin>
210210
</plugins>
211211
</build>
212-
</project>
212+
</project>

rest-service/src/test/resources/server/conf/domain.tmpl/pdp.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
<rootPolicyProvider
1616
id="rootPolicyProvider"
1717
xsi:type="StaticRefBasedRootPolicyProvider">
18-
<policyRef Version="0.1.0">root</policyRef>
18+
<policyRef>root</policyRef>
1919
</rootPolicyProvider>
20-
</pdp>
20+
</pdp>

webapp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.ow2.authzforce</groupId>
55
<artifactId>authzforce-ce-server</artifactId>
6-
<version>4.4.0</version>
6+
<version>4.4.1</version>
77
<relativePath>..</relativePath>
88
</parent>
99
<artifactId>authzforce-ce-server-webapp</artifactId>

0 commit comments

Comments
 (0)