Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BAU: Bump the aws group across 1 directory with 71 updates #2858

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 10, 2025

Bumps the aws group with 8 updates in the /lambdas/delete-user-data directory:

Package From To
@aws-lambda-powertools/logger 2.11.0 2.12.0
@aws-lambda-powertools/commons 2.11.0 2.12.0
@aws-sdk/client-dynamodb 3.709.0 3.726.0
@aws-sdk/client-sns 3.709.0 3.726.0
@aws-sdk/client-sqs 3.709.0 3.726.0
@aws-sdk/client-ssm 3.709.0 3.726.0
@aws-sdk/lib-dynamodb 3.709.0 3.726.0
@aws-sdk/util-locate-window 3.693.0 3.723.0

Updates @aws-lambda-powertools/logger from 2.11.0 to 2.12.0

Release notes

Sourced from @​aws-lambda-powertools/logger's releases.

v2.12.0

Summary

In this release we have made the Logger class more extensible, added POWERTOOLS_METRICS_DISABLED to control metrics output in non production environment, and added AppSyncResolverSchema and KinesisDynamoDBStreamSchema to the parser utility.

⭐️ Thanks to @​zirkelc and @​svozza for their contributions to this release!

Logger class is now more extensible

You can now overwrite the Logger methods createAndPopulateLogItem, printLog, processLogItem, which were private before. This allows you to extend the Logger and add new functionality, i.e. implement your own message buffer.

Metrics utility improvements

You can now set POWERTOOLS_METRICS_DISABLED to control the metrics output. This is useful when you don't want to emit metrics in a non-production environment. When POWERTOOLS_DEV is enabled, the metrics are also suppressed, but you can always explicitly enable it with POWERTOOLS_METRICS_DISABLED .

We have also added a warning message when you overwrite a dimension with the same key, which will help you to troubleshoot unintentional changes:

import { Metrics } from '@aws-lambda-powertools/metrics';

const metrics = new Metrics({ singleMetric: true });

metrics.addDimension('test', 'foo');
metrics.addDimension('test', 'bar'); // "bar" replaces "foo"

// warning: Dimension "test" has already been added. The previous value will be overwritten.

New schema for AppSync and DynamoDB events

You can now use AppSyncResolverSchema and AppSyncResolverBatchSchema to parse AppSync Lambda resolver event.

We have also added KinesisDynamoDBStreamSchema to validate the event from the invocation chain of DynamoDB, Kinesis and Lambda, which are slightly different compared to direct DynamoDB Streams invocations, see more details in #3193.

