From c236e2d76aeeb1b8be726ff91382fd088b9145ee Mon Sep 17 00:00:00 2001 From: Norman Ma Date: Mon, 9 Dec 2024 14:20:47 +0000 Subject: [PATCH 1/2] APPENG-1074: Support for Spring Boot 3.4 --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 6 ++++++ build.libraries.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 32bf1e2..e092b0a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,8 @@ jobs: max-parallel: 100 matrix: spring_boot_version: + - 3.4.0 - 3.3.1 - - 3.2.2 container: image: azul/zulu-openjdk:17 env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 03d9874..164b340 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). +## [0.1.1] - 2024-12-09 + +### Changed +- Added support for Spring Boot 3.4. +- Dropped support for Spring Boot 3.2. + ## [0.1.0] - 2024-07-22 ### Changed diff --git a/build.libraries.gradle b/build.libraries.gradle index 14f3ca8..e1f1cdd 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.3.1"}" libraries = [ // version defined diff --git a/gradle.properties b/gradle.properties index ce0c6a9..a646c94 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.1.0 \ No newline at end of file +version=0.1.1 \ No newline at end of file From 03aa8983c5a6e6745e3772a08267dbd4ff0c78ff Mon Sep 17 00:00:00 2001 From: Norman Ma Date: Tue, 10 Dec 2024 15:02:39 +0000 Subject: [PATCH 2/2] Bump to SB3.3.6 for compatibility matrix --- .github/workflows/build.yml | 2 +- build.libraries.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e092b0a..7347627 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: matrix: spring_boot_version: - 3.4.0 - - 3.3.1 + - 3.3.6 container: image: azul/zulu-openjdk:17 env: diff --git a/build.libraries.gradle b/build.libraries.gradle index e1f1cdd..02521f6 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,5 +1,5 @@ ext { - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: "3.3.1"}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: "3.3.6"}" libraries = [ // version defined