Skip to content

Bump the minor-and-patch group across 1 directory with 18 updates #17

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 3, 2025

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

Package From To
prettier 3.3.3 3.5.3
aws-cdk-lib 2.149.0 2.200.0
constructs 10.3.0 10.4.2
esbuild 0.23.0 0.25.5
aws-cdk 2.149.0 2.1017.1
typescript 5.5.3 5.8.3
@aws-sdk/client-dynamodb 3.614.0 3.821.0
@aws-sdk/lib-dynamodb 3.614.0 3.821.0
@codegenie/serverless-express 4.14.1 4.16.0
aws-xray-sdk 3.9.0 3.10.3
dayjs 1.11.11 1.11.13
zod 3.23.8 3.25.49
@types/aws-lambda 8.10.141 8.10.149
@types/cors 2.8.17 2.8.18
aws-sdk-client-mock 4.0.1 4.1.0
@aws-sdk/client-cognito-identity-provider 3.614.0 3.821.0
@aws-sdk/client-ssm 3.614.0 3.821.0
@aws-sdk/util-dynamodb 3.614.0 3.821.0

Updates prettier from 3.3.3 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

3.4.2

🔗 Changelog

3.4.1

🔗 Changelog

3.4.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

3.4.2

diff

... (truncated)

Commits

Updates aws-cdk-lib from 2.149.0 to 2.200.0

Release notes

Sourced from aws-cdk-lib's releases.

v2.200.0

