From d74bdfcd94db8ed3379674c9eae553b11b3b1217 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 11:28:54 +0000 Subject: [PATCH] Chore(deps): Bump the test-deps group with 5 updates Bumps the test-deps group with 5 updates: | Package | From | To | | --- | --- | --- | | [org.junit:junit-bom](https://github.com/junit-team/junit-framework) | `5.11.0` | `6.1.2` | | [org.mockito:mockito-junit-jupiter](https://github.com/mockito/mockito) | `5.2.0` | `5.23.0` | | org.apache.logging.log4j:log4j-api | `2.25.5` | `2.26.1` | | org.apache.logging.log4j:log4j-core | `2.25.5` | `2.26.1` | | org.apache.logging.log4j:log4j-slf4j2-impl | `2.25.5` | `2.26.1` | Updates `org.junit:junit-bom` from 5.11.0 to 6.1.2 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r5.11.0...r6.1.2) Updates `org.mockito:mockito-junit-jupiter` from 5.2.0 to 5.23.0 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v5.2.0...v5.23.0) Updates `org.apache.logging.log4j:log4j-api` from 2.25.5 to 2.26.1 Updates `org.apache.logging.log4j:log4j-core` from 2.25.5 to 2.26.1 Updates `org.apache.logging.log4j:log4j-slf4j2-impl` from 2.25.5 to 2.26.1 --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.1.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: test-deps - dependency-name: org.mockito:mockito-junit-jupiter dependency-version: 5.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-deps - dependency-name: org.apache.logging.log4j:log4j-api dependency-version: 2.26.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-deps - dependency-name: org.apache.logging.log4j:log4j-core dependency-version: 2.26.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-deps - dependency-name: org.apache.logging.log4j:log4j-slf4j2-impl dependency-version: 2.26.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-deps ... Signed-off-by: dependabot[bot] --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 1cd2bbb6..032ebbe5 100644 --- a/build.gradle +++ b/build.gradle @@ -33,18 +33,18 @@ dependencies { implementation 'io.github.resilience4j:resilience4j-retry:1.7.1' implementation 'io.github.resilience4j:resilience4j-ratelimiter:1.7.1' - testImplementation(platform('org.junit:junit-bom:5.11.0')) + testImplementation(platform('org.junit:junit-bom:6.1.2')) testImplementation('org.junit.jupiter:junit-jupiter') testImplementation("org.junit.jupiter:junit-jupiter-params") testImplementation('org.junit.jupiter:junit-jupiter-engine') testImplementation('org.junit.platform:junit-platform-engine') testImplementation('org.junit.platform:junit-platform-launcher') testImplementation 'org.hamcrest:hamcrest:3.0' - testImplementation 'org.mockito:mockito-inline:5.2.0' - testImplementation 'org.mockito:mockito-junit-jupiter:5.2.0' - testImplementation 'org.apache.logging.log4j:log4j-api:2.25.5' - testImplementation 'org.apache.logging.log4j:log4j-core:2.25.5' - testImplementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.25.5' + testImplementation 'org.mockito:mockito-inline:5.23.0' + testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' + testImplementation 'org.apache.logging.log4j:log4j-api:2.26.1' + testImplementation 'org.apache.logging.log4j:log4j-core:2.26.1' + testImplementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.26.1' testImplementation 'org.apache.httpcomponents:httpclient:4.5.14' }