aws-observability / aws-otel-test-framework

AWS Distro for OpenTelemetry Test Framework
https://aws-otel.github.io/
Apache License 2.0
28 stars 62 forks source link

Bump the root-gradle-deps group across 1 directory with 28 updates #1630

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 4 months ago

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

Package From To
com.google.guava:guava 33.0.0-jre 33.2.0-jre
com.github.ben-manes.versions 0.50.0 0.51.0
com.google.cloud.tools.jib 3.4.0 3.4.2
info.picocli:picocli 4.7.5 4.7.6
com.amazonaws:aws-java-sdk-bom 1.12.626 1.12.721
org.mockito:mockito-core 5.8.0 5.12.0
io.kubernetes:client-java-extended 19.0.0 20.0.1-legacy
org.assertj:assertj-core 3.24.2 3.25.3
org.apache.logging.log4j:log4j-api 2.22.1 2.23.1
org.apache.logging.log4j:log4j-core 2.22.1 2.23.1
com.github.spullara.mustache.java:compiler 0.9.11 0.9.13
commons-io:commons-io 2.15.1 2.16.1
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.16.1 2.17.1
io.freefair.lombok 8.4 8.6
com.diffplug.spotless 6.23.3 6.25.0
io.grpc:grpc-bom 1.61.0 1.63.0
io.grpc:grpc-api 1.60.1 1.63.0
io.grpc:grpc-netty-shaded 1.60.1 1.63.0
io.opentelemetry:opentelemetry-bom 1.34.1 1.38.0
com.amazonaws:aws-xray-recorder-sdk-core 2.15.0 2.15.3
com.amazonaws:aws-xray-recorder-sdk-aws-sdk 2.15.0 2.15.3
io.opentracing.brave:brave-opentracing 1.0.0 1.0.1
io.zipkin.zipkin2:zipkin 2.25.2 3.3.0
io.zipkin.reporter2:zipkin-sender-okhttp3 2.17.1 3.4.0
io.zipkin.brave:brave 5.17.0 6.0.3
software.amazon.awssdk:s3 2.22.6 2.25.51
org.slf4j:slf4j-simple 2.0.9 2.0.13

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

Release notes

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

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

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

Jar files

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

Javadoc

JDiff

