This repository was archived by the owner on Dec 1, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed
Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 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"
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 :
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres
66to [ 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
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 11ext {
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
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}
Original file line number Diff line number Diff line change 1- version =1.2.4
1+ version =1.2.5
You can’t perform that action at this time.
0 commit comments