Changes

  • chore(deps): bump github/codeql-action from 3.27.7 to 3.27.9 (#3422) by @​dependabot
  • chore(deps): bump github/codeql-action from 3.27.5 to 3.27.7 (#3411) by @​dependabot
  • chore(deps): bump actions/setup-node from 4.0.4 to 4.1.0 (#3380) by @​dependabot
  • chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0.16 to 3.0.17 (#3362) by @​dependabot
  • chore: replace close-issue-message action (#3364) by @​dreamorosi
  • chore(deps): bump github/codeql-action from 3.27.3 to 3.27.5 (#3336) by @​dependabot
  • chore(parser): return correct type for safeParse in envelopes (#3339) by @​jharlow
  • chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0 (#3344) by @​dependabot
  • chore(deps): bump aws-actions/closed-issue-message from 80edfc24bdf1283400eb04d20a8a605ae8bf7d48 to 37548691e7cc75ba58f85c9f873f9eee43590449 (#3345) by @​dependabot

🌟New features and non-breaking changes

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/logger's changelog.

2.12.0 (2024-12-17)

Bug Fixes

Features

  • logger: change selected method visibility to protected (#3377) (93a19a5)
  • metrics: disable metrics with POWERTOOLS_METRICS_DISABLED (#3351) (7e8578e)
  • metrics: warn when overwriting dimension (#3352) (12f3e44)
  • parser: Add appsync resolver event Zod schemas (#3301) (318f34b)
  • parser: add schema for DynamoDB - Kinesis Stream event (#3328) (a8dfa74)
Commits
  • d5ec97b chore(ci): bump version to 2.12.0 (#3432)
  • 3cd2f02 chore(deps-dev): bump markdownlint-cli2 from 0.15.0 to 0.16.0 (#3418)
  • 97db537 chore(deps-dev): bump zod from 3.23.8 to 3.24.1 (#3419)
  • 2e4f7f4 chore(deps): bump @​types/node from 22.10.1 to 22.10.2 (#3420)
  • f260ebd chore(deps): bump vscode/devcontainers/javascript-node from d493ef0 to `896...
  • 0ee179c chore(deps): bump github/codeql-action from 3.27.7 to 3.27.9 (#3422)
  • 63ff622 chore(deps-dev): bump lint-staged from 15.2.10 to 15.2.11 (#3417)
  • 0da9cea fix(parser): make SNS subject field nullish (#3415)
  • 248a13e docs: add videos section in community (#3416)
  • fb11da8 chore(deps): bump the aws-cdk group across 1 directory with 2 updates (#3413)
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/commons from 2.11.0 to 2.12.0

Release notes

Sourced from @​aws-lambda-powertools/commons's releases.

v2.12.0

Summary

In this release we have made the Logger class more extensible, added POWERTOOLS_METRICS_DISABLED to control metrics output in non production environment, and added AppSyncResolverSchema and KinesisDynamoDBStreamSchema to the parser utility.

⭐️ Thanks to @​zirkelc and @​svozza for their contributions to this release!

Logger class is now more extensible

You can now overwrite the Logger methods createAndPopulateLogItem, printLog, processLogItem, which were private before. This allows you to extend the Logger and add new functionality, i.e. implement your own message buffer.

Metrics utility improvements

You can now set POWERTOOLS_METRICS_DISABLED to control the metrics output. This is useful when you don't want to emit metrics in a non-production environment. When POWERTOOLS_DEV is enabled, the metrics are also suppressed, but you can always explicitly enable it with POWERTOOLS_METRICS_DISABLED .

We have also added a warning message when you overwrite a dimension with the same key, which will help you to troubleshoot unintentional changes:

import { Metrics } from '@aws-lambda-powertools/metrics';

const metrics = new Metrics({ singleMetric: true });

metrics.addDimension('test', 'foo');
metrics.addDimension('test', 'bar'); // "bar" replaces "foo"

// warning: Dimension "test" has already been added. The previous value will be overwritten.

New schema for AppSync and DynamoDB events

You can now use AppSyncResolverSchema and AppSyncResolverBatchSchema to parse AppSync Lambda resolver event.

We have also added KinesisDynamoDBStreamSchema to validate the event from the invocation chain of DynamoDB, Kinesis and Lambda, which are slightly different compared to direct DynamoDB Streams invocations, see more details in #3193.

Changes

  • chore(deps): bump github/codeql-action from 3.27.7 to 3.27.9 (#3422) by @​dependabot
  • chore(deps): bump github/codeql-action from 3.27.5 to 3.27.7 (#3411) by @​dependabot
  • chore(deps): bump actions/setup-node from 4.0.4 to 4.1.0 (#3380) by @​dependabot
  • chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0.16 to 3.0.17 (#3362) by @​dependabot
  • chore: replace close-issue-message action (#3364) by @​dreamorosi
  • chore(deps): bump github/codeql-action from 3.27.3 to 3.27.5 (#3336) by @​dependabot
  • chore(parser): return correct type for safeParse in envelopes (#3339) by @​jharlow
  • chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0 (#3344) by @​dependabot
  • chore(deps): bump aws-actions/closed-issue-message from 80edfc24bdf1283400eb04d20a8a605ae8bf7d48 to 37548691e7cc75ba58f85c9f873f9eee43590449 (#3345) by @​dependabot

🌟New features and non-breaking changes

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/commons's changelog.

2.12.0 (2024-12-17)

Bug Fixes

Features

  • logger: change selected method visibility to protected (#3377) (93a19a5)
  • metrics: disable metrics with POWERTOOLS_METRICS_DISABLED (#3351) (7e8578e)
  • metrics: warn when overwriting dimension (#3352) (12f3e44)
  • parser: Add appsync resolver event Zod schemas (#3301) (318f34b)
  • parser: add schema for DynamoDB - Kinesis Stream event (#3328) (a8dfa74)
Commits
  • d5ec97b chore(ci): bump version to 2.12.0 (#3432)
  • 3cd2f02 chore(deps-dev): bump markdownlint-cli2 from 0.15.0 to 0.16.0 (#3418)
  • 97db537 chore(deps-dev): bump zod from 3.23.8 to 3.24.1 (#3419)
  • 2e4f7f4 chore(deps): bump @​types/node from 22.10.1 to 22.10.2 (#3420)
  • f260ebd chore(deps): bump vscode/devcontainers/javascript-node from d493ef0 to `896...
  • 0ee179c chore(deps): bump github/codeql-action from 3.27.7 to 3.27.9 (#3422)
  • 63ff622 chore(deps-dev): bump lint-staged from 15.2.10 to 15.2.11 (#3417)
  • 0da9cea fix(parser): make SNS subject field nullish (#3415)
  • 248a13e docs: add videos section in community (#3416)
  • fb11da8 chore(deps): bump the aws-cdk group across 1 directory with 2 updates (#3413)
  • Additional commits viewable in compare view

Updates @aws-sdk/client-dynamodb from 3.709.0 to 3.726.0

Release notes

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

v3.726.0

3.726.0(2025-01-09)

Chores
  • util-endpoints: update aws partitions.json (5927fcdc)
  • endpoints: update endpoints model (1ba5717c)
  • models: update API models (9284063c)
  • codegen: update template typescript version (#6784) (a5635725)
New Features
  • client-fms: AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator. (e43d607d)
  • client-codebuild: AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambda (4fb5b7ee)
  • client-compute-optimizer: This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types. (b33aa6f1)
Tests

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

v3.725.0

3.725.0(2025-01-08)

Documentation Changes
  • client-rds: Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description. (4e29ba76)
New Features
  • clients: update client endpoints as of 2025-01-08 (c164b87e)
  • client-sagemaker: Adds support for IPv6 for SageMaker HyperPod cluster nodes. (85ce5530)
  • client-route-53: Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (444cdc9a)

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

v3.724.0

3.724.0(2025-01-07)

Chores

... (truncated)

Changelog

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

3.726.0 (2025-01-09)

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

3.724.0 (2025-01-07)

Features

  • client-dynamodb: This release makes Amazon DynamoDB point-in-time-recovery (PITR) to be configurable. You can set PITR recovery period for each table individually to between 1 and 35 days. (5e4350e)

3.723.0 (2025-01-06)

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

3.721.0 (2025-01-02)

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

3.716.0 (2024-12-19)

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

3.714.0 (2024-12-17)

Features

... (truncated)

Commits

Updates @aws-sdk/client-sns from 3.709.0 to 3.726.0

Release notes

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

v3.726.0

3.726.0(2025-01-09)

Chores
  • util-endpoints: update aws partitions.json (5927fcdc)
  • endpoints: update endpoints model (1ba5717c)
  • models: update API models (9284063c)
  • codegen: update template typescript version (#6784) (a5635725)
New Features
  • client-fms: AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator. (e43d607d)
  • client-codebuild: AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambda (4fb5b7ee)
  • client-compute-optimizer: This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types. (b33aa6f1)
Tests

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

v3.725.0

3.725.0(2025-01-08)

Documentation Changes
  • client-rds: Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description. (4e29ba76)
New Features
  • clients: update client endpoints as of 2025-01-08 (c164b87e)
  • client-sagemaker: Adds support for IPv6 for SageMaker HyperPod cluster nodes. (85ce5530)
  • client-route-53: Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (444cdc9a)

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

v3.724.0

3.724.0(2025-01-07)

Chores

... (truncated)

Changelog

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

3.726.0 (2025-01-09)

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

3.723.0 (2025-01-06)

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

3.721.0 (2025-01-02)

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

3.716.0 (2024-12-19)

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

3.714.0 (2024-12-17)

Features

3.713.0 (2024-12-16)

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

... (truncated)

Commits

Updates @aws-sdk/client-sqs from 3.709.0 to 3.726.0

Release notes

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

v3.726.0

3.726.0(2025-01-09)

Chores
  • util-endpoints: update aws partitions.json (5927fcdc)
  • endpoints: update endpoints model (1ba5717c)
  • models: update API models (9284063c)
  • codegen: update template typescript version (#6784) (a5635725)
New Features
  • client-fms: AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator. (e43d607d)
  • client-codebuild: AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambda (4fb5b7ee)
  • client-compute-optimizer: This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types. (b33aa6f1)
Tests

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

v3.725.0

3.725.0(2025-01-08)

Documentation Changes
  • client-rds: Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description. (4e29ba76)
New Features
  • clients: update client endpoints as of 2025-01-08 (c164b87e)
  • client-sagemaker: Adds support for IPv6 for SageMaker HyperPod cluster nodes. (85ce5530)
  • client-route-53: Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (444cdc9a)

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

v3.724.0

3.724.0(2025-01-07)

Chores

... (truncated)

Changelog

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

3.726.0 (2025-01-09)

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

3.723.0 (2025-01-06)

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

3.721.0 (2025-01-02)

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

3.716.0 (2024-12-19)

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

3.714.0 (2024-12-17)

Features

3.713.0 (2024-12-16)

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

... (truncated)

Commits

Updates @aws-sdk/client-ssm from 3.709.0 to 3.726.0

Release notes

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

v3.726.0

3.726.0(2025-01-09)

Chores
  • util-endpoints: update aws partitions.json (5927fcdc)
  • endpoints: update endpoints model (1ba5717c)
  • models: update API models (9284063c)
  • codegen: update template typescript version (#6784) (a5635725)
New Features
  • client-fms: AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator. (e43d607d)
  • client-codebuild: AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambda (4fb5b7ee)
  • client-compute-optimizer: This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types. (b33aa6f1)
Tests

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

v3.725.0

3.725.0(2025-01-08)

Documentation Changes
  • client-rds: Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description. (4e29ba76)
New Features
  • clients: update client endpoints as of 2025-01-08 (c164b87e)
  • client-sagemaker: Adds support for IPv6 for SageMaker HyperPod cluster nodes. (85ce5530)
  • client-route-53: Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (444cdc9a)

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

v3.724.0

3.724.0(2025-01-07)

Chores

... (truncated)

Changelog

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

3.726.0 (2025-01-09)

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

3.723.0 (2025-01-06)

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

3.721.0 (2025-01-02)

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

3.716.0 (2024-12-19)

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

3.714.0 (2024-12-17)

Features

3.713.0 (2024-12-16)

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

... (truncated)

Commits

Updates @aws-sdk/lib-dynamodb from 3.709.0 to 3.726.0

Release notes

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

v3.726.0

3.726.0(2025-01-09)

Chores
  • util-endpoints: update aws partitions.json (5927fcdc)
  • endpoints: update endpoints model (1ba5717c)
  • models: update API models (9284063c)
  • codegen: update template typescript version (#6784) (a5635725)
New Features
  • client-fms: AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator. (e43d607d)
  • client-codebuild: AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambda (4fb5b7ee)
  • client-compute-optimizer: This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types. (b33aa6f1)
Tests

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

v3.725.0

3.725.0(2025-01-08)

Documentation Changes
  • client-rds: Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description. (4e29ba76)
New Features
  • clients: update client endpoints as of 2025-01-08 (c164b87e)
  • client-sagemaker: Adds support for IPv6 for SageMaker HyperPod cluster nodes. (85ce5530)
  • client-route-53: Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (444cdc9a)

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

v3.724.0

3.724.0(2025-01-07)

Chores

... (truncated)

Changelog

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

3.726.0 (2025-01-09)

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

3.724.0 (2025-01-07)

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

3.723.0 (2025-01-06)

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

3.721.0 (2025-01-02)

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

3.716.0 (2024-12-19)

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

3.714.0 (2024-12-17)

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

3.713.0 (2024-12-16)

... (truncated)

Commits

Updates @aws-sdk/client-sso from 3.709.0 to 3.726.0

Release notes

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

v3.726.0

3.726.0(2025-01-09)

Chores
  • util-endpoints: update aws partitions.json (5927fcdc)
  • endpoints: update endpoints model (1ba5717c)
  • models: update API models (9284063c)
  • codegen: update template typescript version (#6784) (a5635725)
New Features
  • client-fms: AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator. (e43d607d)
  • client-codebuild: AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambda (4fb5b7ee)
  • client-compute-optimizer: This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types. (b33aa6f1)
Tests

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

v3.725.0

3.725.0(2025-01-08)

Documentation Changes
  • client-rds: Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description. (4e29ba76)
New Features
  • clients: update client endpoints as of 2025-01-08 (c164b87e)
  • client-sagemaker: Adds support for IPv6 for SageMaker HyperPod cluster nodes. (85ce5530)
  • client-route-53: Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (444cdc9a)

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

v3.724.0

3.724.0(2025-01-07)

Chores
  • client-iot-1click-*: service end-of-life (

Bumps the aws group with 8 updates in the /lambdas/delete-user-data directory:

| Package | From | To |
| --- | --- | --- |
| [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript) | `2.11.0` | `2.12.0` |
| [@aws-lambda-powertools/commons](https://github.com/aws-powertools/powertools-lambda-typescript) | `2.11.0` | `2.12.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.709.0` | `3.726.0` |
| [@aws-sdk/client-sns](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sns) | `3.709.0` | `3.726.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.709.0` | `3.726.0` |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.709.0` | `3.726.0` |
| [@aws-sdk/lib-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb) | `3.709.0` | `3.726.0` |
| [@aws-sdk/util-locate-window](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-locate-window) | `3.693.0` | `3.723.0` |



Updates `@aws-lambda-powertools/logger` from 2.11.0 to 2.12.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.11.0...v2.12.0)

Updates `@aws-lambda-powertools/commons` from 2.11.0 to 2.12.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.11.0...v2.12.0)

Updates `@aws-sdk/client-dynamodb` from 3.709.0 to 3.726.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.726.0/clients/client-dynamodb)

Updates `@aws-sdk/client-sns` from 3.709.0 to 3.726.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.726.0/clients/client-sns)

Updates `@aws-sdk/client-sqs` from 3.709.0 to 3.726.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.726.0/clients/client-sqs)

Updates `@aws-sdk/client-ssm` from 3.709.0 to 3.726.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.726.0/clients/client-ssm)

Updates `@aws-sdk/lib-dynamodb` from 3.709.0 to 3.726.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-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/lib/lib-dynamodb)

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

Updates `@aws-sdk/client-sso-oidc` from 3.709.0 to 3.726.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-sso-oidc/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/clients/client-sso-oidc)

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

Updates `@aws-sdk/core` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/core)

Updates `@aws-sdk/credential-provider-env` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-env/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/credential-provider-env)

Updates `@aws-sdk/credential-provider-http` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-http/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/credential-provider-http)

Updates `@aws-sdk/credential-provider-ini` from 3.709.0 to 3.726.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-ini/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/packages/credential-provider-ini)

Updates `@aws-sdk/credential-provider-node` from 3.709.0 to 3.726.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-node/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/packages/credential-provider-node)

Updates `@aws-sdk/credential-provider-process` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-process/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/credential-provider-process)

Updates `@aws-sdk/credential-provider-sso` from 3.709.0 to 3.726.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-sso/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/packages/credential-provider-sso)

Updates `@aws-sdk/credential-provider-web-identity` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-web-identity/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/credential-provider-web-identity)

Updates `@aws-sdk/endpoint-cache` from 3.693.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/endpoint-cache/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/endpoint-cache)

Updates `@aws-sdk/middleware-endpoint-discovery` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-endpoint-discovery/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/middleware-endpoint-discovery)

Updates `@aws-sdk/middleware-host-header` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-host-header/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/middleware-host-header)

Updates `@aws-sdk/middleware-logger` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-logger/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/middleware-logger)

Updates `@aws-sdk/middleware-recursion-detection` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-recursion-detection/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/middleware-recursion-detection)

Updates `@aws-sdk/middleware-sdk-sqs` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-sdk-sqs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/middleware-sdk-sqs)

Updates `@aws-sdk/middleware-user-agent` from 3.709.0 to 3.726.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-user-agent/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/packages/middleware-user-agent)

Updates `@aws-sdk/region-config-resolver` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/region-config-resolver/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/region-config-resolver)

Updates `@aws-sdk/token-providers` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/token-providers/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/token-providers)

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

Updates `@aws-sdk/util-dynamodb` from 3.709.0 to 3.726.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/packages/util-dynamodb)

Updates `@aws-sdk/util-endpoints` from 3.709.0 to 3.726.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-endpoints/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/packages/util-endpoints)

Updates `@aws-sdk/util-locate-window` from 3.693.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-locate-window/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/util-locate-window)

Updates `@aws-sdk/util-user-agent-browser` from 3.709.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-user-agent-browser/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/util-user-agent-browser)

Updates `@aws-sdk/util-user-agent-node` from 3.709.0 to 3.726.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-user-agent-node/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.726.0/packages/util-user-agent-node)

Updates `@smithy/abort-controller` from 3.1.9 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/abort-controller/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/abort-controller)

Updates `@smithy/config-resolver` from 3.0.13 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/config-resolver/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/config-resolver)

Updates `@smithy/core` from 2.5.5 to 3.1.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/core)

Updates `@smithy/credential-provider-imds` from 3.2.8 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/credential-provider-imds/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/credential-provider-imds)

Updates `@smithy/fetch-http-handler` from 4.1.2 to 5.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/fetch-http-handler/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/fetch-http-handler)

Updates `@smithy/hash-node` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/hash-node/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/hash-node)

Updates `@smithy/invalid-dependency` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/invalid-dependency/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/invalid-dependency)

Updates `@smithy/md5-js` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/md5-js/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/md5-js)

Updates `@smithy/middleware-content-length` from 3.0.13 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/middleware-content-length/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/middleware-content-length)

Updates `@smithy/middleware-endpoint` from 3.2.5 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/middleware-endpoint/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/middleware-endpoint)

Updates `@smithy/middleware-retry` from 3.0.30 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/middleware-retry/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/middleware-retry)

Updates `@smithy/middleware-serde` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/middleware-serde/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/middleware-serde)

Updates `@smithy/middleware-stack` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/middleware-stack/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/middleware-stack)

Updates `@smithy/node-config-provider` from 3.1.12 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/node-config-provider/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/node-config-provider)

Updates `@smithy/node-http-handler` from 3.3.2 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/node-http-handler/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/node-http-handler)

Updates `@smithy/property-provider` from 3.1.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/property-provider/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/property-provider)

Updates `@smithy/protocol-http` from 4.1.8 to 5.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/protocol-http/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/protocol-http)

Updates `@smithy/querystring-builder` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/querystring-builder/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/querystring-builder)

Updates `@smithy/querystring-parser` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/querystring-parser/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/querystring-parser)

Updates `@smithy/service-error-classification` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/service-error-classification/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/service-error-classification)

Updates `@smithy/shared-ini-file-loader` from 3.1.12 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/shared-ini-file-loader/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/shared-ini-file-loader)

Updates `@smithy/signature-v4` from 4.2.4 to 5.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/signature-v4/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/signature-v4)

Updates `@smithy/smithy-client` from 3.5.0 to 4.1.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/smithy-client/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/smithy-client)

Updates `@smithy/types` from 3.7.2 to 4.1.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/types)

Updates `@smithy/url-parser` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/url-parser/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/url-parser)

Updates `@smithy/util-base64` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-base64/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-base64)

Updates `@smithy/util-body-length-browser` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-body-length-browser/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-body-length-browser)

Updates `@smithy/util-body-length-node` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-body-length-node/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-body-length-node)

Updates `@smithy/util-config-provider` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-config-provider/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-config-provider)

Updates `@smithy/util-defaults-mode-browser` from 3.0.30 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-defaults-mode-node/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-defaults-mode-node)

Updates `@smithy/util-defaults-mode-node` from 3.0.30 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-defaults-mode-node/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-defaults-mode-node)

Updates `@smithy/util-endpoints` from 2.1.7 to 3.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-endpoints/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-endpoints)

Updates `@smithy/util-hex-encoding` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-hex-encoding/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-hex-encoding)

Updates `@smithy/util-middleware` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-middleware/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-middleware)

Updates `@smithy/util-retry` from 3.0.11 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-retry/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-retry)

Updates `@smithy/util-stream` from 3.3.2 to 4.0.1
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-stream/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-stream)

Updates `@smithy/util-uri-escape` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-uri-escape/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-uri-escape)

Updates `@smithy/util-waiter` from 3.2.0 to 4.0.2
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/util-waiter/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/[email protected]/packages/util-waiter)

---
updated-dependencies:
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-lambda-powertools/commons"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/client-sns"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/client-sqs"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/client-ssm"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/lib-dynamodb"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/client-sso"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/client-sso-oidc"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/client-sts"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/core"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/credential-provider-env"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/credential-provider-http"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/credential-provider-ini"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/credential-provider-node"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/credential-provider-process"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/credential-provider-sso"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/credential-provider-web-identity"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/endpoint-cache"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/middleware-endpoint-discovery"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/middleware-host-header"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/middleware-logger"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/middleware-recursion-detection"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/middleware-sdk-sqs"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/middleware-user-agent"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/region-config-resolver"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/token-providers"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/types"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/util-endpoints"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/util-locate-window"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/util-user-agent-browser"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@aws-sdk/util-user-agent-node"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: aws
- dependency-name: "@smithy/abort-controller"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/config-resolver"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/core"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/credential-provider-imds"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/fetch-http-handler"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/hash-node"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/invalid-dependency"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/md5-js"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/middleware-content-length"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/middleware-endpoint"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/middleware-retry"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/middleware-serde"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/middleware-stack"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/node-config-provider"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/node-http-handler"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/property-provider"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/protocol-http"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/querystring-builder"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/querystring-parser"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/service-error-classification"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/shared-ini-file-loader"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/signature-v4"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/smithy-client"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/types"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/url-parser"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-base64"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-body-length-browser"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-body-length-node"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-config-provider"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-defaults-mode-browser"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-defaults-mode-node"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-endpoints"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-hex-encoding"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-middleware"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-retry"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-stream"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-uri-escape"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
- dependency-name: "@smithy/util-waiter"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: aws
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from a team as code owners January 10, 2025 04:14
@dependabot dependabot bot added the dependabot Automated dependency updates label Jan 10, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 13, 2025

Superseded by #2862.

@dependabot dependabot bot closed this Jan 13, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/lambdas/delete-user-data/main/aws-498dffb73e branch January 13, 2025 03:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependabot Automated dependency updates
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants