Skip to content

Commit 8dd09ca

Browse files
authored
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
1 parent 3f7fb51 commit 8dd09ca

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
max-parallel: 100
1919
matrix:
2020
spring_boot_version:
21+
- 3.4.0
2122
- 3.3.1
22-
- 3.2.2
2323
services:
2424
zookeeper:
2525
image: bitnami/zookeeper:3.5.5

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.4] - 2024-12-04
9+
10+
### Changed
11+
- Added support for Spring Boot 3.4.
12+
- Dropped support for Spring Boot 3.2.
13+
814
## [0.5.3] - 2024-07-16
915

1016
### Changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tw-curator
22
![Apache 2](https://img.shields.io/hexpm/l/plug.svg)
3-
![Java 11](https://img.shields.io/badge/Java-11-blue.svg)
3+
![Java 17](https://img.shields.io/badge/Java-17-blue.svg)
44
![Maven Central](https://badgen.net/maven/v/maven-central/com.transferwise.common/tw-curator-starter)
55
[![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)
66
> Use the `@application-engineering-on-call` handle on Slack for help.
@@ -10,7 +10,7 @@
1010
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).
1111

1212
## License
13-
Copyright 2021 TransferWise Ltd.
13+
Copyright 2024 TransferWise Ltd.
1414

1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
}
1616

1717
ext {
18-
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.2.2'}"
18+
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.3.1'}"
1919
}
2020

2121
idea.project {

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.5.3
1+
version=0.5.4

0 commit comments

Comments
 (0)