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 root-gradle-deps group across 1 directory with 30 updates #1723

Open
wants to merge 1 commit into
base: terraform
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 24, 2024

Bumps the root-gradle-deps group with 29 updates in the / directory:

Package From To
com.google.guava:guava 33.0.0-jre 33.4.0-jre
com.github.ben-manes.versions 0.50.0 0.51.0
com.google.cloud.tools.jib 3.4.0 3.4.4
info.picocli:picocli 4.7.5 4.7.6
com.amazonaws:aws-java-sdk-bom 1.12.626 1.12.780
org.mockito:mockito-core 5.8.0 5.14.2
io.kubernetes:client-java-extended 19.0.0 22.0.0
org.assertj:assertj-core 3.24.2 3.27.0
org.apache.logging.log4j:log4j-api 2.22.1 2.24.3
org.apache.logging.log4j:log4j-core 2.22.1 2.24.3
com.github.spullara.mustache.java:compiler 0.9.11 0.9.14
commons-io:commons-io 2.15.1 2.18.0
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.16.1 2.18.2
io.freefair.lombok 8.4 8.11
com.diffplug.spotless 6.23.3 6.25.0
io.grpc:grpc-bom 1.61.0 1.69.0
io.grpc:grpc-api 1.60.1 1.69.0
io.grpc:grpc-netty-shaded 1.60.1 1.69.0
io.opentelemetry:opentelemetry-bom 1.34.1 1.45.0
com.amazonaws:aws-xray-recorder-sdk-core 2.15.0 2.18.2
com.amazonaws:aws-xray-recorder-sdk-aws-sdk 2.15.0 2.18.2
com.google.code.gson:gson 2.10.1 2.11.0
io.opentracing.brave:brave-opentracing 1.0.0 1.0.1
org.apache.commons:commons-lang3 3.14.0 3.17.0
io.zipkin.zipkin2:zipkin 2.25.2 3.4.3
io.zipkin.reporter2:zipkin-sender-okhttp3 2.17.1 3.4.3
io.zipkin.brave:brave 5.17.0 6.0.3
software.amazon.awssdk:s3 2.22.6 2.29.40
org.slf4j:slf4j-simple 2.0.9 2.0.16

Updates com.google.guava:guava from 33.0.0-jre to 33.4.0-jre

Release notes

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

33.4.0

Maven

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

Jar files

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

Javadoc

JDiff

Changelog

  • Exposed additional Java 8 APIs to Android users. (6082782134, 9b0109c662, 6ace8bc8ea, b650b9fe77, c6c268006c, 984f713d76, f9f3fffb87, cdc225474e)
  • base: Deprecated Charsets constants in favor of StandardCharsets. We will not remove the constants, but we recommend using StandardCharsets for consistency. (45e6be2688)
  • base: Added ToStringHelper.omitEmptyValues(). (f5ec2ab85c)
  • collect: Added an optimized copyOf method to TreeRangeMap. (a46565dd1c)
  • collect.testing: Fixed @Require annotations so that features implied by absent features are not also required to be absent. (81be061f85)
  • io: Changed ByteSink and CharSink to no longer call flush() in some cases before close(). This is a no-op for well-behaved streams, which internally flush their data as part of closing. However, we have discovered some stream implementations that have overridden close() to do nothing, including not to flush some buffered data. If this change causes problems, the simplest fix is usually to change the close() override to at least call flush(). (6ace8bc8ea)
  • net: Added HttpHeaders.ALT_SVC and MediaType.CBOR. (503ba429f9, 7c0bf0892d)

33.3.1

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
</tr></table> 

... (truncated)

Commits

Updates com.github.ben-manes.versions from 0.50.0 to 0.51.0

Updates com.google.cloud.tools.jib from 3.4.0 to 3.4.4

Updates info.picocli:picocli from 4.7.5 to 4.7.6

Release notes

Sourced from info.picocli:picocli's releases.

Picocli 4.7.6

Picocli 4.7.6

The picocli community is pleased to announce picocli 4.7.6.

This release includes bugfixes and enhancements.

Many thanks to the picocli community for raising these issues and providing the pull requests to address them!

This is the eighty-fifth public release. Picocli follows semantic versioning. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).

Table of Contents

  • New and noteworthy
  • Fixed issues
  • Deprecations
  • Potential breaking changes

New and Noteworthy

PropertiesDefaultProvider now tries to load properties from the classpath if the file cannot be found in the user.home directory.

