Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit 596e203

Browse files
authored
[APPENG-1245] Update to Spring Boot v3.4.6 (#15)
* [APPENG-1245] Spring Boot 3.5 Upgrade * Update to changelog and version * Update build.yml
1 parent 1281ffd commit 596e203

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
max-parallel: 100
1919
matrix:
2020
spring_boot_version:
21-
- 3.4.0
22-
- 3.3.1
21+
- 3.4.6
2322
env:
2423
SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }}
2524
GRADLE_OPTS: "-Djava.security.egd=file:/dev/./urandom -Dorg.gradle.parallel=true"
@@ -83,7 +82,7 @@ jobs:
8382
tar -zcvf all-test-reports-${{ matrix.spring_boot_version }}.tar.gz **/build/reports
8483
if: always()
8584
- name: "Store test results"
86-
uses: actions/upload-artifact@v3
85+
uses: actions/upload-artifact@v4
8786
if: always()
8887
with:
8988
name: all-test-reports-${{ matrix.spring_boot_version }}
@@ -106,7 +105,7 @@ jobs:
106105
- name: "Install packages"
107106
run: apt-get update && apt-get install -y git unzip
108107
- name: Checkout repository
109-
uses: actions/checkout@v3
108+
uses: actions/checkout@v4
110109
- name: Setup Gradle
111110
uses: gradle/gradle-build-action@v2
112111
with:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.5] - 2025-06-20
9+
10+
### Changed
11+
- Added support for Spring Boot 3.4.6
12+
- Removed support for Spring Boot 3.3.
13+
814
## [1.2.4] - 2024-12-09
915

1016
### Changed

build.common.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ dependencies {
4545
annotationProcessor libraries.springBootConfigurationProcessor
4646
testCompileOnly libraries.lombok
4747
testAnnotationProcessor libraries.lombok
48+
testRuntimeOnly libraries.junitPlatformLauncher
4849

4950
compileOnly libraries.spotbugsAnnotations
5051
}

build.libraries.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.3.1'}"
2+
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.4.6'}"
33

44
libraries = [
55
// version defined
@@ -25,5 +25,6 @@ ext {
2525
springBootStarterTest : 'org.springframework.boot:spring-boot-starter-test',
2626
springBootStarterWeb : 'org.springframework.boot:spring-boot-starter-web',
2727
springWeb : 'org.springframework:spring-web',
28+
junitPlatformLauncher : 'org.junit.platform:junit-platform-launcher',
2829
]
2930
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.2.4
1+
version=1.2.5

0 commit comments

Comments
 (0)