From 3502493ea66ee49c5553db889555c42a0c989997 Mon Sep 17 00:00:00 2001 From: Norman Ma Date: Wed, 4 Dec 2024 13:57:16 +0000 Subject: [PATCH] APPENG-1074: Update to support Spring Boot 3.4 --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 6 ++++++ build.gradle | 2 +- gradle.properties | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de179361..2909c40e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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" diff --git a/CHANGELOG.md b/CHANGELOG.md index e928f978..25b234fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/build.gradle b/build.gradle index 8af887f6..939ba1e1 100644 --- a/build.gradle +++ b/build.gradle @@ -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" diff --git a/gradle.properties b/gradle.properties index c4588e21..e4c83bac 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=1.46.0 +version=1.46.1 org.gradle.internal.http.socketTimeout=120000