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 9 updates #1942

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2024

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

Package From To
com.google.guava:guava 33.2.0-jre 33.2.1-jre
org.jooq:jooq 3.19.8 3.19.9
org.jooq:jooq-codegen 3.19.8 3.19.9
org.jooq:jooq-meta 3.19.8 3.19.9
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.0
org.apache.maven.plugins:maven-shade-plugin 3.5.3 3.6.0
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.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.jooq:jooq from 3.19.8 to 3.19.9

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

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

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

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

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.0

Release notes

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

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:

  • #737 / #710: Require Maven 3.6.3 ⚠️

New Features / Bug-Fixes:

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

  • Use javac --release instead of -source & -target

  • Delete BigDiffTest

  • bump several maven plugins

    • bump org.apache.maven.plugins:maven-assembly-plugin from 3.7.0 to 3.7.1
    • bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.4
    • bump maven-plugin-plugin.version from 3.11.0 to 3.12.0
    • bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1
    • bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12
    • bump org.apache.maven.plugins:maven-compiler-plugin from 3.12.1 to 3.13.0
    • bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.1
    • bump org.apache.maven.plugins:maven-install-plugin from 3.1.1 to 3.1.2
    • bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.2
    • bump maven-plugin-plugin.version from 3.12.0 to 3.13.0
    • bump org.codehaus.mojo:exec-maven-plugin from 3.2.0 to 3.3.0
    • bump maven-plugin-plugin.version from 3.13.0 to 3.13.1
    • bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0
    • bump org.apache.maven.plugins:maven-enforcer-plugin from 3.4.1 to 3.5.0
  • bump several dependencies

  • bump commons-io:commons-io from 2.15.1 to 2.16.1
  • bump org.slf4j:slf4j-simple from 2.0.12 to 2.0.13 (tests)
  • bump org.mockito:mockito-core from 5.11.0 to 5.12.0 (tests)
  • bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (tests)

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.0</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>
</tr></table> 

... (truncated)

Commits
  • 4b52fca [maven-release-plugin] prepare release v9.0.0
  • dab2f12 test with java 22
  • 5321c8f test with the latest maven versions
  • ae8ebb0 Merge pull request #752 from git-commit-id/dependabot/maven/org.apache.maven....
  • bf4e9c3 Merge pull request #751 from git-commit-id/dependabot/maven/org.apache.maven....
  • f950e4a Merge pull request #750 from git-commit-id/dependabot/maven/maven-plugin-plug...
  • 38d38a5 Bump org.apache.maven.plugins:maven-enforcer-plugin from 3.4.1 to 3.5.0
  • 6672a85 Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0
  • e1bad82 Bump maven-plugin-plugin.version from 3.13.0 to 3.13.1
  • a27ccf9 Merge pull request #748 from git-commit-id/dependabot/maven/org.codehaus.mojo...
  • 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.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

📦 Dependency updates

📝 Documentation updates

👻 Maintenance

  • Bump org.springframework:spring-context from 4.3.29.RELEASE to 5.2.21.RELEASE in /src/it/projects/MJAVADOC-434_fixcompile (#280) @​dependabot
  • Exclude JDK 8 - temurin, adopt-openj9 on macos (#279) @​slawekjaranowski

🔧 Build

Commits
  • 2c28b8d [maven-release-plugin] prepare release maven-javadoc-plugin-3.7.0
  • 5530d68 [MJAVADOC-793] java.lang.NullPointerException: Cannot invoke "String.length()...
  • 08cf68e Revert "Bump org.codehaus.plexus:plexus-archiver from 4.9.1 to 4.9.2"
  • 6446822 Bump org.apache.maven.shared:maven-invoker from 3.2.0 to 3.3.0
  • 49c93ad Bump org.assertj:assertj-core from 3.25.3 to 3.26.0
  • 4e72048 [MJAVADOC-795] Upgrade to Parent 42 and Maven 3.6.3
  • b55dd96 Bump org.codehaus.plexus:plexus-archiver from 4.9.1 to 4.9.2
  • 77ad410 Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0
  • c21568a Bump commons-io:commons-io from 2.16.0 to 2.16.1
  • ded56a9 Exclude JDK 8 - temurin, adopt-openj9 on macos
  • Additional commits viewable in compare view

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

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

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

| Package | From | To |
| --- | --- | --- |
| [com.google.guava:guava](https://github.com/google/guava) | `33.2.0-jre` | `33.2.1-jre` |
| org.jooq:jooq | `3.19.8` | `3.19.9` |
| org.jooq:jooq-codegen | `3.19.8` | `3.19.9` |
| org.jooq:jooq-meta | `3.19.8` | `3.19.9` |
| 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.0` |
| [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) | `3.5.3` | `3.6.0` |
| [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.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.jooq:jooq` from 3.19.8 to 3.19.9

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

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

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

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

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.0
- [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.0)

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.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.google.guava:guava
  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.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-shade-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] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 10, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 17, 2024

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

@dependabot dependabot bot closed this Jun 17, 2024
@dependabot dependabot bot deleted the dependabot/maven/v2.3.x/dependencies-ef1fe8d963 branch June 17, 2024 07:01
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