Changelog

  • Dropped testing for Android versions before Lollipop (API Level 21). Guava may stop working under older versions in the future, or it may have done so already.
  • Fixed a GWT compilation breakage under Gradle. (858caf425c)
  • collect: Made our Collector APIs (e.g., ImmutableList.toImmutableList()) available in guava-android. More Java 8 APIs will follow in future releases. (96fca0b747)
    • As always, streams are available to Android code only when that code enables library desugaring or targets a new enough API Level (24 (Nougat) for many stream APIs). (But note that we test only with library desugaring, so we don't currently know if API Level 24 is high enough to use our Collector APIs unless you have also enabled library desugaring.) Guava users who avoid the Collector APIs do not need to meet this requirement.
  • collect: Fixed a potential NullPointerException in ImmutableMap.Builder on a rare code path. (70a98115d8)
  • net: Added HttpHeaders constants Ad-Auction-Allowed, Permissions-Policy-Report-Only, and Sec-GPC. (7dc01ed27b, 41d0d9a833, 38c8017bd44b7919b112f1c99f3d8ce4b058ae5d)

33.1.0

Request for Android users

... (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.2

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

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

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

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

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

Changelog

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

1.12.721 2024-05-13

Amazon EventBridge

  • Features

    • Amazon EventBridge introduces KMS customer-managed key (CMK) encryption support for custom and partner events published on EventBridge Event Bus (including default bus) and UpdateEventBus API.

Amazon VPC Lattice

  • Features

    • This release adds TLS Passthrough support. It also increases max number of target group per rule to 10.

1.12.720 2024-05-10

AWS Application Discovery Service

  • Features

    • add v2 smoke tests and smithy smokeTests trait for SDK testing

AWS IoT Greengrass V2

  • Features

    • Mark ComponentVersion in ComponentDeploymentSpecification as required.

AWS SSO OIDC

  • Features

    • Updated request parameters for PKCE support.

Amazon SageMaker Service

  • Features

    • Introduced support for G6 instance types on Sagemaker Notebook Instances and on SageMaker Studio for JupyterLab and CodeEditor applications.

1.12.719 2024-05-09

AWS Systems Manager for SAP

  • Features

    • Added support for application-aware start/stop of SAP applications running on EC2 instances, with SSM for SAP

Agents for Amazon Bedrock Runtime

  • Features

    • This release adds support to provide guardrail configuration and modify inference parameters that are then used in RetrieveAndGenerate API in Agents for Amazon Bedrock.

Amazon Pinpoint

  • Features

    • This release adds support for specifying email message headers for Email Templates, Campaigns, Journeys and Send Messages.

Amazon Route 53 Resolver

  • Features

    • Update the DNS Firewall settings to correct a spelling issue.

Amazon Verified Permissions

  • Features

    • Adds policy effect and actions fields to Policy API's.

1.12.718 2024-05-08

Amazon Cognito Identity Provider

  • Features

... (truncated)

Commits
  • 2a8cb6c AWS SDK for Java 1.12.721
  • 10dc4bf Update GitHub version number to 1.12.721-SNAPSHOT
  • 8efd1d9 AWS SDK for Java 1.12.720
  • bdefb0e Update GitHub version number to 1.12.720-SNAPSHOT
  • f10e25a AWS SDK for Java 1.12.719
  • 5d52a61 Update GitHub version number to 1.12.719-SNAPSHOT
  • b6a70a1 AWS SDK for Java 1.12.718
  • 31cdf3f Update GitHub version number to 1.12.718-SNAPSHOT
  • 5f7de41 AWS SDK for Java 1.12.717
  • c906ee9 Update GitHub version number to 1.12.717-SNAPSHOT
  • Additional commits viewable in compare view


Updates org.mockito:mockito-core from 5.8.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 io.kubernetes:client-java-extended from 19.0.0 to 20.0.1-legacy

Release notes

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

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
  • e7bb4b8 [maven-release-plugin] prepare release v20.0.1-legacy
  • 45c73c6 Merge pull request #3203 from kubernetes-client/brendandburns-patch-12
  • 21b3edb Fix a typo in pom.xml files
  • 1fcc676 Update pom.xml
  • 146b327 Merge pull request #3194 from brfrn169/brfrn169-release-legacy-20-commons-com...
  • 7b2ad28 build(deps): bump org.apache.commons:commons-compress
  • 10df693 [maven-release-plugin] prepare for next development iteration
  • 8e7d5b1 [maven-release-plugin] prepare release v20.0.0-legacy
  • 807e3a7 cherr-pick: kubernetes-client/java#3051
  • b7efcd2 Merge pull request #3041 from yue9944882/master-java8-release-workflow
  • Additional commits viewable in compare view


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

Release notes

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

v.3.25.3

:bug: Bug Fixes

  • Lock maven-clean-plugin version for all modules

Core

  • Fix a performance regression in the recursive comparison related to FieldLocation #3350
  • Don't fail when the recursive comparison checks compared fields in collection elements #3349 (proper fix: #3354)

:hammer: Dependency Upgrades

  • Upgrade to Flatten Maven Plugin 1.6.0 #3335
  • Upgrade to Groovy 4.0.18 #3347
  • Upgrade to Hibernate Core 6.4.2.Final #3338
  • Upgrade to Maven Surefire Report Plugin 3.2.5 #3330
  • Upgrade to PITest Maven 1.15.6 #3348
  • Upgrade to SpotBugs Maven Plugin 4.8.3.0 #3336
  • Upgrade to advanced-security/maven-dependency-submission-action to 4 #3346

:heart: Contributors

Thanks to all the contributors who worked on this release:

@​ash211

v3.25.2

:bug: Bug Fixes

  • Fix unresolvable Javadoc stylesheet URLs, simplify configuration #3324

Core

  • Fix missing configuration for MatcherAssert soft assertions
  • Make deprecation notice visible in AbstractAssert#asList #3327
  • Recursive comparison uses equals on root object when useOverriddenEquals is enabled #3320
  • satisfiesExactlyInAnyOrder fails if actual overrides equals #3339
  • Avoid calling actual.hashCode()... _Description has been truncated_
dependabot[bot] commented 3 months ago

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