From 3f7fb514ce675253867ebf69057fbd4b5ac675e8 Mon Sep 17 00:00:00 2001 From: Heshan Andrews <45477334+Gravewalker666@users.noreply.github.com> Date: Mon, 22 Jul 2024 14:09:52 +0100 Subject: [PATCH] [APPENG-849] Add support for spring boot 3.3 (#25) * [APPENG-849] Add support for spring boot 3.3 * Set default version of spring boot to 3.2.2 --- .github/workflows/build.yml | 4 +--- CHANGELOG.md | 5 +++++ build.gradle | 2 +- gradle.properties | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index efbdc60..7af858e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,10 +18,8 @@ jobs: max-parallel: 100 matrix: spring_boot_version: + - 3.3.1 - 3.2.2 - - 3.1.2 - - 3.0.7 - - 2.7.13 services: zookeeper: image: bitnami/zookeeper:3.5.5 diff --git a/CHANGELOG.md b/CHANGELOG.md index 073cf75..6761da3 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). +## [0.5.3] - 2024-07-16 + +### Changed +- Added support for Spring Boot 3.3. + ## [0.5.2] - 2024-02-27 ### Changed diff --git a/build.gradle b/build.gradle index 78ff68d..5e7d1d1 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ plugins { } ext { - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '2.6.15'}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.2.2'}" } idea.project { diff --git a/gradle.properties b/gradle.properties index fb6ea73..60acae2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.5.2 +version=0.5.3