Fixed issues

  • #2102#2107 Enhancement: PropertiesDefaultProvider should try to load properties from classpath (last). Thanks to Lumír Návrat for the pull request.
  • #2202 Enhancement: Change log level from WARN to INFO when bean not found in ApplicationContext. Thanks to Desmond Kirrane for raising this.
  • #2248 Enhancement: Don't show hidden commands in JLine3 command description. Thanks to Reinhard Handler for the pull request.
  • #2170 Enhancement: Use ... vararg instead of array parameter to match overridden method signature. Thanks to Michael Vorburger for the pull request.
  • #2058 Bugfix: defaultValue should not be applied in addition to user-specified value for options with a custom IParameterConsumer. Thanks to Staffan Arvidsson McShane for raising this.
  • #2148 Bugfix: Fix NPE in jline3 Example.jar as ConfigurationPath cannot be null anymore. Thanks to llzen44 for the pull request.
  • #2232 Bugfix: fix bug for Optional<T> arguments with initial value. Thanks to hq6 for raising this.
  • #2149 Bugfix: @Option-annotated setter method not invoked with default value when used in mixin for both command and subcommand. Thanks to Zhonghao Wang for raising this.
  • #2270 Bugfix: Custom type converter for primitive boolean options should not be ignored. Thanks to Sven Kammerer for raising this.
  • #2234 BUILD: fix errorprone TruthSelfEquals warnings
  • #2172 BUILD: Fix broken build. Thanks to Michael Vorburger for the pull request.
  • #2174 BUILD: Fix .gitattributes related CR/LF problems. Thanks to Michael Vorburger for the pull request.
  • #2054#2176 BUILD: Add Error Prone. Thanks to Michael Vorburger for the pull request.
  • #2053 #2175 CLEAN: Remove unused extra format arguments. Thanks to Michael Vorburger for the pull request.
  • #2171 DOC: Fix a few typos in CommandLine's JavaDoc. Thanks to Michael Vorburger for the pull request.
  • #2217 DOC: Clarify documentation for negatable options. Thanks to dbear496 for raising this.
  • #2228 DOC: Clarify that ParseResult passed to IExecutionExceptionHandler is the top-level parse result, not the parse result of the subcommand that failed. Thanks to Abel Salgado Romero for raising this.
  • #2047 DEP: Bump andymckay/append-gist-action from 1fbfbbce708a39bd45846f0955ed5521f2099c6d to 6e8d64427fe47cbacf4ab6b890411f1d67c07f3e
  • #2091 DEP: Bump actions/checkout from 3.5.2 to 3.6.0
  • #2108 DEP: Bump actions/checkout from 3.6.0 to 4.0.0
  • #2120 DEP: Bump actions/checkout from 4.0.0 to 4.1.0
  • #2225 DEP: Bump actions/checkout from 4.1.0 to 4.1.2
  • #2272 DEP: Bump actions/checkout from 4.1.2 to 4.1.4
  • #2098 DEP: Bump actions/setup-java from 3.11.0 to 3.12.0
  • #2158 DEP: Bump actions/setup-java from 3.12.0 to 4.0.0

... (truncated)

Changelog

Sourced from info.picocli:picocli's changelog.

Picocli 4.7.6

The picocli community is pleased to announce picocli 4.7.6.

This release includes bugfixes and enhancements.

Many thanks to the picocli community for raising these issues and providing the pull requests to address them!

This is the eighty-fifth public release. Picocli follows semantic versioning. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).

Table of Contents

  • New and noteworthy
  • Fixed issues
  • Deprecations
  • Potential breaking changes

New and Noteworthy

PropertiesDefaultProvider now tries to load properties from the classpath if the file cannot be found in the user.home directory.

Fixed issues

  • #2102#2107 Enhancement: PropertiesDefaultProvider should try to load properties from classpath (last). Thanks to Lumír Návrat for the pull request.
  • #2202 Enhancement: Change log level from WARN to INFO when bean not found in ApplicationContext. Thanks to Desmond Kirrane for raising this.
  • #2248 Enhancement: Don't show hidden commands in JLine3 command description. Thanks to Reinhard Handler for the pull request.
  • #2170 Enhancement: Use ... vararg instead of array parameter to match overridden method signature. Thanks to Michael Vorburger for the pull request.
  • #2058 Bugfix: defaultValue should not be applied in addition to user-specified value for options with a custom IParameterConsumer. Thanks to Staffan Arvidsson McShane for raising this.
  • #2148 Bugfix: Fix NPE in jline3 Example.jar as ConfigurationPath cannot be null anymore. Thanks to llzen44 for the pull request.
  • #2232 Bugfix: fix bug for Optional<T> arguments with initial value. Thanks to hq6 for raising this.
  • #2149 Bugfix: @Option-annotated setter method not invoked with default value when used in mixin for both command and subcommand. Thanks to Zhonghao Wang for raising this.
  • #2270 Bugfix: Custom type converter for primitive boolean options should not be ignored. Thanks to Sven Kammerer for raising this.
  • #2234 BUILD: fix errorprone TruthSelfEquals warnings
  • #2172 BUILD: Fix broken build. Thanks to Michael Vorburger for the pull request.
  • #2174 BUILD: Fix .gitattributes related CR/LF problems. Thanks to Michael Vorburger for the pull request.
  • #2054#2176 BUILD: Add Error Prone. Thanks to Michael Vorburger for the pull request.
  • #2053 #2175 CLEAN: Remove unused extra format arguments. Thanks to Michael Vorburger for the pull request.
  • #2171 DOC: Fix a few typos in CommandLine's JavaDoc. Thanks to Michael Vorburger for the pull request.
  • #2217 DOC: Clarify documentation for negatable options. Thanks to dbear496 for raising this.
  • #2228 DOC: Clarify that ParseResult passed to IExecutionExceptionHandler is the top-level parse result, not the parse result of the subcommand that failed. Thanks to Abel Salgado Romero for raising this.
  • #2047 DEP: Bump andymckay/append-gist-action from 1fbfbbce708a39bd45846f0955ed5521f2099c6d to 6e8d64427fe47cbacf4ab6b890411f1d67c07f3e
  • #2091 DEP: Bump actions/checkout from 3.5.2 to 3.6.0
  • #2108 DEP: Bump actions/checkout from 3.6.0 to 4.0.0
  • #2120 DEP: Bump actions/checkout from 4.0.0 to 4.1.0
  • #2225 DEP: Bump actions/checkout from 4.1.0 to 4.1.2
  • #2272 DEP: Bump actions/checkout from 4.1.2 to 4.1.4
  • #2098 DEP: Bump actions/setup-java from 3.11.0 to 3.12.0
  • #2158 DEP: Bump actions/setup-java from 3.12.0 to 4.0.0
  • #2236 DEP: Bump actions/setup-java from 4.0.0 to 4.2.1.

