aws-otel-test-framework
aws-otel-test-framework copied to clipboard
Bump the load-gen-gradle-deps group across 1 directory with 10 updates
Bumps the load-gen-gradle-deps group with 10 updates in the /load-generator directory:
| Package | From | To |
|---|---|---|
| com.google.guava:guava | 33.0.0-jre |
33.2.0-jre |
| io.grpc:grpc-bom | 1.61.0 |
1.63.0 |
| io.grpc:grpc-api | 1.61.0 |
1.63.0 |
| io.grpc:grpc-netty-shaded | 1.61.0 |
1.63.0 |
| io.opentelemetry:opentelemetry-bom | 1.34.1 |
1.37.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 |
| org.apache.logging.log4j:log4j-api | 2.22.1 |
2.23.1 |
| org.apache.logging.log4j:log4j-core | 2.22.1 |
2.23.1 |
| io.freefair.lombok | 8.4 |
8.6 |
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 ourCollectorAPIs (e.g.,ImmutableList.toImmutableList()) available inguava-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
CollectorAPIs unless you have also enabled library desugaring.) Guava users who avoid theCollectorAPIs do not need to meet this requirement.collect: Fixed a potentialNullPointerExceptioninImmutableMap.Builderon a rare code path. (70a98115d8)net: AddedHttpHeadersconstantsAd-Auction-Allowed,Permissions-Policy-Report-Only, andSec-GPC. (7dc01ed27b, 41d0d9a833, 38c8017bd44b7919b112f1c99f3d8ce4b058ae5d)33.1.0
Request for Android users
... (truncated)
Commits
- See full diff in compare view
Updates io.grpc:grpc-bom from 1.61.0 to 1.63.0
Release notes
Sourced from io.grpc:grpc-bom's releases.
v1.63.0
API Changes
- xds: Stabilize CsdsService (#11003) (0d749c594)
- api: Stabilize server.getListenerSockets (#10910) (ff34d51c7)
- servlet: Introduce ServletServerBuilder.buildServlet(#10921) (257d1c2db)
- api: Allow configuration of the queued byte threshold at which a Stream is considered not ready (#10977) (2c83ef063)
New Features
xds, dual stack, happy eyeballs: Support dual stack in xds, change list includes:
- Enable new PickFirst lb policy by default. The new PickFirst implements subchannel picking logic. (#11002) (8a9ce990b)
- EDS resource now supports additional addresses (#11011) (38f968faf)
- Change address based outlier detection to endpoint based (#10939) (c61fe6980)
- Enable Happy Eyeballs by default (#11022) (51f811df8)
Improvements
- rls: Adding extra debug logs (#10902) (eba699ad1)
- binder: Add missing Android API annotations (#10841) (ce2adcca9)
- core: Provide DEADLINE_EXCEEDED insights for context deadline (3abab95e7). When the deadline triggered and the deadline was set on the RPC via the stub or CallOptions, gRPC would gather additional debugging information to help understand where the RPC took so long. However if the deadline came from io.grpc.Context the error was simply “context timed out.” Now the debugging information is provided in both cases
- examples: Fix file paths in debug example README (e19f1f15a)
- compiler: implement ability to skip generation of javax annotation (#10927) (0d39c2c70). Pass the option
jakarta_omitto protoc-gen-grpc-java when generating code- xds: Get rid of xDS v2 proto dependencies (#10968) (feab4e544).
grpc-xdsjar size has decreased by 35%.- xds: Support retrieving names from wrapped resource containers (#10975) (867e46940)
- netty: improve server handling of writes to reset streams (#10258) (a68399a9b)
- api: Fix a typo in ServerInterceptor JavaDoc (#10990) (0b82f0126)
- servlet: Check log fine level before hex string conversion. (#11038)
- auth: Specify a locale for upper/lower case conversions (1.63.x backport) #11050
Bug Fixes
- xds: Copy data in least request to avoid picker data race (f4cc166f1). This fixes a possible regression introduced in 1.60.0. Auditing the buggy code showed it unlikely to cause problems in practice, but that was more by happenstance than by design
- xds: Fix data race in the xds client that contacts the control plane (d7628a3ab)
- rls: Fix a local and remote race (aa9076812). The remote race could cause an RPC to hang until its deadline. It had been seen in practice when the client was severely CPU under-provisioned
- xds: Fix xdsNameResolver virtual host lookup authority with xdstp style names. Use service authority instead of ldsResourceName (#10960) (78b3972ff)
- core: Fix retry race condition that can lead to double decrementing inFlightSubStreams and so miss calling closed (#11026) (#11033)
- okhttp: Fix OkHTTP client transport leak (#11060)
- xds: Use empty string when disabling server hostname verification ( #11058)
Dependencies
- Upgraded google-auth-library-java to 1.22.0
Acknowledgement
Alex Panchenko Benjamin Peterson David Ankin Prashanth Swaminathan Touko Vainio-Kaila
v1.62.2
gRPC Java 1.62.2 Release Notes
Note that this is the initial 1.62.x release
... (truncated)
Commits
48aa1b8Bump version to 1.63.0456c50fUpdate README etc to reference 1.63.0e0f134dRevert "Start 1.64.0 development cycle" (#11069)cc278e6Use empty string instead of null for endpoint identification algorithm to dis...922bf5bMake setOnReadyThreshold() a noop method instead of abstract. (#11044) (#11059)385ebdaokhttp: Remove finished stream even if a pending stream was started2c52450Upgrade to google-auth-library 1.225febb39Revert "auth: Add support for Retryable interface"43edd73Specify a locale for upper/lower case conversions (1.63.x backport)630e0a3servlet: Check log fine level before hex string conversion. Fixes #11031.- Additional commits viewable in compare view
Updates io.grpc:grpc-api from 1.61.0 to 1.63.0
Release notes
Sourced from io.grpc:grpc-api's releases.
v1.63.0
API Changes
- xds: Stabilize CsdsService (#11003) (0d749c594)
- api: Stabilize server.getListenerSockets (#10910) (ff34d51c7)
- servlet: Introduce ServletServerBuilder.buildServlet(#10921) (257d1c2db)
- api: Allow configuration of the queued byte threshold at which a Stream is considered not ready (#10977) (2c83ef063)
New Features
xds, dual stack, happy eyeballs: Support dual stack in xds, change list includes:
- Enable new PickFirst lb policy by default. The new PickFirst implements subchannel picking logic. (#11002) (8a9ce990b)
- EDS resource now supports additional addresses (#11011) (38f968faf)
- Change address based outlier detection to endpoint based (#10939) (c61fe6980)
- Enable Happy Eyeballs by default (#11022) (51f811df8)
Improvements
- rls: Adding extra debug logs (#10902) (eba699ad1)
- binder: Add missing Android API annotations (#10841) (ce2adcca9)
- core: Provide DEADLINE_EXCEEDED insights for context deadline (3abab95e7). When the deadline triggered and the deadline was set on the RPC via the stub or CallOptions, gRPC would gather additional debugging information to help understand where the RPC took so long. However if the deadline came from io.grpc.Context the error was simply “context timed out.” Now the debugging information is provided in both cases
- examples: Fix file paths in debug example README (e19f1f15a)
- compiler: implement ability to skip generation of javax annotation (#10927) (0d39c2c70). Pass the option
jakarta_omitto protoc-gen-grpc-java when generating code- xds: Get rid of xDS v2 proto dependencies (#10968) (feab4e544).
grpc-xdsjar size has decreased by 35%.- xds: Support retrieving names from wrapped resource containers (#10975) (867e46940)
- netty: improve server handling of writes to reset streams (#10258) (a68399a9b)
- api: Fix a typo in ServerInterceptor JavaDoc (#10990) (0b82f0126)
- servlet: Check log fine level before hex string conversion. (#11038)
- auth: Specify a locale for upper/lower case conversions (1.63.x backport) #11050
Bug Fixes
- xds: Copy data in least request to avoid picker data race (f4cc166f1). This fixes a possible regression introduced in 1.60.0. Auditing the buggy code showed it unlikely to cause problems in practice, but that was more by happenstance than by design
- xds: Fix data race in the xds client that contacts the control plane (d7628a3ab)
- rls: Fix a local and remote race (aa9076812). The remote race could cause an RPC to hang until its deadline. It had been seen in practice when the client was severely CPU under-provisioned
- xds: Fix xdsNameResolver virtual host lookup authority with xdstp style names. Use service authority instead of ldsResourceName (#10960) (78b3972ff)
- core: Fix retry race condition that can lead to double decrementing inFlightSubStreams and so miss calling closed (#11026) (#11033)
- okhttp: Fix OkHTTP client transport leak (#11060)
- xds: Use empty string when disabling server hostname verification ( #11058)
Dependencies
- Upgraded google-auth-library-java to 1.22.0
Acknowledgement
Alex Panchenko Benjamin Peterson David Ankin Prashanth Swaminathan Touko Vainio-Kaila
v1.62.2
gRPC Java 1.62.2 Release Notes
Note that this is the initial 1.62.x release
... (truncated)
Commits
48aa1b8Bump version to 1.63.0456c50fUpdate README etc to reference 1.63.0e0f134dRevert "Start 1.64.0 development cycle" (#11069)cc278e6Use empty string instead of null for endpoint identification algorithm to dis...922bf5bMake setOnReadyThreshold() a noop method instead of abstract. (#11044) (#11059)385ebdaokhttp: Remove finished stream even if a pending stream was started2c52450Upgrade to google-auth-library 1.225febb39Revert "auth: Add support for Retryable interface"43edd73Specify a locale for upper/lower case conversions (1.63.x backport)630e0a3servlet: Check log fine level before hex string conversion. Fixes #11031.- Additional commits viewable in compare view
Updates io.grpc:grpc-netty-shaded from 1.61.0 to 1.63.0
Release notes
Sourced from io.grpc:grpc-netty-shaded's releases.
v1.63.0
API Changes
- xds: Stabilize CsdsService (#11003) (0d749c594)
- api: Stabilize server.getListenerSockets (#10910) (ff34d51c7)
- servlet: Introduce ServletServerBuilder.buildServlet(#10921) (257d1c2db)
- api: Allow configuration of the queued byte threshold at which a Stream is considered not ready (#10977) (2c83ef063)
New Features
xds, dual stack, happy eyeballs: Support dual stack in xds, change list includes:
- Enable new PickFirst lb policy by default. The new PickFirst implements subchannel picking logic. (#11002) (8a9ce990b)
- EDS resource now supports additional addresses (#11011) (38f968faf)
- Change address based outlier detection to endpoint based (#10939) (c61fe6980)
- Enable Happy Eyeballs by default (#11022) (51f811df8)
Improvements
- rls: Adding extra debug logs (#10902) (eba699ad1)
- binder: Add missing Android API annotations (#10841) (ce2adcca9)
- core: Provide DEADLINE_EXCEEDED insights for context deadline (3abab95e7). When the deadline triggered and the deadline was set on the RPC via the stub or CallOptions, gRPC would gather additional debugging information to help understand where the RPC took so long. However if the deadline came from io.grpc.Context the error was simply “context timed out.” Now the debugging information is provided in both cases
- examples: Fix file paths in debug example README (e19f1f15a)
- compiler: implement ability to skip generation of javax annotation (#10927) (0d39c2c70). Pass the option
jakarta_omitto protoc-gen-grpc-java when generating code- xds: Get rid of xDS v2 proto dependencies (#10968) (feab4e544).
grpc-xdsjar size has decreased by 35%.- xds: Support retrieving names from wrapped resource containers (#10975) (867e46940)
- netty: improve server handling of writes to reset streams (#10258) (a68399a9b)
- api: Fix a typo in ServerInterceptor JavaDoc (#10990) (0b82f0126)
- servlet: Check log fine level before hex string conversion. (#11038)
- auth: Specify a locale for upper/lower case conversions (1.63.x backport) #11050
Bug Fixes
- xds: Copy data in least request to avoid picker data race (f4cc166f1). This fixes a possible regression introduced in 1.60.0. Auditing the buggy code showed it unlikely to cause problems in practice, but that was more by happenstance than by design
- xds: Fix data race in the xds client that contacts the control plane (d7628a3ab)
- rls: Fix a local and remote race (aa9076812). The remote race could cause an RPC to hang until its deadline. It had been seen in practice when the client was severely CPU under-provisioned
- xds: Fix xdsNameResolver virtual host lookup authority with xdstp style names. Use service authority instead of ldsResourceName (#10960) (78b3972ff)
- core: Fix retry race condition that can lead to double decrementing inFlightSubStreams and so miss calling closed (#11026) (#11033)
- okhttp: Fix OkHTTP client transport leak (#11060)
- xds: Use empty string when disabling server hostname verification ( #11058)
Dependencies
- Upgraded google-auth-library-java to 1.22.0
Acknowledgement
Alex Panchenko Benjamin Peterson David Ankin Prashanth Swaminathan Touko Vainio-Kaila
v1.62.2
gRPC Java 1.62.2 Release Notes
Note that this is the initial 1.62.x release
... (truncated)
Commits
48aa1b8Bump version to 1.63.0456c50fUpdate README etc to reference 1.63.0e0f134dRevert "Start 1.64.0 development cycle" (#11069)cc278e6Use empty string instead of null for endpoint identification algorithm to dis...922bf5bMake setOnReadyThreshold() a noop method instead of abstract. (#11044) (#11059)385ebdaokhttp: Remove finished stream even if a pending stream was started2c52450Upgrade to google-auth-library 1.225febb39Revert "auth: Add support for Retryable interface"43edd73Specify a locale for upper/lower case conversions (1.63.x backport)630e0a3servlet: Check log fine level before hex string conversion. Fixes #11031.- Additional commits viewable in compare view
Updates io.opentelemetry:opentelemetry-bom from 1.34.1 to 1.37.0
Release notes
Sourced from io.opentelemetry:opentelemetry-bom's releases.
Version 1.37.0
NOTICE: This release contains a significant restructuring of the experimental event API and the API incubator artifact. Please read the notes in the
API -> Incubatorsection carefully.API
- Promote
Span#addLinkto stable API (#6317)Incubator
- BREAKING: Rename
opentelemetry-extension-incubatortoopentelemetry-api-incubator, mergeopentelemetry-api-eventsintoopentelemetry-api-incubator. (#6289)- BREAKING: Remove domain from event api.
EventEmitterProvider#setEventDomainhas been removed. Theevent.namefield should now be namespaced to avoid collisions. See Semantic Conventions for Event Attributes for more details. (#6253)- BREAKING: Rename
EventEmitterand related classes toEventLogger. (#6316)- BREAKING: Refactor Event API to reflect spec changes. Restructure API to put fields in the
AnyValuelog record body. Add setters for timestamp, context, and severity. Set default severity toINFO=9. (#6318)SDK
- Add
get{Signal}Exportermethods toSimple{Signal}Processor,Batch{Signal}Processor. (#6078)Metrics
- Use synchronized instead of reentrant lock in explicit bucket histogram (#6309)
Exporters
- Fix typo in OTLP javadoc (#6311)
- Add
PrometheusHttpServer#toBuilder()(#6333)- Bugfix: Use
getPrometheusNamefor Otel2PrometheusConverter map keys to avoid metric name conflicts (#6308)Extensions
- Add Metric exporter REUSABLE_DATA memory mode configuration options, including autoconfigure support via env var
OTEL_JAVA_EXPERIMENTAL_EXPORTER_MEMORY_MODE=REUSABLE_DATA. (#6304)- Add autoconfigure console alias for logging exporter (#6027)
- Update jaeger autoconfigure docs to point to OTLP (#6307)
- Add
ServiceInstanceIdResourceProviderimplementation for generatingservice.instance.idUUID if not already provided by user. Included inopentelemetry-sdk-extension-incubator. (#6226)- Add GCP resource detector to list of resource providers in autoconfigure docs (#6336)
Tooling
- Check for Java 17 toolchain and fail if not found (#6303)
🙇 Thank you
This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:
@asafm@bogdandrutu@breedx-splk@brunobat@helpermethod@jack-berg
... (truncated)
Changelog
Sourced from io.opentelemetry:opentelemetry-bom's changelog.
Version 1.37.0 (2024-04-05)
NOTICE: This release contains a significant restructuring of the experimental event API and the API incubator artifact. Please read the notes in the
API -> Incubatorsection carefully.API
- Promote
Span#addLinkto stable API (#6317)Incubator
- BREAKING: Rename
opentelemetry-extension-incubatortoopentelemetry-api-incubator, mergeopentelemetry-api-eventsintoopentelemetry-api-incubator. (#6289)- BREAKING: Remove domain from event api.
EventEmitterProvider#setEventDomainhas been removed. Theevent.namefield should now be namespaced to avoid collisions. See Semantic Conventions for Event Attributes for more details. (#6253)- BREAKING: Rename
EventEmitterand related classes toEventLogger. (#6316)- BREAKING: Refactor Event API to reflect spec changes. Restructure API to put fields in the
AnyValuelog record body. Add setters for timestamp, context, and severity. Set default severity toINFO=9. (#6318)SDK
- Add
get{Signal}Exportermethods toSimple{Signal}Processor,Batch{Signal}Processor. (#6078)Metrics
- Use synchronized instead of reentrant lock in explicit bucket histogram (#6309)
Exporters
- Fix typo in OTLP javadoc (#6311)
- Add
PrometheusHttpServer#toBuilder()(#6333)- Bugfix: Use
getPrometheusNamefor Otel2PrometheusConverter map keys to avoid metric name conflicts (#6308)Extensions
- Add Metric exporter REUSABLE_DATA memory mode configuration options, including autoconfigure support via env var
OTEL_JAVA_EXPERIMENTAL_EXPORTER_MEMORY_MODE=REUSABLE_DATA.
... (truncated)
Commits
a3e7f51[release/v1.37.x] Prepare release 1.37.0 (#6355)95b8356Prepare 1.37.0 (#6353)5ab678fUpdate dependency io.prometheus:prometheus-metrics-exporter-httpserver to v1....4d8f4f3Metric exporter REUSABLE_DATA memory mode configuration options (#6304)ff0480cUpdate dependency io.grpc:grpc-bom to v1.63.0 (#6349)d1fef93Update dependency org.owasp:dependency-check-gradle to v9.1.0 (#6332)7471fb8Update dependency checkstyle to v10.15.0 (#6335)f5490fbUpdate dependency com.squareup.wire:wire-bom to v4.9.9 (#6337)7f3e3e3Update dependency jacoco to v0.8.12 (#6338)68cd649Update plugin com.gradle.enterprise to v3.17 (#6339)- Additional commits viewable in compare view
Updates com.amazonaws:aws-xray-recorder-sdk-core from 2.15.0 to 2.15.3
Release notes
Sourced from com.amazonaws:aws-xray-recorder-sdk-core's releases.
Release v2.15.3
Please refer change-log for details.
Release v2.15.2
Please refer change-log for details.
Release v2.15.1
Please refer change-log for details.
Changelog
Sourced from com.amazonaws:aws-xray-recorder-sdk-core's changelog.
2.15.3 - 2024-04-25
- Bump aws-java-sdk-core version to 1.12.708 PR 401
2.15.2 - 2024-03-08
- Fixed TracingInterceptor to take effect only one time PR 399
2.15.1 - 2024-02-15
- Fixing S3 bucket name extraction for AWS SDK V2 PR 393
Commits
f79fcc1Releasing 2.15.30c2cfa7Release PR for v2.15.3 (#402)88069b4Bump aws-java-sdk-core version to 1.12.708 (#401)96428c5Release PR for v2.15.2 (#400)e1a8691TracingInterceptor should take effect only one time (#399)0cc3e14Release PR for v2.15.1 (#398)3b0868dFixing S3 bucket name extraction for AWS SDK V2 (#393)- See full diff in compare view
Updates com.amazonaws:aws-xray-recorder-sdk-aws-sdk from 2.15.0 to 2.15.3
Release notes
Sourced from com.amazonaws:aws-xray-recorder-sdk-aws-sdk's releases.
Release v2.15.3
Please refer change-log for details.
Release v2.15.2
Please refer change-log for details.
Release v2.15.1
Please refer change-log for details.
Changelog
Sourced from com.amazonaws:aws-xray-recorder-sdk-aws-sdk's changelog.
2.15.3 - 2024-04-25
- Bump aws-java-sdk-core version to 1.12.708 PR 401
2.15.2 - 2024-03-08
- Fixed TracingInterceptor to take effect only one time PR 399
2.15.1 - 2024-02-15
- Fixing S3 bucket name extraction for AWS SDK V2 PR 393
Commits
f79fcc1Releasing 2.15.30c2cfa7Release PR for v2.15.3 (#402)88069b4Bump aws-java-sdk-core version to 1.12.708 (#401)96428c5Release PR for v2.15.2 (#400)e1a8691TracingInterceptor should take effect only one time (#399)0cc3e14Release PR for v2.15.1 (#398)3b0868dFixing S3 bucket name extraction for AWS SDK V2 (#393)- See full diff in compare view
Updates org.apache.logging.log4j:log4j-api from 2.22.1 to 2.23.1
Updates org.apache.logging.log4j:log4j-core from 2.22.1 to 2.23.1
Updates io.freefair.lombok from 8.4 to 8.6
Release notes
Sourced from io.freefair.lombok's releases.
8.6
What's Changed
- Bump io.freefair.settings.plugin-versions from 8.3 to 8.4 by
@dependabotin freefair/gradle-plugins#911- Bump de.larsgrefer.sass:sass-embedded-host from 3.2.0 to 3.3.0 by
@dependabotin freefair/gradle-plugins#917- Bump com.github.spotbugs from 5.1.3 to 5.1.4 in /examples by
@dependabotin freefair/gradle-plugins#913- Bump org.mockito:mockito-core from 5.5.0 to 5.6.0 by
@dependabotin freefair/gradle-plugins#910- Bump io.freefair.settings.plugin-versions from 8.3 to 8.4 in /examples by
@dependabotin freefair/gradle-plugins#912- Bump com.github.spotbugs from 5.1.4 to 5.1.5 in /examples by
@dependabotin freefair/gradle-plugins#918- Bump io.github.classgraph:classgraph from 4.8.162 to 4.8.163 by
@dependabotin freefair/gradle-plugins#919- Bump com.github.spotbugs from 5.1.5 to 5.2.0 in /examples by
@dependabotin freefair/gradle-plugins#921- Bump com.squareup.okhttp3:okhttp-bom from 4.11.0 to 4.12.0 by
@dependabotin freefair/gradle-plugins#922- Bump com.github.spotbugs from 5.2.0 to 5.2.1 in /examples by
@dependabotin freefair/gradle-plugins#926- Bump de.larsgrefer.sass:sass-embedded-host from 3.3.0 to 3.3.1 by
@dependabotin freefair/gradle-plugins#925- Bump org.springframework.boot:spring-boot-dependencies from 2.7.16 to 2.7.17 in /examples by
@dependabotin freefair/gradle-plugins#927- Bump org.owasp.dependencycheck from 8.4.0 to 8.4.2 in /examples by
@dependabotin freefair/gradle-plugins#930- Bump org.webjars:webjars-locator-core from 0.53 to 0.54 by
@dependabotin freefair/gradle-plugins#937- Bump mavenPluginToolsVersion from 3.9.0 to 3.10.1 by
@dependabotin freefair/gradle-plugins#935- Bump org.glassfish.jaxb:jaxb-runtime from 2.3.8 to 2.3.9 in /examples by
@dependabotin freefair/gradle-plugins#938- Bump net.sourceforge.plantuml:plantuml from 1.2023.11 to 1.2023.12 by
@dependabotin freefair/gradle-plugins#936- Bump org.apache.maven.plugin-tools:maven-plugin-annotations from 3.9.0 to 3.10.1 in /examples by
@dependabotin freefair/gradle-plugins#933- Bump io.github.classgraph:classgraph from 4.8.163 to 4.8.164 by
@dependabotin freefair/gradle-plugins#942- Bump mavenPluginToolsVersion from 3.10.1 to 3.10.2 by
@dependabotin freefair/gradle-plugins#949- Bump com.github.package-url:packageurl-java from 1.4.1 to 1.4.2 by
@dependabotin freefair/gradle-plugins#950- Bump io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch from 0.6.2 to 0.6.3 by
@dependabotin freefair/gradle-plugins#946- Bump org.webjars:webjars-locator-core from 0.54 to 0.55 by
@dependabotin freefair/gradle-plugins#951- Bump org.junit:junit-bom from 5.10.0 to 5.10.1 by
@dependabotin freefair/gradle-plugins#945- Bump org.mockito:mockito-core from 5.6.0 to 5.7.0 by
@dependabotin freefair/gradle-plugins#941- Bump org.junit:junit-bom from 5.10.0 to 5.10.1 in /examples by
@dependabotin freefair/gradle-plugins#943- Bump com.github.spotbugs from 5.2.1 to 5.2.3 in /examples by
@dependabotin freefair/gradle-plugins#948- Bump org.apache.maven.plugin-tools:maven-plugin-annotations from 3.10.1 to 3.10.2 in /examples by
@dependabotin freefair/gradle-plugins#952- Bump org.owasp.dependencycheck from 8.4.2 to 8.4.3 by
@dependabotin freefair/gradle-plugins#956- Bump org.apache.commons:commons-compress from 1.24.0 to 1.25.0 by
@dependabotin freefair/gradle-plugins#955- Bump io.github.classgraph:classgraph from 4.8.164 to 4.8.165 by
@dependabotin freefair/gradle-plugins#958- Bump org.springframework.boot:spring-boot-dependencies from 2.7.17 to 2.7.18 in /examples by
@dependabotin freefair/gradle-plugins#961- Bump org.owasp.dependencycheck from 8.4.3 to 9.0.1 by
@dependabotin freefair/gradle-plugins#962- Bump com.github.spotbugs from 5.2.3 to 5.2.5 in /examples by
@dependabotin freefair/gradle-plugins#965- Bump actions/setup-java from 3 to 4 by
@dependabotin freefair/gradle-plugins#970- Bump org.owasp.dependencycheck from 9.0.1 to 9.0.2 by
@dependabotin freefair/gradle-plugins#968- Bump org.mockito:mockito-core from 5.7.0 to 5.8.0 by
@dependabotin freefair/gradle-plugins#966- Bump org.apache.maven:maven-model from 3.9.5 to 3.9.6 by
@dependabotin freefair/gradle-plugins#967- Bump org.mockito.kotlin:mockito-kotlin from 5.1.0 to 5.2.1 by
@dependabotin freefair/gradle-plugins#969- Bump org.apache.maven:maven-model from 3.9.5 to 3.9.6 in /examples by
@dependabotin freefair/gradle-plugins#971- Bump org.apache.maven:maven-core from 3.9.5 to 3.9.6 in /examples by
@dependabotin freefair/gradle-plugins#973- Bump org.apache.maven:maven-plugin-api from 3.9.5 to 3.9.6 in /examples by
@dependabotin freefair/gradle-plugins#974- Bump org.owasp.dependencycheck from 9.0.2 to 9.0.3 by
@dependabotin freefair/gradle-plugins#982- Bump com.gradle.enterprise from 3.15.1 to 3.16 by
@dependabotin freefair/gradle-plugins#980- Bump org.owasp.dependencycheck from 9.0.3 to 9.0.5 by
@dependabotin freefair/gradle-plugins#991- Bump org.owasp.dependencycheck from 9.0.5 to 9.0.7 by
@dependabotin freefair/gradle-plugins#998- Bump com.gradle.enterprise from 3.16 to 3.16.1 by
@dependabotin freefair/gradle-plugins#992- Bump org.assertj:assertj-core from 3.24.2 to 3.25.1 by
@dependabotin freefair/gradle-plugins#1003
... (truncated)
Commits
cd27d73Reproduce #10230670620Update to AssertJ 3.25.3964e4a9Merge pull request #1025 from freefair/dependabot/gradle/org.asciidoctor.jvm....c9d8019Update to PlantUML 1.2024.380c7c09Update to AspectJ 1.9.21.1c66bdfcMerge pull request #1037 from freefair/dependabot/gradle/de.larsgrefer.sass-s...a8dfd31Merge pull request #1034 from freefair/dependabot/gradle/com.gradle.enterpris...649505cUpdate to PlantUML 1.2024.2cfd3051Merge pull request #1035 from freefair/dependabot/gradle/org.junit-junit-bom-...086171eMerge pull request #1033 from freefair/dependabot/gradle/examples/com.github....- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions