From 8dd09cac8636d2f37911d4abc8cd4fdaaa794d35 Mon Sep 17 00:00:00 2001 From: Norman Ma <112887428+normanma-tw@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:57:33 +0000 Subject: [PATCH] APPENG-1074: Update to support Spring Boot 3.4 (#26) * APPENG-1074: Update to support Spring Boot 3.4 * Set default spring boot version of lib to 3.3.1 --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- build.gradle | 2 +- gradle.properties | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7af858e..087fd40 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 services: zookeeper: image: bitnami/zookeeper:3.5.5 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6761da3..262dfad 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.5.4] - 2024-12-04 + +### Changed +- Added support for Spring Boot 3.4. +- Dropped support for Spring Boot 3.2. + ## [0.5.3] - 2024-07-16 ### Changed diff --git a/README.md b/README.md index aabd863..227c44f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # tw-curator ![Apache 2](https://img.shields.io/hexpm/l/plug.svg) -![Java 11](https://img.shields.io/badge/Java-11-blue.svg) +![Java 17](https://img.shields.io/badge/Java-17-blue.svg) ![Maven Central](https://badgen.net/maven/v/maven-central/com.transferwise.common/tw-curator-starter) [![Owners](https://img.shields.io/badge/team-AppEng-blueviolet.svg?logo=wise)](https://transferwise.atlassian.net/wiki/spaces/EKB/pages/2520812116/Application+Engineering+Team) [![Slack](https://img.shields.io/badge/slack-sre--guild-blue.svg?logo=slack)](https://app.slack.com/client/T026FB76G/CLR1U8SNS) > Use the `@application-engineering-on-call` handle on Slack for help. @@ -10,7 +10,7 @@ Documentation can be found in the [docs](docs/) directory, or if you're a Wiser, on the [developer portal](https://dev.tw.ee/docs/default/Component/tw-curator). ## License -Copyright 2021 TransferWise Ltd. +Copyright 2024 TransferWise Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/build.gradle b/build.gradle index 5e7d1d1..18755d6 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ plugins { } ext { - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.2.2'}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.3.1'}" } idea.project { diff --git a/gradle.properties b/gradle.properties index 60acae2..5f8379d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.5.3 +version=0.5.4