Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Bump the dependencies group across 1 directory with 22 updates #1964

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 15, 2024

Bumps the dependencies group with 21 updates in the / directory:

Package From To
com.fasterxml.jackson.core:jackson-annotations 2.17.1 2.17.2
com.fasterxml.jackson.core:jackson-core 2.17.1 2.17.2
com.fasterxml.jackson.dataformat:jackson-dataformat-xml 2.17.1 2.17.2
com.github.dasniko:testcontainers-keycloak 3.3.1 3.4.0
com.google.guava:guava 33.2.0-jre 33.2.1-jre
org.eclipse.jetty:jetty-servlet 10.0.21 10.0.22
org.jooq:jooq 3.19.8 3.19.10
org.jooq:jooq-codegen 3.19.8 3.19.10
org.jooq:jooq-meta 3.19.8 3.19.10
org.junit:junit-bom 5.10.2 5.10.3
org.junit.platform:junit-platform-suite 1.10.2 1.10.3
org.keycloak:keycloak-servlet-filter-adapter 24.0.4 24.0.5
io.github.git-commit-id:git-commit-id-maven-plugin 8.0.2 9.0.1
org.apache.maven.plugins:maven-jar-plugin 3.4.1 3.4.2
org.apache.maven.plugins:maven-dependency-plugin 3.6.1 3.7.1
org.apache.maven.plugins:maven-shade-plugin 3.5.3 3.6.0
org.owasp:dependency-check-maven 9.2.0 10.0.2
org.apache.maven.plugins:maven-surefire-plugin 3.2.5 3.3.1
org.apache.maven.plugins:maven-release-plugin 3.0.1 3.1.1
org.apache.maven.plugins:maven-javadoc-plugin 3.6.3 3.7.0
org.sonatype.plugins:nexus-staging-maven-plugin 1.6.13 1.7.0

Updates com.fasterxml.jackson.core:jackson-annotations from 2.17.1 to 2.17.2

Commits

Updates com.fasterxml.jackson.core:jackson-core from 2.17.1 to 2.17.2