... (truncated)

Commits
  • 368d97e Release picocli version 4.7.6
  • ca9fbb6 #2145 fix output dir
  • 7737d84 #2145 add test
  • 6430401 [BUILD] fix broken CI tests
  • aa46a77 Bump actions/upload-artifact from 4.3.1 to 4.3.3
  • 4843676 Bump actions/checkout from 4.1.2 to 4.1.4
  • c825d20 #2270 Custom type converter for primitive boolean options should not be i...
  • fa33be1 #2149 bugfix: ArgSpecs are not equal if their enclosing command is different
  • 92be33a DOC update release notes for dependency updates
  • 9791bd9 #2228 DOC: Clarify that ParseResult passed to `IExecutionExceptionHandler...
  • Additional commits viewable in compare view

Updates info.picocli:picocli-codegen from 4.7.5 to 4.7.6

Release notes

Sourced from info.picocli:picocli-codegen's releases.

Picocli 4.7.6

Picocli 4.7.6

The picocli community is pleased to announce picocli 4.7.6.

This release includes bugfixes and enhancements.

Many thanks to the picocli community for raising these issues and providing the pull requests to address them!

This is the eighty-fifth public release. Picocli follows semantic versioning. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).

Table of Contents

  • New and noteworthy
  • Fixed issues
  • Deprecations
  • Potential breaking changes

New and Noteworthy

PropertiesDefaultProvider now tries to load properties from the classpath if the file cannot be found in the user.home directory.

Fixed issues

  • #2102#2107 Enhancement: PropertiesDefaultProvider should try to load properties from classpath (last). Thanks to Lumír Návrat for the pull request.
  • #2202 Enhancement: Change log level from WARN to INFO when bean not found in ApplicationContext. Thanks to Desmond Kirrane for raising this.
  • #2248 Enhancement: Don't show hidden commands in JLine3 command description. Thanks to Reinhard Handler for the pull request.
  • #2170 Enhancement: Use ... vararg instead of array parameter to match overridden method signature. Thanks to Michael Vorburger for the pull request.
  • #2058 Bugfix: defaultValue should not be applied in addition to user-specified value for options with a custom IParameterConsumer. Thanks to Staffan Arvidsson McShane for raising this.
  • #2148 Bugfix: Fix NPE in jline3 Example.jar as ConfigurationPath cannot be null anymore. Thanks to llzen44 for the pull request.
  • #2232 Bugfix: fix bug for Optional<T> arguments with initial value. Thanks to hq6 for raising this.
  • #2149 Bugfix: @Option-annotated setter method not invoked with default value when used in mixin for both command and subcommand. Thanks to Zhonghao Wang for raising this.
  • #2270 Bugfix: Custom type converter for primitive boolean options should not be ignored. Thanks to Sven Kammerer for raising this.
  • #2234 BUILD: fix errorprone TruthSelfEquals warnings
  • #2172 BUILD: Fix broken build. Thanks to Michael Vorburger for the pull request.
  • #2174 BUILD: Fix .gitattributes related CR/LF problems. Thanks to Michael Vorburger for the pull request.
  • #2054#2176 BUILD: Add Error Prone. Thanks to Michael Vorburger for the pull request.
  • #2053 #2175 CLEAN: Remove unused extra format arguments. Thanks to Michael Vorburger for the pull request.
  • #2171 DOC: Fix a few typos in CommandLine's JavaDoc. Thanks to Michael Vorburger for the pull request.
  • #2217 DOC: Clarify documentation for negatable options. Thanks to dbear496 for raising this.
  • #2228 DOC: Clarify that ParseResult passed to IExecutionExceptionHandler is the top-level parse result, not the parse result of the subcommand that failed. Thanks to Abel Salgado Romero for raising this.
  • #2047 DEP: Bump andymckay/append-gist-action from 1fbfbbce708a39bd45846f0955ed5521f2099c6d to 6e8d64427fe47cbacf4ab6b890411f1d67c07f3e
  • #2091 DEP: Bump actions/checkout from 3.5.2 to 3.6.0
  • #2108 DEP: Bump actions/checkout from 3.6.0 to 4.0.0
  • #2120 DEP: Bump actions/checkout from 4.0.0 to 4.1.0
  • #2225 DEP: Bump actions/checkout from 4.1.0 to 4.1.2
  • #2272 DEP: Bump actions/checkout from 4.1.2 to 4.1.4
  • #2098 DEP: Bump actions/setup-java from 3.11.0 to 3.12.0
  • #2158 DEP: Bump actions/setup-java from 3.12.0 to 4.0.0

