From 609dd557f2e58bd455056518269233e06e182a70 Mon Sep 17 00:00:00 2001 From: Lukas Cardot Date: Mon, 27 Feb 2023 11:48:00 +0100 Subject: [PATCH 1/3] chore: modify compatiblity matrix to reflect Sprint Boot 3 changes --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef81dec..44ddf50 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Opinionated Spring Boot starter that handles some Spring and AWS common exceptio ## Requirements -This starter requires Java 11 and is compatible up to and including Java 17. +This starter requires Java 17 and is compatible up to and including Java 19. It also requires a Spring Boot **MVC** web application. @@ -16,6 +16,7 @@ It also requires a Spring Boot **MVC** web application. | Spring Boot | starter-errors | Kotlin | |:-----------:|:--------------:|:------:| +| 3.0 | 9.x | 1.8 | | 2.7 | 8.x | 1.7 | | 2.6 | 7.x | 1.6 | | 2.5 | 5.x | 1.5 | From eb63ab6a62de840f6f47ce305cd4a0e4b3080aa2 Mon Sep 17 00:00:00 2001 From: Lukas Cardot Date: Mon, 27 Feb 2023 11:48:42 +0100 Subject: [PATCH 2/3] chore: adjust release and snapshot actions to use java 17 --- .github/workflows/release.yml | 2 +- .github/workflows/snapshot.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 431ce1d..571e2a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: uses: actions/setup-java@v3 with: distribution: "temurin" - java-version: 11 + java-version: 17 - name: Check version not snapshot run: | PROJECT_VERSION=$(./gradlew -q printVersion | tail -n 1) diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index 04f38f9..dc4775f 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -13,7 +13,7 @@ jobs: uses: actions/setup-java@v3 with: distribution: "temurin" - java-version: 11 + java-version: 17 - name: Check version is snapshot run: | PROJECT_VERSION=$(./gradlew -q printVersion | tail -n 1) From 886fdcbe1f0795626ee2f7e623c764b126e11f5f Mon Sep 17 00:00:00 2001 From: Lukas Cardot Date: Mon, 27 Feb 2023 11:49:06 +0100 Subject: [PATCH 3/3] chore: add build for java 19 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c0717be..89a58a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - java: [ 17 ] + java: [ 17, 19 ] name: Java ${{ matrix.java }} steps: - uses: actions/checkout@v3