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 main-dependencies group across 1 directory with 24 updates #819

Closed

Conversation

dependabot[bot]
Copy link

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

Bumps the main-dependencies group with 24 updates in the / directory:

Package From To
io.quarkus:quarkus-bom 3.9.3 3.11.0
io.quarkus:quarkus-test-common 3.9.3 3.11.0
io.quarkus:quarkus-maven-plugin 3.9.3 3.11.0
org.apache.kafka:connect-api 3.7.0 7.6.1-ce
org.apache.kafka:connect-json 2.4.0 7.6.1-ce
com.google.protobuf:protobuf-java 3.19.6 4.27.0
com.google.protobuf:protobuf-java-util 3.19.6 4.27.0
com.google.api.grpc:proto-google-common-protos 2.39.1 2.40.0
org.eclipse.jgit:org.eclipse.jgit 6.9.0.202403050737-r 6.10.0.202406032230-r
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.15.2 2.17.1
com.google.guava:guava 33.2.0-jre 33.2.1-jre
com.github.dasniko:testcontainers-keycloak 1.9.0 2.1.1
com.puppycrawl.tools:checkstyle 8.45.1 10.17.0
org.apache.maven.plugins:maven-javadoc-plugin 3.6.3 3.7.0
io.smallrye:jandex-maven-plugin 3.1.8 3.2.0
org.apache.maven.plugins:maven-plugin-plugin 3.13.0 3.13.1
com.microsoft.kiota:microsoft-kiota-abstractions 1.1.12 1.1.13
com.microsoft.kiota:microsoft-kiota-serialization-text 1.1.12 1.1.13
com.microsoft.kiota:microsoft-kiota-serialization-form 1.1.12 1.1.13
com.microsoft.kiota:microsoft-kiota-serialization-multipart 1.1.12 1.1.13
io.quarkiverse.operatorsdk:quarkus-operator-sdk-bom 6.3.3 6.7.1
io.fabric8:generator-annotations 6.12.1 6.13.0
io.fabric8:kubernetes-client 6.12.1 6.13.0
io.fabric8:java-generator-maven-plugin 6.12.1 6.13.0

Updates io.quarkus:quarkus-bom from 3.9.3 to 3.11.0

Release notes

Sourced from io.quarkus:quarkus-bom's releases.

3.11.0

Major changes

  • #40534 - WebSockets Next: initial version of security integration
  • #40600 - Introduce OidcRedirectFilter

Complete changelog

  • #40312 - WebSockets Next: security integration
  • #40534 - WebSockets Next: initial version of security integration
  • #40562 - Support OIDC Redirect filters
  • #40600 - Introduce OidcRedirectFilter
  • #40656 - Dev UI: update build metrics data after live reload
  • #40661 - QuarkusUnitTest: clear test method invokers to avoid QuarkusCL leaks
  • #40669 - Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0
  • #40682 - Allow to asynchronously notify extensions of no-restart changes
  • #40690 - Correct JavaDoc example
  • #40706 - Improve documentation about @RegisterForReflection
  • #40707 - Bump com.gradle.develocity from 3.17.3 to 3.17.4 in /devtools/gradle
  • #40710 - Bump wildfly-elytron.version from 2.4.1.Final to 2.4.2.Final
  • #40721 - Allow the of @Blocking on @ClientExceptionMapper

3.11.0.CR1

Major changes

  • #38448 - Initial Observability extension - devservices, devresources, LGTM
  • #39836 - Infinispan Cache Extension
  • #40273 - Allow quarkus:run to launch DevServices
  • #40309 - WebSockets Next: client endpoints
  • #40539 - Support for OIDC session expired page

Complete changelog

  • #2815 - quarkus-hibernate-orm entity manager merge of detached entity does not work
  • #26445 - OpenTelemetry Collector for DevServices
  • #28473 - Move MongoDB Client Tracing to OpenTelemetry
  • #29571 - Infinispan - unable to cache uni values with @CacheResult annotation
  • #31214 - Dedicated DDL user for liquibase migrations to avoid DDL permissions for app datasource user
  • #31896 - Integrate Infinispan with the Quarkus Cache
  • #37735 - Extra INFO log in Hibernate ORM HHH10005004: Stopping BeanContainer : %s
  • #38298 - Mixing auth-mechanizms fails TestSecurity tests
  • #38448 - Initial Observability extension - devservices, devresources, LGTM
  • #38722 - entityManager.merge does not work in some cases
  • #39194 - Remove ProfileManager
  • #39233 - Update MicroProfile Config to 3.1
  • #39361 - Support custom Liquibase credentials
  • #39375 - Avoid throwing a RuntimeException when parsing an invalid XML body using JAXB
  • #39419 - Fixed concurrency bug in StartupContext
  • #39503 - Improve JAXB Exception handling
  • #39510 - Update default values for salt & iteration index

... (truncated)

Commits

Updates io.quarkus:quarkus-test-common from 3.9.3 to 3.11.0

Updates io.quarkus:quarkus-maven-plugin from 3.9.3 to 3.11.0

Updates org.apache.kafka:connect-api from 3.7.0 to 7.6.1-ce

Updates org.apache.kafka:connect-json from 2.4.0 to 7.6.1-ce

Updates com.google.protobuf:protobuf-java from 3.19.6 to 4.27.0

Release notes

Sourced from com.google.protobuf:protobuf-java's releases.

Protocol Buffers v3.20.3

Java

  • Refactoring java full runtime to reuse sub-message builders and prepare to migrate parsing logic from parse constructor to builder.
  • Move proto wireformat parsing functionality from the private "parsing constructor" to the Builder class.
  • Change the Lite runtime to prefer merging from the wireformat into mutable messages rather than building up a new immutable object before merging. This way results in fewer allocations and copy operations.
  • Make message-type extensions merge from wire-format instead of building up instances and merging afterwards. This has much better performance.
  • Fix TextFormat parser to build up recurring (but supposedly not repeated) sub-messages directly from text rather than building a new sub-message and merging the fully formed message into the existing field.
  • This release addresses a Security Advisory for Java users

Protocol Buffers v3.20.2

C++

Protocol Buffers v3.20.1

