Skip to content

CCM-9336: Bump the patch-and-minor group across 2 directories with 13 updates - #248

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/patch-and-minor-668c19f4cf
Open

CCM-9336: Bump the patch-and-minor group across 2 directories with 13 updates#248
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/patch-and-minor-668c19f4cf

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 19, 2026

Copy link
Copy Markdown
Contributor

Bumps the patch-and-minor group with 13 updates in the / directory:

Package From To
@aws-sdk/client-ssm 3.1101.0 3.1108.0
esbuild 0.25.12 0.28.2
@aws-sdk/client-lambda 3.1101.0 3.1108.0
@aws-sdk/client-s3 3.1101.0 3.1108.0
async-mutex 0.4.1 0.5.0
@aws-sdk/types 3.974.2 3.974.3
globals 17.9.0 17.10.0
tsx 4.23.5 4.23.12
typescript-eslint 8.65.0 8.67.0
@aws-sdk/client-eventbridge 3.1101.0 3.1108.0
@typescript-eslint/eslint-plugin 8.65.0 8.67.0
@typescript-eslint/parser 8.65.0 8.67.0
turbo 2.10.8 2.10.9

Bumps the patch-and-minor group with 1 update in the /docs directory: esbuild.

Updates @aws-sdk/client-ssm from 3.1101.0 to 3.1108.0

Release notes

Sourced from @​aws-sdk/client-ssm's releases.

v3.1108.0

3.1108.0(2026-08-11)

Chores
Documentation Changes
  • client-textract: Amazon A2I entered maintenance mode in July 2026 and now rejects StartHumanLoop requests from accounts that it does not recognize as existing customers. This update adds a corresponding note to the HumanLoopConfig parameter documentation so that the API Reference and SDK docs explain this behavior. (c1efbb87)
  • client-organizations: Documentation update for AWS Organizations that clarifies valid input values for the HandshakePartyType parameter in the InviteAccountToOrganization. API ORGANIZATION is valid in responses only. valid input values are ACCOUNT and EMAIL (389ab808)
  • client-clouddirectory: Added an end-of-support notice to Amazon Cloud Directory public CLI reference documentation. (afdd9b1f)
New Features
  • clients: update client endpoints as of 2026-08-11 (60a8bce4)
  • client-cleanrooms: Adds support for exporting redacted query execution logs in AWS Clean Rooms (dc4ece15)
  • client-account-access: Adds SDK support for AWS IAM account access manager, a feature that enables mapping of IAM roles to the users and groups in AWS IAM Identity Center. (536036b2)
  • client-connect: Seven new APIs for managing custom metrics, including create, describe, update, and delete. Using Custom Metrics, customers of Amazon Connect Customer can tailor analytics dashboards to their needs by applying custom thresholds, filters, and calculations to one or more out of the box measurements. (97209f36)
  • client-bedrock-agentcore: Adding online eval arn as input for recommendation API (a0d8503e)
  • client-eks: This feature would give customers the ability to selectively tune certain configurations of Kubernetes control plane components in an Amazon EKS cluster. (6d5d1413)
  • client-datazone: GetSubscriptionGrant now returns materialized asset scope name for mapping Lake Formation data cell filters or Redshift views to subscription grants. (95ff8a96)
Bug Fixes
  • lib-transfer-manager: optimize worker HTTP connections and file I/O (#8256) (3ea6bc4b)

For list of updated packages, view updated-packages.md in assets-3.1108.0.zip

v3.1107.0

3.1107.0(2026-08-10)

Chores
  • codegen:
    • sync for omit staticContextParams on ClientInputEndpointParameters (#8258) (2b7601ed)
    • smithy-aws-typescript-codegen 0.52.0 (#8255) (2e4482a6)
New Features
  • client-connect: Added Malay language option to use AI to automatically fill evaluation forms in Malay (6f82fc3a)
  • client-sagemaker: Added PREFIX AWARE routing strategy and PrefixAwareRoutingConfig to CreateEndpointConfig. Configure PrefixLength and ConcurrencyThreshold to route requests that share the same prompt prefix to the same instance. (c0ce67e2)
  • client-medialive: Added VirtualSourceAddress to multicast output destinations for MediaLive Anywhere channels. Specifies the source IP address for outbound multicast packets when downstream networks enforce source-IP filtering. (dc24c644)
  • client-elementalinference: Added support for the SearchFixtures API and DataSourceConfiguration, enabling customers to map fixture event data onto clipping outputs for improved feature accuracy. (8a63a39d)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-ssm's changelog.

3.1108.0 (2026-08-11)

Note: Version bump only for package @​aws-sdk/client-ssm

3.1107.0 (2026-08-10)

Note: Version bump only for package @​aws-sdk/client-ssm

3.1106.0 (2026-08-07)

Note: Version bump only for package @​aws-sdk/client-ssm

3.1105.0 (2026-08-06)

Note: Version bump only for package @​aws-sdk/client-ssm

3.1104.0 (2026-08-05)

Note: Version bump only for package @​aws-sdk/client-ssm

3.1103.0 (2026-08-04)

Note: Version bump only for package @​aws-sdk/client-ssm

3.1102.0 (2026-08-03)

... (truncated)

Commits

Updates esbuild from 0.25.12 to 0.28.2

Release notes

Sourced from esbuild's releases.

v0.28.2

  • Fix tree shaking bug due to TypeScript import alias (#4507)

    This release fixes a bug that could cause esbuild to incorrectly tree-shake imports that are used in a TypeScript type alias under certain circumstances. Affected code uses a TypeScript-specific import assignment and looks something like this:

    import Base from './dep.js';
    import Alias = Base.SomeType;
  • Fix CSS minification bug involving & (#4497)

    This release fixes a bug where esbuild's CSS minifier incorrectly removed a & when it was unsafe to do so. Here is an example:

    /* Original code */
    .a .b {
      & .b:not(& .c) {
        color: red;
      }
    }
    /* Old output (with --minify) */
    .a .b{.b:not(& .c){color:red}}
    /* New output (with --minify) */
    .a .b{& .b:not(& .c){color:red}}

    This should match <span class="a"><span class="b"><span class="b">yes</span></span></span> but not <span class="a"><span class="b">no</span></span>. The old output incorrectly matched both.

  • Avoid overwriting input files without --allow-overwrite (#4484)

    For example: esbuild input.js --outfile=input.js tells esbuild to overwrite input.js with the output of running esbuild on it. This was supposed to already be prevented by default, but it accidentally regressed in version 0.17.0 and apparently didn't have any test coverage. The error message was being printed but the input file was still being overwritten. Oops.

    This release puts the original behavior back. With this release, esbuild should now actually avoid overwriting input files unless --allow-overwrite is explicitly present. This is done by not writing out any files when a build error is encountered.

  • Fix incorrect code generated when using top-level await (#4498)

    Previously esbuild could generate code containing a syntax error in complex scenarios involving top-level await used in a dependency cycle. The problem was a missing async on one or more module wrapper closures. With this release, esbuild now uses a fixed-point iteration algorithm to correctly annotate all dependencies in the cycle as needing an async module wrapper.

  • Fix a minification bug with lowered logical assignment operators (#4508)

    This release fixes a bug that could cause esbuild to generate incorrect code for logical assignment operators when lowering them to an older target environment. Specifically the lowering process requires duplicating the left-hand side, but esbuild incorrectly failed to count the duplicate as a new usage when the left-hand side is an identifier. That then caused the minifier to believe that the left-hand side was only used once and could attempt to incorrectly inline an initializer into the first usage. This bug has now been fixed:

    // Original code
    function foo() {
      let x
      bar(x ||= {})

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2025

This changelog documents all esbuild versions published in the year 2025 (versions 0.25.0 through 0.27.2).

0.27.2

  • Allow import path specifiers starting with #/ (#4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#4357, #4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    /* Old output (with --target=chrome110) */
    main {
    mask: url(x.png) center/5rem no-repeat;
    }
    /* New output (with --target=chrome110) */
    main {
    -webkit-mask: url(x.png) center/5rem no-repeat;
    mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#4176, #4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }

... (truncated)

Commits
  • 609683d publish 0.28.2 to npm
  • 11b1fe4 add to release notes
  • ab50d91 css: fix green/blue channel swap in oklch gamut mapping (#4488)
  • 04627b6 fix #4498: async TLA checks need a worklist
  • 5c15177 disable gopls in the go folder
  • fc2ee9b css: adjust parser to allow --foo: {...}
  • 209db54 release notes for css nesting bugfix
  • c625d31 fix #4497: preserve nested ampersands during minification (#4500)
  • 34474e2 better isolation of current part in js parser
  • 07f6e8c fix #4507: import assignment tree-shaking bug
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for esbuild since your current version.


Updates @aws-sdk/client-lambda from 3.1101.0 to 3.1108.0

Release notes

Sourced from @​aws-sdk/client-lambda's releases.

v3.1108.0

3.1108.0(2026-08-11)

Chores
Documentation Changes
  • client-textract: Amazon A2I entered maintenance mode in July 2026 and now rejects StartHumanLoop requests from accounts that it does not recognize as existing customers. This update adds a corresponding note to the HumanLoopConfig parameter documentation so that the API Reference and SDK docs explain this behavior. (c1efbb87)
  • client-organizations: Documentation update for AWS Organizations that clarifies valid input values for the HandshakePartyType parameter in the InviteAccountToOrganization. API ORGANIZATION is valid in responses only. valid input values are ACCOUNT and EMAIL (389ab808)
  • client-clouddirectory: Added an end-of-support notice to Amazon Cloud Directory public CLI reference documentation. (afdd9b1f)
New Features
  • clients: update client endpoints as of 2026-08-11 (60a8bce4)
  • client-cleanrooms: Adds support for exporting redacted query execution logs in AWS Clean Rooms (dc4ece15)
  • client-account-access: Adds SDK support for AWS IAM account access manager, a feature that enables mapping of IAM roles to the users and groups in AWS IAM Identity Center. (536036b2)
  • client-connect: Seven new APIs for managing custom metrics, including create, describe, update, and delete. Using Custom Metrics, customers of Amazon Connect Customer can tailor analytics dashboards to their needs by applying custom thresholds, filters, and calculations to one or more out of the box measurements. (97209f36)
  • client-bedrock-agentcore: Adding online eval arn as input for recommendation API (a0d8503e)
  • client-eks: This feature would give customers the ability to selectively tune certain configurations of Kubernetes control plane components in an Amazon EKS cluster. (6d5d1413)
  • client-datazone: GetSubscriptionGrant now returns materialized asset scope name for mapping Lake Formation data cell filters or Redshift views to subscription grants. (95ff8a96)
Bug Fixes
  • lib-transfer-manager: optimize worker HTTP connections and file I/O (#8256) (3ea6bc4b)

For list of updated packages, view updated-packages.md in assets-3.1108.0.zip

v3.1107.0

3.1107.0(2026-08-10)

Chores
  • codegen:
    • sync for omit staticContextParams on ClientInputEndpointParameters (#8258) (2b7601ed)
    • smithy-aws-typescript-codegen 0.52.0 (#8255) (2e4482a6)
New Features
  • client-connect: Added Malay language option to use AI to automatically fill evaluation forms in Malay (6f82fc3a)
  • client-sagemaker: Added PREFIX AWARE routing strategy and PrefixAwareRoutingConfig to CreateEndpointConfig. Configure PrefixLength and ConcurrencyThreshold to route requests that share the same prompt prefix to the same instance. (c0ce67e2)
  • client-medialive: Added VirtualSourceAddress to multicast output destinations for MediaLive Anywhere channels. Specifies the source IP address for outbound multicast packets when downstream networks enforce source-IP filtering. (dc24c644)
  • client-elementalinference: Added support for the SearchFixtures API and DataSourceConfiguration, enabling customers to map fixture event data onto clipping outputs for improved feature accuracy. (8a63a39d)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-lambda's changelog.

3.1108.0 (2026-08-11)

Note: Version bump only for package @​aws-sdk/client-lambda

3.1107.0 (2026-08-10)

Note: Version bump only for package @​aws-sdk/client-lambda

3.1106.0 (2026-08-07)

Note: Version bump only for package @​aws-sdk/client-lambda

3.1105.0 (2026-08-06)

Note: Version bump only for package @​aws-sdk/client-lambda

3.1104.0 (2026-08-05)

Note: Version bump only for package @​aws-sdk/client-lambda

3.1103.0 (2026-08-04)

Note: Version bump only for package @​aws-sdk/client-lambda

3.1102.0 (2026-08-03)

... (truncated)

Commits

Updates @aws-sdk/client-s3 from 3.1101.0 to 3.1108.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.1108.0

3.1108.0(2026-08-11)

Chores
Documentation Changes
  • client-textract: Amazon A2I entered maintenance mode in July 2026 and now rejects StartHumanLoop requests from accounts that it does not recognize as existing customers. This update adds a corresponding note to the HumanLoopConfig parameter documentation so that the API Reference and SDK docs explain this behavior. (c1efbb87)
  • client-organizations: Documentation update for AWS Organizations that clarifies valid input values for the HandshakePartyType parameter in the InviteAccountToOrganization. API ORGANIZATION is valid in responses only. valid input values are ACCOUNT and EMAIL (389ab808)
  • client-clouddirectory: Added an end-of-support notice to Amazon Cloud Directory public CLI reference documentation. (afdd9b1f)
New Features
  • clients: update client endpoints as of 2026-08-11 (60a8bce4)
  • client-cleanrooms: Adds support for exporting redacted query execution logs in AWS Clean Rooms (dc4ece15)
  • client-account-access: Adds SDK support for AWS IAM account access manager, a feature that enables mapping of IAM roles to the users and groups in AWS IAM Identity Center. (536036b2)
  • client-connect: Seven new APIs for managing custom metrics, including create, describe, update, and delete. Using Custom Metrics, customers of Amazon Connect Customer can tailor analytics dashboards to their needs by applying custom thresholds, filters, and calculations to one or more out of the box measurements. (97209f36)
  • client-bedrock-agentcore: Adding online eval arn as input for recommendation API (a0d8503e)
  • client-eks: This feature would give customers the ability to selectively tune certain configurations of Kubernetes control plane components in an Amazon EKS cluster. (6d5d1413)
  • client-datazone: GetSubscriptionGrant now returns materialized asset scope name for mapping Lake Formation data cell filters or Redshift views to subscription grants. (95ff8a96)
Bug Fixes
  • lib-transfer-manager: optimize worker HTTP connections and file I/O (#8256) (3ea6bc4b)

For list of updated packages, view updated-packages.md in assets-3.1108.0.zip

v3.1107.0

3.1107.0(2026-08-10)

Chores
  • codegen:
    • sync for omit staticContextParams on ClientInputEndpointParameters (#8258) (2b7601ed)
    • smithy-aws-typescript-codegen 0.52.0 (#8255) (2e4482a6)
New Features
  • client-connect: Added Malay language option to use AI to automatically fill evaluation forms in Malay (6f82fc3a)
  • client-sagemaker: Added PREFIX AWARE routing strategy and PrefixAwareRoutingConfig to CreateEndpointConfig. Configure PrefixLength and ConcurrencyThreshold to route requests that share the same prompt prefix to the same instance. (c0ce67e2)
  • client-medialive: Added VirtualSourceAddress to multicast output destinations for MediaLive Anywhere channels. Specifies the source IP address for outbound multicast packets when downstream networks enforce source-IP filtering. (dc24c644)
  • client-elementalinference: Added support for the SearchFixtures API and DataSourceConfiguration, enabling customers to map fixture event data onto clipping outputs for improved feature accuracy. (8a63a39d)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.1108.0 (2026-08-11)

Note: Version bump only for package @​aws-sdk/client-s3

3.1107.0 (2026-08-10)

Note: Version bump only for package @​aws-sdk/client-s3

3.1106.0 (2026-08-07)

Note: Version bump only for package @​aws-sdk/client-s3

3.1105.0 (2026-08-06)

Features

  • client-s3: AWS Backup now lets you create read-only access points for Amazon S3 recovery points, enabling you to access backup data using S3 APIs without initiating a restore. (faf6560)

3.1104.0 (2026-08-05)

Note: Version bump only for package @​aws-sdk/client-s3

3.1103.0 (2026-08-04)

Note: Version bump only for package @​aws-sdk/client-s3

... (truncated)

Commits
  • 26b0eb7 Publish v3.1108.0
  • 785d467 chore(codegen): update smithy-ts commit to bring in TS6 change (#8262)
  • edabd4a chore: upgrade to typescript 6 (#8257)
  • d87c82b Publish v3.1107.0
  • 2e4482a chore(codegen): smithy-aws-typescript-codegen 0.52.0 (#8255)
  • 655d311 Publish v3.1106.0
  • d6c0ea3 Publish v3.1105.0
  • faf6560 feat(client-s3): AWS Backup now lets you create read-only access points for A...
  • b3929bd Publish v3.1104.0
  • 672c90d Publish v3.1103.0
  • Additional commits viewable in compare view

Updates async-mutex from 0.4.1 to 0.5.0

Changelog

Sourced from async-mutex's changelog.

0.5.0 - 2024/03/11

  • Support priority queueing for mutexes and semaphores. A huge "thank you" goes to @​dmurvihill who added this feature.
  • Update dependencies.
Commits
  • ca071fc Changelog, bump version.
  • 3b8ae6f Bump dependencies.
  • 43e8858 Merge pull request #75 from dmurvihill/priority
  • 285229f Remove redundant instructions
  • 4350d80 Reverse findIndex for queuing tasks in waitForUnlock()
  • 981554f Fix test name
  • 2d13278 Reverse findIndex for queuing tasks in acquire()
  • c546c3f Merge branch 'master' into priority
  • 6a55acb Add failing test for crowd-out condition
  • 6af938b Merge pull request #76 from dmurvihill/fix-unhandled-rejection-in-tests
  • Additional commits viewable in compare view

Updates @aws-sdk/types from 3.974.2 to 3.974.3

Changelog

Sourced from @​aws-sdk/types's changelog.

3.974.3 (2026-08-11)

Chores

Commits

Updates globals from 17.9.0 to 17.10.0

Release notes

Sourced from globals's releases.

v17.10.0

  • Add GM_cookie to Greasemonkey globals (#349) f468407

sindresorhus/globals@v17.9.0...v17.10.0

Commits

Updates tsx from 4.23.5 to 4.23.12

Release notes

Sourced from tsx's releases.

v4.23.12

4.23.12 (2026-08-10)

Bug Fixes

  • shim import.meta when tokens are split by comments or newlines (#829) (ed9d330), closes #828

This release is also available on:

v4.23.11

4.23.11 (2026-08-07)

Bug Fixes

  • preserve async ESM require fallback (55cbece)

This release is also available on:

v4.23.10

4.23.10 (2026-08-07)

Bug Fixes


This release is also available on:

v4.23.9

4.23.9 (2026-08-06)

Bug Fixes

  • map Node test locations (2f55884)
  • support data URLs in tsImport (b94f46f)

This release is also available on:

v4.23.8

... (truncated)

Commits
  • ed9d330 fix: shim import.meta when tokens are split by comments or newlines (#829)
  • 651f5be test: cover CommonJS TypeScript import.meta paths
  • bd3bc64 test: cover CommonJS loader source fallback
  • 55cbece fix: preserve async ESM require fallback
  • 6c5ba85 docs: document CommonJS default interop
  • ec1bcd5 fix: support nyc coverage discovery (#710)
  • b6e5b48 docs: clarify CommonJS default imports
  • 2f55884 fix: map Node test locations
  • de935d5 docs: document Node source-map stack formatting
  • b94f46f fix: support data URLs in tsImport
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.65.0 to 8.67.0

Release notes

Sourced from typescript-eslint's releases.

v8.67.0

8.67.0 (2026-08-10)

🚀 Features

  • typescript-eslint: export basic globs for using tseslint (#12105)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.66.0

8.66.0 (2026-08-03)

🚀 Features

  • typescript-estree: handle import.defer() as ImportExpression (#12609)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-conversion] ignore shadowed built-ins (#12590)
  • eslint-plugin: [prefer-nullish-coalescing] handle shadowed Boolean calls (#12591)
  • eslint-plugin: [no-useless-default-assignment] don't report defaults used by other overloads (#12607)
  • eslint-plugin: [no-unnecessary-type-parameters] check MappedType key remapping (#12588)
  • eslint-plugin: [class-literal-property-style] preserve type annotations and don't drop decorators (#12617)
  • website: list onUnsupportedTypeScriptVersion in parser options (#12585)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.67.0 (2026-08-10)

🚀 Features

  • typescript-eslint: export basic globs for using tseslint (#12105)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.66.0 (2026-08-03)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

Updates @aws-sdk/client-eventbridge from 3.1101.0 to 3.1108.0

Release notes

Sourced from @​aws-sdk/client-eventbridge's releases.

v3.1108.0

3.1108.0(2026-08-11)

Chores
Documentation Changes
  • client-textract: Amazon A2I entered maintenance mode in July 2026 and now rejects StartHumanLoop requests from accounts that it does not recognize as existing customers. This update adds a corresponding note to the HumanLoopConfig parameter documentation so that the API Reference and SDK docs explain this behavior. (c1efbb87)
  • client-organizations: Documentation update for AWS Organizations that clarifies valid input values for the HandshakePartyType parameter in the InviteAccountToOrganization. API ORGANIZATION is valid in responses only. valid input values are ACCOUNT and EMAIL (389ab808)
  • client-clouddirectory: Added an end-of-support notice to Amazon Cloud Directory public CLI reference documentation. (afdd9b1f)
New Features
  • clients: update client endpoints as of 2026-08-11 (60a8bce4)
  • client-cleanrooms: Adds support for exporting redacted query execution logs in AWS Clean Rooms (dc4ece15)
  • client-account-access: Adds SDK support for AWS IAM account access manager, a feature that enables mapping of IAM roles to the users and groups in AWS IAM Identity Center. (536036b2)
  • client-connect: Seven new APIs for managing custom metrics, including create, describe, update, and delete. Using Custom Metrics, customers of Amazon Connect Customer can tailor analytics dashboards to their needs by applying custom thresholds, filters, and calculations to one or more out of the box measurements. (97209f36)
  • client-bedrock-agentcore: Adding online eval arn as input for recommendation API (a0d8503e)
  • client-eks: This feature would give customers the ability to selectively tune certain configurations of Kubernetes control plane components in an Amazon EKS cluster. (6d5d1413)
  • client-datazone: GetSubscriptionGrant now returns materialized asset scope name for mapping Lake Formation data cell filters or Redshift views to subscription grants. (95ff8a96)
Bug Fixes
  • lib-transfer-manager: optimize worker HTTP connections and file I/O (#8256) (3ea6bc4b)

For list of updated packages, view updated-packages.md in assets-3.1108.0.zip

v3.1107.0

3.1107.0(2026-08-10)

Chores
  • codegen:
    • sync for omit staticContextParams on ClientInputEndpointParameters (#8258) (2b7601ed)
    • smithy-aws-typescript-codegen 0.52.0 (#8255) (2e4482a6)
New Features
  • client-connect: Added Malay language option to use AI to automatically fill evaluation forms in Malay (6f82fc3a)
  • client-sagemaker: Added PREFIX AWARE routing strategy and PrefixAwareRoutingConfig to CreateEndpointConfig. Configure PrefixLength and ConcurrencyThreshold to route requests that share the same prompt prefix to the same instance. (c0ce67e2)
  • client-medialive: Added VirtualSourceAddress to multicast output destinations for MediaLive Anywhere channels. Specifies the source IP address for outbound multicast packets when downstream networks enforce source-IP filtering. (dc24c644)
  • client-elementalinference: Added support for the SearchFixtures API and DataSourceConfiguration, enabling customers to map fixture event data onto clipping outputs for improved feature accuracy. (8a63a39d)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-eventbridge's changelog.

3.1108.0 (2026-08-11)

Note: Version bump only for package @​aws-sdk/client-eventbridge

3.1107.0 (2026-08-10)

Note: Version bump only for package @​aws-sdk/client-eventbridge

3.1106.0 (2026-08-07)

Note: Version bump only for package @​aws-sdk/client-eventbridge

3.1105.0 (2026-08-06)

Note: Version bump only for package @​aws-sdk/client-eventbridge

3.1104.0 (2026-08-05)

Note...

Description has been truncated

… updates

Bumps the patch-and-minor group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.1101.0` | `3.1108.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.12` | `0.28.2` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.1101.0` | `3.1108.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1101.0` | `3.1108.0` |
| [async-mutex](https://github.com/DirtyHairy/async-mutex) | `0.4.1` | `0.5.0` |
| [@aws-sdk/types](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages-internal/types) | `3.974.2` | `3.974.3` |
| [globals](https://github.com/sindresorhus/globals) | `17.9.0` | `17.10.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.5` | `4.23.12` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.65.0` | `8.67.0` |
| [@aws-sdk/client-eventbridge](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge) | `3.1101.0` | `3.1108.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.65.0` | `8.67.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.65.0` | `8.67.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.10.8` | `2.10.9` |

Bumps the patch-and-minor group with 1 update in the /docs directory: [esbuild](https://github.com/evanw/esbuild).


Updates `@aws-sdk/client-ssm` from 3.1101.0 to 3.1108.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ssm/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1108.0/clients/client-ssm)

Updates `esbuild` from 0.25.12 to 0.28.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2025.md)
- [Commits](evanw/esbuild@v0.25.12...v0.28.2)

Updates `@aws-sdk/client-lambda` from 3.1101.0 to 3.1108.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-lambda/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1108.0/clients/client-lambda)

Updates `@aws-sdk/client-s3` from 3.1101.0 to 3.1108.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1108.0/clients/client-s3)

Updates `async-mutex` from 0.4.1 to 0.5.0
- [Changelog](https://github.com/DirtyHairy/async-mutex/blob/master/CHANGELOG.md)
- [Commits](DirtyHairy/async-mutex@v0.4.1...v0.5.0)

Updates `@aws-sdk/types` from 3.974.2 to 3.974.3
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages-internal/types/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/HEAD/packages-internal/types)

Updates `globals` from 17.9.0 to 17.10.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.9.0...v17.10.0)

Updates `tsx` from 4.23.5 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.5...v4.23.12)

Updates `typescript-eslint` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/typescript-eslint)

Updates `@aws-sdk/client-eventbridge` from 3.1101.0 to 3.1108.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-eventbridge/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1108.0/clients/client-eventbridge)

Updates `@typescript-eslint/eslint-plugin` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/parser)

Updates `turbo` from 2.10.8 to 2.10.9
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.10.8...v2.10.9)

Updates `turbo` from 2.10.8 to 2.10.9
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.10.8...v2.10.9)

Updates `@typescript-eslint/eslint-plugin` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/parser)

Updates `typescript-eslint` from 8.65.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/typescript-eslint)

Updates `esbuild` from 0.25.12 to 0.28.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2025.md)
- [Commits](evanw/esbuild@v0.25.12...v0.28.2)

Updates `tsx` from 4.23.5 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.5...v4.23.12)

Updates `esbuild` from 0.25.12 to 0.28.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2025.md)
- [Commits](evanw/esbuild@v0.25.12...v0.28.2)

---
updated-dependencies:
- dependency-name: "@aws-sdk/client-ssm"
  dependency-version: 3.1108.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: esbuild
  dependency-version: 0.28.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.1108.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1108.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: async-mutex
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@aws-sdk/types"
  dependency-version: 3.974.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: globals
  dependency-version: 17.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: typescript-eslint
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@aws-sdk/client-eventbridge"
  dependency-version: 3.1108.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: turbo
  dependency-version: 2.10.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: turbo
  dependency-version: 2.10.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: typescript-eslint
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: esbuild
  dependency-version: 0.28.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: esbuild
  dependency-version: 0.28.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 19, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 19, 2026 02:24
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 19, 2026
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants