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 31 updates #425

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

Conversation

dependabot[bot]
Copy link

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

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

Package From To
com.google.guava:guava 32.1.2-jre 33.2.1-jre
com.github.ben-manes.versions 0.47.0 0.51.0
com.google.cloud.tools.jib 3.3.2 3.4.3
info.picocli:picocli 4.7.4 4.7.6
com.amazonaws:aws-java-sdk-bom 1.12.521 1.12.750
com.squareup.okhttp3:okhttp 4.11.0 4.12.0
org.mockito:mockito-core 5.4.0 5.12.0
org.assertj:assertj-core 3.24.2 3.26.0
org.apache.logging.log4j:log4j-api 2.20.0 2.23.1
org.apache.logging.log4j:log4j-core 2.20.0 2.23.1
com.github.spullara.mustache.java:compiler 0.9.10 0.9.13
commons-io:commons-io 2.13.0 2.16.1
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.15.2 2.17.1
io.freefair.lombok 8.1.0 8.6
com.diffplug.spotless 6.20.0 6.25.0
io.grpc:grpc-bom 1.57.1 1.64.0
io.grpc:grpc-api 1.57.1 1.64.0
io.grpc:grpc-netty-shaded 1.57.1 1.64.0
io.opentelemetry:opentelemetry-bom 1.28.0 1.39.0
io.opentelemetry:opentelemetry-semconv 1.28.0-alpha 1.30.1-alpha
com.amazonaws:aws-xray-recorder-sdk-core 2.14.0 2.16.0
com.amazonaws:aws-xray-recorder-sdk-aws-sdk 2.14.0 2.16.0
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.13.0 3.14.0
io.zipkin.zipkin2:zipkin 2.24.3 3.4.0
io.zipkin.reporter2:zipkin-sender-okhttp3 2.16.4 3.4.0
io.zipkin.brave:brave 5.16.0 6.0.3
software.amazon.awssdk:s3 2.20.118 2.26.9
org.slf4j:slf4j-simple 2.0.7 2.0.13

Updates com.google.guava:guava from 32.1.2-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)

33.2.0

Android users: Please test recent Guava versions

If you know of Guava Android users who have not yet upgraded to at least release 33.0.0, please encourage them to upgrade, preferably to today's release, 33.2.0. These releases have begun adding Java 8+ APIs to guava-android. While we don't anticipate problems, we do anticipate that any unexpected problems could force a disruptive rollback. To minimize any disruption, we'd like to catch any such problems early.

Please let us know of any problems you encounter.

Maven

... (truncated)

Commits

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

Updates com.google.cloud.tools.jib from 3.3.2 to 3.4.3

Updates info.picocli:picocli from 4.7.4 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.4 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.521 to 1.12.750

Changelog

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

1.12.750 2024-06-25

AWS Network Manager

  • Features

    • This is model changes & documentation update for the Asynchronous Error Reporting feature for AWS Cloud WAN. This feature allows customers to view errors that occur while their resources are being provisioned, enabling customers to fix their resources without needing external support.

Amazon Elastic Compute Cloud

  • Features

    • This release is for the launch of the new u7ib-12tb.224xlarge, R8g, c7gn.metal and mac2-m1ultra.metal instance types

Amazon WorkSpaces Thin Client

  • Features

    • This release adds the deviceCreationTags field to CreateEnvironment API input, UpdateEnvironment API input and GetEnvironment API output.

Auto Scaling

  • Features

    • Doc only update for Auto Scaling's TargetTrackingMetricDataQuery

1.12.749 2024-06-24

Amazon Bedrock Runtime

  • Features

    • Increases Converse API's document name length

Amazon Connect Customer Profiles

  • Features

    • This release includes changes to ProfileObjectType APIs, adds functionality top set and get capacity for profile object types.

Amazon Elastic Compute Cloud

  • Features

    • Fix EC2 multi-protocol info in models.

Amazon Simple Systems Manager (SSM)

  • Features

    • Add sensitive trait to SSM IPAddress property for CloudTrail redaction

Amazon WorkSpaces Web

  • Features

    • Added ability to enable DeepLinking functionality on a Portal via UserSettings as well as added support for IdentityProvider resource tagging.

QBusiness

  • Features

    • Allow enable/disable Q Apps when creating/updating a Q application; Return the Q Apps enablement information when getting a Q application.

1.12.748 2024-06-20

AWS Compute Optimizer

  • Features

    • This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL.

AWS Glue

  • Features

    • Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows.

... (truncated)

Commits
  • 898d1d7 AWS SDK for Java 1.12.750
  • b8dc57c Update GitHub version number to 1.12.750-SNAPSHOT
  • 2dee2ba AWS SDK for Java 1.12.749
  • 5b96018 Update GitHub version number to 1.12.749-SNAPSHOT
  • ddae833 AWS SDK for Java 1.12.748
  • 37ae98b Update GitHub version number to 1.12.748-SNAPSHOT
  • cbd1a27 AWS SDK for Java 1.12.747
  • 4a8ddf4 Update GitHub version number to 1.12.747-SNAPSHOT
  • 430899c AWS SDK for Java 1.12.746
  • 43d6325 Update GitHub version number to 1.12.746-SNAPSHOT
  • Additional commits viewable in compare view

Updates com.squareup.okhttp3:okhttp from 4.11.0 to 4.12.0

Commits

Updates org.mockito:mockito-core from 5.4.0 to 5.12.0

Release notes

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

v5.12.0

Changelog generated by Shipkit Changelog Gradle Plugin

5.12.0

v5.11.0

Changelog generated by Shipkit Changelog Gradle Plugin

5.11.0

... (truncated)

Commits
  • 12cef84 AdditionalMatchers.and() and or() swap matcher order (#3335)
  • f3821ff Bump com.gradle.enterprise from 3.17.2 to 3.17.3 (#3341)
  • 25ad018 Bump org.jetbrains.kotlin:kotlin-stdlib from 1.9.23 to 1.9.24 (#3339)
  • de38124 Bump versions.bytebuddy from 1.14.14 to 1.14.15 (#3338)
  • 88e8481 Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.23 to 1.9.24 (#3336)
  • 8c222c2 Bump org.shipkit:shipkit-auto-version from 2.0.6 to 2.0.7 (#3337)
  • fb9ff6d Bump gradle/wrapper-validation-action from 3.3.1 to 3.3.2 (#3327)
  • af70125 Bump versions.bytebuddy from 1.14.13 to 1.14.14 (#3324)
  • 1eac76b Bump org.shipkit:shipkit-auto-version from 2.0.5 to 2.0.6 (#3322)
  • cd512ab Bump gradle/wrapper-validation-action from 3.3.0 to 3.3.1 (#3320)
  • Additional commits viewable in compare view

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

Release notes

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

v3.26.0

💥 Breaking Changes

Core

  • Delegate OptionalDouble value comparison to Double.compare in hasValue assertion #3411

    This fixes the comparison of NaN values which wasn't working the way the hasValue Javadoc describes.

    The previous behavior can be obtained with getAsDouble:

    assertThat(OptionalDouble.of(Double.NaN).getAsDouble()).isSameAs(Double.NaN);

🚫 Deprecated

Core

  • Deprecate ObjectAssertFactory in favor of Assertions.assertThat(Object)
  • Deprecate AssertionErrorFactory in favor of AssertionErrorCreator
  • Deprecate catchThrowableOfType(ThrowingCallable, Class) in favor of catchThrowableOfType(Class, ThrowingCallable) #2823
  • Deprecate assertThat(Iterable, AssertFactory), assertThat(Iterable, Class) and their respective then variants #3453

✨ New Features

Core

  • Support multiple AfterAssertionErrorCollected callbacks #3313
  • Add InstanceOfAssertFactory for Set instances #3325
  • Add doesNotContainKey and doesNotContainKeys to Guava Multimap assertions #3334
  • Add assertions for JDK YearMonth type #3142
  • Add TemporalAssert type #3404
  • Add ignoringFieldsOfTypesMatchingRegexes #3369
  • Add fail(Throwable) and fail() v...

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [com.google.guava:guava](https://github.com/google/guava) | `32.1.2-jre` | `33.2.1-jre` |
| com.github.ben-manes.versions | `0.47.0` | `0.51.0` |
| com.google.cloud.tools.jib | `3.3.2` | `3.4.3` |
| [info.picocli:picocli](https://github.com/remkop/picocli) | `4.7.4` | `4.7.6` |
| [com.amazonaws:aws-java-sdk-bom](https://github.com/aws/aws-sdk-java) | `1.12.521` | `1.12.750` |
| [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) | `4.11.0` | `4.12.0` |
| [org.mockito:mockito-core](https://github.com/mockito/mockito) | `5.4.0` | `5.12.0` |
| [org.assertj:assertj-core](https://github.com/assertj/assertj) | `3.24.2` | `3.26.0` |
| org.apache.logging.log4j:log4j-api | `2.20.0` | `2.23.1` |
| org.apache.logging.log4j:log4j-core | `2.20.0` | `2.23.1` |
| [com.github.spullara.mustache.java:compiler](https://github.com/spullara/mustache.java) | `0.9.10` | `0.9.13` |
| commons-io:commons-io | `2.13.0` | `2.16.1` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) | `2.15.2` | `2.17.1` |
| [io.freefair.lombok](https://github.com/freefair/gradle-plugins) | `8.1.0` | `8.6` |
| com.diffplug.spotless | `6.20.0` | `6.25.0` |
| [io.grpc:grpc-bom](https://github.com/grpc/grpc-java) | `1.57.1` | `1.64.0` |
| [io.grpc:grpc-api](https://github.com/grpc/grpc-java) | `1.57.1` | `1.64.0` |
| [io.grpc:grpc-netty-shaded](https://github.com/grpc/grpc-java) | `1.57.1` | `1.64.0` |
| [io.opentelemetry:opentelemetry-bom](https://github.com/open-telemetry/opentelemetry-java) | `1.28.0` | `1.39.0` |
| [io.opentelemetry:opentelemetry-semconv](https://github.com/open-telemetry/opentelemetry-java) | `1.28.0-alpha` | `1.30.1-alpha` |
| [com.amazonaws:aws-xray-recorder-sdk-core](https://github.com/aws/aws-xray-sdk-java) | `2.14.0` | `2.16.0` |
| [com.amazonaws:aws-xray-recorder-sdk-aws-sdk](https://github.com/aws/aws-xray-sdk-java) | `2.14.0` | `2.16.0` |
| [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.13.0` | `3.14.0` |
| [io.zipkin.zipkin2:zipkin](https://github.com/openzipkin/zipkin) | `2.24.3` | `3.4.0` |
| [io.zipkin.reporter2:zipkin-sender-okhttp3](https://github.com/openzipkin/zipkin-reporter-java) | `2.16.4` | `3.4.0` |
| [io.zipkin.brave:brave](https://github.com/openzipkin/brave) | `5.16.0` | `6.0.3` |
| software.amazon.awssdk:s3 | `2.20.118` | `2.26.9` |
| org.slf4j:slf4j-simple | `2.0.7` | `2.0.13` |



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

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

Updates `com.google.cloud.tools.jib` from 3.3.2 to 3.4.3

Updates `info.picocli:picocli` from 4.7.4 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.4...v4.7.6)

Updates `info.picocli:picocli-codegen` from 4.7.4 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.4...v4.7.6)

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

Updates `com.squareup.okhttp3:okhttp` from 4.11.0 to 4.12.0
- [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md)
- [Commits](square/okhttp@parent-4.11.0...parent-4.12.0)

Updates `org.mockito:mockito-core` from 5.4.0 to 5.12.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.4.0...v5.12.0)

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

Updates `org.apache.logging.log4j:log4j-api` from 2.20.0 to 2.23.1

Updates `org.apache.logging.log4j:log4j-core` from 2.20.0 to 2.23.1

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

Updates `commons-io:commons-io` from 2.13.0 to 2.16.1

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 `io.freefair.lombok` from 8.1.0 to 8.6
- [Release notes](https://github.com/freefair/gradle-plugins/releases)
- [Commits](freefair/gradle-plugins@8.1.0...8.6)

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

Updates `io.grpc:grpc-bom` from 1.57.1 to 1.64.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.1...v1.64.0)

Updates `io.grpc:grpc-api` from 1.57.1 to 1.64.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.1...v1.64.0)

Updates `io.grpc:grpc-netty-shaded` from 1.57.1 to 1.64.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.1...v1.64.0)

Updates `io.opentelemetry:opentelemetry-bom` from 1.28.0 to 1.39.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.28.0...v1.39.0)

Updates `io.opentelemetry:opentelemetry-semconv` from 1.28.0-alpha to 1.30.1-alpha
- [Release notes](https://github.com/open-telemetry/opentelemetry-java/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-java/commits)

Updates `com.amazonaws:aws-xray-recorder-sdk-core` from 2.14.0 to 2.16.0
- [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.14.0...v2.16.0)

Updates `com.amazonaws:aws-xray-recorder-sdk-aws-sdk` from 2.14.0 to 2.16.0
- [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.14.0...v2.16.0)

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.13.0 to 3.14.0

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

Updates `io.zipkin.reporter2:zipkin-sender-okhttp3` from 2.16.4 to 3.4.0
- [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.16.4...3.4.0)

Updates `io.zipkin.brave:brave` from 5.16.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.16.0...6.0.3)

Updates `software.amazon.awssdk:s3` from 2.20.118 to 2.26.9

Updates `org.slf4j:slf4j-simple` from 2.0.7 to 2.0.13

---
updated-dependencies:
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-major
  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-minor
  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: com.squareup.okhttp3:okhttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: 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: io.opentelemetry:opentelemetry-semconv
  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] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 25, 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