PHP

  • Fix building packaged PHP extension (#9727)
  • Fixed composer.json to only advertise compatibility with PHP 7.0+. (#9819)

Ruby

  • Disable the aarch64 build on macOS until it can be fixed. (#9816)

Other

  • Fix versioning issues in 3.20.0

Protocol Buffers v3.20.1-rc1

PHP

  • Fix building packaged PHP extension (#9727)

Other

  • Fix versioning issues in 3.20.0

Protocol Buffers v3.20.0

2022-03-25 version 3.20.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)

Ruby

  • Dropped Ruby 2.3 and 2.4 support for CI and releases. (#9311)
  • Added Ruby 3.1 support for CI and releases (#9566).
  • Message.decode/encode: Add recursion_limit option (#9218/#9486)
  • Allocate with xrealloc()/xfree() so message allocation is visible to the Ruby GC. In certain tests this leads to much lower memory usage due to more frequent GC runs (#9586).
  • Fix conversion of singleton classes in Ruby (#9342)

... (truncated)

Commits

Updates com.google.protobuf:protobuf-java-util from 3.19.6 to 4.27.0

Updates com.google.protobuf:protobuf-java-util from 3.19.6 to 4.27.0

Updates com.google.api.grpc:proto-google-common-protos from 2.39.1 to 2.40.0

Release notes

Sourced from com.google.api.grpc:proto-google-common-protos's releases.

v2.40.0

2.40.0 (2024-05-02)

Features

  • [common-protos] add Weight to common types for Shopping APIs to be used for accounts bundle (#2699) (5bb9770)
  • add a CLI tool to validate generation configuration (#2691) (f2ce524)
  • Parser to consume the api-versioning value from proto (#2630) (40711fd)
  • Update Gapic generator and Gax to emit api-versioning via header (#2671) (e63d1b4)

Bug Fixes

  • change folder prefix for adding headers (#2688) (4e92be8)
  • Log HttpJson's async thread pool core size (#2697) (34b4bc3)
  • replace cfg = "host" with cfg = "exec" (#2637) (6d673f3)
  • Return resolved endpoint from StubSettings' Builder (#2715) (32c9995)

Dependencies

Documentation

  • Add contributing guidelines to PR and issue templates (#2682) (42526dc)
Changelog

Sourced from com.google.api.grpc:proto-google-common-protos's changelog.

2.40.0 (2024-05-02)

Features

  • [common-protos] add Weight to common types for Shopping APIs to be used for accounts bundle (#2699) (5bb9770)
  • add a CLI tool to validate generation configuration (#2691) (f2ce524)
  • Parser to consume the api-versioning value from proto (#2630) (40711fd)
  • Update Gapic generator and Gax to emit api-versioning via header (#2671) (e63d1b4)

Bug Fixes

  • change folder prefix for adding headers (#2688) (4e92be8)
  • Log HttpJson's async thread pool core size (#2697) (34b4bc3)
  • replace cfg = "host" with cfg = "exec" (#2637) (6d673f3)
  • Return resolved endpoint from StubSettings' Builder (#2715) (32c9995)

Dependencies

Documentation

  • Add contributing guidelines to PR and issue templates (#2682) (42526dc)

2.39.0 (2024-04-18)

Features

  • add libraries_bom_version to generation configuration (#2639) (56c7ca5)
  • Add ChannelPoolSettings Getter for gRPC's ChannelProvider (#2612) (d0c5191)
  • add config change (#2604) (8312706)
  • add entry point (#2616) (b19fa33)
  • add generation config comparator (#2587) (a94c2f0)
  • Add JavadocJar Task to build.gradle for self service libraries (#2593) (993f5ac)
  • Client/StubSettings' getEndpoint() returns the resolved endpoint (#2440) (4942bc1)
  • generate selected libraries (#2598) (739ddbb)
  • Validate the Universe Domain inside Java-Core (#2592) (35d789f)

... (truncated)

Commits

Updates org.eclipse.jgit:org.eclipse.jgit from 6.9.0.202403050737-r to 6.10.0.202406032230-r

Updates com.fasterxml.jackson.dataformat:jackson-dataformat-yaml from 2.15.2 to 2.17.1

Commits
  • d7b7bf1 [maven-release-plugin] prepare release jackson-dataformats-text-2.17.1
  • 8de9ac8 Prepare for 2.17.1 release
  • 163849b Fix #469: Add a way to distinguish between null and empty (#471)
  • 029030b Fix one flag in #472
  • 9039e78 Merge part of #471 ahead of it (to reduce diff) (#472)
  • b41a64e ...
  • 5e2fa72 Back to snapshot dep
  • 0d7a4d6 [maven-release-plugin] prepare for next development iteration
  • 5947a45 [maven-release-plugin] prepare release jackson-dataformats-text-2.17.0
  • 66e39ff Prepare for 2.17.0 release
  • 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 io.quarkus:quarkus-test-common from 3.9.3 to 3.11.0

Updates com.github.dasniko:testcontainers-keycloak from 1.9.0 to 2.1.1

Release notes

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

2.1.1: Revert RestEasy version changes

The dependency version changes in release 2.1.0 were wrong... blame on me! This release revert these changes again.

2.1.0: Ability to add external libraries

Don't use this version!!! Use 2.1.1 instead!!!


Changes

The auto-build flag is now used always, not matter if really needed or not. This makes adding custom resources which need a build before a lot easier. The most use cases need a build anyway, so this shouldn't matter that much.

Fixes

The Java Admin Client now uses RestEasy dependency versions aligned with the Keycloak runtime. Before, this could lead to a version clash and exceptions during runtime, if you were using different versions in your tests.

New Features

It's now possible to add 3rd party libs, like e.g. further dependencies or other files, to your KeycloakContainer /providers folder with the new .withProviderLibsFrom(...) method. See README.md for further details and also a linked example for how to add dependencies from your maven pom.xml

Keycloak 17 (still Wildfly distribution)

This release uses Keycloak 17 as default version.

Also, there were small fixes for usage under Docker for Windows (#48 thanks to @​BjoernAkAManf)

This might be one of the last 1.x releases of Testcontainers-Keycloak, as the Quarkus-based Keycloak distribution is also public and now the default. The new distribution will be covered with the version 2.x of this project, to be released soon. The version 1.x will then get deprecated and 2.x will get default.

Commits
  • 1475c22 [maven-release-plugin] prepare release 2.1.1
  • 6958d20 revert the resteasy dependency change again, closes #61
  • 76af2bf update readme with most recent version
  • bc9b1bb [maven-release-plugin] prepare for next development iteration
  • dc9a7ef [maven-release-plugin] prepare release 2.1.0
  • 7f44d7b build containerPath for copied libs properly
  • 77e5780 fix tests
  • 11ee822 add .withProviderLibsFrom() method (resolves #58)
  • fe1c230 validating method arguments with standard Objects.requireNonNull
  • 08a3d72 setting the auto-build property per default
  • Additional commits viewable in compare view

Updates com.puppycrawl.tools:checkstyle from 8.45.1 to 10.17.0

Release notes

Sourced from com.puppycrawl.tools:checkstyle's releases.

checkstyle-10.17.0

Checkstyle 10.17.0 - https://checkstyle.org/releasenotes.html#Release_10.17.0

Breaking backward compatibility:

#13758 - ImportOrder: replace Pattern[] with String[] type for properties staticGroups and groups

New:

#14726 - new Check: ConstructorsDeclarationGrouping to check the grouping of overloaded constructors

Bug fixes:

#13012 - Checkstyle fails with "Path contains invalid character" if path to config file contains non-ascii characters #13167 - Null pointer Exception in UnusedLocalVariableCheck #14506 - False positive for UnusedLocalVariable #14825 - WhitespaceAround reports a violation when switch expression is passed as a method argument #13086 - InnerAssignmentCheck failed for one line code in Java 14 switch expression

checkstyle-10.16.0

Checkstyle 10.16.0 - https://checkstyle.org/releasenotes.html#Release_10.16.0

New:

#14620 - LITERAL_CASE token support in RightCurlyCheck

Bug fixes:

... (truncated)

Commits
  • b270384 [maven-release-plugin] prepare release checkstyle-10.17.0
  • da11a8d doc: release notes for 10.17.0
  • 15e0c7e Issue #14877: drop java 14 build
  • 8a4b406 Issue #13012: fix loading with non-ascii symbols in path
  • 96eeed5 Pull #14662: shallowClone in checkstyle-tester with SHA checkout
  • c15242f Issue #13167: Fix NPE in UnusedLocalVariable check
  • 8605dd8 dependency: bump org.gaul:modernizer-maven-plugin from 2.7.0 to 2.9.0
  • c5a873b ---
  • 9d9aad4 ---
  • b861547 Issue #14726: new check: ConstructorsDeclarationGroupingCheck
  • Additional commits viewable in compare view

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

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 io.smallrye:jandex-maven-plugin from 3.1.8 to 3.2.0

Release notes

Sourced from io.smallrye:jandex-maven-plugin's releases.

3.2.0

  • #370 release 3.2.0
  • #368 move to next minor version, 3.2.0
  • #361 add annotation overlay
  • #356 skip Jandex Maven plugin execution for POM packaging
  • #355 Skip Plugin Execution on packaging type pom
  • #354 improve Index[View].getKnownUsers()
  • #348 Add support for sealed classes
  • #347 Reduce hash collisions when interning type variable references
  • #346 Add empty and stacked indexes
  • #322 Indexing takes over 100x longer on big file
  • #255 Add an annotation overlay
  • #167 Add support for sealed classes
  • #142 Add a "stacked" composite index
Commits
  • f8b6fa8 [maven-release-plugin] prepare release 3.2.0
  • 0a1ef64 Amendments before release
  • 6b8d54e Merge pull request #370 from smallrye/release-3.2.0
  • 32c6301 release 3.2.0
  • 0485d58 Merge pull request #361 from Ladicek/annotation-overlay
  • f80be5d add annotation overlay
  • afe4f49 move AnnotationInstance.RETENTION and Index.REPEATABLE to DotName
  • ddba5d4 Merge pull request #354 from Ladicek/improve-known-users
  • 3a80388 improve Index[View].getKnownUsers()
  • 1d05389 improve ClassInfo.recordComponents() in case the class is not a record
  • Additional commits viewable in compare view

Updates io.quarkus:quarkus-maven-plugin from 3.9.3 to 3.11.0

Updates org.apache.maven.plugins:maven-plugin-plugin from 3.13.0 to 3.13.1

Commits
  • 7098c96 [maven-release-plugin] prepare release maven-plugin-tools-3.13.1
  • 2144feb ---
  • 441b5f5 Bump org.assertj:assertj-core from 3.25.3 to 3.26.0
  • ca6a073 [MPLUGIN-526] Clean up dependencies reported by dependencies:analyze
  • 993425c [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates com.microsoft.kiota:microsoft-kiota-abstractions from 1.1.12 to 1.1.13

Release notes

Sourced from com.microsoft.kiota:microsoft-kiota-abstractions's releases.

v1.1.13

Changed

Changelog

Sourced from com.microsoft.kiota:microsoft-kiota-abstractions's changelog.

[1.1.13] - 2024-05-31

Changed

Commits
  • b7be3e3 Merge pull request #1327 from microsoft/andrueastman/fixSerialization
  • 019e0d5 Fixes serialization of parsables in additionalData
  • 98e0b9e Merge pull request #1326 from microsoft/update-label-needs-author-feedback-to...
  • c52a793 Update needs-author-feedback label to replacement
  • See full diff in compare view

Updates com.microsoft.kiota:microsoft-kiota-serialization-text from 1.1.12 to 1.1.13

Release notes

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-text's releases.

v1.1.13

Changed

Changelog

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-text's changelog.

[1.1.13] - 2024-05-31

Changed

Commits
  • b7be3e3 Merge pull request #1327 from microsoft/andrueastman/fixSerialization
  • 019e0d5 Fixes serialization of parsables in additionalData
  • 98e0b9e Merge pull request #1326 from microsoft/update-label-needs-author-feedback-to...
  • c52a793 Update needs-author-feedback label to replacement
  • See full diff in compare view

Updates com.microsoft.kiota:microsoft-kiota-serialization-form from 1.1.12 to 1.1.13

Release notes

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-form's releases.

v1.1.13

Changed

Changelog

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-form's changelog.

[1.1.13] - 2024-05-31

Changed

Commits
  • b7be3e3 Merge pull request #1327 from microsoft/andrueastman/fixSerialization
  • 019e0d5 Fixes serialization of parsables in additionalData
  • 98e0b9e Merge pull request #1326 from microsoft/update-label-needs-author-feedback-to...
  • c52a793 Update needs-author-feedback label to replacement
  • See full diff in compare view

Updates com.microsoft.kiota:microsoft-kiota-serialization-multipart from 1.1.12 to 1.1.13

Release notes

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-multipart's releases.

v1.1.13

Changed

Changelog

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-multipart's changelog.

[1.1.13] - 2024-05-31

Changed

Commits
  • b7be3e3 Merge pull request #1327 from microsoft/andrueastman/fixSerialization
  • 019e0d5 Fixes serialization of parsables in additionalData
  • 98e0b9e Merge pull request #1326 from microsoft/update-label-needs-author-feedback-to...
  • c52a793 Update needs-author-feedback label to replacement
  • See full diff in compare view

Updates com.microsoft.kiota:microsoft-kiota-serialization-text from 1.1.12 to 1.1.13

Release notes

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-text's releases.

v1.1.13

Changed

Changelog

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-text's changelog.

[1.1.13] - 2024-05-31

Changed

Commits
  • b7be3e3 Merge pull request #1327 from microsoft/andrueastman/fixSerialization
  • 019e0d5 Fixes serialization of parsables in additionalData
  • 98e0b9e Merge pull request #1326 from microsoft/update-label-needs-author-feedback-to...
  • c52a793 Update needs-author-feedback label to replacement
  • See full diff in compare view

Updates com.microsoft.kiota:microsoft-kiota-serialization-form from 1.1.12 to 1.1.13

Release notes

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-form's releases.

v1.1.13

Changed

Changelog

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-form's changelog.

[1.1.13] - 2024-05-31

Changed

Commits
  • b7be3e3 Merge pull request #1327 from microsoft/andrueastman/fixSerialization
  • 019e0d5 Fixes serialization of parsables in additionalData
  • 98e0b9e Merge pull request #1326 from microsoft/update-label-needs-author-feedback-to...
  • c52a793 Update needs-author-feedback label to replacement
  • See full diff in compare view

Updates com.microsoft.kiota:microsoft-kiota-serialization-multipart from 1.1.12 to 1.1.13

Release notes

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-multipart's releases.

v1.1.13

Changed

Changelog

Sourced from com.microsoft.kiota:microsoft-kiota-serialization-multipart's changelog.

[1.1.13] - 2024-05-31

Changed

  • Fixed a bug where Parsable instances in the additionalData would lea...

    Description has been truncated

Bumps the main-dependencies group with 24 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [io.quarkus:quarkus-bom](https://github.com/quarkusio/quarkus) | `3.9.3` | `3.11.0` |
| io.quarkus:quarkus-test-common | `3.9.3` | `3.11.0` |
| io.quarkus:quarkus-maven-plugin | `3.9.3` | `3.11.0` |
| org.apache.kafka:connect-api | `3.7.0` | `7.6.1-ce` |
| org.apache.kafka:connect-json | `2.4.0` | `7.6.1-ce` |
| [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) | `3.19.6` | `4.27.0` |
| com.google.protobuf:protobuf-java-util | `3.19.6` | `4.27.0` |
| [com.google.api.grpc:proto-google-common-protos](https://github.com/googleapis/sdk-platform-java) | `2.39.1` | `2.40.0` |
| org.eclipse.jgit:org.eclipse.jgit | `6.9.0.202403050737-r` | `6.10.0.202406032230-r` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) | `2.15.2` | `2.17.1` |
| [com.google.guava:guava](https://github.com/google/guava) | `33.2.0-jre` | `33.2.1-jre` |
| [com.github.dasniko:testcontainers-keycloak](https://github.com/dasniko/testcontainers-keycloak) | `1.9.0` | `2.1.1` |
| [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) | `8.45.1` | `10.17.0` |
| [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) | `3.6.3` | `3.7.0` |
| [io.smallrye:jandex-maven-plugin](https://github.com/smallrye/jandex) | `3.1.8` | `3.2.0` |
| [org.apache.maven.plugins:maven-plugin-plugin](https://github.com/apache/maven-plugin-tools) | `3.13.0` | `3.13.1` |
| [com.microsoft.kiota:microsoft-kiota-abstractions](https://github.com/microsoft/kiota-java) | `1.1.12` | `1.1.13` |
| [com.microsoft.kiota:microsoft-kiota-serialization-text](https://github.com/microsoft/kiota-java) | `1.1.12` | `1.1.13` |
| [com.microsoft.kiota:microsoft-kiota-serialization-form](https://github.com/microsoft/kiota-java) | `1.1.12` | `1.1.13` |
| [com.microsoft.kiota:microsoft-kiota-serialization-multipart](https://github.com/microsoft/kiota-java) | `1.1.12` | `1.1.13` |
| [io.quarkiverse.operatorsdk:quarkus-operator-sdk-bom](https://github.com/quarkiverse/quarkus-operator-sdk) | `6.3.3` | `6.7.1` |
| [io.fabric8:generator-annotations](https://github.com/fabric8io/kubernetes-client) | `6.12.1` | `6.13.0` |
| [io.fabric8:kubernetes-client](https://github.com/fabric8io/kubernetes-client) | `6.12.1` | `6.13.0` |
| io.fabric8:java-generator-maven-plugin | `6.12.1` | `6.13.0` |



Updates `io.quarkus:quarkus-bom` from 3.9.3 to 3.11.0
- [Release notes](https://github.com/quarkusio/quarkus/releases)
- [Commits](quarkusio/quarkus@3.9.3...3.11.0)

Updates `io.quarkus:quarkus-test-common` from 3.9.3 to 3.11.0

Updates `io.quarkus:quarkus-maven-plugin` from 3.9.3 to 3.11.0

Updates `org.apache.kafka:connect-api` from 3.7.0 to 7.6.1-ce

Updates `org.apache.kafka:connect-json` from 2.4.0 to 7.6.1-ce

Updates `com.google.protobuf:protobuf-java` from 3.19.6 to 4.27.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `com.google.protobuf:protobuf-java-util` from 3.19.6 to 4.27.0

Updates `com.google.protobuf:protobuf-java-util` from 3.19.6 to 4.27.0

Updates `com.google.api.grpc:proto-google-common-protos` from 2.39.1 to 2.40.0
- [Release notes](https://github.com/googleapis/sdk-platform-java/releases)
- [Changelog](https://github.com/googleapis/sdk-platform-java/blob/main/CHANGELOG.md)
- [Commits](https://github.com/googleapis/sdk-platform-java/commits/v2.40.0)

Updates `org.eclipse.jgit:org.eclipse.jgit` from 6.9.0.202403050737-r to 6.10.0.202406032230-r

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-yaml` from 2.15.2 to 2.17.1
- [Commits](FasterXML/jackson-dataformats-text@jackson-dataformats-text-2.15.2...jackson-dataformats-text-2.17.1)

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 `io.quarkus:quarkus-test-common` from 3.9.3 to 3.11.0

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

Updates `com.puppycrawl.tools:checkstyle` from 8.45.1 to 10.17.0
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-8.45.1...checkstyle-10.17.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 `io.smallrye:jandex-maven-plugin` from 3.1.8 to 3.2.0
- [Release notes](https://github.com/smallrye/jandex/releases)
- [Commits](smallrye/jandex@3.1.8...3.2.0)

Updates `io.quarkus:quarkus-maven-plugin` from 3.9.3 to 3.11.0

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

Updates `com.microsoft.kiota:microsoft-kiota-abstractions` from 1.1.12 to 1.1.13
- [Release notes](https://github.com/microsoft/kiota-java/releases)
- [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md)
- [Commits](microsoft/kiota-java@v1.1.12...v1.1.13)

Updates `com.microsoft.kiota:microsoft-kiota-serialization-text` from 1.1.12 to 1.1.13
- [Release notes](https://github.com/microsoft/kiota-java/releases)
- [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md)
- [Commits](microsoft/kiota-java@v1.1.12...v1.1.13)

Updates `com.microsoft.kiota:microsoft-kiota-serialization-form` from 1.1.12 to 1.1.13
- [Release notes](https://github.com/microsoft/kiota-java/releases)
- [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md)
- [Commits](microsoft/kiota-java@v1.1.12...v1.1.13)

Updates `com.microsoft.kiota:microsoft-kiota-serialization-multipart` from 1.1.12 to 1.1.13
- [Release notes](https://github.com/microsoft/kiota-java/releases)
- [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md)
- [Commits](microsoft/kiota-java@v1.1.12...v1.1.13)

Updates `com.microsoft.kiota:microsoft-kiota-serialization-text` from 1.1.12 to 1.1.13
- [Release notes](https://github.com/microsoft/kiota-java/releases)
- [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md)
- [Commits](microsoft/kiota-java@v1.1.12...v1.1.13)

Updates `com.microsoft.kiota:microsoft-kiota-serialization-form` from 1.1.12 to 1.1.13
- [Release notes](https://github.com/microsoft/kiota-java/releases)
- [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md)
- [Commits](microsoft/kiota-java@v1.1.12...v1.1.13)

Updates `com.microsoft.kiota:microsoft-kiota-serialization-multipart` from 1.1.12 to 1.1.13
- [Release notes](https://github.com/microsoft/kiota-java/releases)
- [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md)
- [Commits](microsoft/kiota-java@v1.1.12...v1.1.13)

Updates `io.quarkiverse.operatorsdk:quarkus-operator-sdk-bom` from 6.3.3 to 6.7.1
- [Release notes](https://github.com/quarkiverse/quarkus-operator-sdk/releases)
- [Commits](quarkiverse/quarkus-operator-sdk@6.3.3...6.7.1)

Updates `io.fabric8:generator-annotations` from 6.12.1 to 6.13.0
- [Release notes](https://github.com/fabric8io/kubernetes-client/releases)
- [Changelog](https://github.com/fabric8io/kubernetes-client/blob/main/CHANGELOG.md)
- [Commits](fabric8io/kubernetes-client@v6.12.1...v6.13.0)

Updates `io.fabric8:kubernetes-client` from 6.12.1 to 6.13.0
- [Release notes](https://github.com/fabric8io/kubernetes-client/releases)
- [Changelog](https://github.com/fabric8io/kubernetes-client/blob/main/CHANGELOG.md)
- [Commits](fabric8io/kubernetes-client@v6.12.1...v6.13.0)

Updates `io.fabric8:java-generator-maven-plugin` from 6.12.1 to 6.13.0

Updates `io.fabric8:kubernetes-client` from 6.12.1 to 6.13.0
- [Release notes](https://github.com/fabric8io/kubernetes-client/releases)
- [Changelog](https://github.com/fabric8io/kubernetes-client/blob/main/CHANGELOG.md)
- [Commits](fabric8io/kubernetes-client@v6.12.1...v6.13.0)

Updates `io.fabric8:java-generator-maven-plugin` from 6.12.1 to 6.13.0

---
updated-dependencies:
- dependency-name: io.quarkus:quarkus-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.quarkus:quarkus-test-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.quarkus:quarkus-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: org.apache.kafka:connect-api
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: main-dependencies
- dependency-name: org.apache.kafka:connect-json
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: main-dependencies
- dependency-name: com.google.protobuf:protobuf-java
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: main-dependencies
- dependency-name: com.google.protobuf:protobuf-java-util
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: main-dependencies
- dependency-name: com.google.protobuf:protobuf-java-util
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: main-dependencies
- dependency-name: com.google.api.grpc:proto-google-common-protos
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: org.eclipse.jgit:org.eclipse.jgit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: io.quarkus:quarkus-test-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: com.github.dasniko:testcontainers-keycloak
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: main-dependencies
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: main-dependencies
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.smallrye:jandex-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.quarkus:quarkus-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: org.apache.maven.plugins:maven-plugin-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: com.microsoft.kiota:microsoft-kiota-abstractions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-text
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-form
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-multipart
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-text
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-form
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-multipart
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: main-dependencies
- dependency-name: io.quarkiverse.operatorsdk:quarkus-operator-sdk-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.fabric8:generator-annotations
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.fabric8:kubernetes-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.fabric8:java-generator-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.fabric8:kubernetes-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-dependencies
- dependency-name: io.fabric8:java-generator-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: main-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 5, 2024
Copy link
Author

dependabot bot commented on behalf of github Jun 6, 2024

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

@dependabot dependabot bot closed this Jun 6, 2024
@dependabot dependabot bot deleted the dependabot/maven/main-dependencies-f284a62aa4 branch June 6, 2024 08:05
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