This is an automated email from the ASF dual-hosted git repository. ramanathan1504 pushed a commit to branch wire-mock-bump-fail in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 25b4363d2e12b874a2da4b28ca15d96bb426449f Author: Ramanathan <[email protected]> AuthorDate: Thu Jul 23 20:18:19 2026 +0530 Update Dependabot configuration to handle WireMock 3.x changes --- .github/dependabot.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 3c8075a44e..f6410ea1a6 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -140,6 +140,13 @@ updates: versions: [ "[6,)" ] - dependency-name: "org.junit.vintage:*" versions: [ "[6,)" ] + # WireMock 3.x requires Java 11 and Jakarta EE (Jetty 11) + - dependency-name: "org.wiremock:*" + versions: [ "[3,)" ] + # WireMock changed its Group ID from com.github.tomakehurst to org.wiremock in v3. + # We must also ignore the old Group ID so Dependabot doesn't try to auto-migrate it. + - dependency-name: "com.github.tomakehurst:wiremock*" + versions: [ "[3,)" ] - package-ecosystem: maven directories: @@ -218,6 +225,13 @@ updates: # see https://github.com/apache/logging-log4j2/issues/1736 - dependency-name: "org.fusesource.jansi:jansi" update-types: [ "version-update:semver-major" ] + # WireMock 3.x requires Java 11 and Jakarta EE (Jetty 11) + - dependency-name: "org.wiremock:*" + versions: [ "[3,)" ] + # WireMock changed its Group ID from com.github.tomakehurst to org.wiremock in v3. + # We must also ignore the old Group ID so Dependabot doesn't try to auto-migrate it. + - dependency-name: "com.github.tomakehurst:wiremock*" + versions: [ "[3,)" ] - package-ecosystem: github-actions directory: "/"
