Skip to content

chore(deps-dev): bump the dev-dependencies group across 1 directory with 15 updates#34

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-136e2acbf4
Closed

chore(deps-dev): bump the dev-dependencies group across 1 directory with 15 updates#34
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-136e2acbf4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 9, 2026

Bumps the dev-dependencies group with 15 updates in the / directory:

Package From To
@biomejs/biome 2.4.12 2.4.13
tstyche 7.0.0 7.1.0
@aws-sdk/client-cloudwatch-logs 3.1032.0 3.1036.0
@aws-sdk/client-dynamodb 3.1032.0 3.1036.0
@aws-sdk/client-kinesis 3.1032.0 3.1036.0
@aws-sdk/client-lambda 3.1032.0 3.1036.0
@aws-sdk/client-s3 3.1032.0 3.1036.0
@aws-sdk/client-sns 3.1032.0 3.1036.0
@aws-sdk/client-sqs 3.1032.0 3.1036.0
@aws-sdk/client-ssm 3.1032.0 3.1036.0
@aws-sdk/lib-storage 3.1032.0 3.1036.0
@sveltejs/kit 2.57.1 2.58.0
svelte 5.55.4 5.55.5
vite 8.0.8 8.0.10
wrangler 4.83.0 4.85.0

Updates @biomejs/biome from 2.4.12 to 2.4.13

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.13

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

    For example, the following code triggers the rule:

... (truncated)

Commits

Updates tstyche from 7.0.0 to 7.1.0

Release notes

Sourced from tstyche's releases.

7.1.0

Changed

  • Remove the experimental when() helper (#730)

Full Changelog: tstyche/tstyche@v7.0.0...v7.1.0

Changelog

Sourced from tstyche's changelog.

[7.1.0] - 2026-04-22

Changed

  • Remove the experimental when() helper (#730)
Commits

Updates @aws-sdk/client-cloudwatch-logs from 3.1032.0 to 3.1036.0

Release notes

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

v3.1036.0

3.1036.0(2026-04-23)

Chores
  • codegen: sync for http2 session closure, retry longpoll backoff, and fast-xml-parser version bump (#7958) (107aefc4)
  • xml-builder: up fast-xml-parser to 5.7.1 (#7957) (110b1c01)
Documentation Changes
  • client-pcs: This release adds support for Slurm 25.11 with expedited requeue enabled by default for jobs failing due to node issues, configurable requeue delay, health checks at node startup only, and unauthenticated HTTP endpoints disabled by default for improved security. (1110500a)
New Features
  • client-datazone: Releasing For LakehouseProperties attributes in the Connections API's (d0c03722)
  • client-iot-managed-integrations: Adds "Status" field to provisioning profile operation response types, giving users visibility into the readiness of a provisioning profile to be used for device provisioning. (72d6968c)
  • client-opensearch: Amazon OpenSearch UI applications now support cross-Region domain association, enabling you to connect OpenSearch Dashboards in one AWS Region to OpenSearch domains in other Regions within the same partition for centralized data visualization. (600311b9)
Tests
  • client-transcribe-streaming: add concurrency to startStreamTranscription test (#7948) (e2cf194b)

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

v3.1035.0

3.1035.0(2026-04-22)

New Features
  • client-iot-wireless: Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs. (9fcaea59)
  • client-ecs: GPU health monitoring and auto-repair for ECS Managed Instances (0ffa1090)
  • client-osis: Update the pipeline configuration body character limit for the CreatePipeline API call. (d19d4063)
  • client-opensearch: Adds support for RollbackServiceSoftwareUpdate API (e8b37945)
  • client-batch: Support of S3Files volume type, container start and stop timeouts. (802ac4b8)
  • client-ec2: Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations. (698293af)
  • client-emr-serverless: This release adds support for Spark connect sessions starting with release label emr-7.13.0. (966d4934)
  • client-bedrock-agentcore: Adds support for Amazon Bedrock AgentCore Harness data plane APIs, enabling customers to invoke managed agent loops and execute commands on live agent sessions with streaming responses. (a465bad8)
  • client-s3-control: This release adds support for five additional checksum algorithms for data integrity checking in Amazon S3 - MD5, SHA-512, XXHash3, XXHash64, and XXHash128. (e8c4a764)
  • client-bedrock-agentcore-control: Adds support for Amazon Bedrock AgentCore Harness control plane APIs, enabling customers to create, manage, and configure managed agent loops with customizable models, tools, memory, and isolated execution environments. (ace8fec5)
  • client-ivs: Adds support for Amazon IVS server-side ad insertion (a4a29e9e)
  • client-s3: This release adds five additional checksum algorithms for S3 data integrity (MD5, SHA-512, XXHash3, XXHash64, XXHash128) and support for S3 Inventory on directory buckets (S3 Express One Zone). (41a6a595)
  • client-lambda: Add Ruby 4.0 (ruby4.0) support to AWS Lambda. (ece8ce80)
Bug Fixes
  • client-s3: retry errors with 200 status code (#7945) (7d9d8d17)
  • client-sts: override IDPCommunicationError to be retryable (#7946) (d75e129a)

... (truncated)

Changelog

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

3.1036.0 (2026-04-23)

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

3.1035.0 (2026-04-22)

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

3.1034.0 (2026-04-21)

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

3.1033.0 (2026-04-20)

Features

  • clients: use binary decision diagrams for endpoint resolution (#7931) (ff1b2ba)
Commits
  • 46e4ac5 Publish v3.1036.0
  • 107aefc chore(codegen): sync for http2 session closure, retry longpoll backoff, and f...
  • d8fbfbc Publish v3.1035.0
  • d08b5a7 Publish v3.1034.0
  • 273ad5b chore(codegen): sync for http2 session concurrency fixes (#7942)
  • a62021b Publish v3.1033.0
  • ff1b2ba feat(clients): use binary decision diagrams for endpoint resolution (#7931)
  • See full diff in compare view

Updates @aws-sdk/client-dynamodb from 3.1032.0 to 3.1036.0

Release notes

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

v3.1036.0

3.1036.0(2026-04-23)

Chores
  • codegen: sync for http2 session closure, retry longpoll backoff, and fast-xml-parser version bump (#7958) (107aefc4)
  • xml-builder: up fast-xml-parser to 5.7.1 (#7957) (110b1c01)
Documentation Changes
  • client-pcs: This release adds support for Slurm 25.11 with expedited requeue enabled by default for jobs failing due to node issues, configurable requeue delay, health checks at node startup only, and unauthenticated HTTP endpoints disabled by default for improved security. (1110500a)
New Features
  • client-datazone: Releasing For LakehouseProperties attributes in the Connections API's (d0c03722)
  • client-iot-managed-integrations: Adds "Status" field to provisioning profile operation response types, giving users visibility into the readiness of a provisioning profile to be used for device provisioning. (72d6968c)
  • client-opensearch: Amazon OpenSearch UI applications now support cross-Region domain association, enabling you to connect OpenSearch Dashboards in one AWS Region to OpenSearch domains in other Regions within the same partition for centralized data visualization. (600311b9)
Tests
  • client-transcribe-streaming: add concurrency to startStreamTranscription test (#7948) (e2cf194b)

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

v3.1035.0

3.1035.0(2026-04-22)

New Features
  • client-iot-wireless: Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs. (9fcaea59)
  • client-ecs: GPU health monitoring and auto-repair for ECS Managed Instances (0ffa1090)
  • client-osis: Update the pipeline configuration body character limit for the CreatePipeline API call. (d19d4063)
  • client-opensearch: Adds support for RollbackServiceSoftwareUpdate API (e8b37945)
  • client-batch: Support of S3Files volume type, container start and stop timeouts. (802ac4b8)
  • client-ec2: Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations. (698293af)
  • client-emr-serverless: This release adds support for Spark connect sessions starting with release label emr-7.13.0. (966d4934)
  • client-bedrock-agentcore: Adds support for Amazon Bedrock AgentCore Harness data plane APIs, enabling customers to invoke managed agent loops and execute commands on live agent sessions with streaming responses. (a465bad8)
  • client-s3-control: This release adds support for five additional checksum algorithms for data integrity checking in Amazon S3 - MD5, SHA-512, XXHash3, XXHash64, and XXHash128. (e8c4a764)
  • client-bedrock-agentcore-control: Adds support for Amazon Bedrock AgentCore Harness control plane APIs, enabling customers to create, manage, and configure managed agent loops with customizable models, tools, memory, and isolated execution environments. (ace8fec5)
  • client-ivs: Adds support for Amazon IVS server-side ad insertion (a4a29e9e)
  • client-s3: This release adds five additional checksum algorithms for S3 data integrity (MD5, SHA-512, XXHash3, XXHash64, XXHash128) and support for S3 Inventory on directory buckets (S3 Express One Zone). (41a6a595)
  • client-lambda: Add Ruby 4.0 (ruby4.0) support to AWS Lambda. (ece8ce80)
Bug Fixes
  • client-s3: retry errors with 200 status code (#7945) (7d9d8d17)
  • client-sts: override IDPCommunicationError to be retryable (#7946) (d75e129a)

... (truncated)

Changelog

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

3.1036.0 (2026-04-23)

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

3.1035.0 (2026-04-22)

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

3.1034.0 (2026-04-21)

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

3.1033.0 (2026-04-20)

Features

  • clients: use binary decision diagrams for endpoint resolution (#7931) (ff1b2ba)
Commits
  • 46e4ac5 Publish v3.1036.0
  • 107aefc chore(codegen): sync for http2 session closure, retry longpoll backoff, and f...
  • d8fbfbc Publish v3.1035.0
  • d08b5a7 Publish v3.1034.0
  • 273ad5b chore(codegen): sync for http2 session concurrency fixes (#7942)
  • a62021b Publish v3.1033.0
  • ff1b2ba feat(clients): use binary decision diagrams for endpoint resolution (#7931)
  • See full diff in compare view

Updates @aws-sdk/client-kinesis from 3.1032.0 to 3.1036.0

Release notes

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

v3.1036.0

3.1036.0(2026-04-23)

Chores
  • codegen: sync for http2 session closure, retry longpoll backoff, and fast-xml-parser version bump (#7958) (107aefc4)
  • xml-builder: up fast-xml-parser to 5.7.1 (#7957) (110b1c01)
Documentation Changes
  • client-pcs: This release adds support for Slurm 25.11 with expedited requeue enabled by default for jobs failing due to node issues, configurable requeue delay, health checks at node startup only, and unauthenticated HTTP endpoints disabled by default for improved security. (1110500a)
New Features
  • client-datazone: Releasing For LakehouseProperties attributes in the Connections API's (d0c03722)
  • client-iot-managed-integrations: Adds "Status" field to provisioning profile operation response types, giving users visibility into the readiness of a provisioning profile to be used for device provisioning. (72d6968c)
  • client-opensearch: Amazon OpenSearch UI applications now support cross-Region domain association, enabling you to connect OpenSearch Dashboards in one AWS Region to OpenSearch domains in other Regions within the same partition for centralized data visualization. (600311b9)
Tests
  • client-transcribe-streaming: add concurrency to startStreamTranscription test (#7948) (e2cf194b)

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

v3.1035.0

3.1035.0(2026-04-22)

New Features
  • client-iot-wireless: Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs. (9fcaea59)
  • client-ecs: GPU health monitoring and auto-repair for ECS Managed Instances (0ffa1090)
  • client-osis: Update the pipeline configuration body character limit for the CreatePipeline API call. (d19d4063)
  • client-opensearch: Adds support for RollbackServiceSoftwareUpdate API (e8b37945)
  • client-batch: Support of S3Files volume type, container start and stop timeouts. (802ac4b8)
  • client-ec2: Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations. (698293af)
  • client-emr-serverless: This release adds support for Spark connect sessions starting with release label emr-7.13.0. (966d4934)
  • client-bedrock-agentcore: Adds support for Amazon Bedrock AgentCore Harness data plane APIs, enabling customers to invoke managed agent loops and execute commands on live agent sessions with streaming responses. (a465bad8)
  • client-s3-control: This release adds support for five additional checksum algorithms for data integrity checking in Amazon S3 - MD5, SHA-512, XXHash3, XXHash64, and XXHash128. (e8c4a764)
  • client-bedrock-agentcore-control: Adds support for Amazon Bedrock AgentCore Harness control plane APIs, enabling customers to create, manage, and configure managed agent loops with customizable models, tools, memory, and isolated execution environments. (ace8fec5)
  • client-ivs: Adds support for Amazon IVS server-side ad insertion (a4a29e9e)
  • client-s3: This release adds five additional checksum algorithms for S3 data integrity (MD5, SHA-512, XXHash3, XXHash64, XXHash128) and support for S3 Inventory on directory buckets (S3 Express One Zone). (41a6a595)
  • client-lambda: Add Ruby 4.0 (ruby4.0) support to AWS Lambda. (ece8ce80)
Bug Fixes
  • client-s3: retry errors with 200 status code (#7945) (7d9d8d17)
  • client-sts: override IDPCommunicationError to be retryable (#7946) (d75e129a)

... (truncated)

Changelog

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

3.1036.0 (2026-04-23)

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

3.1035.0 (2026-04-22)

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

3.1034.0 (2026-04-21)

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

3.1033.0 (2026-04-20)

Features

  • clients: use binary decision diagrams for endpoint resolution (#7931) (ff1b2ba)
Commits
  • 46e4ac5 Publish v3.1036.0
  • 107aefc chore(codegen): sync for http2 session closure, retry longpoll backoff, and f...
  • d8fbfbc Publish v3.1035.0
  • 189729b test(clients): add snapshot tests for http2-default clients (#7947)
  • 408d99e test(client-kinesis): http2 session concurrency tests (#7941)
  • d08b5a7 Publish v3.1034.0
  • 273ad5b chore(codegen): sync for http2 session concurrency fixes (#7942)
  • a62021b Publish v3.1033.0
  • ff1b2ba feat(clients): use binary decision diagrams for endpoint resolution (#7931)
  • See full diff in compare view

Updates @aws-sdk/client-lambda from 3.1032.0 to 3.1036.0

Release notes

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

v3.1036.0

3.1036.0(2026-04-23)

Chores
  • codegen: sync for http2 session closure, retry longpoll backoff, and fast-xml-parser version bump (#7958) (107aefc4)
  • xml-builder: up fast-xml-parser to 5.7.1 (#7957) (110b1c01)
Documentation Changes
  • client-pcs: This release adds support for Slurm 25.11 with expedited requeue enabled by default for jobs failing due to node issues, configurable requeue delay, health checks at node startup only, and unauthenticated HTTP endpoints disabled by default for improved security. (1110500a)
New Features
  • client-datazone: Releasing For LakehouseProperties attributes in the Connections API's (d0c03722)
  • client-iot-managed-integrations: Adds "Status" field to provisioning profile operation response types, giving users visibility into the readiness of a provisioning profile to be used for device provisioning. (72d6968c)
  • client-opensearch: Amazon OpenSearch UI applications now support cross-Region domain association, enabling you to connect OpenSearch Dashboards in one AWS Region to OpenSearch domains in other Regions within the same partition for centralized data visualization. (600311b9)
Tests
  • client-transcribe-streaming: add concurrency to startStreamTranscription test (#7948) (e2cf194b)

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

v3.1035.0

3.1035.0(2026-04-22)

New Features
  • client-iot-wireless: Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs. (9fcaea59)
  • client-ecs: GPU health monitoring and auto-repair for ECS Managed Instances (0ffa1090)
  • client-osis: Update the pipeline configuration body character limit for the CreatePipeline API call. (d19d4063)
  • client-opensearch: Adds support for RollbackServiceSoftwareUpdate API (e8b37945)
  • client-batch: Support of S3Files volume type, container start and stop timeouts. (802ac4b8)
  • client-ec2: Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations. (698293af)
  • client-emr-serverless: This release adds support for Spark connect sessions starting with release label emr-7.13.0. (966d4934)
  • client-bedrock-agentcore: Adds support for Amazon Bedrock AgentCore Harness data plane APIs, enabling customers to invoke managed agent loops and execute commands on live agent sessions with streaming responses. (a465bad8)
  • client-s3-control: This release adds support for five additional checksum algorithms for data integrity checking in Amazon S3 - MD5, SHA-512, XXHash3, XXHash64, and XXHash128. (e8c4a764)
  • client-bedrock-agentcore-control: Adds support for Amazon Bedrock AgentCore Harness control plane APIs, enabling customers to create, manage, and configure managed agent loops with customizable models, tools, memory, and isolated execution environments. (ace8fec5)
  • client-ivs: Adds support for Amazon IVS server-side ad insertion (a4a29e9e)
  • client-s3: This release adds five additional checksum algorithms for S3 data integrity (MD5, SHA-512, XXHash3, XXHash64, XXHash128) and support for S3 Inventory on directory buckets (S3 Express One Zone). (41a6a595)
  • client-lambda: Add Ruby 4.0 (ruby4.0) support to AWS Lambda. (ece8ce80)
Bug Fixes
  • client-s3: retry errors with 200 status code (#7945) (7d9d8d17)
  • client-sts: override IDPCommunicationError to be retryable (#7946) (d75e129a)

... (truncated)

Changelog

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

3.1036.0 (2026-04-23)

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

3.1035.0 (2026-04-22)

Features

  • client-lambda: Add Ruby 4.0 (ruby4.0) support to AWS Lambda. (ece8ce8)

3.1034.0 (2026-04-21)

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

3.1033.0 (2026-04-20)

Features

  • clients: use binary decision diagrams for endpoint resolution (#7931) (ff1b2ba)
Commits
  • 46e4ac5 Publish v3.1036.0
  • 107aefc chore(codegen): sync for http2 session closure, retry longpoll backoff, and f...
  • d8fbfbc Publish v3.1035.0
  • ece8ce8 feat(client-lambda): Add Ruby 4.0 (ruby4.0) support to AWS Lambda.
  • 189729b test(clients): add snapshot tests for http2-default clients (#7947)
  • d08b5a7 Publish v3.1034.0
  • 273ad5b chore(codegen): sync for http2 session concurrency fixes (#7942)
  • a62021b Publish v3.1033.0
  • ff1b2ba feat(clients): use binary decision diagrams for endpoint resolution (#7931)
  • See full diff in compare view

Updates @aws-sdk/client-s3 from 3.1032.0 to 3.1036.0

Release notes

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

v3.1036.0

3.1036.0(2026-04-23)

Chores
  • codegen: sync for http2 session closure, retry longpoll backoff, and fast-xml-parser version bump (#7958) (107aefc4)
  • xml-builder: up fast-xml-parser to 5.7.1 (#7957) (110b1c01)
Documentation Changes
  • client-pcs: This release adds support for Slurm 25.11 with expedited requeue enabled by default for jobs failing due to node issues, configurable requeue delay, health checks at node startup only, and unauthenticated HTTP endpoints disabled by default for improved security. (1110500a)
New Features
  • client-datazone: Releasing For LakehouseProperties attributes in the Connections API's (d0c03722)
  • client-iot-managed-integrations: Adds "Status" field to provisioning profile operation response types, giving users visibility into the readiness of a provisioning profile to be used for device provisioning. (72d6968c)
  • client-opensearch: Amazon OpenSearch UI applications now support cross-Region domain association, enabling you to connect OpenSearch Dashboards in one AWS Region to OpenSearch domains in other Regions within the same partition for centralized data visualization. (600311b9)
Tests
  • client-transcribe-streaming: add concurrency to startStreamTranscription test (#7948) (e2cf194b)

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

v3.1035.0

3.1035.0(2026-04-22)

New Features
  • client-iot-wireless: Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs. (9fcaea59)
  • client-ecs: GPU health monitoring and auto-repair for ECS Managed Instances (0ffa1090)
  • client-osis: Update the pipeline configuration body character limit for the CreatePipeline API call. (d19d4063)
  • client-opensearch: Adds support for RollbackServiceSoftwareUpdate API (e8b37945)
  • client-batch: Support of S3Files volume type, container start and stop timeouts. (802ac4b8)
  • client-ec2: Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations. (698293af)
  • client-emr-serverless: This release adds support for Spark connect sessions starting with release label emr-7.13.0. (966d4934)
  • client-bedrock-agentcore: Adds support for Amazon Bedrock AgentCore Harness data plane APIs, enabling customers to invoke managed agent loops and execute commands on live agent sessions with streaming responses. (a465bad8)
  • client-s3-control: This release adds support for five additional checksum algorithms for data integrity checking in Amazon S3 - MD5, SHA-512, XXHash3, XXHash64, and XXHash128. (e8c4a764)
  • client-bedrock-agentcore-control: Adds support for Amazon Bedrock AgentCore Harness control plane APIs, enabling customers to create, manage, and configure managed agent loops with customizable models, tools, memory, and isolated execution environments. (ace8fec5)
  • client-ivs: Adds support for Amazon IVS server-side ad insertion (

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 9, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 9, 2026
Copy link
Copy Markdown
Collaborator

@jonathanstumm jonathanstumm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automated review found concerns: Dependabot has tightened peerDependencies ranges in packages/aws/package.json from permissive ^3.0.0 to restrictive ^3.1036.0 for all AWS SDK packages. This would break compatibility for consumers using any AWS SDK v3 version below 3.1036.0. Additionally, the lint CI check is failing. The peerDependencies ranges should remain at ^3.0.0 to preserve backward compatibility. Requires human review.

…ith 15 updates

Bumps the dev-dependencies group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.12` | `2.4.13` |
| [tstyche](https://github.com/tstyche/tstyche) | `7.0.0` | `7.1.0` |
| [@aws-sdk/client-cloudwatch-logs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudwatch-logs) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/client-kinesis](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-kinesis) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/client-sns](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sns) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.1032.0` | `3.1036.0` |
| [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage) | `3.1032.0` | `3.1036.0` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.57.1` | `2.58.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.55.4` | `5.55.5` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.8` | `8.0.10` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.83.0` | `4.85.0` |



Updates `@biomejs/biome` from 2.4.12 to 2.4.13
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.13/packages/@biomejs/biome)

Updates `tstyche` from 7.0.0 to 7.1.0
- [Release notes](https://github.com/tstyche/tstyche/releases)
- [Changelog](https://github.com/tstyche/tstyche/blob/main/CHANGELOG.md)
- [Commits](tstyche/tstyche@v7.0.0...v7.1.0)

Updates `@aws-sdk/client-cloudwatch-logs` from 3.1032.0 to 3.1036.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-cloudwatch-logs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1036.0/clients/client-cloudwatch-logs)

Updates `@aws-sdk/client-dynamodb` from 3.1032.0 to 3.1036.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-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1036.0/clients/client-dynamodb)

Updates `@aws-sdk/client-kinesis` from 3.1032.0 to 3.1036.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-kinesis/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1036.0/clients/client-kinesis)

Updates `@aws-sdk/client-lambda` from 3.1032.0 to 3.1036.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.1036.0/clients/client-lambda)

Updates `@aws-sdk/client-s3` from 3.1032.0 to 3.1036.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.1036.0/clients/client-s3)

Updates `@aws-sdk/client-sns` from 3.1032.0 to 3.1036.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-sns/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1036.0/clients/client-sns)

Updates `@aws-sdk/client-sqs` from 3.1032.0 to 3.1036.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-sqs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1036.0/clients/client-sqs)

Updates `@aws-sdk/client-ssm` from 3.1032.0 to 3.1036.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.1036.0/clients/client-ssm)

Updates `@aws-sdk/lib-storage` from 3.1032.0 to 3.1036.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-storage/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1036.0/lib/lib-storage)

Updates `@sveltejs/kit` from 2.57.1 to 2.58.0
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.58.0/packages/kit)

Updates `svelte` from 5.55.4 to 5.55.5
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.55.5/packages/svelte)

Updates `vite` from 8.0.8 to 8.0.10
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.10/packages/vite)

Updates `wrangler` from 4.83.0 to 4.85.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.85.0/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@aws-sdk/client-cloudwatch-logs"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-kinesis"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-sns"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-ssm"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/lib-storage"
  dependency-version: 3.1036.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: svelte
  dependency-version: 5.55.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tstyche
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-version: 8.0.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: wrangler
  dependency-version: 4.84.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-136e2acbf4 branch from 9df39a3 to be3a5d0 Compare May 9, 2026 11:11
Copy link
Copy Markdown
Collaborator

@jonathanstumm jonathanstumm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automated review found concerns: Dependabot has again tightened peerDependencies ranges in packages/aws/package.json from permissive ^3.0.0 to restrictive ^3.1036.0 for all 9 AWS SDK packages. This would break compatibility for consumers using any AWS SDK v3 version below 3.1036.0. The devDependencies ranges in packages/aws/package.json and websites/datastream.js.org/package.json are also unnecessarily tightened. Additionally, the lint CI check is still failing. Requires human review.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 9, 2026

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

@dependabot dependabot Bot closed this May 9, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/dev-dependencies-136e2acbf4 branch May 9, 2026 12:46
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.

1 participant