... (truncated)

Changelog

Sourced from info.picocli:picocli-codegen's changelog.

Picocli 4.7.6

The picocli community is pleased to announce picocli 4.7.6.

This release includes bugfixes and enhancements.

Many thanks to the picocli community for raising these issues and providing the pull requests to address them!

This is the eighty-fifth public release. Picocli follows semantic versioning. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).

Table of Contents

  • New and noteworthy
  • Fixed issues
  • Deprecations
  • Potential breaking changes

New and Noteworthy

PropertiesDefaultProvider now tries to load properties from the classpath if the file cannot be found in the user.home directory.

Fixed issues

  • #2102#2107 Enhancement: PropertiesDefaultProvider should try to load properties from classpath (last). Thanks to Lumír Návrat for the pull request.
  • #2202 Enhancement: Change log level from WARN to INFO when bean not found in ApplicationContext. Thanks to Desmond Kirrane for raising this.
  • #2248 Enhancement: Don't show hidden commands in JLine3 command description. Thanks to Reinhard Handler for the pull request.
  • #2170 Enhancement: Use ... vararg instead of array parameter to match overridden method signature. Thanks to Michael Vorburger for the pull request.
  • #2058 Bugfix: defaultValue should not be applied in addition to user-specified value for options with a custom IParameterConsumer. Thanks to Staffan Arvidsson McShane for raising this.
  • #2148 Bugfix: Fix NPE in jline3 Example.jar as ConfigurationPath cannot be null anymore. Thanks to llzen44 for the pull request.
  • #2232 Bugfix: fix bug for Optional<T> arguments with initial value. Thanks to hq6 for raising this.
  • #2149 Bugfix: @Option-annotated setter method not invoked with default value when used in mixin for both command and subcommand. Thanks to Zhonghao Wang for raising this.
  • #2270 Bugfix: Custom type converter for primitive boolean options should not be ignored. Thanks to Sven Kammerer for raising this.
  • #2234 BUILD: fix errorprone TruthSelfEquals warnings
  • #2172 BUILD: Fix broken build. Thanks to Michael Vorburger for the pull request.
  • #2174 BUILD: Fix .gitattributes related CR/LF problems. Thanks to Michael Vorburger for the pull request.
  • #2054#2176 BUILD: Add Error Prone. Thanks to Michael Vorburger for the pull request.
  • #2053 #2175 CLEAN: Remove unused extra format arguments. Thanks to Michael Vorburger for the pull request.
  • #2171 DOC: Fix a few typos in CommandLine's JavaDoc. Thanks to Michael Vorburger for the pull request.
  • #2217 DOC: Clarify documentation for negatable options. Thanks to dbear496 for raising this.
  • #2228 DOC: Clarify that ParseResult passed to IExecutionExceptionHandler is the top-level parse result, not the parse result of the subcommand that failed. Thanks to Abel Salgado Romero for raising this.
  • #2047 DEP: Bump andymckay/append-gist-action from 1fbfbbce708a39bd45846f0955ed5521f2099c6d to 6e8d64427fe47cbacf4ab6b890411f1d67c07f3e
  • #2091 DEP: Bump actions/checkout from 3.5.2 to 3.6.0
  • #2108 DEP: Bump actions/checkout from 3.6.0 to 4.0.0
  • #2120 DEP: Bump actions/checkout from 4.0.0 to 4.1.0
  • #2225 DEP: Bump actions/checkout from 4.1.0 to 4.1.2
  • #2272 DEP: Bump actions/checkout from 4.1.2 to 4.1.4
  • #2098 DEP: Bump actions/setup-java from 3.11.0 to 3.12.0
  • #2158 DEP: Bump actions/setup-java from 3.12.0 to 4.0.0
  • #2236 DEP: Bump actions/setup-java from 4.0.0 to 4.2.1.

... (truncated)

Commits
  • 368d97e Release picocli version 4.7.6
  • ca9fbb6 #2145 fix output dir
  • 7737d84 #2145 add test
  • 6430401 [BUILD] fix broken CI tests
  • aa46a77 Bump actions/upload-artifact from 4.3.1 to 4.3.3
  • 4843676 Bump actions/checkout from 4.1.2 to 4.1.4
  • c825d20 #2270 Custom type converter for primitive boolean options should not be i...
  • fa33be1 #2149 bugfix: ArgSpecs are not equal if their enclosing command is different
  • 92be33a DOC update release notes for dependency updates
  • 9791bd9 #2228 DOC: Clarify that ParseResult passed to `IExecutionExceptionHandler...
  • Additional commits viewable in compare view

Updates com.amazonaws:aws-java-sdk-bom from 1.12.626 to 1.12.780

Changelog

Sourced from com.amazonaws:aws-java-sdk-bom's changelog.

1.12.780 2024-12-11

Amazon Simple Storage Service

  • Bugfixes

    • AWS SDK for Java 1.x now includes additional validation for Amazon S3 client APIs to handle scenarios where an empty string ('') is passed as the key argument to the following operations: PutObject, DeleteObject, ListObjects, GetObjectMetaData, ListObjectsV2, SetObjectTagging, GetObjectTagging, SetObjectAcl, GetObjectAcl, SetObjectLegalHold, GetObjectLegalHold, CopyObject, CopyPart, SelectObjectContent, SetObjectRetention, GetObjectRetention, AbortMultipartUpload, CompleteMultipartUpload, InitiateMultipartUpload, ListParts, UploadPart, RestoreObjectV2, and RestoreObject. The SDK will validate the key argument and throw an exception if it is an empty string, ensuring correct and expected behavior.

1.12.778 2024-11-13

Amazon Kinesis Video Streams

  • Features

    • Update Netty version to 4.1.115.Final

1.12.774 2024-10-16

Amazon Simple Storage Service

  • Features

    • Add support for the new optional bucket-region and prefix query parameters in the ListBuckets API. For ListBuckets requests that express pagination, Amazon S3 will now return both the bucket names and associated AWS regions in the response.

1.12.771 2024-09-04

AWS SDK for Java

Amazon DynamoDB

  • Features

    • Add handler to generate the account endpoint for a request

1.12.770 2024-08-20

Amazon Simple Storage Service

  • Features

    • Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs.

1.12.769 2024-08-15

Amazon Simple Storage Service

  • Features

    • Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API.

1.12.768 2024-08-14

AWS SDK for Java

  • Features

    • Update Java baseline version to Java 8 and bump Jackson library to 2.17.2

1.12.767 2024-07-30

AWS CodePipeline

  • Features

    • AWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.

AWS SDK for Java

AWS Telco Network Builder

  • Features

... (truncated)

Commits
  • fd30f27 AWS SDK for Java 1.12.780
  • 2ed75eb Update GitHub version number to 1.12.780-SNAPSHOT
  • c2b4aa2 AWS SDK for Java 1.12.779
  • 3c36744 Update GitHub version number to 1.12.779-SNAPSHOT
  • 3234194 AWS SDK for Java 1.12.778
  • df2ce8a Update GitHub version number to 1.12.778-SNAPSHOT
  • 2423eb0 AWS SDK for Java 1.12.777
  • 662897c Update GitHub version number to 1.12.777-SNAPSHOT
  • b8a7ff3 AWS SDK for Java 1.12.776
  • 40722f9 Update GitHub version number to 1.12.776-SNAPSHOT
  • Additional commits viewable in compare view

Updates org.mockito:mockito-core from 5.8.0 to 5.14.2

Release notes

Sourced from org.mockito:mockito-core's releases.

v5.14.2

Changelog generated by Shipkit Changelog Gradle Plugin

5.14.2

v5.14.1

Changelog generated by Shipkit Changelog Gradle Plugin

5.14.1

v5.14.0

Changelog generated by Shipkit Changelog Gradle Plugin

5.14.0

v5.13.0

Changelog generated by Shipkit Changelog Gradle Plugin

5.13.0

  • 2024-08-27 - 43 commit(s) by Breno A, Caleb Cushing, Jinwoo, Kurt Alfred Kluever, Stefano Cordio, Thach Le, dependabot[bot]
  • Bump versions.bytebuddy from 1.14.19 to 1.15.0 [(#3429)](mockito/mockito#3429)

... (truncated)

Commits
  • 7834859 Update nexusPublishing to use project.group(#3470)
  • 297d147 Bump org.jetbrains.kotlin:kotlin-stdlib from 2.0.20 to 2.0.21 (#3468)
  • 6a72b10 Bump bytebuddy from 1.15.3 to 1.15.4 (#3467)
  • 68ca2f8 Bump biz.aQute.bnd:biz.aQute.bnd.gradle from 6.4.0 to 7.0.0 (#3136)
  • 147c599 Bump junit-jupiter from 5.11.1 to 5.11.2 (#3461)
  • 9942641 Avoid attach warning if Byte Buddy is configured for command-line attach. (#3...
  • 560d855 Removes deprecated and now unused gradle/root/gradle-fix.gradle
  • 1c0b04b Rename extension modules with mockito- prefix (#3460)
  • ab32438 Move core sources to mockito-core
  • 61dcd83 Switch gradleEnterprise to develocity
  • Additional commits viewable in compare view

Updates io.kubernetes:client-java-extended from 19.0.0 to 22.0.0

Release notes

Sourced from io.kubernetes:client-java-extended's releases.

v22.0.0

[maven-release-plugin] copy for tag v22.0.0

v21.0.1

No release notes provided.

v21.0.0-legacy

No release notes provided.

v21.0.0

No release notes provided.

v20.0.1-legacy

No release notes provided.

v20.0.1

No release notes provided.

v20.0.0-legacy

[maven-release-plugin] copy for tag v20.0.0-legacy

v20.0.0

No release notes provided.

v19.0.1

No release notes provided.

Commits
  • 8b2bf33 Merge pull request #3785 from kubernetes-client/pom-22
  • b71aff1 Update poms for 22.0.0 release
  • ec2c4bb Merge pull request #3781 from kubernetes-client/dependabot/maven/org.apache.m...
  • c626b34 Merge pull request #3780 from kubernetes-client/dependabot/maven/org.apache.m...
  • 127d208 build(deps): bump org.apache.maven.plugins:maven-surefire-plugin
  • 2dec33c build(deps): bump org.apache.maven.plugins:maven-javadoc-plugin
  • 1953a6a Merge pull request #3778 from kubernetes-client/add-PR-capabilities
  • ebf0b14 Merge pull request #3779 from yue9944882/refactor/remove-eks-signer
  • e210337 remove EKS related signer impl, use AWS SDK provided signer instead
  • 01e1ac5 Update generate.yml
  • Additional commits viewable in compare view

Updates org.assertj:assertj-core from 3.24.2 to 3.27.0

Release notes

Sourced from org.assertj:assertj-core's releases.

v3.27.0

🚫 Deprecated

Core

  • Deprecate ClassBasedNavigableIterableAssert and ClassBasedNavigableListAssert #3529

✨ New Features

Core

  • Add actual() to access the object under test #3489
  • Add isCompletedWithValueMatchingWithin to CompletableFuture assertions #3506
  • Add completesExceptionallyWithin to CompletableFuture assertions #3597
  • Add inBinary to CharSequence assertions #3600
  • Support for Assertions.byLessThan(Duration) and Assertions.within(Duration) #3486
  • Add standard representation for CharSequence #3617
  • Add predicate descriptions overloads to anyMatch and noneMatch #3639
  • Add doesNotMatch(Predicate) #3684
  • Add usingEquals accepting a BiPredicate and an optional description to provide a custom comparison in assertions #3678

Guava

  • Add isNotEmpty to Table assertions #3559

🐛 Bug Fixes

Core

  • Recursive assertion hasNoNullFields throws NPE with fields of anonymous and local types #3534
  • Fix incorrect mutation of actualElementsGroupedByHashCode in recursive comparison
  • Recursive comparison ignoringFields not working properly with maps #2988
  • Custom representation ignored when describing expected items not in the actual list #3646
  • hasFieldOrPropertyWithValue swallows exceptions thrown by getters, and reports non-existent property instead #3563
  • satisfies() with nested assertions obscures stack trace #2542

⚡ Improvements

Core

  • Report all failing conditions when using satisfies(allOf(Condition...)) #3537
  • Fix Unicode escapes in inUnicode() Javadoc
  • Show error differences if values were compared with equals in recursive comparison #3209
  • Propagate common basetype for extracting(Function...) #3673
  • Add throwable stacktrace to ShouldNotContainCharSequence
  • Remove unused code and other minor cleanup #3683
  • Simplify comparison strategy isLessThan and isLessThanOrEqualTo in AbstractComparisonStrategy

Bumps the root-gradle-deps group with 29 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.google.guava:guava](https://github.com/google/guava) | `33.0.0-jre` | `33.4.0-jre` |
| com.github.ben-manes.versions | `0.50.0` | `0.51.0` |
| com.google.cloud.tools.jib | `3.4.0` | `3.4.4` |
| [info.picocli:picocli](https://github.com/remkop/picocli) | `4.7.5` | `4.7.6` |
| [com.amazonaws:aws-java-sdk-bom](https://github.com/aws/aws-sdk-java) | `1.12.626` | `1.12.780` |
| [org.mockito:mockito-core](https://github.com/mockito/mockito) | `5.8.0` | `5.14.2` |
| [io.kubernetes:client-java-extended](https://github.com/kubernetes-client/java) | `19.0.0` | `22.0.0` |
| [org.assertj:assertj-core](https://github.com/assertj/assertj) | `3.24.2` | `3.27.0` |
| org.apache.logging.log4j:log4j-api | `2.22.1` | `2.24.3` |
| org.apache.logging.log4j:log4j-core | `2.22.1` | `2.24.3` |
| [com.github.spullara.mustache.java:compiler](https://github.com/spullara/mustache.java) | `0.9.11` | `0.9.14` |
| commons-io:commons-io | `2.15.1` | `2.18.0` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) | `2.16.1` | `2.18.2` |
| [io.freefair.lombok](https://github.com/freefair/gradle-plugins) | `8.4` | `8.11` |
| com.diffplug.spotless | `6.23.3` | `6.25.0` |
| [io.grpc:grpc-bom](https://github.com/grpc/grpc-java) | `1.61.0` | `1.69.0` |
| [io.grpc:grpc-api](https://github.com/grpc/grpc-java) | `1.60.1` | `1.69.0` |
| [io.grpc:grpc-netty-shaded](https://github.com/grpc/grpc-java) | `1.60.1` | `1.69.0` |
| [io.opentelemetry:opentelemetry-bom](https://github.com/open-telemetry/opentelemetry-java) | `1.34.1` | `1.45.0` |
| [com.amazonaws:aws-xray-recorder-sdk-core](https://github.com/aws/aws-xray-sdk-java) | `2.15.0` | `2.18.2` |
| [com.amazonaws:aws-xray-recorder-sdk-aws-sdk](https://github.com/aws/aws-xray-sdk-java) | `2.15.0` | `2.18.2` |
| [com.google.code.gson:gson](https://github.com/google/gson) | `2.10.1` | `2.11.0` |
| [io.opentracing.brave:brave-opentracing](https://github.com/openzipkin-contrib/opentracing-brave) | `1.0.0` | `1.0.1` |
| org.apache.commons:commons-lang3 | `3.14.0` | `3.17.0` |
| [io.zipkin.zipkin2:zipkin](https://github.com/openzipkin/zipkin) | `2.25.2` | `3.4.3` |
| [io.zipkin.reporter2:zipkin-sender-okhttp3](https://github.com/openzipkin/zipkin-reporter-java) | `2.17.1` | `3.4.3` |
| [io.zipkin.brave:brave](https://github.com/openzipkin/brave) | `5.17.0` | `6.0.3` |
| software.amazon.awssdk:s3 | `2.22.6` | `2.29.40` |
| org.slf4j:slf4j-simple | `2.0.9` | `2.0.16` |



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

Updates `com.github.ben-manes.versions` from 0.50.0 to 0.51.0

Updates `com.google.cloud.tools.jib` from 3.4.0 to 3.4.4

Updates `info.picocli:picocli` from 4.7.5 to 4.7.6
- [Release notes](https://github.com/remkop/picocli/releases)
- [Changelog](https://github.com/remkop/picocli/blob/main/RELEASE-NOTES.md)
- [Commits](remkop/picocli@v4.7.5...v4.7.6)

Updates `info.picocli:picocli-codegen` from 4.7.5 to 4.7.6
- [Release notes](https://github.com/remkop/picocli/releases)
- [Changelog](https://github.com/remkop/picocli/blob/main/RELEASE-NOTES.md)
- [Commits](remkop/picocli@v4.7.5...v4.7.6)

Updates `com.amazonaws:aws-java-sdk-bom` from 1.12.626 to 1.12.780
- [Changelog](https://github.com/aws/aws-sdk-java/blob/master/CHANGELOG.md)
- [Commits](aws/aws-sdk-java@1.12.626...1.12.780)

Updates `org.mockito:mockito-core` from 5.8.0 to 5.14.2
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.8.0...v5.14.2)

Updates `io.kubernetes:client-java-extended` from 19.0.0 to 22.0.0
- [Release notes](https://github.com/kubernetes-client/java/releases)
- [Changelog](https://github.com/kubernetes-client/java/blob/master/CHANGELOG.md)
- [Commits](kubernetes-client/java@v19.0.0...v22.0.0)

Updates `org.assertj:assertj-core` from 3.24.2 to 3.27.0
- [Release notes](https://github.com/assertj/assertj/releases)
- [Commits](assertj/assertj@assertj-build-3.24.2...assertj-build-3.27.0)

Updates `org.apache.logging.log4j:log4j-api` from 2.22.1 to 2.24.3

Updates `org.apache.logging.log4j:log4j-core` from 2.22.1 to 2.24.3

Updates `com.github.spullara.mustache.java:compiler` from 0.9.11 to 0.9.14
- [Commits](spullara/mustache.java@mustache.java-0.9.11...mustache.java-0.9.14)

Updates `commons-io:commons-io` from 2.15.1 to 2.18.0

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

Updates `io.freefair.lombok` from 8.4 to 8.11
- [Release notes](https://github.com/freefair/gradle-plugins/releases)
- [Commits](freefair/gradle-plugins@8.4...8.11)

Updates `com.diffplug.spotless` from 6.23.3 to 6.25.0

Updates `io.grpc:grpc-bom` from 1.61.0 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.61.0...v1.69.0)

Updates `io.grpc:grpc-api` from 1.60.1 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.60.1...v1.69.0)

Updates `io.grpc:grpc-netty-shaded` from 1.60.1 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.60.1...v1.69.0)

Updates `io.opentelemetry:opentelemetry-bom` from 1.34.1 to 1.45.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-java/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-java@v1.34.1...v1.45.0)

Updates `com.amazonaws:aws-xray-recorder-sdk-core` from 2.15.0 to 2.18.2
- [Release notes](https://github.com/aws/aws-xray-sdk-java/releases)
- [Changelog](https://github.com/aws/aws-xray-sdk-java/blob/master/CHANGELOG.md)
- [Commits](aws/aws-xray-sdk-java@v2.15.0...v2.18.2)

Updates `com.amazonaws:aws-xray-recorder-sdk-aws-sdk` from 2.15.0 to 2.18.2
- [Release notes](https://github.com/aws/aws-xray-sdk-java/releases)
- [Changelog](https://github.com/aws/aws-xray-sdk-java/blob/master/CHANGELOG.md)
- [Commits](aws/aws-xray-sdk-java@v2.15.0...v2.18.2)

Updates `com.google.code.gson:gson` from 2.10.1 to 2.11.0
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)
- [Commits](google/gson@gson-parent-2.10.1...gson-parent-2.11.0)

Updates `io.opentracing.brave:brave-opentracing` from 1.0.0 to 1.0.1
- [Commits](https://github.com/openzipkin-contrib/opentracing-brave/commits)

Updates `org.apache.commons:commons-lang3` from 3.14.0 to 3.17.0

Updates `io.zipkin.zipkin2:zipkin` from 2.25.2 to 3.4.3
- [Release notes](https://github.com/openzipkin/zipkin/releases)
- [Changelog](https://github.com/openzipkin/zipkin/blob/master/RELEASE.md)
- [Commits](openzipkin/zipkin@2.25.2...3.4.3)

Updates `io.zipkin.reporter2:zipkin-sender-okhttp3` from 2.17.1 to 3.4.3
- [Release notes](https://github.com/openzipkin/zipkin-reporter-java/releases)
- [Changelog](https://github.com/openzipkin/zipkin-reporter-java/blob/master/RELEASE.md)
- [Commits](openzipkin/zipkin-reporter-java@2.17.1...3.4.3)

Updates `io.zipkin.brave:brave` from 5.17.0 to 6.0.3
- [Release notes](https://github.com/openzipkin/brave/releases)
- [Changelog](https://github.com/openzipkin/brave/blob/master/RELEASE.md)
- [Commits](openzipkin/brave@5.17.0...6.0.3)

Updates `software.amazon.awssdk:s3` from 2.22.6 to 2.29.40

Updates `org.slf4j:slf4j-simple` from 2.0.9 to 2.0.16

---
updated-dependencies:
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.github.ben-manes.versions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.google.cloud.tools.jib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-gradle-deps
- dependency-name: info.picocli:picocli
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-gradle-deps
- dependency-name: info.picocli:picocli-codegen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-gradle-deps
- dependency-name: com.amazonaws:aws-java-sdk-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-gradle-deps
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.kubernetes:client-java-extended
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: root-gradle-deps
- dependency-name: org.assertj:assertj-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: org.apache.logging.log4j:log4j-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: org.apache.logging.log4j:log4j-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.github.spullara.mustache.java:compiler
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-gradle-deps
- dependency-name: commons-io:commons-io
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.freefair.lombok
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.diffplug.spotless
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.grpc:grpc-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.grpc:grpc-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.grpc:grpc-netty-shaded
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.opentelemetry:opentelemetry-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.amazonaws:aws-xray-recorder-sdk-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.amazonaws:aws-xray-recorder-sdk-aws-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: com.google.code.gson:gson
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.opentracing.brave:brave-opentracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-gradle-deps
- dependency-name: org.apache.commons:commons-lang3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: io.zipkin.zipkin2:zipkin
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: root-gradle-deps
- dependency-name: io.zipkin.reporter2:zipkin-sender-okhttp3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: root-gradle-deps
- dependency-name: io.zipkin.brave:brave
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: root-gradle-deps
- dependency-name: software.amazon.awssdk:s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-gradle-deps
- dependency-name: org.slf4j:slf4j-simple
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-gradle-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 24, 2024 05:40
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 24, 2024
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