Skip to content

Commit a036da0

Browse files
committed
chore(deps): Update Spring dependencies (framework to 6.1.8, boot to 3.2.6)
1 parent 73c15aa commit a036da0

File tree

15 files changed

+19
-19
lines changed

15 files changed

+19
-19
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Build latest
6060
run: ./gha_build.sh spring true true
6161
# - name: Build with Spring 6.0.x
62-
# run: ./gha_build.sh spring false false -Dspring.version=6.0.16 -Dspring-security.version=6.1.6 -Ddependency-check.skip=true
62+
# run: ./gha_build.sh spring false false -Dspring.version=6.0.16 -Dspring-security.version=6.1.8 -Ddependency-check.skip=true
6363

6464
build_springboot3:
6565
name: Build and test SpringBoot 3
@@ -75,7 +75,7 @@ jobs:
7575
run: ./gha_build.sh springboot3 true true
7676
# Build with additional supported versions https://spring.io/projects/spring-boot#support
7777
- name: Build with Spring Boot 3.1.x
78-
run: ./gha_build.sh springboot3 false false -Dspringboot.version=3.1.8 -Dspring.version=6.0.16 -Dspringsecurity.version=6.1.6 -Ddependency-check.skip=true
78+
run: ./gha_build.sh springboot3 false false -Dspringboot.version=3.1.8 -Dspring.version=6.0.16 -Dspringsecurity.version=6.1.8 -Ddependency-check.skip=true
7979

8080
# temporarily disabled as Struts is not released at the moment
8181
# build_struts2:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</parent>
1717

1818
<properties>
19-
<spring.version>6.1.6</spring.version>
19+
<spring.version>6.1.8</spring.version>
2020
<spring-security.version>6.2.4</spring-security.version>
2121
</properties>
2222

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<version>2.1.0-SNAPSHOT</version>
1616

1717
<properties>
18-
<spring.version>6.1.6</spring.version>
19-
<springboot.version>3.2.5</springboot.version>
18+
<spring.version>6.1.8</spring.version>
19+
<springboot.version>3.2.6</springboot.version>
2020
<springsecurity.version>6.2.4</springsecurity.version>
2121
</properties>
2222

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77

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

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

Lines changed: 1 addition & 1 deletion
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.1.6</spring.version>
19+
<spring.version>6.1.8</spring.version>
2020
<junit.version>5.10.2</junit.version>
2121
<log4j.version>2.23.1</log4j.version>
2222
</properties>

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

Lines changed: 1 addition & 1 deletion
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.2.5',
12+
'org.springframework.boot:spring-boot-starter-web:3.2.6',
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

Lines changed: 1 addition & 1 deletion
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.2.5</version>
19+
<version>3.2.6</version>
2020
</parent>
2121

2222
<properties>

samples/spring/pet-store/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77

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

samples/spring/pet-store/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</licenses>
2525

2626
<properties>
27-
<spring.version>6.1.6</spring.version>
27+
<spring.version>6.1.8</spring.version>
2828
<log4j.version>2.23.1</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

Lines changed: 1 addition & 1 deletion
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.2.5') {
12+
implementation('org.springframework.boot:spring-boot-starter-web:3.2.6') {
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

Lines changed: 1 addition & 1 deletion
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.2.5</version>
16+
<version>3.2.6</version>
1717
</parent>
1818

1919
<licenses>

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

Lines changed: 1 addition & 1 deletion
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.2.5</version>
16+
<version>3.2.6</version>
1717
</parent>
1818

1919
<licenses>

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

Lines changed: 1 addition & 1 deletion
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.2.5</version>
9+
<version>3.2.6</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>com.amazonaws.serverless.sample</groupId>

samples/springboot3/pet-store/build.gradle

Lines changed: 1 addition & 1 deletion
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.2.5') {
12+
implementation('org.springframework.boot:spring-boot-starter-web:3.2.6') {
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

Lines changed: 1 addition & 1 deletion
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.2.5</version>
16+
<version>3.2.6</version>
1717
</parent>
1818

1919
<licenses>

0 commit comments

Comments
 (0)