Skip to content

Commit 02bbf7d

Browse files
authored
upgrade spring-security version to 5.4.6 (#502)
* bump the spring security version fixes spring-projects/spring-security#4001 * bump library version * reorganize parent pom to resolve spring-security BOM with higher precedence
1 parent 26b7782 commit 02bbf7d

File tree

32 files changed

+59
-54
lines changed

32 files changed

+59
-54
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
3-
3+
## 2.8.11 and 0.1.5 [BETA]
4+
- The following dependencies were updated:
5+
- spring.security.version 5.4.5 --> 5.4.6
6+
47
## 2.8.10 and 0.1.4 [BETA]
58
- [spring-xsuaa] introduced spring properties for IAS -> Xsuaa token exchange activation, as described [here](/spring-xsuaa/README.md#ias-to-xsuaa-token-exchange)
69
- [java-security-test] uses jetty BoM to fix CVE-2021-28164 and CVE-2021-28165.

api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<dependency>
66
<groupId>com.sap.cloud.security.xsuaa</groupId>
77
<artifactId>api</artifactId>
8-
<version>2.8.10</version>
8+
<version>2.8.11</version>
99
</dependency>
1010
```

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.sap.cloud.security.xsuaa</groupId>
1010
<artifactId>parent</artifactId>
11-
<version>2.8.10</version>
11+
<version>2.8.11</version>
1212
</parent>
1313

1414
<packaging>jar</packaging>

java-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<dependency>
66
<groupId>com.sap.cloud.security</groupId>
77
<artifactId>java-api</artifactId>
8-
<version>2.8.10</version>
8+
<version>2.8.11</version>
99
</dependency>
1010
```

java-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.sap.cloud.security.xsuaa</groupId>
99
<artifactId>parent</artifactId>
10-
<version>2.8.10</version>
10+
<version>2.8.11</version>
1111
</parent>
1212

1313
<groupId>com.sap.cloud.security</groupId>

java-security-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>parent</artifactId>
99
<groupId>com.sap.cloud.security.xsuaa</groupId>
10-
<version>2.8.10</version>
10+
<version>2.8.11</version>
1111
</parent>
1212

1313
<artifactId>java-security-it</artifactId>

java-security-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ It includes for example a `JwtGenerator` that generates JSON Web Tokens (JWT) th
2222
<dependency>
2323
<groupId>com.sap.cloud.security</groupId>
2424
<artifactId>java-security-test</artifactId>
25-
<version>2.8.10</version>
25+
<version>2.8.11</version>
2626
<scope>test</scope>
2727
</dependency>
2828
```

java-security-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.sap.cloud.security.xsuaa</groupId>
99
<artifactId>parent</artifactId>
10-
<version>2.8.10</version>
10+
<version>2.8.11</version>
1111
</parent>
1212

1313
<groupId>com.sap.cloud.security</groupId>

java-security/Migration_SpringSecurityProjects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ First make sure you have the following dependencies defined in your pom.xml:
3737
<dependency>
3838
<groupId>com.sap.cloud.security.xsuaa</groupId>
3939
<artifactId>api</artifactId>
40-
<version>2.8.10</version>
40+
<version>2.8.11</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.sap.cloud.security</groupId>
4444
<artifactId>java-security</artifactId>
45-
<version>2.8.10</version>
45+
<version>2.8.11</version>
4646
</dependency>
4747

4848
<!-- new java-security dependencies for unit tests -->
4949
<dependency>
5050
<groupId>com.sap.cloud.security</groupId>
5151
<artifactId>java-security-test</artifactId>
52-
<version>2.8.10</version>
52+
<version>2.8.11</version>
5353
<scope>test</scope>
5454
</dependency>
5555
```

java-security/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In case of XSUAA does the JWT provide a valid `jku` token header parameter that
4646
<dependency>
4747
<groupId>com.sap.cloud.security</groupId>
4848
<artifactId>java-security</artifactId>
49-
<version>2.8.10</version>
49+
<version>2.8.11</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.apache.httpcomponents</groupId>

0 commit comments

Comments
 (0)