Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[APPENG-763] Update matrix tests to run with SB 3.2 #45

Merged
merged 5 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.2.2
- 3.1.2
- 3.0.9
- 2.7.14
- 2.6.15
container:
image: azul/zulu-openjdk:17
env:
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).

## [1.0.1] - 2024-02-21

### Changed
* - Added support for Spring Boot 3.2.
- Updated dependencies.

## [1.0.0] - 2023-09-22

### Changed
Expand Down
4 changes: 2 additions & 2 deletions build.libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ ext {
libraries = [
// version defined
commonsText : 'org.apache.commons:commons-text:1.10.0',
guava : 'com.google.guava:guava:32.1.2-jre',
guava : 'com.google.guava:guava:33.0.0-jre',
springBootDependencies : "org.springframework.boot:spring-boot-dependencies:${springBootVersion}",
twBaseUtils : "com.transferwise.common:tw-base-utils:1.9.0",
twBaseUtils : "com.transferwise.common:tw-base-utils:1.12.3",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated to latest in WJP but this version has not been updated to SB 3.2.


// versions managed by spring-boot-dependencies platform
assertjCore : 'org.assertj:assertj-core',
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.0.0
version=1.0.1
Loading