Commits
  • a6f49ca [maven-release-plugin] prepare release jackson-core-2.17.2
  • 3d41b1c Prepare for 2.17.2 release
  • 55261be Fix #1308: allow trailing dot for "Stringified numbers" (#1309)
  • 449ed86 Update javadoc to clarify buffering of JsonParser.getText(Writer) wrt #1288
  • 27edeb7 Back to snapshot deps
  • 948e63d [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates com.fasterxml.jackson.dataformat:jackson-dataformat-xml from 2.17.1 to 2.17.2

Commits

Updates com.fasterxml.jackson.core:jackson-core from 2.17.1 to 2.17.2

Commits
  • a6f49ca [maven-release-plugin] prepare release jackson-core-2.17.2
  • 3d41b1c Prepare for 2.17.2 release
  • 55261be Fix #1308: allow trailing dot for "Stringified numbers" (#1309)
  • 449ed86 Update javadoc to clarify buffering of JsonParser.getText(Writer) wrt #1288
  • 27edeb7 Back to snapshot deps
  • 948e63d [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates com.fasterxml.jackson.core:jackson-databind from 2.17.1 to 2.17.2

Commits

Updates com.fasterxml.jackson.dataformat:jackson-dataformat-xml from 2.17.1 to 2.17.2

Commits

Updates com.github.dasniko:testcontainers-keycloak from 3.3.1 to 3.4.0

Release notes

Sourced from com.github.dasniko:testcontainers-keycloak's releases.

v3.4.0

What's Changed

Full Changelog: dasniko/testcontainers-keycloak@v.3.3.1...3.4.0

Bump to Keycloak 19.0.0

No release notes provided.

Commits
  • 9ac6f36 [maven-release-plugin] prepare release 3.4.0
  • 5c9e33d upgrade Keycloak image to 25
  • b60a771 docs to 25
  • 0d020e6 update dependencies
  • 317a2bc don't use client auth on http management port (#146)
  • 861ffe6 new truststore config (#144)
  • 6494808 add new video about this testcontainer
  • 455a5df "fix" (re-enable) mutual-tls-required tests with custom wait strategy (log)
  • 9a9f386 adjust trigger
  • d2780aa fix doc
  • Additional commits viewable in compare view

Updates com.google.guava:guava from 33.2.0-jre to 33.2.1-jre

Release notes

Sourced from com.google.guava:guava's releases.

33.2.1

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.2.1-jre</version>
  <!-- or, for Android: -->
  <version>33.2.1-android</version>
</dependency>

Jar files

Guava requires one runtime dependency, which you can download here:

Javadoc

JDiff

Changelog

  • net: Changed InetAddress-String conversion methods to preserve the IPv6 scope ID if present. The scope ID can be necessary for IPv6-capable devices with multiple network interfaces. However, preserving it can also lead to problems for callers that rely on the returned values not to include the scope ID:
    • Callers might compensate for the old behavior of the methods by appending the scope ID to a returned string themselves. If so, you can update your code to stop doing so at the same time as you upgrade Guava. Of, if your code might run against multiple versions of Guava, you can check whether Guava has included a scope ID before you add one yourself.
    • Callers might pass the returned string to another system that does not understand scope IDs. If so, you can strip the scope ID off, whether by truncating the string form at a % character (leaving behind any trailing ] character in the case of forUriString) or by replacing the returned InetAddress with a new instance constructed by calling InetAddress.getByAddress(addr).
    • java.net.InetAddress validates any provided scope ID against the interfaces available on the machine. As a result, methods in InetAddresses may now fail if the scope ID fails validation.
      • Notable cases in which this may happen include:
        • if the code runs in an Android app without networking permission
        • if code passes InetAddress instances or strings across devices
      • If this is not the behavior that you want, then you can strip off the scope ID from the input string before passing it to Guava, as discussed above. (3f61870ac6)
Commits

Updates org.eclipse.jetty:jetty-servlet from 10.0.21 to 10.0.22

Updates org.jooq:jooq from 3.19.8 to 3.19.10

Updates org.jooq:jooq-codegen from 3.19.8 to 3.19.10

Updates org.jooq:jooq-meta from 3.19.8 to 3.19.10

Updates org.jooq:jooq-codegen from 3.19.8 to 3.19.10

Updates org.jooq:jooq-meta from 3.19.8 to 3.19.10

Updates org.junit:junit-bom from 5.10.2 to 5.10.3

Release notes

Sourced from org.junit:junit-bom's releases.

JUnit 5.10.3 = Platform 1.10.3 + Jupiter 5.10.3 + Vintage 5.10.3

See Release Notes.

Full Changelog: junit-team/junit5@r5.10.2...r5.10.3

Commits
  • 55d1232 Release 5.10.3
  • 4455093 Remove accidental heading
  • b86a681 Remove JDK 21 as it's no longer available via Oracle's setup-java step
  • bc1608c Clean up release notes
  • 316ed31 Use Liberica for JDK 8 for compatibility with Apple Silicon
  • ad7c5dd Update copyright headers to 2024
  • 6c663b1 Use same default seed for method and class ordering (#3821)
  • d29e3eb Fix NPE when deserializing TestIdentifier (#3820)
  • f936c01 Fix class-level execution conditions on GraalVM (#3785)
  • 76b7c05 Allow GraalVmStarterTests to run remotely on Test Distribution agents
  • Additional commits viewable in compare view

Updates org.junit.platform:junit-platform-suite from 1.10.2 to 1.10.3

Commits

Updates org.keycloak:keycloak-servlet-filter-adapter from 24.0.4 to 24.0.5

Updates io.github.git-commit-id:git-commit-id-maven-plugin from 8.0.2 to 9.0.1

Release notes

Sourced from io.github.git-commit-id:git-commit-id-maven-plugin's releases.

Version 9.0.1 is finally there and includes various bug-fixes and improvements :-)

New Features / Bug-Fixes:

The main key-aspects that have been improved or being worked on are the following:

  • #754 / #760: Fix an issue where empty git.properties had been generated in submodules when injectAllReactorProjects=true

  • bump several maven plugins

    • bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.3.1 to 3.4.0
    • bump org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.0
    • bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0
    • bump org.apache.maven.plugins:maven-clean-plugin from 3.3.2 to 3.4.0
    • bump org.apache.maven.plugins:maven-dependency-plugin from 3.6.1 to 3.7.1

Getting the latest release

The plugin is available from Maven Central (see here), so you don't have to configure any additional repositories to use this plugin. All you need to do is to configure it inside your project as dependency:

<dependency>
    <groupId>io.github.git-commit-id</groupId>
    <artifactId>git-commit-id-maven-plugin</artifactId>
    <version>9.0.1</version>
</dependency>

Getting the latest snapshot (build automatically)

If you can't wait for the next release, you can also get the latest snapshot version from sonatype, that is being deployed automatically by github actions:

<pluginRepositories>
    <pluginRepository>
        <id>sonatype-snapshots</id>
        <name>Sonatype Snapshots</name>
         <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
    </pluginRepository>
</pluginRepositories>

Even though the github actions will only deploy a new snapshot once all tests have finished, it is recommended to rely on the released and more stable version.

Known Issues / Limitations:

  • This plugin is unfortunately not working with Heroku which is due to the fact how Heroku works. In summary Heroku does not copy over the .git-repository but in order to determine the git properties this plugin relies on the fact that it has access to the git-repository. A somewhat workaround to get some information is outlined in ktoso/maven-git-commit-id-plugin#279
  • Using maven's plugin prefix resolution (e.g. mvn com.test.plugins:myPlugin:myMojo) might result in unresolved properties even with <injectAllReactorProjects>true</injectAllReactorProjects>. Please refer to git-commit-id/maven-git-commit-id-plugin#287 or git-commit-id/maven-git-commit-id-plugin#413 for details and potential workarounds

Reporting Problems

If you find any problem with this plugin, feel free to report it here

Version 9.0.0 is finally there and includes various bug-fixes and improvements :-)

⚠️ This is a potentially breaking release. Read the release-notes carefully ⚠️

Potential Breaking changes:

The main key-aspects that might cause a breakage when migrating to the new version:

... (truncated)

Commits
  • cba7dc5 [maven-release-plugin] prepare release v9.0.1
  • 08004a2 Merge pull request #760 from git-commit-id/754
  • 1238467 fix checkstyle
  • cb2490d git-commit-id/git-commit-id-maven-plugin#754: Fix a...
  • 38b9b4e Merge pull request #759 from git-commit-id/dependabot/maven/org.apache.maven....
  • 977f148 Merge pull request #758 from git-commit-id/dependabot/maven/org.apache.maven....
  • 9867c07 Merge pull request #756 from git-commit-id/dependabot/maven/org.apache.maven....
  • 20f53da Merge pull request #755 from git-commit-id/dependabot/maven/org.apache.maven....
  • 98c058e build(deps): bump org.apache.maven.plugins:maven-dependency-plugin
  • 345cf3d build(deps): bump org.apache.maven.plugins:maven-clean-plugin
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2

Release notes

Sourced from org.apache.maven.plugins:maven-jar-plugin's releases.

3.4.2

🐛 Bug Fixes

👻 Maintenance

Commits
  • 95007e8 [maven-release-plugin] prepare release maven-jar-plugin-3.4.2
  • 99584ce Build with Maven 4
  • e9c98a4 [MJAR-310] fixed toolchain version detection when toolchain paths contain whi...
  • a5554bb [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates org.apache.maven.plugins:maven-dependency-plugin from 3.6.1 to 3.7.1

Release notes

Sourced from org.apache.maven.plugins:maven-dependency-plugin's releases.

3.7.1

🐛 Bug Fixes

📦 Dependency updates

👻 Maintenance

3.7.0

🚀 New features and improvements

🐛 Bug Fixes

📦 Dependency updates

... (truncated)

Commits
  • e8c1a62 [maven-release-plugin] prepare release maven-dependency-plugin-3.7.1
  • d656b03 [MDEP-945] Fix documentation about get goal
  • 82a9d60 [MDEP-940] Use Resolver API instead of m-a-t for resolving artifacts
  • 8e1f1b5 [MDEP-943] Fix appendOutput option
  • e06630c Bump org.apache.maven.shared:maven-common-artifact-filters
  • a11d253 [maven-release-plugin] prepare for next development iteration
  • f975bcb [maven-release-plugin] prepare release maven-dependency-plugin-3.7.0
  • dbdda0c [MDEP-941] Deprecate dependency:sources in favor of dependency:resolve-sources
  • f090b5e [MDEP-838] "Artifact has not been packaged yet" error message is not very hel...
  • 9902456 [MDEP-669] Optimize the documentation of <outputProperty> of build-classpath ...
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-shade-plugin from 3.5.3 to 3.6.0

Commits
  • 9a572e2 [maven-release-plugin] prepare release maven-shade-plugin-3.6.0
  • ade2e35 [MSHADE-428] Prevent null value in array of transformers (#229)
  • b573b8c [MSHADE-478] Extra JARs feature (#228)
  • 199ffae Drop the cruft (#225)
  • 912a81d Bump maven-gh-actions-shared to v4
  • 80e4420 [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates org.owasp:dependency-check-maven from 9.2.0 to 10.0.2

Release notes

Sourced from org.owasp:dependency-check-maven's releases.

Version 10.0.2

Refer to the CHANGELOG.md for information about improvements and upgrade notes.

Version 10.0.1

Refer to the CHANGELOG.md for information about improvements and upgrade notes.

Version 10.0.0

Refer to the CHANGELOG.md for information about improvements and upgrade notes.

Changelog

Sourced from org.owasp:dependency-check-maven's changelog.

Version 10.0.2 (2024-07-06)

Mandatory Upgrade - due to older versions of dependency-check causing numerous, spurious requests that end in processing failures, this upgrade is mandatory so that the NVD can differentiate valid requests and block the old clients.

  • build(deps): bump open-vulnerability-clients (#6810)
  • fix(db): #6788 removing redundant db index "idxVulnerability" on "vulnerability.cve" (#6807)
  • docs: Further improve formatting and docs of H2 database caching strats (#6804)
  • fix: update_vulnerability in dbStatements_oracle.properties (#6803)
  • fix: fix NPE (#6778)
  • fix: add hint to resolve false negative (#6802)
  • chore: update configure (#6794)

See the full listing of changes.

Version 10.0.1 (2024-07-02)

  • build(deps): bump open-vulnerability-client (#6772)
  • fix: remove debug logging (#6770)
  • fix: postgresql column count error (#6773)
  • fix: mssql column name and version (#6761)
  • docs: update supported versions (#6771)

See the full listing of changes.

Version 10.0.0 (2024-07-01)

  • breaking change: upgrade to dotnet 8.0 (#6580)
    • Users of the AssemblyAnalyzer must upgrade/utilize dotnet 8 to analyze assemblies
  • feat: fix the NVD API related errors by adding cvssV4 support (#6756)
  • fix: avoid escaping unnecessary chars in HTML report suppression regexes (#6749)
  • fix: #6688 Trim version number when parsin POM (#6705)
  • fix: change request if lockfile is file v3 (#6690)
  • fix: skip pyproject.toml unless it contains tool.poetry before ensuring lockfiles (#6681)

See the full listing of changes.

Commits
  • b7b030c build: prepare release v10.0.2
  • f22ebf1 docs: mandatory upgrade notice
  • bcbbe1c docs: release 10.0.2
  • 1b3398d build(deps): bump open-vulnerability-clients (#6810)
  • 06e39fc fix(db): #6788 removing redundant db index "idxVulnerability" on "vulnerabili...
  • 4926cd2 build(deps): bump org.apache.maven.plugins:maven-dependency-plugin from 3.7.0...
  • 3bfb398 docs: Further improve formatting and docs of H2 database caching strats (#6804)
  • 51f84ff fix: update_vulnerability in dbStatements_oracle.properties (#6803)
  • 3f0ffa9 fix: fix NPE (#6778)
  • 9fbb996 fix: add hint to resolve false negative (#6802)
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.1

Release notes

Sourced from org.apache.maven.plugins:maven-surefire-plugin's releases.

3.3.0

Release Notes - Maven Surefire - Version 3.3.0

What's Changed

... (truncated)

Commits
  • 7e45620 [maven-release-plugin] prepare release surefire-3.3.1
  • 561b4ca [SUREFIRE-2250] Surefire Test Report Schema properties element is not consist...
  • 6aaea8a [SUREFIRE-1360] Ability to disable properties for successfully passed tests
  • c17b92b Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24
  • 748d9dc Fix typos
  • f8092e9 Improve time units
  • c670335 [SUREFIRE-1934] Ability to disable system-out/system-err for successfully pas...
  • bce1b39 Improve docs of linkXRef
  • 3c49ebd Bump org.htmlunit:htmlunit from 4.2.0 to 4.3.0
  • 6ff0f83 [SUREFIRE-2242] Plain test report does not include names of the skipped tests
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.1

Release notes

Sourced from org.apache.maven.plugins:maven-release-plugin's releases.

3.1.0

🚀 New features and improvements

🐛 Bug Fixes

📦 Dependency updates

👻 Maintenance

Commits
  • 4f350d4 [maven-release-plugin] prepare release maven-release-3.1.1
  • 06f6de4 [MRELEASE-1153] Revert parts of MRELEASE-1109 (8dfcb47996320af5e6f0b2d50eac20...
  • 985d0bc [MRELEASE-1149] Current release of the plugin has configuration docs missing
  • 47e94b4 [maven-release-plugin] prepare for next development iteration
  • f2f9f4e [maven-release-plugin] prepare release maven-release-3.1.0
  • e109d3b Bump scmVersion from 2.0.1 to 2.1.0
  • 5f794a1 Bump org.apache.maven.shared:maven-invoker from 3.2.0 to 3.3.0
  • 28201bb Bump org.codehaus.plexus:plexus-interactivity-api from 1.2 to 1.3
  • 8547606 Bump org.codehaus.plexus:plexus-interpolation from 1.26 to 1.27
  • adf6aaf Bump org.xmlunit:xmlunit-core from 2.9.1 to 2.10.0
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0

Release notes

Sourced from org.apache.maven.plugins:maven-javadoc-plugin's releases.

3.7.0

Bumps the dependencies group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.fasterxml.jackson.core:jackson-annotations](https://github.com/FasterXML/jackson) | `2.17.1` | `2.17.2` |
| [com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core) | `2.17.1` | `2.17.2` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) | `2.17.1` | `2.17.2` |
| [com.github.dasniko:testcontainers-keycloak](https://github.com/dasniko/testcontainers-keycloak) | `3.3.1` | `3.4.0` |
| [com.google.guava:guava](https://github.com/google/guava) | `33.2.0-jre` | `33.2.1-jre` |
| org.eclipse.jetty:jetty-servlet | `10.0.21` | `10.0.22` |
| org.jooq:jooq | `3.19.8` | `3.19.10` |
| org.jooq:jooq-codegen | `3.19.8` | `3.19.10` |
| org.jooq:jooq-meta | `3.19.8` | `3.19.10` |
| [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.10.2` | `5.10.3` |
| [org.junit.platform:junit-platform-suite](https://github.com/junit-team/junit5) | `1.10.2` | `1.10.3` |
| org.keycloak:keycloak-servlet-filter-adapter | `24.0.4` | `24.0.5` |
| [io.github.git-commit-id:git-commit-id-maven-plugin](https://github.com/git-commit-id/git-commit-id-maven-plugin) | `8.0.2` | `9.0.1` |
| [org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin) | `3.4.1` | `3.4.2` |
| [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) | `3.6.1` | `3.7.1` |
| [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) | `3.5.3` | `3.6.0` |
| [org.owasp:dependency-check-maven](https://github.com/jeremylong/DependencyCheck) | `9.2.0` | `10.0.2` |
| [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) | `3.2.5` | `3.3.1` |
| [org.apache.maven.plugins:maven-release-plugin](https://github.com/apache/maven-release) | `3.0.1` | `3.1.1` |
| [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) | `3.6.3` | `3.7.0` |
| org.sonatype.plugins:nexus-staging-maven-plugin | `1.6.13` | `1.7.0` |



Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.17.1 to 2.17.2
- [Commits](https://github.com/FasterXML/jackson/commits)

Updates `com.fasterxml.jackson.core:jackson-core` from 2.17.1 to 2.17.2
- [Commits](FasterXML/jackson-core@jackson-core-2.17.1...jackson-core-2.17.2)

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-xml` from 2.17.1 to 2.17.2
- [Commits](FasterXML/jackson-dataformat-xml@jackson-dataformat-xml-2.17.1...jackson-dataformat-xml-2.17.2)

Updates `com.fasterxml.jackson.core:jackson-core` from 2.17.1 to 2.17.2
- [Commits](FasterXML/jackson-core@jackson-core-2.17.1...jackson-core-2.17.2)

Updates `com.fasterxml.jackson.core:jackson-databind` from 2.17.1 to 2.17.2
- [Commits](https://github.com/FasterXML/jackson/commits)

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-xml` from 2.17.1 to 2.17.2
- [Commits](FasterXML/jackson-dataformat-xml@jackson-dataformat-xml-2.17.1...jackson-dataformat-xml-2.17.2)

Updates `com.github.dasniko:testcontainers-keycloak` from 3.3.1 to 3.4.0
- [Release notes](https://github.com/dasniko/testcontainers-keycloak/releases)
- [Commits](dasniko/testcontainers-keycloak@v.3.3.1...3.4.0)

Updates `com.google.guava:guava` from 33.2.0-jre to 33.2.1-jre
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

Updates `org.eclipse.jetty:jetty-servlet` from 10.0.21 to 10.0.22

Updates `org.jooq:jooq` from 3.19.8 to 3.19.10

Updates `org.jooq:jooq-codegen` from 3.19.8 to 3.19.10

Updates `org.jooq:jooq-meta` from 3.19.8 to 3.19.10

Updates `org.jooq:jooq-codegen` from 3.19.8 to 3.19.10

Updates `org.jooq:jooq-meta` from 3.19.8 to 3.19.10

Updates `org.junit:junit-bom` from 5.10.2 to 5.10.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.10.2...r5.10.3)

Updates `org.junit.platform:junit-platform-suite` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/commits)

Updates `org.keycloak:keycloak-servlet-filter-adapter` from 24.0.4 to 24.0.5

Updates `io.github.git-commit-id:git-commit-id-maven-plugin` from 8.0.2 to 9.0.1
- [Release notes](https://github.com/git-commit-id/git-commit-id-maven-plugin/releases)
- [Commits](git-commit-id/git-commit-id-maven-plugin@v8.0.2...v9.0.1)

Updates `org.apache.maven.plugins:maven-jar-plugin` from 3.4.1 to 3.4.2
- [Release notes](https://github.com/apache/maven-jar-plugin/releases)
- [Commits](apache/maven-jar-plugin@maven-jar-plugin-3.4.1...maven-jar-plugin-3.4.2)

Updates `org.apache.maven.plugins:maven-dependency-plugin` from 3.6.1 to 3.7.1
- [Release notes](https://github.com/apache/maven-dependency-plugin/releases)
- [Commits](apache/maven-dependency-plugin@maven-dependency-plugin-3.6.1...maven-dependency-plugin-3.7.1)

Updates `org.apache.maven.plugins:maven-shade-plugin` from 3.5.3 to 3.6.0
- [Release notes](https://github.com/apache/maven-shade-plugin/releases)
- [Commits](apache/maven-shade-plugin@maven-shade-plugin-3.5.3...maven-shade-plugin-3.6.0)

Updates `org.owasp:dependency-check-maven` from 9.2.0 to 10.0.2
- [Release notes](https://github.com/jeremylong/DependencyCheck/releases)
- [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/CHANGELOG.md)
- [Commits](jeremylong/DependencyCheck@v9.2.0...v10.0.2)

Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.2.5 to 3.3.1
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.2.5...surefire-3.3.1)

Updates `org.apache.maven.plugins:maven-release-plugin` from 3.0.1 to 3.1.1
- [Release notes](https://github.com/apache/maven-release/releases)
- [Commits](apache/maven-release@maven-release-3.0.1...maven-release-3.1.1)

Updates `org.apache.maven.plugins:maven-javadoc-plugin` from 3.6.3 to 3.7.0
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
- [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-3.6.3...maven-javadoc-plugin-3.7.0)

Updates `org.sonatype.plugins:nexus-staging-maven-plugin` from 1.6.13 to 1.7.0

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-annotations
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.core:jackson-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-xml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.core:jackson-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-xml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.dasniko:testcontainers-keycloak
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.google.guava:guava
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty:jetty-servlet
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jooq:jooq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jooq:jooq-codegen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jooq:jooq-meta
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jooq:jooq-codegen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jooq:jooq-meta
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.junit:junit-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.junit.platform:junit-platform-suite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.keycloak:keycloak-servlet-filter-adapter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.github.git-commit-id:git-commit-id-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: org.apache.maven.plugins:maven-jar-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.apache.maven.plugins:maven-dependency-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.apache.maven.plugins:maven-shade-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.owasp:dependency-check-maven
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.apache.maven.plugins:maven-release-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.sonatype.plugins:nexus-staging-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 15, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 22, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jul 22, 2024
@dependabot dependabot bot deleted the dependabot/maven/v2.3.x/dependencies-10086f1f04 branch July 22, 2024 06:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants