From 3564691b86d4e7d46aa26bd3d56d18bf6b46582b Mon Sep 17 00:00:00 2001 From: Norman Ma Date: Wed, 4 Dec 2024 13:42:23 +0000 Subject: [PATCH 1/3] APPENG-1074: Update to run with Spring Boot 3.4 --- .github/workflows/build.yml | 1 + CHANGELOG.md | 5 +++++ build.libraries.gradle | 2 +- gradle.properties | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39f07a7..20dc8d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,7 @@ jobs: max-parallel: 100 matrix: spring_boot_version: + - 3.4.0 - 3.3.1 - 3.2.2 container: diff --git a/CHANGELOG.md b/CHANGELOG.md index d59f11d..628167c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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). +## [2.0.2] - 2024-12-04 + +### Changed +* Added support for Spring Boot 3.4. + ## [2.0.1] - 2024-07-16 ### Changed diff --git a/build.libraries.gradle b/build.libraries.gradle index d710663..29043e0 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,5 +1,5 @@ ext { - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.2.2'}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.4.0'}" libraries = [ // version defined diff --git a/gradle.properties b/gradle.properties index 332be40..547d085 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=2.0.1 +version=2.0.2 From f0040150f961e09b4370032bd13732a12ff25538 Mon Sep 17 00:00:00 2001 From: Norman Ma Date: Wed, 4 Dec 2024 13:53:07 +0000 Subject: [PATCH 2/3] Remove 3.2.x matrix --- .github/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 20dc8d3..197137d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,6 @@ jobs: spring_boot_version: - 3.4.0 - 3.3.1 - - 3.2.2 container: image: azul/zulu-openjdk:17 env: From f6210f9679038ed1af0117a6a0fb37dc9070d476 Mon Sep 17 00:00:00 2001 From: Norman Ma Date: Fri, 6 Dec 2024 15:36:38 +0000 Subject: [PATCH 3/3] Revert default spring boot version to 3.3.1 --- build.libraries.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.libraries.gradle b/build.libraries.gradle index 29043e0..fb997a7 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,5 +1,5 @@ ext { - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.4.0'}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.3.1'}" libraries = [ // version defined