Skip to content

Commit

Permalink
Add Spring Boot 3.2 support (#84)
Browse files Browse the repository at this point in the history
* Add Spring Boot 3.2 to matrix test suite

* Publish new version. Technically nothing changed in the library itself, but helps with keeping track of the versions that are proven to work with Boot 3.2

* Update dependencies.
  • Loading branch information
tw-peeterkarolin authored Feb 22, 2024
1 parent ae5f5e7 commit c793c42
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.2.2
- 3.1.6
- 3.0.13
- 2.7.18
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.28.3] - 2024-02-20

### Changed

Added Spring Boot 3.2 support. Updated transient dependencies.

## [0.28.2] - 2024-01-25

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions build.libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ ext {
libraries = [
// version defined
awaitility : 'org.awaitility:awaitility:4.2.0',
commonsIo : 'commons-io:commons-io:2.11.0',
commonsIo : 'commons-io:commons-io:2.15.1',
curatorFramework : 'org.apache.curator:curator-framework:5.5.0',
curatorRecipes : 'org.apache.curator:curator-recipes:5.5.0',
guava : 'com.google.guava:guava:32.1.3-jre',
guava : 'com.google.guava:guava:33.0.0-jre',
jakartaValidationApi : 'jakarta.validation:jakarta.validation-api:3.0.2',
javaxValidationApi : "javax.validation:validation-api:2.0.1.Final",
kafkaStreams : 'org.apache.kafka:kafka-streams:3.2.3',
lz4Java : 'org.lz4:lz4-java:1.8.0',
protobufJava : "com.google.protobuf:protobuf-java:${protobufVersion}",
semver4j : "com.vdurmont:semver4j:3.1.0",
snappyJava : 'org.xerial.snappy:snappy-java:1.1.10.4',
snappyJava : 'org.xerial.snappy:snappy-java:1.1.10.5',
spotbugsAnnotations : "com.github.spotbugs:spotbugs-annotations:${spotbugs.toolVersion.get()}",
springBootDependencies : "org.springframework.boot:spring-boot-dependencies:${springBootVersion}",
twBaseUtils : 'com.transferwise.common:tw-base-utils:1.12.1',
Expand Down
3 changes: 1 addition & 2 deletions demoapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ apply from: "$rootProject.rootDir/build.common.gradle"
dependencies {
implementation project(':tw-tkms-starter')


implementation libraries.curatorFramework
implementation libraries.flywayCore
implementation libraries.jakartaValidationApi
implementation libraries.jakartaValidationApi
implementation libraries.javaxValidationApi
implementation libraries.guava
implementation libraries.kafkaStreams
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.28.2
version=0.28.3

0 comments on commit c793c42

Please sign in to comment.