Skip to content

Commit b04d2eb

Browse files
committed
chore(deps): Update Spring dependencies (framework to 6.2.3, security to 6.4.3, boot to 3.4.3)
1 parent 72c25a1 commit b04d2eb

File tree

15 files changed

+20
-20
lines changed

15 files changed

+20
-20
lines changed

aws-serverless-java-container-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>org.springframework.security</groupId>
6262
<artifactId>spring-security-web</artifactId>
63-
<version>6.4.2</version>
63+
<version>6.4.3</version>
6464
<scope>test</scope>
6565
</dependency>
6666
</dependencies>

aws-serverless-java-container-spring/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
</parent>
1717

1818
<properties>
19-
<spring.version>6.2.2</spring.version>
20-
<spring-security.version>6.4.2</spring-security.version>
19+
<spring.version>6.2.3</spring.version>
20+
<spring-security.version>6.4.3</spring-security.version>
2121
</properties>
2222

2323
<dependencies>

aws-serverless-java-container-springboot3/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<version>2.2.0-SNAPSHOT</version>
1616

1717
<properties>
18-
<spring.version>6.2.2</spring.version>
19-
<springboot.version>3.4.2</springboot.version>
20-
<springsecurity.version>6.4.2</springsecurity.version>
18+
<spring.version>6.2.3</spring.version>
19+
<springboot.version>3.4.3</springboot.version>
20+
<springsecurity.version>6.4.3</springsecurity.version>
2121
</properties>
2222

2323
<dependencies>

aws-serverless-spring-archetype/src/main/resources/archetype-resources/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77

88
dependencies {
99
implementation (
10-
'org.springframework:spring-webmvc:6.2.2',
11-
'org.springframework:spring-context:6.2.2',
10+
'org.springframework:spring-webmvc:6.2.3',
11+
'org.springframework:spring-context:6.2.3',
1212
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
1313
'org.apache.logging.log4j:log4j-core:2.24.3',
1414
'org.apache.logging.log4j:log4j-api:2.24.3',

aws-serverless-spring-archetype/src/main/resources/archetype-resources/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<properties>
1717
<maven.compiler.source>1.8</maven.compiler.source>
1818
<maven.compiler.target>1.8</maven.compiler.target>
19-
<spring.version>6.2.2</spring.version>
19+
<spring.version>6.2.3</spring.version>
2020
<junit.version>5.11.4</junit.version>
2121
<log4j.version>2.24.2</log4j.version>
2222
</properties>

aws-serverless-springboot3-archetype/src/main/resources/archetype-resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99

1010
dependencies {
1111
implementation (
12-
'org.springframework.boot:spring-boot-starter-web:3.4.2',
12+
'org.springframework.boot:spring-boot-starter-web:3.4.3',
1313
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',
1414
)
1515

aws-serverless-springboot3-archetype/src/main/resources/archetype-resources/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.springframework.boot</groupId>
1818
<artifactId>spring-boot-starter-parent</artifactId>
19-
<version>3.4.2</version>
19+
<version>3.4.3</version>
2020
</parent>
2121

2222
<properties>

samples/spring/pet-store/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77

88
dependencies {
99
implementation (
10-
'org.springframework:spring-webmvc:6.2.2',
11-
'org.springframework:spring-context:6.2.2',
10+
'org.springframework:spring-webmvc:6.2.3',
11+
'org.springframework:spring-context:6.2.3',
1212
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
1313
'org.apache.logging.log4j:log4j-core:2.24.3',
1414
'org.apache.logging.log4j:log4j-api:2.24.3',

samples/spring/pet-store/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</licenses>
2525

2626
<properties>
27-
<spring.version>6.2.2</spring.version>
27+
<spring.version>6.2.3</spring.version>
2828
<log4j.version>2.24.3</log4j.version>
2929
<maven.compiler.source>17</maven.compiler.source>
3030
<maven.compiler.target>17</maven.compiler.target>

samples/springboot3/alt-pet-store/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99

1010
dependencies {
1111
implementation (
12-
implementation('org.springframework.boot:spring-boot-starter-web:3.4.2') {
12+
implementation('org.springframework.boot:spring-boot-starter-web:3.4.3') {
1313
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
1414
},
1515
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',

samples/springboot3/alt-pet-store/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>3.4.2</version>
16+
<version>3.4.3</version>
1717
</parent>
1818

1919
<licenses>

samples/springboot3/graphql-pet-store/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>3.4.2</version>
16+
<version>3.4.3</version>
1717
</parent>
1818

1919
<licenses>

samples/springboot3/pet-store-native/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.2</version>
9+
<version>3.4.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>com.amazonaws.serverless.sample</groupId>

samples/springboot3/pet-store/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99

1010
dependencies {
1111
implementation (
12-
implementation('org.springframework.boot:spring-boot-starter-web:3.4.2') {
12+
implementation('org.springframework.boot:spring-boot-starter-web:3.4.3') {
1313
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
1414
},
1515
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',

samples/springboot3/pet-store/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>3.4.2</version>
16+
<version>3.4.3</version>
1717
</parent>
1818

1919
<licenses>

0 commit comments

Comments
 (0)