From 2e54d07a93be3cc01244e9e7c5ffbe2954377346 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Sat, 9 Aug 2025 20:35:02 -0400 Subject: [PATCH 01/68] bump spring boot --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c6d431f..10b5383 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.4 + 4.0.0-M1 From b624efa5af26b883367afcc61419b71b2ec0ed03 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Sat, 9 Aug 2025 21:16:02 -0400 Subject: [PATCH 02/68] update package name for new spring boot version --- README.md | 16 ++++++++-------- autoconfigure/pom.xml | 6 +++--- libs/exceptions/pom.xml | 2 +- libs/logging-test/pom.xml | 2 +- libs/logging/pom.xml | 2 +- libs/pom.xml | 4 ++-- pom.xml | 6 +++--- .../pcalouche-spring-boot-starter-app/pom.xml | 8 ++++---- .../pom.xml | 6 +++--- .../pcalouche-spring-boot-starter-test/pom.xml | 4 ++-- spring-boot-starters/pom.xml | 2 +- 11 files changed, 29 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index 736f152..a6091d4 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,8 @@ Spring Forge consists of the following modules | Module | Description | Spring Forge Dependabot Staging Branch | Spring Forge Maven Group Name | |-----------------------------------------------------|-----------------------------------------------------------------------------------------------------|----------------------------------------|-------------------------------------| -| [Spring Forge Starter POM](pom.xml) | The root POM that is intended to be used as the parent POM in applications or libraries. | main-dependabot-staging | dev.pcalouche.springforge.spring35x | -| [autoconfigure](autoconfigure) | This module contains custom Spring Boot autoconfiguration and its supporting classes. | spring34x-dependabot-staging | dev.pcalouche.springforge.spring34x | +| [Spring Forge Starter POM](pom.xml) | The root POM that is intended to be used as the parent POM in applications or libraries. | main-dependabot-staging | dev.pcalouche.springforge.spring40x | +| [autoconfigure](autoconfigure) | This module contains custom Spring Boot autoconfiguration and its supporting classes. | spring35x-dependabot-staging | dev.pcalouche.springforge.spring35x | | [libs](libs) | Contains libraries to support the autoconfiguration. | | | | [spring-boot-starters-module](spring-boot-starters) | Custom Spring Boot Starters that applications or libraries can use to active Spring Forge features. | | | @@ -71,9 +71,9 @@ Add the following to your application's POM to use Spring Forge. - dev.pcalouche.springforge.spring34x + dev.pcalouche.springforge.spring40x spring-forge-starter-parent 1.0.0-SNAPSHOT @@ -97,11 +97,11 @@ Add the following to your application's POM to use Spring Forge. - dev.pcalouche.springforge.spring34x + dev.pcalouche.springforge.spring40x pcalouche-spring-boot-starter-app - dev.pcalouche.springforge.spring34x + dev.pcalouche.springforge.spring40x pcalouche-spring-boot-starter-test test @@ -203,8 +203,8 @@ Spring Forge uses the following branching strategy in order to support multiple | Spring Boot Version | Spring Forge Release Branch | Spring Forge Dependabot Staging Branch | Spring Forge Maven Group Name | |---------------------|-----------------------------|----------------------------------------|---------------------------------------| -| `3.5.x` | `main` | `dependabot-staging-main` | `dev.pcalouche.springforge.spring35x` | -| `3.4.x` | `spring34x-release` | `dependabot-staging-spring34xq` | `dev.pcalouche.springforge.spring34x` | +| `4.0.x` | `main` | `dependabot-staging-main` | `dev.pcalouche.springforge.spring40x` | +| `3.5.x` | `spring35x-release` | `dependabot-staging-spring35x` | `dev.pcalouche.springforge.spring35x` | The `main` branch will contain code for the most recent Spring Boot version supported by Spring Forge. How many other release branches depends on what versions of Spring Boot you want Spring Forge to work with. When a release branch is no longer needed it, it can be marked as readonly and have its dependabot configuration removed. diff --git a/autoconfigure/pom.xml b/autoconfigure/pom.xml index eab460c..c827ccd 100644 --- a/autoconfigure/pom.xml +++ b/autoconfigure/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x spring-forge-starter-parent ${revision} @@ -13,7 +13,7 @@ - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs exceptions ${project.version} true @@ -49,7 +49,7 @@ provided - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs logging-test ${project.version} test diff --git a/libs/exceptions/pom.xml b/libs/exceptions/pom.xml index 1f6682c..50b418c 100644 --- a/libs/exceptions/pom.xml +++ b/libs/exceptions/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs libs-pom ${revision} diff --git a/libs/logging-test/pom.xml b/libs/logging-test/pom.xml index 87a31af..ca785a0 100644 --- a/libs/logging-test/pom.xml +++ b/libs/logging-test/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs libs-pom ${revision} diff --git a/libs/logging/pom.xml b/libs/logging/pom.xml index 6a4db4d..20bef46 100644 --- a/libs/logging/pom.xml +++ b/libs/logging/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs libs-pom ${revision} diff --git a/libs/pom.xml b/libs/pom.xml index b074dc8..bee60bd 100644 --- a/libs/pom.xml +++ b/libs/pom.xml @@ -4,12 +4,12 @@ 4.0.0 - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x spring-forge-starter-parent ${revision} - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs libs-pom pom diff --git a/pom.xml b/pom.xml index 10b5383..3b2dbfd 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x spring-forge-starter-parent ${revision} pom @@ -61,12 +61,12 @@ - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x pcalouche-spring-boot-starter-app ${spring-forge.version} - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x pcalouche-spring-boot-starter-test ${spring-forge.version} diff --git a/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml b/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml index 80891cc..035aaee 100644 --- a/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml +++ b/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x spring-boot-starters-pom ${revision} @@ -13,17 +13,17 @@ - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x autoconfigure ${project.version} - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x pcalouche-spring-boot-starter-logging ${project.version} - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs exceptions ${project.version} diff --git a/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml b/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml index fbd2db0..9b55eac 100644 --- a/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml +++ b/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x spring-boot-starters-pom ${revision} @@ -13,12 +13,12 @@ - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x autoconfigure ${project.version} - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs logging ${project.version} diff --git a/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml b/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml index 3373701..bb3c8ae 100644 --- a/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml +++ b/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x spring-boot-starters-pom ${revision} @@ -13,7 +13,7 @@ - dev.pcalouche.springforge.spring35x.libs + dev.pcalouche.springforge.spring40x.libs logging-test ${project.version} diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml index 4180703..fb7894d 100644 --- a/spring-boot-starters/pom.xml +++ b/spring-boot-starters/pom.xml @@ -4,7 +4,7 @@ 4.0.0 - dev.pcalouche.springforge.spring35x + dev.pcalouche.springforge.spring40x spring-forge-starter-parent ${revision} From 052042e3f57f596ab48aa916f854ded10f38129e Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Fri, 15 Aug 2025 09:28:37 -0400 Subject: [PATCH 03/68] configure mockito agent --- pom.xml | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/pom.xml b/pom.xml index 3b2dbfd..b2234a9 100644 --- a/pom.xml +++ b/pom.xml @@ -240,6 +240,22 @@ + + org.apache.maven.plugins + maven-dependency-plugin + + + + + properties + + + + org.apache.maven.plugins maven-deploy-plugin @@ -275,6 +291,25 @@ + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven-failsafe-plugin.version} + + + + + @{argLine} -javaagent:${org.mockito:mockito-core:jar} -Xshare:off + + org.apache.maven.plugins maven-source-plugin @@ -288,6 +323,25 @@ + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + + + @{argLine} -javaagent:${org.mockito:mockito-core:jar} -Xshare:off + + org.codehaus.mojo exec-maven-plugin @@ -359,6 +413,10 @@ io.spring.javaformat spring-javaformat-maven-plugin + + org.apache.maven.plugins + maven-dependency-plugin + org.apache.maven.plugins maven-enforcer-plugin From 28215088a3bdb95db122e00f2cae95389bb02a26 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Fri, 15 Aug 2025 09:29:32 -0400 Subject: [PATCH 04/68] configure mockito agent --- pom.xml | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/pom.xml b/pom.xml index c6d431f..7198c27 100644 --- a/pom.xml +++ b/pom.xml @@ -240,6 +240,22 @@ + + org.apache.maven.plugins + maven-dependency-plugin + + + + + properties + + + + org.apache.maven.plugins maven-deploy-plugin @@ -275,6 +291,25 @@ + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven-failsafe-plugin.version} + + + + + @{argLine} -javaagent:${org.mockito:mockito-core:jar} -Xshare:off + + org.apache.maven.plugins maven-source-plugin @@ -288,6 +323,25 @@ + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + + + @{argLine} -javaagent:${org.mockito:mockito-core:jar} -Xshare:off + + org.codehaus.mojo exec-maven-plugin @@ -359,6 +413,10 @@ io.spring.javaformat spring-javaformat-maven-plugin + + org.apache.maven.plugins + maven-dependency-plugin + org.apache.maven.plugins maven-enforcer-plugin From 82d8e403b97902edf7092006aaffa8ca7da2fa8a Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Fri, 15 Aug 2025 09:30:14 -0400 Subject: [PATCH 05/68] update minimum maven version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7198c27..e34e30f 100644 --- a/pom.xml +++ b/pom.xml @@ -281,7 +281,7 @@ - [3.8,) + [3.9,) From d81e781d56fa41baaa0096669557640858b65064 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Fri, 15 Aug 2025 09:30:32 -0400 Subject: [PATCH 06/68] update minimum maven version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b2234a9..ce25efe 100644 --- a/pom.xml +++ b/pom.xml @@ -281,7 +281,7 @@ - [3.8,) + [3.9,) From af2e8f226326532d2d48abbadd6d967bd4263da7 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Mon, 18 Aug 2025 08:09:06 -0400 Subject: [PATCH 07/68] Dependabot staging main (#111) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3b2dbfd..ce25efe 100644 --- a/pom.xml +++ b/pom.xml @@ -240,6 +240,22 @@ + + org.apache.maven.plugins + maven-dependency-plugin + + + + + properties + + + + org.apache.maven.plugins maven-deploy-plugin @@ -265,7 +281,7 @@ - [3.8,) + [3.9,) @@ -275,6 +291,25 @@ + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven-failsafe-plugin.version} + + + + + @{argLine} -javaagent:${org.mockito:mockito-core:jar} -Xshare:off + + org.apache.maven.plugins maven-source-plugin @@ -288,6 +323,25 @@ + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + + + @{argLine} -javaagent:${org.mockito:mockito-core:jar} -Xshare:off + + org.codehaus.mojo exec-maven-plugin @@ -359,6 +413,10 @@ io.spring.javaformat spring-javaformat-maven-plugin + + org.apache.maven.plugins + maven-dependency-plugin + org.apache.maven.plugins maven-enforcer-plugin From ba12e2b3c9676d03a17c3c74d5df468ad4591a3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 09:18:57 -0400 Subject: [PATCH 08/68] Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 3d595d5..7191e20 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: Set up JDK 21 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 25c4584..a0cb473 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: Set up JDK 21 From f6e66cacd2031abb3ce08141f68c5a901c30ef8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 11:21:52 -0400 Subject: [PATCH 09/68] Bump actions/checkout from 4 to 5 (#114) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 3d595d5..7191e20 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: Set up JDK 21 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 25c4584..a0cb473 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: Set up JDK 21 From 6e167b6ced424abf265c4493154d2de543bb0dad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 Aug 2025 08:32:35 -0400 Subject: [PATCH 10/68] Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ce25efe..269d040 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-M1 + 4.0.0-M2 From c034b3e7e85fa53538ee11dd29361f3f1b1ca90e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 Aug 2025 12:32:40 +0000 Subject: [PATCH 11/68] Bump org.springframework.boot:spring-boot-starter-parent (#118) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.4 to 3.5.5. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.4...v3.5.5) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 3.5.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e34e30f..91cd18a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.4 + 3.5.5 From 4572ed060656d51c28611e8e4e5242c899441d42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 Aug 2025 08:35:03 -0400 Subject: [PATCH 12/68] Bump actions/setup-java from 4 to 5 (#116) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 7191e20..86e8910 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -23,7 +23,7 @@ jobs: with: show-progress: false - name: Set up JDK 21 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '21' distribution: 'temurin' diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index a0cb473..525afbb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -23,7 +23,7 @@ jobs: with: show-progress: false - name: Set up JDK 21 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '21' distribution: 'temurin' From af454150dec9c46867c7e3f2d7208c7039b1b8f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 Aug 2025 08:35:17 -0400 Subject: [PATCH 13/68] Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 7191e20..86e8910 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -23,7 +23,7 @@ jobs: with: show-progress: false - name: Set up JDK 21 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '21' distribution: 'temurin' diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index a0cb473..525afbb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -23,7 +23,7 @@ jobs: with: show-progress: false - name: Set up JDK 21 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '21' distribution: 'temurin' From 0cf9717eb8f4cacdecd5f193da4d784c3910382d Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Sun, 24 Aug 2025 08:35:50 -0400 Subject: [PATCH 14/68] Dependabot staging main (#120) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version * Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 4 ++-- .github/workflows/continuous-integration.yml | 4 ++-- pom.xml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 3d595d5..86e8910 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -19,11 +19,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: Set up JDK 21 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '21' distribution: 'temurin' diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 25c4584..525afbb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,11 +19,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: Set up JDK 21 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '21' distribution: 'temurin' diff --git a/pom.xml b/pom.xml index ce25efe..269d040 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-M1 + 4.0.0-M2 From dbe4226ed8bc18b9b12d38ddfd52e7c84ba5786c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 07:23:59 -0400 Subject: [PATCH 15/68] Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#122) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 91cd18a..0013372 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ 3.5.1 1.7.2 - 3.5.0 + 3.6.0 0.8.13 2.46.1 0.0.47 From 4dd8eac1d4fa440c71eeb9c4fd00c1110fb8226b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 07:25:37 -0400 Subject: [PATCH 16/68] Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#121) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 269d040..24fc3e0 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ 3.5.1 1.7.2 - 3.5.0 + 3.6.0 0.8.13 2.46.1 0.0.47 From 0a4c36b1c42fc20b0683b04ffb0a6f0208d9128e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 05:35:48 -0400 Subject: [PATCH 17/68] Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#124) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 24fc3e0..56b9b48 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 3.5.1 - 1.7.2 + 1.7.3 3.6.0 0.8.13 2.46.1 From d3b5befaef548a8480af75f9b46fa77b269c74ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 05:36:09 -0400 Subject: [PATCH 18/68] Bump org.springframework.boot:spring-boot-starter-parent (#123) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56b9b48..8d2bb22 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-M2 + 4.0.0-M3 From c32fbc2f7f882ae85e23c91a829251236c335e9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 06:08:20 -0400 Subject: [PATCH 19/68] Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#126) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0013372..55c295f 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 3.5.1 - 1.7.2 + 1.7.3 3.6.0 0.8.13 2.46.1 From 5df6aafebddba93cb7a10a2379ab7079085dcbff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 06:08:36 -0400 Subject: [PATCH 20/68] Bump org.springframework.boot:spring-boot-starter-parent (#125) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 55c295f..346070f 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.5 + 3.5.6 From 41fc131198bd82ac141aeac4e61a6e4f82cac7bb Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Wed, 24 Sep 2025 16:01:03 -0400 Subject: [PATCH 21/68] configure java 25 (#127) --- .github/workflows/continuous-delivery.yml | 4 ++-- .github/workflows/continuous-integration.yml | 4 ++-- pom.xml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 86e8910..8ac3ec8 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -22,10 +22,10 @@ jobs: uses: actions/checkout@v5 with: show-progress: false - - name: Set up JDK 21 + - name: Set up JDK 25 uses: actions/setup-java@v5 with: - java-version: '21' + java-version: '25' distribution: 'temurin' cache: maven - name: Run Maven diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 525afbb..34e1eba 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -22,10 +22,10 @@ jobs: uses: actions/checkout@v5 with: show-progress: false - - name: Set up JDK 21 + - name: Set up JDK 25 uses: actions/setup-java@v5 with: - java-version: '21' + java-version: '25' distribution: 'temurin' cache: maven - name: Run Maven diff --git a/pom.xml b/pom.xml index 269d040..e1d0e07 100644 --- a/pom.xml +++ b/pom.xml @@ -31,7 +31,7 @@ - 21 + 25 3.5.1 - 1.7.2 - 3.5.0 + 1.7.3 + 3.6.0 0.8.13 - 2.46.1 + 3.0.0 0.0.47 From d73d4c4b2d867a54988790c2824c3382cf6c5fb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 07:29:51 -0400 Subject: [PATCH 25/68] Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#134) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4c6aae9..edf25b4 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ - 3.5.1 + 3.6.1 1.7.3 3.6.0 0.8.13 From 6c6d9cfd31dbe8ec9490ff7af79af996555c0993 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 07:30:13 -0400 Subject: [PATCH 26/68] Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#133) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d1b2bdb..69650dd 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ - 3.5.1 + 3.6.1 1.7.3 3.6.0 0.8.13 From e54a24a5e45adc0cc09f1781e887b417d6e78b0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 08:24:10 -0400 Subject: [PATCH 27/68] Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#136) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index edf25b4..1a9f8d3 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 3.6.1 1.7.3 3.6.0 - 0.8.13 + 0.8.14 3.0.0 0.0.47 From 0628ccabf54cec462977199d1db49d439ec3bc45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 08:24:12 -0400 Subject: [PATCH 28/68] Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#135) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 69650dd..f06c2bf 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 3.6.1 1.7.3 3.6.0 - 0.8.13 + 0.8.14 3.0.0 0.0.47 From 548250bba023ff8a9da16df4d9bdc29cd77a33f4 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Mon, 13 Oct 2025 08:27:15 -0400 Subject: [PATCH 29/68] Dependabot staging main (#137) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version * Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#121) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#124) * Bump org.springframework.boot:spring-boot-starter-parent (#123) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.0.0 (#132) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.46.1 to 3.0.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.46.1...lib/3.0.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#133) * Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#135) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d1b2bdb..f06c2bf 100644 --- a/pom.xml +++ b/pom.xml @@ -50,10 +50,10 @@ - 3.5.1 + 3.6.1 1.7.3 3.6.0 - 0.8.13 + 0.8.14 3.0.0 0.0.47 From 5c9a0c151237e79285f89065e802e5e04eb1c79b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 08:23:04 -0400 Subject: [PATCH 30/68] Bump org.codehaus.mojo:exec-maven-plugin from 3.6.1 to 3.6.2 (#139) Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.6.1...3.6.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-version: 3.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f06c2bf..63169c7 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ - 3.6.1 + 3.6.2 1.7.3 3.6.0 0.8.14 From f0752aa465acef74c3e3570477395cfba5d3e6fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 08:23:21 -0400 Subject: [PATCH 31/68] Bump org.codehaus.mojo:exec-maven-plugin from 3.6.1 to 3.6.2 (#140) Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.6.1...3.6.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-version: 3.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a9f8d3..3119142 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ - 3.6.1 + 3.6.2 1.7.3 3.6.0 0.8.14 From a369e38195f173f51d5e7c721b8c8596c585fac0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 07:40:18 -0400 Subject: [PATCH 32/68] Bump org.springframework.boot:spring-boot-starter-parent (#144) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.6 to 3.5.7. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.6...v3.5.7) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 3.5.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3119142..10e2fa8 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.6 + 3.5.7 From 0e179ed3c3833099dca16c507caa3e0ba31ca7ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 07:40:47 -0400 Subject: [PATCH 33/68] Bump org.springframework.boot:spring-boot-starter-parent (#141) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 63169c7..620771b 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-M3 + 4.0.0-RC1 From b401875e2e3ba428a76b6877566037339c7e660d Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Tue, 28 Oct 2025 08:09:05 -0400 Subject: [PATCH 34/68] ignore major version updates of logstash --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2801bc4..6b21c39 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -39,6 +39,8 @@ updates: ignore: - dependency-name: "org.springframework.boot:spring-boot-starter-parent" update-types: [ "version-update:semver-minor", "version-update:semver-major" ] + - dependency-name: "net.logstash.logback:logstash-logback-encoder" + update-types: [ "version-update:semver-major" ] - package-ecosystem: "github-actions" directory: "/" schedule: From 4e64c721568b45e94f8196f4141842f1910402c3 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Tue, 28 Oct 2025 08:14:09 -0400 Subject: [PATCH 35/68] Dependabot staging main (#146) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version * Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#121) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#124) * Bump org.springframework.boot:spring-boot-starter-parent (#123) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.0.0 (#132) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.46.1 to 3.0.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.46.1...lib/3.0.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#133) * Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#135) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.6.1 to 3.6.2 (#139) Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.6.1...3.6.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-version: 3.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#141) --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f06c2bf..620771b 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-M3 + 4.0.0-RC1 @@ -50,7 +50,7 @@ - 3.6.1 + 3.6.2 1.7.3 3.6.0 0.8.14 From ebd2e63a7f70716dd8d5c6e79adf0ede9a4d1783 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Tue, 28 Oct 2025 08:20:18 -0400 Subject: [PATCH 36/68] ignore major version updates of logstash --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2801bc4..6b21c39 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -39,6 +39,8 @@ updates: ignore: - dependency-name: "org.springframework.boot:spring-boot-starter-parent" update-types: [ "version-update:semver-minor", "version-update:semver-major" ] + - dependency-name: "net.logstash.logback:logstash-logback-encoder" + update-types: [ "version-update:semver-major" ] - package-ecosystem: "github-actions" directory: "/" schedule: From 938cc7b9f3078583badf55102406132c6c4ee2d4 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Tue, 28 Oct 2025 08:20:34 -0400 Subject: [PATCH 37/68] Dependabot staging main (#147) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version * Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#121) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#124) * Bump org.springframework.boot:spring-boot-starter-parent (#123) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.0.0 (#132) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.46.1 to 3.0.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.46.1...lib/3.0.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#133) * Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#135) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.6.1 to 3.6.2 (#139) Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.6.1...3.6.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-version: 3.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#141) * ignore major version updates of logstash --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2801bc4..6b21c39 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -39,6 +39,8 @@ updates: ignore: - dependency-name: "org.springframework.boot:spring-boot-starter-parent" update-types: [ "version-update:semver-minor", "version-update:semver-major" ] + - dependency-name: "net.logstash.logback:logstash-logback-encoder" + update-types: [ "version-update:semver-major" ] - package-ecosystem: "github-actions" directory: "/" schedule: From acdf1090950befbadfb3e092c968d3e068e8d131 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 12:55:34 -0500 Subject: [PATCH 38/68] Bump org.springframework.boot:spring-boot-starter-parent (#148) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC1 to 4.0.0-RC2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC1...v4.0.0-RC2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-RC2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 620771b..7121d9b 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-RC1 + 4.0.0-RC2 From 79d0545aee5e3a918db7c2a4136d274cdc24bb16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 12:57:03 -0500 Subject: [PATCH 39/68] Bump net.logstash.logback:logstash-logback-encoder from 8.1 to 9.0 (#142) Bumps [net.logstash.logback:logstash-logback-encoder](https://github.com/logfellow/logstash-logback-encoder) from 8.1 to 9.0. - [Release notes](https://github.com/logfellow/logstash-logback-encoder/releases) - [Commits](https://github.com/logfellow/logstash-logback-encoder/compare/logstash-logback-encoder-8.1...logstash-logback-encoder-9.0) --- updated-dependencies: - dependency-name: net.logstash.logback:logstash-logback-encoder dependency-version: '9.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Phil Calouche --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7121d9b..9e22293 100644 --- a/pom.xml +++ b/pom.xml @@ -45,7 +45,7 @@ 5.4.1 1.14.0 - 8.1 + 9.0 From 53cbbf1f1667d82928beeee9d31414333f1787b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 06:46:32 -0500 Subject: [PATCH 40/68] Bump org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0 (#149) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10e2fa8..c4919c9 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ - 5.4.1 + 5.5.0 1.14.0 8.1 From c86c02858660c4850af175bc3acffd4d232a0d10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:33:39 +0000 Subject: [PATCH 41/68] Bump actions/checkout from 5 to 6 (#151) Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 8ac3ec8..79cdbe7 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: show-progress: false - name: Set up JDK 25 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 34e1eba..64d22e9 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: show-progress: false - name: Set up JDK 25 From 23de464f1f8e5893019055e9a4f73ab248aab327 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 14:33:51 -0500 Subject: [PATCH 42/68] Bump com.diffplug.spotless:spotless-maven-plugin from 3.0.0 to 3.1.0 (#154) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.0.0...lib/3.1.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4919c9..1dd7d6b 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,7 @@ 1.7.3 3.6.0 0.8.14 - 3.0.0 + 3.1.0 0.0.47 From e2dedbac60e481189ccd529a0c5e2b7974b328f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:33:57 +0000 Subject: [PATCH 43/68] Bump org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0 (#152) Bumps org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0. --- updated-dependencies: - dependency-name: org.apache.poi:poi-ooxml dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e22293..de4aaba 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ - 5.4.1 + 5.5.0 1.14.0 9.0 From 5c353824e5d47ee0b1311385528c917e28bf6395 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:34:06 +0000 Subject: [PATCH 44/68] Bump com.diffplug.spotless:spotless-maven-plugin from 3.0.0 to 3.1.0 (#153) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.0.0...lib/3.1.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index de4aaba..d5220bb 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,7 @@ 1.7.3 3.6.0 0.8.14 - 3.0.0 + 3.1.0 0.0.47 From 81d55515eeff7b38b511353c96e6ac77dbd5e040 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:34:26 +0000 Subject: [PATCH 45/68] Bump org.springframework.boot:spring-boot-starter-parent (#155) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC2 to 4.0.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC2...v4.0.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d5220bb..edfc8ff 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-RC2 + 4.0.0 From d701447fa53d606fae668c9a4aac6c074c8aa0b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 14:34:53 -0500 Subject: [PATCH 46/68] Bump actions/checkout from 5 to 6 (#150) Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 8ac3ec8..79cdbe7 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: show-progress: false - name: Set up JDK 25 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 34e1eba..64d22e9 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: show-progress: false - name: Set up JDK 25 From f19a57dbc9ebd6fd56c47221d99fd26aa00b79ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:34:59 +0000 Subject: [PATCH 47/68] Bump org.springframework.boot:spring-boot-starter-parent (#156) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.7 to 3.5.8. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.7...v3.5.8) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 3.5.8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1dd7d6b..5767eed 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.7 + 3.5.8 From c30b73399b764d9467bff9f39c4c7c6b1f969553 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Thu, 20 Nov 2025 14:37:10 -0500 Subject: [PATCH 48/68] Dependabot staging main (#157) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version * Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#121) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#124) * Bump org.springframework.boot:spring-boot-starter-parent (#123) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.0.0 (#132) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.46.1 to 3.0.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.46.1...lib/3.0.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#133) * Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#135) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.6.1 to 3.6.2 (#139) Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.6.1...3.6.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-version: 3.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#141) * ignore major version updates of logstash * Bump org.springframework.boot:spring-boot-starter-parent (#148) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC1 to 4.0.0-RC2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC1...v4.0.0-RC2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-RC2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump net.logstash.logback:logstash-logback-encoder from 8.1 to 9.0 (#142) Bumps [net.logstash.logback:logstash-logback-encoder](https://github.com/logfellow/logstash-logback-encoder) from 8.1 to 9.0. - [Release notes](https://github.com/logfellow/logstash-logback-encoder/releases) - [Commits](https://github.com/logfellow/logstash-logback-encoder/compare/logstash-logback-encoder-8.1...logstash-logback-encoder-9.0) --- updated-dependencies: - dependency-name: net.logstash.logback:logstash-logback-encoder dependency-version: '9.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Phil Calouche * Bump org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0 (#152) Bumps org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0. --- updated-dependencies: - dependency-name: org.apache.poi:poi-ooxml dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 3.0.0 to 3.1.0 (#153) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.0.0...lib/3.1.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#155) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC2 to 4.0.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC2...v4.0.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/checkout from 5 to 6 (#150) Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- pom.xml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 8ac3ec8..79cdbe7 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: show-progress: false - name: Set up JDK 25 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 34e1eba..64d22e9 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: show-progress: false - name: Set up JDK 25 diff --git a/pom.xml b/pom.xml index 620771b..edfc8ff 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0-RC1 + 4.0.0 @@ -43,9 +43,9 @@ - 5.4.1 + 5.5.0 1.14.0 - 8.1 + 9.0 @@ -54,7 +54,7 @@ 1.7.3 3.6.0 0.8.14 - 3.0.0 + 3.1.0 0.0.47 From 54125fd3d3c3385b2e559e2192a2834892e1323b Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Sat, 29 Nov 2025 21:03:35 -0500 Subject: [PATCH 49/68] Dependabot staging main (#159) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version * Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#121) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#124) * Bump org.springframework.boot:spring-boot-starter-parent (#123) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.0.0 (#132) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.46.1 to 3.0.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.46.1...lib/3.0.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#133) * Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#135) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.6.1 to 3.6.2 (#139) Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.6.1...3.6.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-version: 3.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#141) * ignore major version updates of logstash * Bump org.springframework.boot:spring-boot-starter-parent (#148) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC1 to 4.0.0-RC2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC1...v4.0.0-RC2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-RC2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump net.logstash.logback:logstash-logback-encoder from 8.1 to 9.0 (#142) Bumps [net.logstash.logback:logstash-logback-encoder](https://github.com/logfellow/logstash-logback-encoder) from 8.1 to 9.0. - [Release notes](https://github.com/logfellow/logstash-logback-encoder/releases) - [Commits](https://github.com/logfellow/logstash-logback-encoder/compare/logstash-logback-encoder-8.1...logstash-logback-encoder-9.0) --- updated-dependencies: - dependency-name: net.logstash.logback:logstash-logback-encoder dependency-version: '9.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Phil Calouche * Bump org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0 (#152) Bumps org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0. --- updated-dependencies: - dependency-name: org.apache.poi:poi-ooxml dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 3.0.0 to 3.1.0 (#153) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.0.0...lib/3.1.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#155) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC2 to 4.0.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC2...v4.0.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/checkout from 5 to 6 (#150) Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> From 1431c5a9e5c9d8d24274fb636f35febd139d6d78 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Sat, 29 Nov 2025 22:10:11 -0500 Subject: [PATCH 50/68] spring boot 4 updates --- .gitignore | 5 +---- .java-version | 1 + autoconfigure/pom.xml | 2 +- pom.xml | 10 ---------- .../pcalouche-spring-boot-starter-app/pom.xml | 2 +- .../pcalouche-spring-boot-starter-test/pom.xml | 2 +- 6 files changed, 5 insertions(+), 17 deletions(-) create mode 100644 .java-version diff --git a/.gitignore b/.gitignore index a74e5f3..9852f19 100644 --- a/.gitignore +++ b/.gitignore @@ -42,7 +42,4 @@ out/ ### macOS ### .DS_Store .AppleDouble -.LSOverride - -# jenv -.java-version +.LSOverride \ No newline at end of file diff --git a/.java-version b/.java-version new file mode 100644 index 0000000..7273c0f --- /dev/null +++ b/.java-version @@ -0,0 +1 @@ +25 diff --git a/autoconfigure/pom.xml b/autoconfigure/pom.xml index c827ccd..0d43d6b 100644 --- a/autoconfigure/pom.xml +++ b/autoconfigure/pom.xml @@ -40,7 +40,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc true diff --git a/pom.xml b/pom.xml index edfc8ff..07b53a4 100644 --- a/pom.xml +++ b/pom.xml @@ -84,16 +84,6 @@ org.apache.poi poi-ooxml ${apache-poi.version} - - - commons-codec - commons-codec - - - commons-io - commons-io - - org.projectlombok diff --git a/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml b/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml index 035aaee..a7cb987 100644 --- a/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml +++ b/spring-boot-starters/pcalouche-spring-boot-starter-app/pom.xml @@ -37,7 +37,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc diff --git a/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml b/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml index bb3c8ae..04fdd8b 100644 --- a/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml +++ b/spring-boot-starters/pcalouche-spring-boot-starter-test/pom.xml @@ -19,7 +19,7 @@ org.springframework.boot - spring-boot-starter-test + spring-boot-starter-webmvc-test From da77d0b5d29c8ab92539c3fd788d3e2b9211f47b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 07:21:02 -0500 Subject: [PATCH 51/68] Bump org.apache.poi:poi-ooxml from 5.5.0 to 5.5.1 (#160) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index edfc8ff..903d14c 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ - 5.5.0 + 5.5.1 1.14.0 9.0 From 158770d37aa5a6f09591d4322465671c7d94c6ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 07:54:53 -0500 Subject: [PATCH 52/68] Bump org.apache.poi:poi-ooxml from 5.5.0 to 5.5.1 (#161) Bumps org.apache.poi:poi-ooxml from 5.5.0 to 5.5.1. --- updated-dependencies: - dependency-name: org.apache.poi:poi-ooxml dependency-version: 5.5.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5767eed..2950f5e 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ - 5.5.0 + 5.5.1 1.14.0 8.1 From 729c78af278bfaebde42a73fb2d753088e929035 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Mon, 1 Dec 2025 07:57:22 -0500 Subject: [PATCH 53/68] Dependabot staging main (#162) * Bump org.apache.poi:poi-ooxml from 5.4.0 to 5.4.1 (#64) * Bump net.logstash.logback:logstash-logback-encoder from 8.0 to 8.1 (#63) * Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#62) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 (#65) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.3 to 2.44.4. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.3...maven/2.44.4) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.44.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.commons:commons-text from 1.13.0 to 1.13.1 (#66) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#71) * add exclusions to poi * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#78) * Bump org.springframework.boot:spring-boot-starter-parent (#77) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.4 to 2.44.5 (#85) * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.5.1 (#84) * remove plugin versioning managed by spring * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#89) * Bump io.spring.javaformat:spring-javaformat-maven-plugin (#95) * Bump org.springframework.boot:spring-boot-starter-parent (#94) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.0 to 1.7.1 (#93) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.5 to 2.45.0 (#98) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.44.5 to 2.45.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.44.5...lib/2.45.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 2.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 2.45.0 to 2.46.1 (#100) * Bump org.springframework.boot:spring-boot-starter-parent (#101) * Bump org.apache.commons:commons-text from 1.13.1 to 1.14.0 (#106) Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.13.1 to 1.14.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.1 to 1.7.2 (#105) Bumps [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases) - [Commits](https://github.com/mojohaus/flatten-maven-plugin/compare/1.7.1...1.7.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:flatten-maven-plugin dependency-version: 1.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * bump spring boot * configure mockito agent * update minimum maven version * Bump actions/checkout from 4 to 5 (#113) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#117) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-M1 to 4.0.0-M2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-M1...v4.0.0-M2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-M2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/setup-java from 4 to 5 (#115) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (#121) * Bump org.codehaus.mojo:flatten-maven-plugin from 1.7.2 to 1.7.3 (#124) * Bump org.springframework.boot:spring-boot-starter-parent (#123) * Bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.0.0 (#132) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.46.1 to 3.0.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.46.1...lib/3.0.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 3.6.1 (#133) * Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14 (#135) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.13 to 0.8.14. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.13...v0.8.14) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.codehaus.mojo:exec-maven-plugin from 3.6.1 to 3.6.2 (#139) Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.6.1...3.6.2) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-version: 3.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#141) * ignore major version updates of logstash * Bump org.springframework.boot:spring-boot-starter-parent (#148) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC1 to 4.0.0-RC2. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC1...v4.0.0-RC2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0-RC2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump net.logstash.logback:logstash-logback-encoder from 8.1 to 9.0 (#142) Bumps [net.logstash.logback:logstash-logback-encoder](https://github.com/logfellow/logstash-logback-encoder) from 8.1 to 9.0. - [Release notes](https://github.com/logfellow/logstash-logback-encoder/releases) - [Commits](https://github.com/logfellow/logstash-logback-encoder/compare/logstash-logback-encoder-8.1...logstash-logback-encoder-9.0) --- updated-dependencies: - dependency-name: net.logstash.logback:logstash-logback-encoder dependency-version: '9.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Phil Calouche * Bump org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0 (#152) Bumps org.apache.poi:poi-ooxml from 5.4.1 to 5.5.0. --- updated-dependencies: - dependency-name: org.apache.poi:poi-ooxml dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump com.diffplug.spotless:spotless-maven-plugin from 3.0.0 to 3.1.0 (#153) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.0.0...lib/3.1.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-parent (#155) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.0-RC2 to 4.0.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0-RC2...v4.0.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/checkout from 5 to 6 (#150) Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.poi:poi-ooxml from 5.5.0 to 5.5.1 (#160) --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 07b53a4..4fedcdb 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ - 5.5.0 + 5.5.1 1.14.0 9.0 From fad937db57e2d8f6d342d2c52a53bcebde679060 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 07:01:38 -0500 Subject: [PATCH 54/68] Bump org.apache.commons:commons-text from 1.14.0 to 1.15.0 (#164) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4fedcdb..d2269f8 100644 --- a/pom.xml +++ b/pom.xml @@ -44,7 +44,7 @@ 5.5.1 - 1.14.0 + 1.15.0 9.0 From 67c9fff692ffa89e0915572a672b923003d2418f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 07:01:55 -0500 Subject: [PATCH 55/68] Bump org.apache.commons:commons-text from 1.14.0 to 1.15.0 (#165) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2950f5e..380cbf0 100644 --- a/pom.xml +++ b/pom.xml @@ -44,7 +44,7 @@ 5.5.1 - 1.14.0 + 1.15.0 8.1 From db24a973ec789b969e9c60ce2197917a081ca1eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 07:49:46 -0500 Subject: [PATCH 56/68] Bump org.springframework.boot:spring-boot-starter-parent (#169) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 380cbf0..3cae140 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.8 + 3.5.9 From 30b8b458b5a91751d6b6ce75785368b0c2cd0bce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 07:51:22 -0500 Subject: [PATCH 57/68] Bump org.codehaus.mojo:exec-maven-plugin from 3.6.2 to 3.6.3 (#168) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3cae140..2383e29 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ - 3.6.2 + 3.6.3 1.7.3 3.6.0 0.8.14 From 47eff9ebcf5b345c1425c1af00b26571192c12e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 07:51:41 -0500 Subject: [PATCH 58/68] Bump org.codehaus.mojo:exec-maven-plugin from 3.6.2 to 3.6.3 (#167) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d2269f8..d31d555 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ - 3.6.2 + 3.6.3 1.7.3 3.6.0 0.8.14 From f328f9cacdbf3293a4bd0b8ce18b26231787b323 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 07:52:09 -0500 Subject: [PATCH 59/68] Bump org.springframework.boot:spring-boot-starter-parent (#166) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d31d555..7317c88 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.0 + 4.0.1 From a5261dc12d9eb6c2cb396faa6f58f07e11e77cc7 Mon Sep 17 00:00:00 2001 From: Phil Calouche Date: Thu, 1 Jan 2026 15:13:17 -0500 Subject: [PATCH 60/68] remove janino --- README.md | 4 +-- .../logging/LoggingAutoConfiguration.java | 16 ---------- .../logging/LoggingProperties.java | 22 -------------- ...ot.autoconfigure.AutoConfiguration.imports | 3 +- .../src/main/resources/logback-test.xml | 2 -- .../src/main/resources/logback-spring.xml | 29 ++----------------- .../pom.xml | 5 ---- 7 files changed, 4 insertions(+), 77 deletions(-) delete mode 100644 autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingAutoConfiguration.java delete mode 100644 autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingProperties.java diff --git a/README.md b/README.md index a6091d4..45fdd2a 100644 --- a/README.md +++ b/README.md @@ -177,9 +177,7 @@ also protected, so an application is free to extend it to modify the existing be ### Logging Auto Configuration This autoconfiguration is enabled by default if the `pcalouche-spring-boot-starter-app` is on the classpath. The -`pcalouche-spring-boot-starter-app` includes `pcalouche-spring-boot-starter-logging` which bundles . It's only -configurable behavior is setting `springforge.logging.json-format=true` to enable logging in JSON format. This is useful -for consumption by various monitoring tools. +`pcalouche-spring-boot-starter-app` includes `pcalouche-spring-boot-starter-logging` which bundles [Logstash](https://github.com/logfellow/logstash-logback-encoder/blob/main/pom.xml) to make advanced logging features available in applications. ## The Spring Forge Libraries diff --git a/autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingAutoConfiguration.java b/autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingAutoConfiguration.java deleted file mode 100644 index d9458f2..0000000 --- a/autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingAutoConfiguration.java +++ /dev/null @@ -1,16 +0,0 @@ -package dev.pcalouche.springforge.autoconfigure.logging; - -import lombok.extern.slf4j.Slf4j; -import org.springframework.boot.autoconfigure.AutoConfiguration; -import org.springframework.boot.context.properties.EnableConfigurationProperties; - -@AutoConfiguration -@EnableConfigurationProperties(LoggingProperties.class) -@Slf4j -public class LoggingAutoConfiguration { - - public LoggingAutoConfiguration() { - log.info("Applying Spring Forge Logging Auto Configuration."); - } - -} diff --git a/autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingProperties.java b/autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingProperties.java deleted file mode 100644 index abdaf9d..0000000 --- a/autoconfigure/src/main/java/dev/pcalouche/springforge/autoconfigure/logging/LoggingProperties.java +++ /dev/null @@ -1,22 +0,0 @@ -package dev.pcalouche.springforge.autoconfigure.logging; - -import lombok.Getter; -import lombok.Setter; -import org.springframework.boot.context.properties.ConfigurationProperties; -import org.springframework.validation.annotation.Validated; - -@Getter -@Setter -@ConfigurationProperties(prefix = "springforge.logging") -@Validated -public class LoggingProperties { - - /** - * Set to true to enable JSON logging. This activates conditional logic found in the - * logback-spring.xml - * which is in the logging library of the core project. - */ - private boolean jsonFormat; - -} diff --git a/autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports b/autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports index f852ca2..6af47c6 100644 --- a/autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports +++ b/autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports @@ -1,2 +1 @@ -dev.pcalouche.springforge.autoconfigure.controlleradvice.CommonControllerAdviceAutoConfiguration -dev.pcalouche.springforge.autoconfigure.logging.LoggingAutoConfiguration \ No newline at end of file +dev.pcalouche.springforge.autoconfigure.controlleradvice.CommonControllerAdviceAutoConfiguration \ No newline at end of file diff --git a/libs/logging-test/src/main/resources/logback-test.xml b/libs/logging-test/src/main/resources/logback-test.xml index 865a12e..23afe63 100644 --- a/libs/logging-test/src/main/resources/logback-test.xml +++ b/libs/logging-test/src/main/resources/logback-test.xml @@ -24,7 +24,5 @@ - - diff --git a/libs/logging/src/main/resources/logback-spring.xml b/libs/logging/src/main/resources/logback-spring.xml index 3ea7f94..8bd5264 100644 --- a/libs/logging/src/main/resources/logback-spring.xml +++ b/libs/logging/src/main/resources/logback-spring.xml @@ -1,33 +1,8 @@ - - + - - - - - - - - - - ts - - UTC - {"app_name":"${app_name}"} - - - - - - - - + diff --git a/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml b/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml index 9b55eac..ad36aca 100644 --- a/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml +++ b/spring-boot-starters/pcalouche-spring-boot-starter-logging/pom.xml @@ -26,11 +26,6 @@ net.logstash.logback logstash-logback-encoder - - - org.codehaus.janino - janino - From 764995add9ef3101ea2baaca85c623b9d43fcb3c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 08:29:21 -0500 Subject: [PATCH 61/68] Bump org.springframework.boot:spring-boot-starter-parent (#175) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.9 to 3.5.10. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.9...v3.5.10) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 3.5.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2383e29..393d1fe 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.9 + 3.5.10 From f6b0230e739503b1c1336e323565f4e449df7cca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 08:29:33 -0500 Subject: [PATCH 62/68] Bump com.diffplug.spotless:spotless-maven-plugin from 3.1.0 to 3.2.0 (#174) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.1.0...lib/3.2.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 393d1fe..8f1e396 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,7 @@ 1.7.3 3.6.0 0.8.14 - 3.1.0 + 3.2.0 0.0.47 From 44c54afe3354a0dccbbc044dbeeb05569459a7a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 09:06:34 -0500 Subject: [PATCH 63/68] Bump com.diffplug.spotless:spotless-maven-plugin from 3.2.0 to 3.2.1 (#179) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.2.0 to 3.2.1. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.2.0...maven/3.2.1) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.2.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8f1e396..eedaaa7 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,7 @@ 1.7.3 3.6.0 0.8.14 - 3.2.0 + 3.2.1 0.0.47 From 2cd2e63926e954830279ff4bca8b7cf6777da27f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 07:35:17 -0400 Subject: [PATCH 64/68] Bump com.diffplug.spotless:spotless-maven-plugin from 3.2.1 to 3.3.0 (#183) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aea4c23..b67c49c 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,7 @@ 1.7.3 3.6.0 0.8.14 - 3.2.1 + 3.3.0 0.0.47 From 11a0237f215c6f09098a6f18bfba5f615c097e7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 08:26:13 -0400 Subject: [PATCH 65/68] Bump org.springframework.boot:spring-boot-starter-parent (#187) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.11 to 3.5.12. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.11...v3.5.12) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 3.5.12 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b67c49c..731200a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.11 + 3.5.12 From 559ec9a43b87168ecacc8c2bf8d2121006bac001 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 08:26:28 -0400 Subject: [PATCH 66/68] Bump com.diffplug.spotless:spotless-maven-plugin from 3.3.0 to 3.4.0 (#186) Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/lib/3.3.0...maven/3.4.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 731200a..9676b4b 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,7 @@ 1.7.3 3.6.0 0.8.14 - 3.3.0 + 3.4.0 0.0.47 From d07c3c7ba0ff8a33c2cae1ce641a52877cd5c900 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 09:56:30 -0400 Subject: [PATCH 67/68] Bump org.springframework.boot:spring-boot-starter-parent (#193) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.12 to 3.5.13. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.12...v3.5.13) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 3.5.13 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9676b4b..bfd8ede 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.12 + 3.5.13 From c247475a9e411e21679d212e28ae5341f961dde9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 12:07:07 -0400 Subject: [PATCH 68/68] Bump org.springframework.boot:spring-boot-starter-parent (#197) Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.13 to 3.5.14. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.13...v3.5.14) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 3.5.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a950db4..3171d8a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.13 + 3.5.14