Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.4.0
- 3.3.1
- 3.4.6
- 3.5.0
env:
SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }}
GRADLE_OPTS: "-Djava.security.egd=file:/dev/./urandom -Dorg.gradle.parallel=true"
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
tar -zcvf all-test-reports-${{ matrix.spring_boot_version }}.tar.gz **/build/reports
if: always()
- name: "Store test results"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: all-test-reports-${{ matrix.spring_boot_version }}
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.35.0] - 2025-06-18

### Changed
- Added Spring Boot 3.5 support.
- Update Spring Boot 3.4 to 3.4.6.
- Removed Spring Boot 3.3 support.

## [0.34.0] - 2024-12-04

### Changed
Expand Down
1 change: 1 addition & 0 deletions build.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ dependencies {
annotationProcessor libraries.lombok
testCompileOnly libraries.lombok
testAnnotationProcessor libraries.lombok
testRuntimeOnly libraries.junitPlatformLauncher

compileOnly libraries.spotbugsAnnotations
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.eclipse.jgit.api.errors.RefAlreadyExistsException

buildscript {
if (!project.hasProperty("springBootVersion")) {
ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.3.1"
ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.4.6"
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
Expand Down
3 changes: 2 additions & 1 deletion build.libraries.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ext {
protobufVersion = "3.24.0"
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.3.1'}"
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.4.6'}"
libraries = [
// version defined
awaitility : 'org.awaitility:awaitility:4.2.0',
Expand Down Expand Up @@ -48,5 +48,6 @@ ext {
springBootStarterWeb : 'org.springframework.boot:spring-boot-starter-web',
springJdbc : 'org.springframework:spring-jdbc',
springKafka : 'org.springframework.kafka:spring-kafka',
junitPlatformLauncher : 'org.junit.platform:junit-platform-launcher',
]
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.34.0
version=0.35.0
Loading