Features

  • update L1 CloudFormation resource definitions (#34594) (1e37ee7)
  • custom-resources: throw ValidationError instead of untyped Errors (#33392) (1dacaa3), closes #32569
  • ec2: implement IPeer to PrefixList to be usable as a connection peer (#33617) (c277419), closes #33607
  • iam: introduce OidcProviderNative construct utilizing the native CloudFormation resource (#28634) (d8e6c09), closes #21197
  • iam: throw ValidationErrors instead of untyped errors (#34579) (bd5caba), closes #32569
  • lambda: allow propagating function tags to loggroup (#34556) (f556fd1)
  • lambda: throw ValidationErrors instead of untyped errors (#34577) (6ccdd81), closes #32569
  • region-info: throw ValidationError instead of untyped Errors (#33384) (303daf2), closes #32569
  • s3: add grantReplicationPermission for IAM Role permissions (#34138) (bfa6490), closes #34119
  • secretsmanager: throw ValidationErrors instead of untyped errors (#34580) (4d591ef), closes #32569
  • servicecatalog: throw ValidationErrors instead of untyped errors (#34581) (3895d76), closes #32569
  • sns-subscriptions: support Amazon Data Firehose subscription (#33811) (632179c), closes #14391
  • stepfunctions: add grant API for RedriveExecution (#34554) (e03939d), closes #33578

Bug Fixes

  • ec2: validate throughput property on EC2 instance block devices (#34571) (b31580a), closes #34033
  • elasticloadbalancingv2: fix incorrect max for minimumCapacityUnit (#34586) (8f19b26), closes #34582

Alpha modules (2.200.0-alpha.0)

Features

v2.199.0

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES

  • cloudformation: Some L1 resources experienced breaking changes due to updated CloudFormation resources. Please check the notes for each specific module for more information.
  • vpc-lattice: the name and resourceConfigurationType property in CfnResourceConfigurationProps has changed from optional to required. Also, the name, subnetIds and vpcIdentifier properties in CfnResourceGatewayProps have changed from optional to mandatory.

Features

  • appconfig: deletion protection check for configuration profile (#34418) (ce88c76)
  • cloudformation: update L1 CloudFormation resource definitions (#34555) (64662b2)
  • ecs-patterns: add minHealthyPercent and maxHealthyPercent props to NetworkMultipleTargetGroupsFargateService (#34516) (a434aed), closes #34368
  • eks: Addon support configurationValues (#34061) (b420033), closes #34001
  • events-targets: enable opt-in to use an IAM role for SnsTopic target (#34259) (a3a0cf0)
  • stepfunctions-tasks: bedrock createModelCustomizationJob integration (#31913) (0c653d3), closes #29042

Bug Fixes

  • elasticloadbalancingv2: add validation on application listeners for certificates on HTTP protocol (#34233) (ca065bb)
  • rds: fix incorrect import/export combination check in AuroraMysqlEngineVersion.of() (#33564) (9e41154), closes #33562 #33562

Alpha modules (2.199.0-alpha.0)

... (truncated)

Changelog

Sourced from aws-cdk-lib's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.200.0-alpha.0 (2025-06-02)

Features

2.199.0-alpha.0 (2025-05-27)

2.198.0-alpha.0 (2025-05-22)

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES

  • amplify: A compute role is created when platform is Platform.WEB_COMPUTE or Platform.WEB_DYNAMIC.

Features

2.197.0-alpha.0 (2025-05-20)

2.196.1-alpha.0 (2025-05-19)

2.196.0-alpha.0 (2025-05-15)

Features

Bug Fixes

  • ec2: dual-stack vpc without private subnets creates EgressOnlyInternetGateway (under feature flag) (#34437) (35e818b), closes #30981
  • ec2-alpha: fix resource id references and tags for migration behind feature flag (#34377) (aa73534)

2.195.0-alpha.0 (2025-05-07)

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES

  • iot: By default, deviceDertificateAgeCheck is automatically enabled.

... (truncated)

Commits
  • 83c2e82 chore: update analytics metadata blueprints
  • 1e37ee7 feat: update L1 CloudFormation resource definitions (#34594)
  • e03939d feat(stepfunctions): add grant API for RedriveExecution (#34554)
  • 632179c feat(sns-subscriptions): support Amazon Data Firehose subscription (#33811)
  • e27cd2c revert(ec2): support Firehose IDeliveryStream as flow log destination (#34592)
  • b31580a fix(ec2): validate throughput property on EC2 instance block devices (#34571)
  • 802f130 chore(ec2): update PrefixList.fromLookup() to expect the result from CcApi ...
  • 703a379 chore(rds): add support for 8.0.mysql_aurora.3.09.0 (#34508)
  • 303daf2 feat(region-info): throw ValidationError instead of untyped Errors (#33384)
  • 9c68ec2 chore(rds): add MySQL version 5.7.44-rds.20250508 (#34576)
  • Additional commits viewable in compare view

Updates constructs from 10.3.0 to 10.4.2

Release notes

Sourced from constructs's releases.

v10.4.2

10.4.2 (2024-10-14)

Bug Fixes

v10.4.1

10.4.1 (2024-10-11)

Bug Fixes

v10.4.0

10.4.0 (2024-10-11)

Features

Bug Fixes

v10.3.2

10.3.2 (2024-10-11)

Bug Fixes

  • Python constructs do not implement a compatible interface (#2495) (912158f)

v10.3.1

10.3.1 (2024-10-10)

Bug Fixes

Commits
  • 892bb11 fix: cannot create root construct in python (#2500)
  • fab93a5 chore(deps): upgrade dev dependencies (#2506)
  • b06a17d chore(deps): upgrade dev dependencies (#2504)
  • dcae75e chore(deps): upgrade dev dependencies (#2502)
  • 3f6a73a fix: revert "fix: cannot create root construct in python" (#2499)
  • bb7f237 fix: cannot create root construct in python (#2496)
  • 75f29f4 feat: stabilize experimental code (#2497)
  • e9bf09c fix: unnecessary strict node requirement in engines in package.json (#2498)
  • 912158f fix: Python constructs do not implement a compatible interface (#2495)
  • 037cd6a chore(deps): upgrade dev dependencies (#2494)
  • Additional commits viewable in compare view

Updates esbuild from 0.23.0 to 0.25.5

Release notes

Sourced from esbuild's releases.

v0.25.5

  • Fix a regression with browser in package.json (#4187)

    The fix to #4144 in version 0.25.3 introduced a regression that caused browser overrides specified in package.json to fail to override relative path names that end in a trailing slash. That behavior change affected the axios@0.30.0 package. This regression has been fixed, and now has test coverage.

  • Add support for certain keywords as TypeScript tuple labels (#4192)

    Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a ? modifier. These labels included function, import, infer, new, readonly, and typeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:

    type Foo = [
      value: any,
      readonly?: boolean, // This is now parsed correctly
    ]
  • Add CSS prefixes for the stretch sizing value (#4184)

    This release adds support for prefixing CSS declarations such as div { width: stretch }. That CSS is now transformed into this depending on what the --target= setting includes:

    div {
      width: -webkit-fill-available;
      width: -moz-available;
      width: stretch;
    }

v0.25.4

  • Add simple support for CORS to esbuild's development server (#4125)

    Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from localhost where the esbuild development server is running.

    To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new cors option will now set the Access-Control-Allow-Origin response header when the request has a matching Origin header. Note that this currently only works for requests that don't send a preflight OPTIONS request, as esbuild's development server doesn't currently support OPTIONS requests.

    Some examples:

    • CLI:

      esbuild --servedir=. --cors-origin=https://example.com
      
    • JS:

      const ctx = await esbuild.context({})
      await ctx.serve({
        servedir: '.',
        cors: {

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2024

This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).

0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

... (truncated)

Commits

Updates aws-cdk from 2.149.0 to 2.1017.1

Release notes

Sourced from aws-cdk's releases.

aws-cdk@v2.1017.1

2.1017.1 (2025-05-30)

aws-cdk@v2.1017.0

2.1017.0 (2025-05-28)

Features

  • cli drift detection via cdk drift and toolkit.drift() (#442) (c48b685)

aws-cdk@v2.1016.1

2.1016.1 (2025-05-21)

Bug Fixes

  • toolkit-lib: dependency constraints are too strict (#514) (33292d1)
  • toolkit-lib: MFA token cannot be provided through IoHost (#508) (d452163), closes #396

aws-cdk@v2.1016.0

2.1016.0 (2025-05-16)

Features

  • cli: allow change set imports resources that already exist (#447) (319f1ad)

Bug Fixes

  • cli: gc does not delete isolated assets when rollback-buffer-days is set (#502) (66e0b2d)

aws-cdk@v2.1015.0

2.1015.0 (2025-05-14)

Features

Bug Fixes

  • cloudformation-diff: @aws-sdk/client-cloudformation should be a peer dependency (#478) (73994cf)

aws-cdk@v2.1014.0

... (truncated)

Commits

Updates typescript from 5.5.3 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

TypeScript 5.7

For release notes, check out the release announcement.

... (truncated)

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • Additional commits viewable in compare view

Updates @aws-sdk/client-dynamodb from 3.614.0 to 3.821.0

Release notes

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

v3.821.0

3.821.0(2025-05-30)

Chores
New Features
  • clients: update client endpoints as of 2025-05-30 (fa658a01)
  • client-sagemaker: Release new parameter CapacityReservationConfig in ProductionVariant (9ef66413)
  • client-emr-serverless: This release adds the capability for users to specify an optional Execution IAM policy in the StartJobRun action. The resulting permissions assumed by the job run is the intersection of the permissions in the Execution Role and the specified Execution IAM Policy. (e886e87e)
Tests

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

v3.820.0

3.820.0(2025-05-29)

New Features
  • client-auto-scaling: Add support for "apple" CpuManufacturer in ABIS (5d8aaf7a)
  • client-dataexchange: This release adds Tag support for Event Action resource, through which customers can create event actions with Tags and retrieve event actions with Tags. (0e347c5c)
  • client-cloudtrail: CloudTrail Feature Release: Support for Enriched Events with Configurable Context for Event Data Store (cd1e9a08)
  • client-mwaa: Amazon MWAA now lets you choose a worker replacement strategy when updating an environment. This release adds two worker replacement strategies: FORCED (default), which stops workers immediately, and GRACEFUL, which allows workers to finish current tasks before shutting down. (3ccfc39e)
  • client-s3: Adding checksum support for S3 PutBucketOwnershipControls API. (542663c4)
  • client-amplify: Add support for customizable build instance sizes. CreateApp and UpdateApp operations now accept a new JobConfig parameter composed of BuildComputeType. (092c9529)
  • client-connect: Amazon Connect Service Feature: Email Recipient Limit Increase (f3932ee0)
  • client-fsx: FSx API changes to support the public launch of new Intelligent Tiering storage class on Amazon FSx for Lustre (92e6ce03)
  • client-bcm-pricing-calculator: Add AFTER_DISCOUNTS_AND_COMMITMENTS to Workload Estimate Rate Type. Set ListWorkLoadEstimateUsage maxResults range to minimum of 0 and maximum of 300. (1e8cdb0c)
  • client-ivs-realtime: IVS Real-Time now offers customers the participant replication that allow customers to copy a participant from one stage to another. (ae076622)
  • client-datasync: AgentArns field is made optional for Object Storage and Azure Blob location create requests. Location credentials are now managed via Secrets Manager, and may be encrypted with service managed or customer managed keys. Authentication is now optional for Azure Blob locations. (2e6785ce)
  • client-sagemaker: Add maintenance status field to DescribeMlflowTrackingServer API response (3ed9c129)

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

v3.819.0

3.819.0(2025-05-28)

New Features

... (truncated)

Changelog

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

3.821.0 (2025-05-30)

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

3.817.0 (2025-05-23)

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

3.816.0 (2025-05-22)

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

3.812.0 (2025-05-16)

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

3.810.0 (2025-05-14)

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

3.808.0 (2025-05-12)

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

3.806.0 (2025-05-08)

... (truncated)

Commits

Updates @aws-sdk/lib-dynamodb from 3.614.0 to 3.821.0

Release notes

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

v3.821.0

3.821.0(2025-05-30)

Chores
New Features
  • clients: update client endpoints as of 2025-05-30 (fa658a01)
  • client-sagemaker: Release new parameter CapacityReservationConfig in ProductionVariant (9ef66413)
  • client-emr-serverless: This release adds the capability for users to specify an optional Execution IAM policy in the StartJobRun action. The resulting permissions assumed by the job run is the intersection of the permissions in the Execution Role and the specified Execution IAM Policy. (e886e87e)
Tests

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

v3.820.0

3.820.0(2025-05-29)

New Features
  • client-auto-scaling: Add support for "apple" CpuManufacturer in ABIS (5d8aaf7a)
  • client-dataexchange: This release adds Tag support for Event Action resource, through which customers can create event actions with Tags and retrieve event actions with Tags. (0e347c5c)
  • client-cloudtrail: CloudTrail Feature Release: Support for Enriched Events with Configurable Context for Event Data Store (cd1e9a08)
  • client-mwaa: Amazon MWAA now lets you choose a worker replacement strategy when updating an environment. This release adds two worker replacement strategies: FORCED (default), which stops workers immediately, and GRACEFUL, which allows workers to finish current tasks before shutting down. (3ccfc39e)
  • client-s3: Adding checksum support for S3 PutBucketOwnershipControls API. (542663c4)
  • client-amplify: Add support for customizable build instance sizes. CreateApp and UpdateApp operations now accept a new JobConfig parameter composed of BuildComputeType. (092c9529)
  • client-connect: Amazon Connect Service Feature: Email Recipient Limit Increase (f3932ee0)
  • client-fsx: FSx API changes to support the public launch of new Intelligent Tiering storage class on Amazon FSx for Lustre (92e6ce03)
  • client-bcm-pricing-calculator: Add AFTER_DISCOUNTS_AND_COMMITMENTS to Work...

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.5.3` |
| [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib) | `2.149.0` | `2.200.0` |
| [constructs](https://github.com/aws/constructs) | `10.3.0` | `10.4.2` |
| [esbuild](https://github.com/evanw/esbuild) | `0.23.0` | `0.25.5` |
| [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk) | `2.149.0` | `2.1017.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.3` | `5.8.3` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.614.0` | `3.821.0` |
| [@aws-sdk/lib-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb) | `3.614.0` | `3.821.0` |
| [@codegenie/serverless-express](https://github.com/CodeGenieApp/serverless-express) | `4.14.1` | `4.16.0` |
| [aws-xray-sdk](https://github.com/aws/aws-xray-sdk-node) | `3.9.0` | `3.10.3` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.11` | `1.11.13` |
| [zod](https://github.com/colinhacks/zod) | `3.23.8` | `3.25.49` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.141` | `8.10.149` |
| [@types/cors](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/cors) | `2.8.17` | `2.8.18` |
| [aws-sdk-client-mock](https://github.com/m-radzikowski/aws-sdk-client-mock) | `4.0.1` | `4.1.0` |
| [@aws-sdk/client-cognito-identity-provider](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cognito-identity-provider) | `3.614.0` | `3.821.0` |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.614.0` | `3.821.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.614.0` | `3.821.0` |



Updates `prettier` from 3.3.3 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.5.3)

Updates `aws-cdk-lib` from 2.149.0 to 2.200.0
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/v2.200.0/CHANGELOG.v2.alpha.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.200.0/packages/aws-cdk-lib)

Updates `constructs` from 10.3.0 to 10.4.2
- [Release notes](https://github.com/aws/constructs/releases)
- [Commits](aws/constructs@v10.3.0...v10.4.2)

Updates `esbuild` from 0.23.0 to 0.25.5
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.23.0...v0.25.5)

Updates `aws-cdk` from 2.149.0 to 2.1017.1
- [Release notes](https://github.com/aws/aws-cdk-cli/releases)
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1017.1/packages/aws-cdk)

Updates `typescript` from 5.5.3 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.5.3...v5.8.3)

Updates `@aws-sdk/client-dynamodb` from 3.614.0 to 3.821.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.821.0/clients/client-dynamodb)

Updates `@aws-sdk/lib-dynamodb` from 3.614.0 to 3.821.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.821.0/lib/lib-dynamodb)

Updates `@codegenie/serverless-express` from 4.14.1 to 4.16.0
- [Release notes](https://github.com/CodeGenieApp/serverless-express/releases)
- [Changelog](https://github.com/CodeGenieApp/serverless-express/blob/mainline/CHANGELOG.md)
- [Commits](CodeGenieApp/serverless-express@v4.14.1...v4.16.0)

Updates `aws-xray-sdk` from 3.9.0 to 3.10.3
- [Release notes](https://github.com/aws/aws-xray-sdk-node/releases)
- [Changelog](https://github.com/aws/aws-xray-sdk-node/blob/master/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-xray-sdk-node/compare/aws-xray-sdk-node@3.9.0...aws-xray-sdk-node@3.10.3)

Updates `dayjs` from 1.11.11 to 1.11.13
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/v1.11.13/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.11...v1.11.13)

Updates `zod` from 3.23.8 to 3.25.49
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.23.8...v3.25.49)

Updates `@types/aws-lambda` from 8.10.141 to 8.10.149
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda)

Updates `@types/cors` from 2.8.17 to 2.8.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/cors)

Updates `aws-sdk-client-mock` from 4.0.1 to 4.1.0
- [Release notes](https://github.com/m-radzikowski/aws-sdk-client-mock/releases)
- [Changelog](https://github.com/m-radzikowski/aws-sdk-client-mock/blob/main/CHANGELOG.md)
- [Commits](m-radzikowski/aws-sdk-client-mock@v4.0.1...v4.1.0)

Updates `@aws-sdk/client-cognito-identity-provider` from 3.614.0 to 3.821.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-cognito-identity-provider/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.821.0/clients/client-cognito-identity-provider)

Updates `@aws-sdk/client-ssm` from 3.614.0 to 3.821.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.821.0/clients/client-ssm)

Updates `@aws-sdk/util-dynamodb` from 3.614.0 to 3.821.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.821.0/packages/util-dynamodb)

---
updated-dependencies:
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: aws-cdk-lib
  dependency-version: 2.200.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: constructs
  dependency-version: 10.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: esbuild
  dependency-version: 0.25.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: aws-cdk
  dependency-version: 2.1017.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.821.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/lib-dynamodb"
  dependency-version: 3.821.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@codegenie/serverless-express"
  dependency-version: 4.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: aws-xray-sdk
  dependency-version: 3.10.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: dayjs
  dependency-version: 1.11.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: zod
  dependency-version: 3.25.49
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/aws-lambda"
  dependency-version: 8.10.149
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/cors"
  dependency-version: 2.8.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: aws-sdk-client-mock
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-cognito-identity-provider"
  dependency-version: 3.821.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-ssm"
  dependency-version: 3.821.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.821.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants