Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 12, 2025

Bumps the gradle group with 20 updates:

Package From To
ch.qos.logback:logback-classic 1.5.20 1.5.21
software.amazon.smithy:smithy-model 1.63.0 1.64.0
software.amazon.smithy:smithy-codegen-core 1.63.0 1.64.0
software.amazon.smithy:smithy-aws-traits 1.63.0 1.64.0
software.amazon.smithy:smithy-protocol-traits 1.63.0 1.64.0
software.amazon.smithy:smithy-protocol-test-traits 1.63.0 1.64.0
software.amazon.smithy:smithy-aws-protocol-tests 1.63.0 1.64.0
software.amazon.smithy:smithy-protocol-tests 1.63.0 1.64.0
software.amazon.smithy:smithy-validation-model 1.63.0 1.64.0
software.amazon.smithy:smithy-jmespath 1.63.0 1.64.0
software.amazon.smithy:smithy-waiters 1.63.0 1.64.0
software.amazon.smithy:smithy-utils 1.63.0 1.64.0
software.amazon.smithy:smithy-trait-codegen 1.63.0 1.64.0
software.amazon.smithy:smithy-rules-engine 1.63.0 1.64.0
software.amazon.smithy:smithy-aws-endpoints 1.63.0 1.64.0
software.amazon.awssdk:retries-spi 2.37.5 2.38.4
software.amazon.awssdk:retries 2.37.5 2.38.4
software.amazon.awssdk:sdk-core 2.37.5 2.38.4
software.amazon.awssdk:auth 2.37.5 2.38.4
org.graalvm.buildtools.native 0.11.2 0.11.3

Updates ch.qos.logback:logback-classic from 1.5.20 to 1.5.21

Release notes

Sourced from ch.qos.logback:logback-classic's releases.

Logback 1.5.21

2025-11-10 Release of logback version 1.5.21

• Invocations of turbo filters in isDebugEnabled, isInfoEnabled()... remain as they were, untouched. However, any installed instances of TurboFilter are now invoked also from within the log(LoggingEvent) method of Logger with the contents of the LoggingEvent, typically via the fluent API. This fixes issues/871.

• Removed reentry-guard in most subclasses of UnsynchronizedAppenderBase where it was not needed.

Initialization procedure has been simplified by removing the step instantiating a SerializedModelConfigurator. However, it is still possible to set up SerializedModelConfigurator as a custom configurator.

• JsonEncoder is now friendlier to derivation by sub-classes as requested in issues/979.

• Fixed XMLLayout thread safety issue reported in LOGBACK-427.

• Removed superfluous buffering in Zip, GZ and XZ compression code.

• A bit-wise identical binary of this version can be reproduced by building from source code at commit fed6f37ffe3449e40f6a9fffe050936a33116bd1 associated with the tag v_1.5.21. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Commits
  • fed6f37 prepare release 1.5.21
  • b111e89 Initialization procedure has been simplified by removing the step
  • 1cd2df4 fix issues/871
  • dea5b95 minor - remove superflous call to Objects.requireNonNull
  • 3cecf29 add comment for the TurboFilter list ACCEPT case
  • 1497142 improve performance for 2 or more turbo filters
  • 04a7ba5 most subclasses of UnsynchronizedAppenderBase do not need a reentry guard
  • ab6a006 add maven cache to github CI, update .github/FUNDING.yml
  • 2bf5557 fix failed LegacyPatternLayoutTest#subPattern test due to TZ discrepancies, u...
  • 2ca8c52 update funding info
  • Additional commits viewable in compare view

Updates software.amazon.smithy:smithy-model from 1.63.0 to 1.64.0

Release notes

Sourced from software.amazon.smithy:smithy-model's releases.

Smithy CLI v1.64.0

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other.

... (truncated)

Changelog

Sourced from software.amazon.smithy:smithy-model's changelog.

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other. (#2796)

... (truncated)

Commits
  • 191e5df Relativize file path in calling code
  • 3776e53 Restore TopDownIndex default to sorting
  • 56cca11 Don't relativize files when posting comments
  • 99912a1 Limit CLI distribution testing to checksumImages step (#2830)
  • 33f24b3 Bump beryx runtime plugin to 2.0.1 (#2828)
  • 6bfd2be Add CLI distributions build job to CI workflow (#2829)
  • 72e0856 Bump version to 1.64.0 (#2824)
  • d58e2eb Only list new files in changelog tool
  • 8718412 Fix event stream test bytes optionality
  • e629796 Fix message in RemovedServiceError diff event
  • Additional commits viewable in compare view

Updates software.amazon.smithy:smithy-codegen-core from 1.63.0 to 1.64.0

Release notes

Sourced from software.amazon.smithy:smithy-codegen-core's releases.

Smithy CLI v1.64.0

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other.

... (truncated)

Changelog

Sourced from software.amazon.smithy:smithy-codegen-core's changelog.

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other. (#2796)

... (truncated)

Commits
  • 191e5df Relativize file path in calling code
  • 3776e53 Restore TopDownIndex default to sorting
  • 56cca11 Don't relativize files when posting comments
  • 99912a1 Limit CLI distribution testing to checksumImages step (#2830)
  • 33f24b3 Bump beryx runtime plugin to 2.0.1 (#2828)
  • 6bfd2be Add CLI distributions build job to CI workflow (#2829)
  • 72e0856 Bump version to 1.64.0 (#2824)
  • d58e2eb Only list new files in changelog tool
  • 8718412 Fix event stream test bytes optionality
  • e629796 Fix message in RemovedServiceError diff event
  • Additional commits viewable in compare view

Updates software.amazon.smithy:smithy-aws-traits from 1.63.0 to 1.64.0

Release notes

Sourced from software.amazon.smithy:smithy-aws-traits's releases.

Smithy CLI v1.64.0

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other.

... (truncated)

Changelog

Sourced from software.amazon.smithy:smithy-aws-traits's changelog.

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other. (#2796)

... (truncated)

Commits
  • 191e5df Relativize file path in calling code
  • 3776e53 Restore TopDownIndex default to sorting
  • 56cca11 Don't relativize files when posting comments
  • 99912a1 Limit CLI distribution testing to checksumImages step (#2830)
  • 33f24b3 Bump beryx runtime plugin to 2.0.1 (#2828)
  • 6bfd2be Add CLI distributions build job to CI workflow (#2829)
  • 72e0856 Bump version to 1.64.0 (#2824)
  • d58e2eb Only list new files in changelog tool
  • 8718412 Fix event stream test bytes optionality
  • e629796 Fix message in RemovedServiceError diff event
  • Additional commits viewable in compare view

Updates software.amazon.smithy:smithy-protocol-traits from 1.63.0 to 1.64.0

Release notes

Sourced from software.amazon.smithy:smithy-protocol-traits's releases.

Smithy CLI v1.64.0

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other.

... (truncated)

Changelog

Sourced from software.amazon.smithy:smithy-protocol-traits's changelog.

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other. (#2796)

... (truncated)

Commits
  • 191e5df Relativize file path in calling code
  • 3776e53 Restore TopDownIndex default to sorting
  • 56cca11 Don't relativize files when posting comments
  • 99912a1 Limit CLI distribution testing to checksumImages step (#2830)
  • 33f24b3 Bump beryx runtime plugin to 2.0.1 (#2828)
  • 6bfd2be Add CLI distributions build job to CI workflow (#2829)
  • 72e0856 Bump version to 1.64.0 (#2824)
  • d58e2eb Only list new files in changelog tool
  • 8718412 Fix event stream test bytes optionality
  • e629796 Fix message in RemovedServiceError diff event
  • Additional commits viewable in compare view

Updates software.amazon.smithy:smithy-protocol-test-traits from 1.63.0 to 1.64.0

Release notes

Sourced from software.amazon.smithy:smithy-protocol-test-traits's releases.

Smithy CLI v1.64.0

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other.

... (truncated)

Changelog

Sourced from software.amazon.smithy:smithy-protocol-test-traits's changelog.

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other. (#2796)

... (truncated)

Commits
  • 191e5df Relativize file path in calling code
  • 3776e53 Restore TopDownIndex default to sorting
  • 56cca11 Don't relativize files when posting comments
  • 99912a1 Limit CLI distribution testing to checksumImages step (#2830)
  • 33f24b3 Bump beryx runtime plugin to 2.0.1 (#2828)
  • 6bfd2be Add CLI distributions build job to CI workflow (#2829)
  • 72e0856 Bump version to 1.64.0 (#2824)
  • d58e2eb Only list new files in changelog tool
  • 8718412 Fix event stream test bytes optionality
  • e629796 Fix message in RemovedServiceError diff event
  • Additional commits viewable in compare view

Updates software.amazon.smithy:smithy-aws-protocol-tests from 1.63.0 to 1.64.0

Release notes

Sourced from software.amazon.smithy:smithy-aws-protocol-tests's releases.

Smithy CLI v1.64.0

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other.

... (truncated)

Changelog

Sourced from software.amazon.smithy:smithy-aws-protocol-tests's changelog.

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other. (#2796)

... (truncated)

Commits
  • 191e5df Relativize file path in calling code
  • 3776e53 Restore TopDownIndex default to sorting
  • 56cca11 Don't relativize files when posting comments
  • 99912a1 Limit CLI distribution testing to checksumImages step (#2830)
  • 33f24b3 Bump beryx runtime plugin to 2.0.1 (#2828)
  • 6bfd2be Add CLI distributions build job to CI workflow (#2829)
  • 72e0856 Bump version to 1.64.0 (#2824)
  • d58e2eb Only list new files in changelog tool
  • 8718412 Fix event stream test bytes optionality
  • e629796 Fix message in RemovedServiceError diff event
  • Additional commits viewable in compare view

Updates software.amazon.smithy:smithy-protocol-tests from 1.63.0 to 1.64.0

Release notes

Sourced from software.amazon.smithy:smithy-protocol-tests's releases.

Smithy CLI v1.64.0

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other.

... (truncated)

Changelog

Sourced from software.amazon.smithy:smithy-protocol-tests's changelog.

1.64.0 (2025-11-04)

Features

  • Updated LoaderShapeMap to use DependencyGraph to sort shapes instead of TopologicalShapeSort. This results in some error messages changing:

    • There is no longer a special message for missing transitive mixins.
    • The message for genrically missing mixins is now applied by ApplyMixin, which has a slightly different wording and which will trigger for each mising mixin.
    • The error message for detected cycles will now include the entire cycle that a shape is part of, rather than just the edges that it is directly connected to. (#2774)
  • Added a space for plugins to write data that is intended to be consumable by other plugins. This appears under a directory called shared in the the projection's output directory. (#2764)

  • Expanded title trait to apply to members. (#2791)

  • Added a generic dependency graph to smithy-utils to be used for sorting various dependent objects, such as integrations and plugins. (#2774)

  • Added support for (de)serializing byte arrays to/from base64-encoded string nodes to NodeMapper. (#2803)

  • Added builder method support for ServiceResolvedConditionKeysTrait. (#2779)

  • Added support for mapping the title trait in JSON Schema's oneOf enum strategy. (#2791)

  • Added a new eventStreamProtocolTests trait to enable writing shared test suites for event streams just as has been done for standard HTTP protocol requests and responses. (#2803)

  • Deprecated TopologicalShapeSort in favor of DependencyGraph. (#2774)

  • Added a builder to Differences in smithy-diff that allows constructing an instance that only contains a set of hand-curated changes. This enables making comparisons that weren't or wouldn't be auto-detected, such as comparing two shapes of the same type to see if they are compatible with each other. (#2796)

... (truncated)

Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 12, 2025
Bumps the gradle group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.20` | `1.5.21` |
| [software.amazon.smithy:smithy-model](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-codegen-core](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-aws-traits](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-protocol-traits](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-protocol-test-traits](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-aws-protocol-tests](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-protocol-tests](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-validation-model](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-jmespath](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-waiters](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-utils](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-trait-codegen](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-rules-engine](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| [software.amazon.smithy:smithy-aws-endpoints](https://github.com/smithy-lang/smithy) | `1.63.0` | `1.64.0` |
| software.amazon.awssdk:retries-spi | `2.37.5` | `2.38.4` |
| software.amazon.awssdk:retries | `2.37.5` | `2.38.4` |
| software.amazon.awssdk:sdk-core | `2.37.5` | `2.38.4` |
| software.amazon.awssdk:auth | `2.37.5` | `2.38.4` |
| [org.graalvm.buildtools.native](https://github.com/graalvm/native-build-tools) | `0.11.2` | `0.11.3` |


Updates `ch.qos.logback:logback-classic` from 1.5.20 to 1.5.21
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.20...v_1.5.21)

Updates `software.amazon.smithy:smithy-model` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-codegen-core` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-aws-traits` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-protocol-traits` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-protocol-test-traits` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-aws-protocol-tests` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-protocol-tests` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-validation-model` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-jmespath` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-waiters` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-utils` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-trait-codegen` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-rules-engine` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-aws-endpoints` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-codegen-core` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-aws-traits` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-protocol-traits` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-protocol-test-traits` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-aws-protocol-tests` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-protocol-tests` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-validation-model` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-jmespath` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-waiters` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-utils` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-trait-codegen` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-rules-engine` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.smithy:smithy-aws-endpoints` from 1.63.0 to 1.64.0
- [Release notes](https://github.com/smithy-lang/smithy/releases)
- [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md)
- [Commits](smithy-lang/smithy@1.63.0...1.64.0)

Updates `software.amazon.awssdk:retries-spi` from 2.37.5 to 2.38.4

Updates `software.amazon.awssdk:retries` from 2.37.5 to 2.38.4

Updates `software.amazon.awssdk:sdk-core` from 2.37.5 to 2.38.4

Updates `software.amazon.awssdk:auth` from 2.37.5 to 2.38.4

Updates `software.amazon.awssdk:retries` from 2.37.5 to 2.38.4

Updates `software.amazon.awssdk:sdk-core` from 2.37.5 to 2.38.4

Updates `software.amazon.awssdk:auth` from 2.37.5 to 2.38.4

Updates `org.graalvm.buildtools.native` from 0.11.2 to 0.11.3
- [Release notes](https://github.com/graalvm/native-build-tools/releases)
- [Commits](graalvm/native-build-tools@0.11.2...0.11.3)

---
updated-dependencies:
- dependency-name: ch.qos.logback:logback-classic
  dependency-version: 1.5.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-model
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-codegen-core
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-aws-traits
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-protocol-traits
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-protocol-test-traits
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-aws-protocol-tests
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-protocol-tests
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-validation-model
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-jmespath
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-waiters
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-utils
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-trait-codegen
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-rules-engine
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-aws-endpoints
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-codegen-core
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-aws-traits
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-protocol-traits
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-protocol-test-traits
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-aws-protocol-tests
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-protocol-tests
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-validation-model
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-jmespath
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-waiters
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-utils
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-trait-codegen
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-rules-engine
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.smithy:smithy-aws-endpoints
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.awssdk:retries-spi
  dependency-version: 2.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.awssdk:retries
  dependency-version: 2.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.awssdk:sdk-core
  dependency-version: 2.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.awssdk:auth
  dependency-version: 2.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.awssdk:retries
  dependency-version: 2.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.awssdk:sdk-core
  dependency-version: 2.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: software.amazon.awssdk:auth
  dependency-version: 2.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: org.graalvm.buildtools.native
  dependency-version: 0.11.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
...

Signed-off-by: dependabot[bot] <[email protected]>
@adwsingh adwsingh force-pushed the dependabot/gradle/gradle-12d5b22f49 branch from a17bb87 to 8150f2b Compare November 12, 2025 22:00
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.

1 participant