Skip to content

Commit

Permalink
APPENG-1074: Update to support Spring Boot 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
normanma-tw committed Dec 4, 2024
1 parent c3ceb1d commit 3502493
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.4.0
- 3.3.1
- 3.2.3
env:
SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }}
GRADLE_OPTS: "-Djava.security.egd=file:/dev/./urandom -Dorg.gradle.parallel=true"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

# 1.46.1 - 2024/12/04

### Changed
- Added support for Spring Boot 3.4.
- Dropped support for Spring Boot 3.2.

## 1.46.0 - 2024/11/26

### Added
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 com.github.spotbugs.snom.Effort

buildscript {
if (!project.hasProperty("springBootVersion")) {
ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.2.2"
ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.4.0"
}
dependencies {
classpath "com.avast.gradle:gradle-docker-compose-plugin:0.17.10"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=1.46.0
version=1.46.1
org.gradle.internal.http.socketTimeout=120000

0 comments on commit 3502493

Please sign in to comment.