Skip to content

feat(ecs-patterns): support dualstack ALB in both ec2 and fargate#29186

Closed
wafuwafu13 wants to merge 4 commits intoaws:mainfrom
wafuwafu13:support-dualstack-alb
Closed

feat(ecs-patterns): support dualstack ALB in both ec2 and fargate#29186
wafuwafu13 wants to merge 4 commits intoaws:mainfrom
wafuwafu13:support-dualstack-alb

Conversation

@wafuwafu13
Copy link
Copy Markdown
Contributor

Issue # (if applicable)

Closes #29039

Reason for this change

Dualstack ALB is not supported in both ApplicationLoadBalancedEc2Service and ApplicationLoadBalancedFargateService.

Description of changes

  • Add ipAddressType field to ApplicationLoadBalancedServiceBaseProps that provides properties for the base ApplicationLoadBalancedEc2Service or ApplicationLoadBalancedFargateService service.
  • User can specify IpAddressType.Ipv4 or IpAddressType.DUAL_STACK.
  • Default is IpAddressType.Ipv4

Description of how you validated changes

  • Pass unit tests
  • Pass integration tests

Checklist


By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license

@github-actions github-actions bot added the valued-contributor [Pilot] contributed between 6-12 PRs to the CDK label Feb 20, 2024
@aws-cdk-automation aws-cdk-automation requested a review from a team February 20, 2024 22:31
@github-actions github-actions bot added effort/medium Medium work item – several days of effort feature-request A feature should be added or improved. p2 labels Feb 20, 2024
@wafuwafu13
Copy link
Copy Markdown
Contributor Author

wafuwafu13 commented Feb 21, 2024

Build Log

@aws-cdk-testing/framework-integ: Snapshot Results: 
@aws-cdk-testing/framework-integ: Tests:    16 failed, 807 total
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/ec2/integ.alb-ecs-service-command-entry-point.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/ec2/integ.application-load-balanced-ecs-service.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.alb-fargate-service-command-entry-point.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.alb-fargate-service-health-check.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.alb-fargate-service-https-idle-timeout.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.alb-fargate-service-https.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.asset-image.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.circuit-breaker-load-balanced-fargate-service.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.circuit-breaker-no-deployment-controller-fargate-service.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.executionrole.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3-autocreate.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3-capacity-provider-strategies.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3-vpconly.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.special-listener.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-elasticloadbalancingv2-targets/test/integ.alb-target.js
@aws-cdk-testing/framework-integ: Error: Some tests failed!
@aws-cdk-testing/framework-integ: To re-run failed tests run: integ-runner --update-on-failed
@aws-cdk-testing/framework-integ:     at main (/codebuild/output/src2783938204/src/github.com/aws/aws-cdk/packages/@aws-cdk/integ-runner/lib/cli.js:191:19)
@aws-cdk-testing/framework-integ: Error: integ-runner exited with error code 1
@aws-cdk-testing/framework-integ: Tests failed. Total time (2m5.7s) | integ-runner (1m48.3s) | /codebuild/output/src2783938204/src/github.com/aws/aws-cdk/node_modules/jest/bin/jest.js (15.6s)
@aws-cdk-testing/framework-integ: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

@wafuwafu13 wafuwafu13 marked this pull request as draft February 21, 2024 09:33
@wafuwafu13
Copy link
Copy Markdown
Contributor Author

I will fix all.

ex)

$ yarn integ aws-ecs-patterns/test/ec2/integ.application-load-balanced-ecs-service.js --update-on-failed --parallel-regions eu-west-1
yarn run v1.22.19
$ integ-runner --language javascript aws-ecs-patterns/test/ec2/integ.application-load-balanced-ecs-service.js --update-on-failed --parallel-regions eu-west-1

Verifying integration test snapshots...

  CHANGED    aws-ecs-patterns/test/ec2/integ.application-load-balanced-ecs-service 0.894s
      Resources
[~] AWS::ElasticLoadBalancingV2::LoadBalancer myServiceLB168895E1 
 └─ [+] IpAddressType
     └─ ipv4



Snapshot Results: 

Tests:    1 failed, 1 total
Failed: /Users/herotaka/Desktop/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/ec2/integ.application-load-balanced-ecs-service.js

Running integration tests for failed tests...

Running in parallel across regions: eu-west-1
Running test /Users/herotaka/Desktop/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/ec2/integ.application-load-balanced-ecs-service.js in eu-west-1

@wafuwafu13
Copy link
Copy Markdown
Contributor Author

wafuwafu13 commented Feb 22, 2024

✅ aws-ecs-patterns/test/ec2/integ.application-load-balanced-ecs-service

success

❌ -> ✅ aws-ecs-patterns/test/ec2/integ.alb-ecs-service-command-entry-point

AWS::ECS::Service | CREATE_IN_PROGRESS
$ aws ecs describe-tasks --cluster aws-ecs-integ-alb-ec2-cmd-entrypoint-Ec2ClusterEE43E89D-zBVKZa6JEBrW --tasks xxxxxxxxxxxxxxx | jq '.tasks[].stopCode'
"EssentialContainerExited"

fixed at #29333

❌ -> ✅ aws-ecs-patterns/test/fargate/integ.alb-fargate-service-command-entry-point

AWS::ECS::Service

CREATE_FAILED | Resource timed out waiting for completion

fixed at #29490

✅ aws-ecs-patterns/test/fargate/integ.alb-fargate-service-health-check

success

❌ aws-ecs-patterns/test/fargate/integ.alb-fargate-service-https-idle-timeout

aws-ecs-integ-alb-fg-idletimeout | 25/42 | 9:56:13 AM | CREATE_FAILED        | AWS::CertificateManager::Certificate      | myService/Certificate (myServiceCertificate152F9DDA) DNS Record Set is not available. Certificate is in FAILED status.
 ❌  aws-ecs-integ-alb-fg-idletimeout failed: Error: The stack named aws-ecs-integ-alb-fg-idletimeout failed creation, it may need to be manually deleted from the AWS console: ROLLBACK_COMPLETE: DNS Record Set is not available. Certificate is in FAILED status.
    at FullCloudFormationDeployment.monitorDeployment (/workspaces/aws-cdk/packages/aws-cdk/lib/api/deploy-stack.js:252:19)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.deployStack (/workspaces/aws-cdk/packages/aws-cdk/lib/cdk-toolkit.js:232:32)
    at async /workspaces/aws-cdk/packages/aws-cdk/lib/util/work-graph.js:88:21

❌ aws-ecs-patterns/test/fargate/integ.alb-fargate-service-https

aws-ecs-integ-alb-fg-https | 26/42 | 9:57:38 AM | CREATE_FAILED        | AWS::CertificateManager::Certificate      | myService/Certificate (myServiceCertificate152F9DDA) DNS Record Set is not available. Certificate is in FAILED status.
❌  aws-ecs-integ-alb-fg-https failed: Error: The stack named aws-ecs-integ-alb-fg-https failed creation, it may need to be manually deleted from the AWS console: ROLLBACK_COMPLETE: DNS Record Set is not available. Certificate is in FAILED status.
    at FullCloudFormationDeployment.monitorDeployment (/workspaces/aws-cdk/packages/aws-cdk/lib/api/deploy-stack.js:252:19)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.deployStack (/workspaces/aws-cdk/packages/aws-cdk/lib/cdk-toolkit.js:232:32)
    at async /workspaces/aws-cdk/packages/aws-cdk/lib/util/work-graph.js:88:21

❌ aws-ecs-patterns/test/fargate/integ.asset-image

aws-ecs-integ-fargate-image:  start: Building efa824c4bb8d68e82b8855447237ad68cb4c3a702664a01b5ec65368f5204d15:current_account-current_region
aws-ecs-integ-fargate-image:  success: Built efa824c4bb8d68e82b8855447237ad68cb4c3a702664a01b5ec65368f5204d15:current_account-current_region
aws-ecs-integ-fargate-image:  start: Building 0a3355be12051c9984bf2b0b2bba4e6ea535968e5b6e7396449701732fe5ed14:current_account-current_region
aws-ecs-integ-fargate-image:  start: Publishing efa824c4bb8d68e82b8855447237ad68cb4c3a702664a01b5ec65368f5204d15:current_account-current_region
aws-ecs-integ-fargate-image:  success: Published efa824c4bb8d68e82b8855447237ad68cb4c3a702664a01b5ec65368f5204d15:current_account-current_region
#1 [internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [internal] load build definition from Dockerfile
#2 transferring dockerfile: 132B done
#2 DONE 0.0s

#3 [internal] load metadata for public.ecr.aws/lambda/python:3.6
#3 ...

#4 [auth] aws:: lambda/python:pull token for public.ecr.aws
#4 DONE 0.0s

#3 [internal] load metadata for public.ecr.aws/lambda/python:3.6
#3 ERROR: pulling from host public.ecr.aws failed with status code [manifests 3.6]: 403 Forbidden
------
 > [internal] load metadata for public.ecr.aws/lambda/python:3.6:
------
Dockerfile:1
--------------------
   1 | >>> FROM public.ecr.aws/lambda/python:3.6
   2 |     EXPOSE 8000
   3 |     WORKDIR /src
--------------------
ERROR: failed to solve: public.ecr.aws/lambda/python:3.6: pulling from host public.ecr.aws failed with status code [manifests 3.6]: 403 Forbidden
aws-ecs-integ-fargate-image:  fail: docker build --tag cdkasset-0a3355be12051c9984bf2b0b2bba4e6ea535968e5b6e7396449701732fe5ed14 . exited with error code 1: #1 [internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [internal] load build definition from Dockerfile
#2 transferring dockerfile: 132B done
#2 DONE 0.0s

#3 [internal] load metadata for public.ecr.aws/lambda/python:3.6
#3 ...

#4 [auth] aws:: lambda/python:pull token for public.ecr.aws
#4 DONE 0.0s

#3 [internal] load metadata for public.ecr.aws/lambda/python:3.6
#3 ERROR: pulling from host public.ecr.aws failed with status code [manifests 3.6]: 403 Forbidden
------
 > [internal] load metadata for public.ecr.aws/lambda/python:3.6:
------
Dockerfile:1
--------------------
   1 | >>> FROM public.ecr.aws/lambda/python:3.6
   2 |     EXPOSE 8000
   3 |     WORKDIR /src
--------------------
ERROR: failed to solve: public.ecr.aws/lambda/python:3.6: pulling from host public.ecr.aws failed with status code [manifests 3.6]: 403 Forbidden

 ❌ Deployment failed: Error: Failed to build asset 0a3355be12051c9984bf2b0b2bba4e6ea535968e5b6e7396449701732fe5ed14:current_account-current_region
    at Deployments.buildSingleAsset (/workspaces/aws-cdk/packages/aws-cdk/lib/api/deployments.js:260:19)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.buildAsset (/workspaces/aws-cdk/packages/aws-cdk/lib/cdk-toolkit.js:161:13)
    at async /workspaces/aws-cdk/packages/aws-cdk/lib/util/work-graph.js:91:21

✅ aws-ecs-patterns/test/fargate/integ.circuit-breaker-load-balanced-fargate-service.js

success

✅ aws-ecs-patterns/test/fargate/integ.circuit-breaker-no-deployment-controller-fargate-service

success

✅ aws-ecs-patterns/test/fargate/integ.executionrole

success

❌ aws-ecs-patterns/test/fargate/integ.l3-autocreate

AWS::ECS::Service | CREATE_IN_PROGRESS

aws-ec-NLBFa-IGODBAV2FUXB
スクリーンショット 2024-02-22 11 07 22

❌ aws-ecs-patterns/test/fargate/integ.l3-capacity-provider-strategies

AWS::ECS::Service | CREATE_IN_PROGRESS

aws-ec-NLBFa-IUW9I9E8UBNC
スクリーンショット 2024-02-22 11 09 43

❌ aws-ecs-patterns/test/fargate/integ.l3-vpconly

AWS::ECS::Service | CREATE_IN_PROGRESS

aws-ec-NLBFa-CTLQOQKDUB4M

スクリーンショット 2024-02-22 11 11 19

❌ aws-ecs-patterns/test/fargate/integ.l3

AWS::ECS::Service | CREATE_IN_PROGRESS

aws-ec-NLBFa-IPBRSWSNJ2OX

スクリーンショット 2024-02-22 11 12 43

❌ aws-ecs-patterns/test/fargate/integ.special-listener

AWS::ECS::Service | CREATE_IN_PROGRESS

aws-ec-Farga-PHBFreHHRlZB

スクリーンショット 2024-02-22 11 14 34

✅ aws-elasticloadbalancingv2-targets/test/integ.alb-target

success

@wafuwafu13 wafuwafu13 marked this pull request as ready for review February 22, 2024 16:40
@aws-cdk-automation
Copy link
Copy Markdown
Collaborator

AWS CodeBuild CI Report

  • CodeBuild project: AutoBuildv2Project1C6BFA3F-wQm2hXv2jqQv
  • Commit ID: 3135a6f
  • Result: FAILED
  • Build Logs (available for 30 days)

Powered by github-codebuild-logs, available on the AWS Serverless Application Repository

@wafuwafu13
Copy link
Copy Markdown
Contributor Author

I will fix in another PR

@aws-cdk-testing/framework-integ: Snapshot Results: 
@aws-cdk-testing/framework-integ: Tests:    10 failed, 813 total
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/ec2/integ.alb-ecs-service-command-entry-point.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.alb-fargate-service-command-entry-point.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.alb-fargate-service-https-idle-timeout.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.alb-fargate-service-https.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.asset-image.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3-autocreate.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3-capacity-provider-strategies.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3-vpconly.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.l3.js
@aws-cdk-testing/framework-integ: Failed: /codebuild/output/src1382708476/src/github.com/aws/aws-cdk/packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.special-listener.js

@aws-cdk-automation
Copy link
Copy Markdown
Collaborator

This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state.

2 similar comments
@aws-cdk-automation
Copy link
Copy Markdown
Collaborator

This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state.

@aws-cdk-automation
Copy link
Copy Markdown
Collaborator

This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state.

mergify bot pushed a commit that referenced this pull request Mar 4, 2024
…nteg.alb-ecs-service-command-entry-point` (#29333)

### Issue # (if applicable)

part of #29186 (comment)
Closes #<issue number here>.

### Reason for this change

CFN stack gets stuck after `yarn integ` because of not being able to create ECS service.

```
AWS::ECS::Service | CREATE_IN_PROGRESS
```

```
$ aws ecs describe-tasks --cluster aws-ecs-integ-alb-ec2-cmd-entrypoint-Ec2ClusterEE43E89D-zBVKZa6JEBrW --tasks xxxxxxxxxxxxxxx | jq '.tasks[].stopCode'
"EssentialContainerExited"
```


### Description of changes

Change `taskImageOptions` `image`, `command`, `entryPoint` and add security group.
Ref: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/example_task_definitions.html#example_task_definition-webserver



### Description of how you validated changes

Pass integration tests


### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
@aws-cdk-automation
Copy link
Copy Markdown
Collaborator

This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state.

mergify bot pushed a commit to SvenKirschbaum/aws-utils that referenced this pull request Mar 9, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
|  |  | lockFileMaintenance | All locks refreshed |  |  |  |  |
| [@aws-sdk/client-secrets-manager](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-secrets-manager) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager)) | dependencies | minor | [`3.525.0` -> `3.529.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-secrets-manager/3.525.0/3.529.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-secrets-manager/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-secrets-manager/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-secrets-manager/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-secrets-manager/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@fallobst22/cdk-cross-account-route53](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53) | dependencies | patch | [`^0.0.2` -> `^0.0.6`](https://renovatebot.com/diffs/npm/@fallobst22%2fcdk-cross-account-route53/0.0.2/0.0.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@fallobst22%2fcdk-cross-account-route53/0.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@fallobst22%2fcdk-cross-account-route53/0.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@fallobst22%2fcdk-cross-account-route53/0.0.2/0.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@fallobst22%2fcdk-cross-account-route53/0.0.2/0.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/aws-lambda](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/aws-lambda) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda)) | devDependencies | patch | [`8.10.134` -> `8.10.136`](https://renovatebot.com/diffs/npm/@types%2faws-lambda/8.10.134/8.10.136) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2faws-lambda/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2faws-lambda/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2faws-lambda/8.10.134/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2faws-lambda/8.10.134/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`20.11.24` -> `20.11.25`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.24/20.11.25) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.11.24/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.11.24/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk)) | devDependencies | minor | [`2.131.0` -> `2.132.0`](https://renovatebot.com/diffs/npm/aws-cdk/2.131.0/2.132.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk-lib](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib)) | dependencies | minor | [`2.131.0` -> `2.132.0`](https://renovatebot.com/diffs/npm/aws-cdk-lib/2.131.0/2.132.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk-lib/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk-lib/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk-lib/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk-lib/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | devDependencies | minor | [`~5.3.0` -> `~5.4.0`](https://renovatebot.com/diffs/npm/typescript/5.3.3/5.4.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | devDependencies | minor | [`5.3.3` -> `5.4.2`](https://renovatebot.com/diffs/npm/typescript/5.3.3/5.4.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | dependencies | minor | [`5.3.3` -> `5.4.2`](https://renovatebot.com/diffs/npm/typescript/5.3.3/5.4.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

🔧 This Pull Request updates lock files to use the latest dependency versions.

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-secrets-manager)</summary>

### [`v3.529.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#35291-2024-03-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager)

### [`v3.529.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#35290-2024-03-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.525.0...v3.529.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager)

</details>

<details>
<summary>SvenKirschbaum/cdk-cross-account-route53 (@&#8203;fallobst22/cdk-cross-account-route53)</summary>

### [`v0.0.6`](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/releases/tag/v0.0.6)

[Compare Source](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.5...v0.0.6)

##### [0.0.6](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.4...v0.0.6) (2024-03-09)

### [`v0.0.5`](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/releases/tag/v0.0.5)

[Compare Source](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.4...v0.0.5)

##### [0.0.5](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.4...v0.0.5) (2024-03-09)

### [`v0.0.4`](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/releases/tag/v0.0.4)

[Compare Source](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.3...v0.0.4)

##### [0.0.4](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.3...v0.0.4) (2024-03-08)

### [`v0.0.3`](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/releases/tag/v0.0.3)

[Compare Source](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.2...v0.0.3)

##### [0.0.3](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.2...v0.0.3) (2024-03-08)

</details>

<details>
<summary>aws/aws-cdk (aws-cdk)</summary>

### [`v2.132.0`](https://togithub.com/aws/aws-cdk/releases/tag/v2.132.0)

[Compare Source](https://togithub.com/aws/aws-cdk/compare/v2.131.0...v2.132.0)

##### Features

-   **autoscaling:** add support for InstanceRefresh suspended process ([#&#8203;29113](https://togithub.com/aws/aws-cdk/issues/29113)) ([f5e7717](https://togithub.com/aws/aws-cdk/commit/f5e7717c6bbde805fc5565e266776b495d45490a))
-   **autoscaling:** support custom termination policy with lambda ([#&#8203;29340](https://togithub.com/aws/aws-cdk/issues/29340)) ([2ebb409](https://togithub.com/aws/aws-cdk/commit/2ebb409d09bfd1e465dbe29e4e4abb1cb75f197a)), closes [#&#8203;19750](https://togithub.com/aws/aws-cdk/issues/19750)
-   **codepipeline:** `executionMode` property for Pipeline ([#&#8203;29148](https://togithub.com/aws/aws-cdk/issues/29148)) ([3bb2944](https://togithub.com/aws/aws-cdk/commit/3bb29440acc819acb24c9597a407b85678940a5e)), closes [#&#8203;29147](https://togithub.com/aws/aws-cdk/issues/29147)
-   **ec2:** add NAT instance V2 support using AL2023 ([#&#8203;29013](https://togithub.com/aws/aws-cdk/issues/29013)) ([7fa6bbf](https://togithub.com/aws/aws-cdk/commit/7fa6bbfa141eca76d6d2f7bc68bd29a71f6ef872))
-   **elasticloadbalancingv2:** health check interval greater than timeout ([#&#8203;29075](https://togithub.com/aws/aws-cdk/issues/29075)) ([576d034](https://togithub.com/aws/aws-cdk/commit/576d034bd1645d44bf574670f2f1b5d865a25f66)), closes [#&#8203;29062](https://togithub.com/aws/aws-cdk/issues/29062)
-   **rds:** add ability to specify PreferredMaintenanceWindow to RDS cluster database instances ([#&#8203;29033](https://togithub.com/aws/aws-cdk/issues/29033)) ([9c82bca](https://togithub.com/aws/aws-cdk/commit/9c82bcaf90a1dc2df324a72ea622c7eec729d0f5)), closes [#&#8203;16954](https://togithub.com/aws/aws-cdk/issues/16954)
-   **rds:** enable data api for aurora cluster ([#&#8203;29338](https://togithub.com/aws/aws-cdk/issues/29338)) ([82690f7](https://togithub.com/aws/aws-cdk/commit/82690f7ca7416da39b0a354bc4e8cc6a5a941a5f)), closes [#&#8203;28574](https://togithub.com/aws/aws-cdk/issues/28574)
-   **stepfunctions-tasks:** start build batch integration ([#&#8203;29296](https://togithub.com/aws/aws-cdk/issues/29296)) ([4f2b757](https://togithub.com/aws/aws-cdk/commit/4f2b75772c8c8075665627d79f8874bda5bd0dd5)), closes [#&#8203;29119](https://togithub.com/aws/aws-cdk/issues/29119)
-   list stack dependencies ([#&#8203;28995](https://togithub.com/aws/aws-cdk/issues/28995)) ([a7fac9d](https://togithub.com/aws/aws-cdk/commit/a7fac9d13d649b9989c01edc042ba11dcc854562))
-   update L1 CloudFormation resource definitions ([#&#8203;29349](https://togithub.com/aws/aws-cdk/issues/29349)) ([8b01f45](https://togithub.com/aws/aws-cdk/commit/8b01f45f751df558683934ab69e7836b3900a2cb))

##### Bug Fixes

-   **batch:** windows does not support readonlyRootFilesystem ([#&#8203;29145](https://togithub.com/aws/aws-cdk/issues/29145)) ([7205143](https://togithub.com/aws/aws-cdk/commit/7205143d563449ab211406da04d99bbbcdc7c8cc)), closes [#&#8203;29140](https://togithub.com/aws/aws-cdk/issues/29140)
-   **changelog:** changelog for v2.131.0 has some errors ([#&#8203;29352](https://togithub.com/aws/aws-cdk/issues/29352)) ([1b56897](https://togithub.com/aws/aws-cdk/commit/1b56897ccbd92ef346526375c0903481f92b86c0))
-   **cli:** prevent changeset diff for non-deployed stacks ([#&#8203;29394](https://togithub.com/aws/aws-cdk/issues/29394)) ([d33caff](https://togithub.com/aws/aws-cdk/commit/d33cafff6ed72a0e9b4dd0f282b3f1191c4d62c2)), closes [#&#8203;29265](https://togithub.com/aws/aws-cdk/issues/29265)
-   **cloudwatch:** allow up to 30 dimensions for metric ([#&#8203;29341](https://togithub.com/aws/aws-cdk/issues/29341)) ([ebe2adf](https://togithub.com/aws/aws-cdk/commit/ebe2adff61c5cefcd4576bbc22c3b5d27b390d92)), closes [#&#8203;29322](https://togithub.com/aws/aws-cdk/issues/29322)
-   **custom-resources:** correctly convert values to Date type ([#&#8203;28398](https://togithub.com/aws/aws-cdk/issues/28398)) ([38bdb92](https://togithub.com/aws/aws-cdk/commit/38bdb921caab73a063304ec26f72402cc8ccc79b)), closes [/github.com/aws/aws-cdk/blob/1a9c30e55e58203bd0a61de82711cf10f1e04851/packages/aws-cdk-lib/custom-resources/lib/helpers-internal/sdk-v3-metadata.json#L174](https://togithub.com/aws//github.com/aws/aws-cdk/blob/1a9c30e55e58203bd0a61de82711cf10f1e04851/packages/aws-cdk-lib/custom-resources/lib/helpers-internal/sdk-v3-metadata.json/issues/L174) [#&#8203;27962](https://togithub.com/aws/aws-cdk/issues/27962)
-   **custom-resources:** log statement exposes information prohibited by security guideline ([#&#8203;29406](https://togithub.com/aws/aws-cdk/issues/29406)) ([11621e7](https://togithub.com/aws/aws-cdk/commit/11621e78c8f8188fcdd528d01cd2aa8bd97db58f))
-   **ecs-patterns:** resolve not being able to create ECS service in `integ.alb-ecs-service-command-entry-point` ([#&#8203;29333](https://togithub.com/aws/aws-cdk/issues/29333)) ([6a69d5b](https://togithub.com/aws/aws-cdk/commit/6a69d5bf0768b61b488bcf7f62493f27cae278cc)), closes [/github.com/aws/aws-cdk/pull/29186#issuecomment-1959231406](https://togithub.com/aws//github.com/aws/aws-cdk/pull/29186/issues/issuecomment-1959231406)
-   **events_targets:** installing latest aws sdk fails in cn partition ([#&#8203;29374](https://togithub.com/aws/aws-cdk/issues/29374)) ([f0383d6](https://togithub.com/aws/aws-cdk/commit/f0383d65c7cc8017c55ec9c9262d4a863bb63730))
-   **events-targets:** ecs:TagResource permission ([#&#8203;28898](https://togithub.com/aws/aws-cdk/issues/28898)) ([4af0dfc](https://togithub.com/aws/aws-cdk/commit/4af0dfcb0ecf7719d2ca15c7f971fa65ce8953cd)), closes [#&#8203;28854](https://togithub.com/aws/aws-cdk/issues/28854)
-   **lambda-nodejs:** support bundling aws-sdk as part of the bundled code asset ([#&#8203;29207](https://togithub.com/aws/aws-cdk/issues/29207)) ([2378635](https://togithub.com/aws/aws-cdk/commit/2378635ae278eb4c2f05ef1302c8737009022dc8)), closes [#&#8203;25492](https://togithub.com/aws/aws-cdk/issues/25492) [#&#8203;25492](https://togithub.com/aws/aws-cdk/issues/25492)
-   **rds:** `DatabaseCluster.instanceEndpoints` doesn't include writer endpoint ([#&#8203;29337](https://togithub.com/aws/aws-cdk/issues/29337)) ([ca59616](https://togithub.com/aws/aws-cdk/commit/ca596161e931d456e497bff762a19dca712d99f4)), closes [#&#8203;29279](https://togithub.com/aws/aws-cdk/issues/29279)
-   **rds:** incorrect error message for rds proxies ([#&#8203;29404](https://togithub.com/aws/aws-cdk/issues/29404)) ([2dbb381](https://togithub.com/aws/aws-cdk/commit/2dbb38174c7d5d74e2b78e227f29699f9dab1dca)), closes [#&#8203;29402](https://togithub.com/aws/aws-cdk/issues/29402)
-   **spec2cdk:** use modern type when building tag type ([#&#8203;29389](https://togithub.com/aws/aws-cdk/issues/29389)) ([3fb0254](https://togithub.com/aws/aws-cdk/commit/3fb0254552c73e3467aeaee107423364206bca4e))
-   **sqs:** `redrivePermission` is set to `byQueue` no matter what value is specified ([#&#8203;29130](https://togithub.com/aws/aws-cdk/issues/29130)) ([aa8484a](https://togithub.com/aws/aws-cdk/commit/aa8484a154baea87f223c4b22135f3a845b836b3)), closes [#&#8203;29129](https://togithub.com/aws/aws-cdk/issues/29129) [#&#8203;29129](https://togithub.com/aws/aws-cdk/issues/29129)
-   **stepfunctions:** maxConcurrency does not support JsonPath ([#&#8203;29330](https://togithub.com/aws/aws-cdk/issues/29330)) ([b19f822](https://togithub.com/aws/aws-cdk/commit/b19f8221e2f71fa0159c77d67a183f3103f440b3)), closes [#&#8203;20835](https://togithub.com/aws/aws-cdk/issues/20835) [#&#8203;20279](https://togithub.com/aws/aws-cdk/issues/20279)

***

#### Alpha modules (2.132.0-alpha.0)

##### Bug Fixes

-   **glue:** `PythonRayExecutableProps` has innaccurate properties ([#&#8203;28625](https://togithub.com/aws/aws-cdk/issues/28625)) ([7994733](https://togithub.com/aws/aws-cdk/commit/79947337d59539a03a2d7d2849043aa9405268d8)), closes [#&#8203;28570](https://togithub.com/aws/aws-cdk/issues/28570)

</details>

<details>
<summary>Microsoft/TypeScript (typescript)</summary>

### [`v5.4.2`](https://togithub.com/microsoft/TypeScript/releases/tag/v5.4.2): TypeScript 5.4

[Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.3.3...v5.4.2)

For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-4/).

For the complete list of fixed issues, check out the

-   [fixed issues query for Typescript 5.4.0 (Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.0%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.4.1 (RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.1%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.4.2 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.2%22+is%3Aclosed+).

Downloads are available on:

-   [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on sunday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/SvenKirschbaum/aws-utils).
mergify bot pushed a commit to SvenKirschbaum/share.kirschbaum.cloud that referenced this pull request Mar 9, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
|  |  | lockFileMaintenance | All locks refreshed |  |  |  |  |
| [@aws-sdk/client-dynamodb](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb)) | dependencies | minor | [`3.525.0` -> `3.529.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-dynamodb/3.525.0/3.529.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-dynamodb/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-dynamodb/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-dynamodb/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-dynamodb/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3)) | dependencies | minor | [`3.525.0` -> `3.529.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.525.0/3.529.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-sesv2](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-sesv2) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sesv2)) | dependencies | minor | [`3.525.0` -> `3.529.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sesv2/3.525.0/3.529.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sesv2/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sesv2/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sesv2/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sesv2/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-sfn](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-sfn) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sfn)) | dependencies | minor | [`3.525.0` -> `3.529.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sfn/3.525.0/3.529.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sfn/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sfn/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sfn/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sfn/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/s3-request-presigner](https://togithub.com/aws/aws-sdk-js-v3/tree/main/packages/s3-request-presigner) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner)) | dependencies | minor | [`3.525.0` -> `3.529.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fs3-request-presigner/3.525.0/3.529.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fs3-request-presigner/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fs3-request-presigner/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fs3-request-presigner/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fs3-request-presigner/3.525.0/3.529.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@fontsource/roboto](https://fontsource.org/fonts/roboto) ([source](https://togithub.com/fontsource/font-files/tree/HEAD/fonts/google/roboto)) | dependencies | patch | [`5.0.8` -> `5.0.12`](https://renovatebot.com/diffs/npm/@fontsource%2froboto/5.0.8/5.0.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@fontsource%2froboto/5.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@fontsource%2froboto/5.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@fontsource%2froboto/5.0.8/5.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@fontsource%2froboto/5.0.8/5.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | dependencies | patch | [`5.15.11` -> `5.15.12`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.11/5.15.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2ficons-material/5.15.11/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2ficons-material/5.15.11/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/material](https://mui.com/material-ui/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-material)) | dependencies | patch | [`5.15.11` -> `5.15.12`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.15.11/5.15.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.15.11/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.15.11/5.15.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/aws-lambda](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/aws-lambda) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda)) | devDependencies | patch | [`8.10.134` -> `8.10.136`](https://renovatebot.com/diffs/npm/@types%2faws-lambda/8.10.134/8.10.136) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2faws-lambda/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2faws-lambda/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2faws-lambda/8.10.134/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2faws-lambda/8.10.134/8.10.136?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`20.11.24` -> `20.11.25`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.24/20.11.25) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.11.24/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.11.24/20.11.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | devDependencies | patch | [`18.2.61` -> `18.2.64`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.61/18.2.64) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.64?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.64?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.61/18.2.64?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.61/18.2.64?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom)) | devDependencies | patch | [`18.2.19` -> `18.2.21`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.19/18.2.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.19/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.19/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | patch | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | patch | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk)) | devDependencies | minor | [`2.131.0` -> `2.132.0`](https://renovatebot.com/diffs/npm/aws-cdk/2.131.0/2.132.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk-lib](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib)) | dependencies | minor | [`2.131.0` -> `2.132.0`](https://renovatebot.com/diffs/npm/aws-cdk-lib/2.131.0/2.132.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk-lib/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk-lib/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk-lib/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk-lib/2.131.0/2.132.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-sdk](https://togithub.com/aws/aws-sdk-js) | dependencies | minor | [`2.1569.0` -> `2.1574.0`](https://renovatebot.com/diffs/npm/aws-sdk/2.1569.0/2.1574.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-sdk/2.1574.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-sdk/2.1574.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-sdk/2.1569.0/2.1574.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-sdk/2.1569.0/2.1574.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | devDependencies | minor | [`5.3.3` -> `5.4.2`](https://renovatebot.com/diffs/npm/typescript/5.3.3/5.4.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.3.3/5.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [react-router](https://togithub.com/remix-run/react-router) ([source](https://togithub.com/remix-run/react-router/tree/HEAD/packages/react-router)) | dependencies | patch | [`6.22.2` -> `6.22.3`](https://renovatebot.com/diffs/npm/react-router/6.22.2/6.22.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-router/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-router/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-router/6.22.2/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router/6.22.2/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [react-router-dom](https://togithub.com/remix-run/react-router) ([source](https://togithub.com/remix-run/react-router/tree/HEAD/packages/react-router-dom)) | dependencies | patch | [`6.22.2` -> `6.22.3`](https://renovatebot.com/diffs/npm/react-router-dom/6.22.2/6.22.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-router-dom/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-router-dom/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-router-dom/6.22.2/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router-dom/6.22.2/6.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [vite](https://vitejs.dev) ([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite)) | devDependencies | patch | [`5.1.4` -> `5.1.5`](https://renovatebot.com/diffs/npm/vite/5.1.4/5.1.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.1.4/5.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.1.4/5.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

🔧 This Pull Request updates lock files to use the latest dependency versions.

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-dynamodb)</summary>

### [`v3.529.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#35291-2024-03-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

### [`v3.529.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#35290-2024-03-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.528.0...v3.529.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

### [`v3.528.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#35280-2024-03-06)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.525.0...v3.528.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-s3)</summary>

### [`v3.529.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35291-2024-03-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

### [`v3.529.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35290-2024-03-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.525.0...v3.529.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-sesv2)</summary>

### [`v3.529.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#35291-2024-03-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sesv2](https://togithub.com/aws-sdk/client-sesv2)

### [`v3.529.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#35290-2024-03-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.527.0...v3.529.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sesv2](https://togithub.com/aws-sdk/client-sesv2)

### [`v3.527.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#35270-2024-03-05)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.525.0...v3.527.0)

##### Features

-   **client-sesv2:** Adds support for providing custom headers within SendEmail and SendBulkEmail for SESv2. ([4b858e0](https://togithub.com/aws/aws-sdk-js-v3/commit/4b858e0ae26c867e2b079b75620ed5dfd24b4bfc))

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-sfn)</summary>

### [`v3.529.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sfn/CHANGELOG.md#35291-2024-03-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sfn](https://togithub.com/aws-sdk/client-sfn)

### [`v3.529.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sfn/CHANGELOG.md#35290-2024-03-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.525.0...v3.529.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sfn](https://togithub.com/aws-sdk/client-sfn)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/s3-request-presigner)</summary>

### [`v3.529.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#35291-2024-03-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

### [`v3.529.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#35290-2024-03-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.525.0...v3.529.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

</details>

<details>
<summary>fontsource/font-files (@&#8203;fontsource/roboto)</summary>

### [`v5.0.12`](https://togithub.com/fontsource/font-files/compare/d8c589002b735365b4ef7aad59065eba6d274dc9...643d5496631adb16c66ab3fc2f9e128d01817307)

[Compare Source](https://togithub.com/fontsource/font-files/compare/d8c589002b735365b4ef7aad59065eba6d274dc9...643d5496631adb16c66ab3fc2f9e128d01817307)

</details>

<details>
<summary>mui/material-ui (@&#8203;mui/icons-material)</summary>

### [`v5.15.12`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51512)

[Compare Source](https://togithub.com/mui/material-ui/compare/v5.15.11...v5.15.12)



*Mar 5, 2024*

A big thanks to the 21 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

##### `@mui/material@5.15.12`

-   ​Support props callback type in theme variants ([#&#8203;40946](https://togithub.com/mui/material-ui/issues/40946)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
-   ​\[Alert] Convert to support zero runtime ([#&#8203;41230](https://togithub.com/mui/material-ui/issues/41230)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   ​\[Alert] Deprecate composed classes ([#&#8203;40688](https://togithub.com/mui/material-ui/issues/40688)) [@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
-   ​\[Button] Deprecate classes for v6 ([#&#8203;40675](https://togithub.com/mui/material-ui/issues/40675)) [@&#8203;sai6855](https://togithub.com/sai6855)
-   ​\[Checkbox] `large` size added in type ([#&#8203;34909](https://togithub.com/mui/material-ui/issues/34909)) [@&#8203;smox](https://togithub.com/smox)
-   ​\[Chip] Deprecate composed classes ([#&#8203;41235](https://togithub.com/mui/material-ui/issues/41235)) [@&#8203;sai6855](https://togithub.com/sai6855)
-   ​\[Chip] Correct `deleteIconColorPrimary` and `deleteIconColorSecondary` class descriptions ([#&#8203;41231](https://togithub.com/mui/material-ui/issues/41231)) [@&#8203;sai6855](https://togithub.com/sai6855)
-   ​Remove unused dev dependency on [@&#8203;mui/lab](https://togithub.com/mui/lab) ([#&#8203;41198](https://togithub.com/mui/material-ui/issues/41198)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   ​\[Slider] Deprecate components and componentProps props for v6 ([#&#8203;40777](https://togithub.com/mui/material-ui/issues/40777)) [@&#8203;lhilgert9](https://togithub.com/lhilgert9)

##### `@mui/system@5.15.12`

-   ​\[pigment-css]\[material-ui] Render badge demos ([#&#8203;41353](https://togithub.com/mui/material-ui/issues/41353)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   ​\[pigment-css] Update to latest wyw version ([#&#8203;41363](https://togithub.com/mui/material-ui/issues/41363)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   ​\[pigment-css] Rename scope to [@&#8203;pigment-css](https://togithub.com/pigment-css) ([#&#8203;41354](https://togithub.com/mui/material-ui/issues/41354)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   ​\[pigment-css] Rename zero-runtime to pigmentcss ([#&#8203;41317](https://togithub.com/mui/material-ui/issues/41317)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   ​Fix createSpacing return type ([#&#8203;41318](https://togithub.com/mui/material-ui/issues/41318)) [@&#8203;matystroia](https://togithub.com/matystroia)
-   ​\[zero] Add support for styled tagged-template literals ([#&#8203;41268](https://togithub.com/mui/material-ui/issues/41268)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   ​\[zero] Set up Material UI migration demos ([#&#8203;41267](https://togithub.com/mui/material-ui/issues/41267)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   ​\[zero] Move extendTheme to already existing @&#8203;mui/zero-runtime/utils ([#&#8203;41254](https://togithub.com/mui/material-ui/issues/41254)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   ​\[zero] Remove `object` intersection from CSS Fallback ([#&#8203;41271](https://togithub.com/mui/material-ui/issues/41271)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   ​\[zero] Minor wording changes in README ([#&#8203;41253](https://togithub.com/mui/material-ui/issues/41253)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   ​\[zero] Prepare zero-runtime packages for public release ([#&#8203;41226](https://togithub.com/mui/material-ui/issues/41226)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)

##### `@mui/joy@5.0.0-beta.30`

-   ​\[joy-ui]\[Autocomplete] Fix text overflow in Chip ([#&#8203;40229](https://togithub.com/mui/material-ui/issues/40229)) [@&#8203;PunitSoniME](https://togithub.com/PunitSoniME)

##### Docs

-   ​\[base-ui] Update the docs post repo separation ([#&#8203;41328](https://togithub.com/mui/material-ui/issues/41328)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​Fix missing partner link [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​Update links to GitHub projects ([#&#8203;41297](https://togithub.com/mui/material-ui/issues/41297)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​Standardize WAI-ARIA referencest [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​Fix image layout shift when loading [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[joy-ui] Add stray adjustments throughout the docs ([#&#8203;41211](https://togithub.com/mui/material-ui/issues/41211)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​\[material-ui] Remove duplicated text at FAQ page ([#&#8203;41326](https://togithub.com/mui/material-ui/issues/41326)) [@&#8203;zanivan](https://togithub.com/zanivan)
-   ​\[material-ui] Fix color mode toggle of the landing page template ([#&#8203;41293](https://togithub.com/mui/material-ui/issues/41293)) [@&#8203;zanivan](https://togithub.com/zanivan)
-   ​\[system] Tweak the Usage demos ([#&#8203;41242](https://togithub.com/mui/material-ui/issues/41242)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​\[zero] Add a Why section on the README ([#&#8203;41284](https://togithub.com/mui/material-ui/issues/41284)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)

##### Core

-   ​Revert "\[utils] Port `useLocalStorageState` hook from Toolpad ([#&#8203;41096](https://togithub.com/mui/material-ui/issues/41096))" [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[blog] Add post about how MUI uses Toolpad ([#&#8203;40172](https://togithub.com/mui/material-ui/issues/40172)) [@&#8203;prakhargupta1](https://togithub.com/prakhargupta1)
-   ​\[blog] No bundled demos in blog posts [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[code-infra] Embed translations in the [@&#8203;mui/docs](https://togithub.com/mui/docs) package ([#&#8203;41246](https://togithub.com/mui/material-ui/issues/41246)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   ​\[code-infra] Prepare the markdown package for publishing ([#&#8203;41240](https://togithub.com/mui/material-ui/issues/41240)) [@&#8203;michaldudak](https://togithub.com/michaldudak)
-   ​\[code-infra] Unpin the version of docs-utils in scripts ([#&#8203;41232](https://togithub.com/mui/material-ui/issues/41232)) [@&#8203;michaldudak](https://togithub.com/michaldudak)
-   ​\[core] Use runtime agnostic setTimeout type [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[core] Remove window. reference for common globals [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[core] Add a script to build all packages ([#&#8203;40631](https://togithub.com/mui/material-ui/issues/40631)) [@&#8203;michaldudak](https://togithub.com/michaldudak)
-   ​\[docs-infra] Fix missing non breaking spaces [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[docs-infra] Add design customizations to the disclosure element ([#&#8203;41285](https://togithub.com/mui/material-ui/issues/41285)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​\[docs-infra] Adjust headings dark mode color ([#&#8203;41292](https://togithub.com/mui/material-ui/issues/41292)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​\[docs-infra] Fix Stack Overflow breaking space [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[docs-infra] Fix product selector popup not closing on route change ([#&#8203;41166](https://togithub.com/mui/material-ui/issues/41166)) [@&#8203;divyammadhok](https://togithub.com/divyammadhok)
-   ​\[docs-infra] Improve fix blank links ad [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[docs-infra] Support interfaces for X docs ([#&#8203;41069](https://togithub.com/mui/material-ui/issues/41069)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)
-   ​\[infra] Adjust the links to search for issues ([#&#8203;41008](https://togithub.com/mui/material-ui/issues/41008)) [@&#8203;michelengelen](https://togithub.com/michelengelen)
-   ​\[website] Move the `React Engineer - xCharts` to `Next roles` section ([#&#8203;41368](https://togithub.com/mui/material-ui/issues/41368)) [@&#8203;DanailH](https://togithub.com/DanailH)
-   ​\[website] Add James to About Us ([#&#8203;41362](https://togithub.com/mui/material-ui/issues/41362)) [@&#8203;atomiks](https://togithub.com/atomiks)
-   ​\[website] Polish Button outline primary medium ([#&#8203;41298](https://togithub.com/mui/material-ui/issues/41298)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[website] Remove Heatmap chart from community plan on pricing table ([#&#8203;41081](https://togithub.com/mui/material-ui/issues/41081)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)

All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://togithub.com/alexfauquette), [@&#8203;atomiks](https://togithub.com/atomiks), [@&#8203;brijeshb42](https://togithub.com/brijeshb42), [@&#8203;DanailH](https://togithub.com/DanailH), [@&#8203;danilo-leal](https://togithub.com/danilo-leal), [@&#8203;DiegoAndai](https://togithub.com/DiegoAndai), [@&#8203;divyammadhok](https://togithub.com/divyammadhok), [@&#8203;Janpot](https://togithub.com/Janpot), [@&#8203;lhilgert9](https://togithub.com/lhilgert9), [@&#8203;matystroia](https://togithub.com/matystroia), [@&#8203;michaldudak](https://togithub.com/michaldudak), [@&#8203;michelengelen](https://togithub.com/michelengelen), [@&#8203;mj12albert](https://togithub.com/mj12albert), [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari), [@&#8203;prakhargupta1](https://togithub.com/prakhargupta1), [@&#8203;PunitSoniME](https://togithub.com/PunitSoniME), [@&#8203;sai6855](https://togithub.com/sai6855), [@&#8203;siriwatknp](https://togithub.com/siriwatknp), [@&#8203;smox](https://togithub.com/smox), [@&#8203;zanivan](https://togithub.com/zanivan), [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary>

### [`v7.1.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#711-2024-03-04)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.1.0...v7.1.1)

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

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/parser)</summary>

### [`v7.1.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#711-2024-03-04)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.1.0...v7.1.1)

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

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

<details>
<summary>aws/aws-cdk (aws-cdk)</summary>

### [`v2.132.0`](https://togithub.com/aws/aws-cdk/releases/tag/v2.132.0)

[Compare Source](https://togithub.com/aws/aws-cdk/compare/v2.131.0...v2.132.0)

##### Features

-   **autoscaling:** add support for InstanceRefresh suspended process ([#&#8203;29113](https://togithub.com/aws/aws-cdk/issues/29113)) ([f5e7717](https://togithub.com/aws/aws-cdk/commit/f5e7717c6bbde805fc5565e266776b495d45490a))
-   **autoscaling:** support custom termination policy with lambda ([#&#8203;29340](https://togithub.com/aws/aws-cdk/issues/29340)) ([2ebb409](https://togithub.com/aws/aws-cdk/commit/2ebb409d09bfd1e465dbe29e4e4abb1cb75f197a)), closes [#&#8203;19750](https://togithub.com/aws/aws-cdk/issues/19750)
-   **codepipeline:** `executionMode` property for Pipeline ([#&#8203;29148](https://togithub.com/aws/aws-cdk/issues/29148)) ([3bb2944](https://togithub.com/aws/aws-cdk/commit/3bb29440acc819acb24c9597a407b85678940a5e)), closes [#&#8203;29147](https://togithub.com/aws/aws-cdk/issues/29147)
-   **ec2:** add NAT instance V2 support using AL2023 ([#&#8203;29013](https://togithub.com/aws/aws-cdk/issues/29013)) ([7fa6bbf](https://togithub.com/aws/aws-cdk/commit/7fa6bbfa141eca76d6d2f7bc68bd29a71f6ef872))
-   **elasticloadbalancingv2:** health check interval greater than timeout ([#&#8203;29075](https://togithub.com/aws/aws-cdk/issues/29075)) ([576d034](https://togithub.com/aws/aws-cdk/commit/576d034bd1645d44bf574670f2f1b5d865a25f66)), closes [#&#8203;29062](https://togithub.com/aws/aws-cdk/issues/29062)
-   **rds:** add ability to specify PreferredMaintenanceWindow to RDS cluster database instances ([#&#8203;29033](https://togithub.com/aws/aws-cdk/issues/29033)) ([9c82bca](https://togithub.com/aws/aws-cdk/commit/9c82bcaf90a1dc2df324a72ea622c7eec729d0f5)), closes [#&#8203;16954](https://togithub.com/aws/aws-cdk/issues/16954)
-   **rds:** enable data api for aurora cluster ([#&#8203;29338](https://togithub.com/aws/aws-cdk/issues/29338)) ([82690f7](https://togithub.com/aws/aws-cdk/commit/82690f7ca7416da39b0a354bc4e8cc6a5a941a5f)), closes [#&#8203;28574](https://togithub.com/aws/aws-cdk/issues/28574)
-   **stepfunctions-tasks:** start build batch integration ([#&#8203;29296](https://togithub.com/aws/aws-cdk/issues/29296)) ([4f2b757](https://togithub.com/aws/aws-cdk/commit/4f2b75772c8c8075665627d79f8874bda5bd0dd5)), closes [#&#8203;29119](https://togithub.com/aws/aws-cdk/issues/29119)
-   list stack dependencies ([#&#8203;28995](https://togithub.com/aws/aws-cdk/issues/28995)) ([a7fac9d](https://togithub.com/aws/aws-cdk/commit/a7fac9d13d649b9989c01edc042ba11dcc854562))
-   update L1 CloudFormation resource definitions ([#&#8203;29349](https://togithub.com/aws/aws-cdk/issues/29349)) ([8b01f45](https://togithub.com/aws/aws-cdk/commit/8b01f45f751df558683934ab69e7836b3900a2cb))

##### Bug Fixes

-   **batch:** windows does not support readonlyRootFilesystem ([#&#8203;29145](https://togithub.com/aws/aws-cdk/issues/29145)) ([7205143](https://togithub.com/aws/aws-cdk/commit/7205143d563449ab211406da04d99bbbcdc7c8cc)), closes [#&#8203;29140](https://togithub.com/aws/aws-cdk/issues/29140)
-   **changelog:** changelog for v2.131.0 has some errors ([#&#8203;29352](https://togithub.com/aws/aws-cdk/issues/29352)) ([1b56897](https://togithub.com/aws/aws-cdk/commit/1b56897ccbd92ef346526375c0903481f92b86c0))
-   **cli:** prevent changeset diff for non-deployed stacks ([#&#8203;29394](https://togithub.com/aws/aws-cdk/issues/29394)) ([d33caff](https://togithub.com/aws/aws-cdk/commit/d33cafff6ed72a0e9b4dd0f282b3f1191c4d62c2)), closes [#&#8203;29265](https://togithub.com/aws/aws-cdk/issues/29265)
-   **cloudwatch:** allow up to 30 dimensions for metric ([#&#8203;29341](https://togithub.com/aws/aws-cdk/issues/29341)) ([ebe2adf](https://togithub.com/aws/aws-cdk/commit/ebe2adff61c5cefcd4576bbc22c3b5d27b390d92)), closes [#&#8203;29322](https://togithub.com/aws/aws-cdk/issues/29322)
-   **custom-resources:** correctly convert values to Date type ([#&#8203;28398](https://togithub.com/aws/aws-cdk/issues/28398)) ([38bdb92](https://togithub.com/aws/aws-cdk/commit/38bdb921caab73a063304ec26f72402cc8ccc79b)), closes [/github.com/aws/aws-cdk/blob/1a9c30e55e58203bd0a61de82711cf10f1e04851/packages/aws-cdk-lib/custom-resources/lib/helpers-internal/sdk-v3-metadata.json#L174](https://togithub.com/aws//github.com/aws/aws-cdk/blob/1a9c30e55e58203bd0a61de82711cf10f1e04851/packages/aws-cdk-lib/custom-resources/lib/helpers-internal/sdk-v3-metadata.json/issues/L174) [#&#8203;27962](https://togithub.com/aws/aws-cdk/issues/27962)
-   **custom-resources:** log statement exposes information prohibited by security guideline ([#&#8203;29406](https://togithub.com/aws/aws-cdk/issues/29406)) ([11621e7](https://togithub.com/aws/aws-cdk/commit/11621e78c8f8188fcdd528d01cd2aa8bd97db58f))
-   **ecs-patterns:** resolve not being able to create ECS service in `integ.alb-ecs-service-command-entry-point` ([#&#8203;29333](https://togithub.com/aws/aws-cdk/issues/29333)) ([6a69d5b](https://togithub.com/aws/aws-cdk/commit/6a69d5bf0768b61b488bcf7f62493f27cae278cc)), closes [/github.com/aws/aws-cdk/pull/29186#issuecomment-1959231406](https://togithub.com/aws//github.com/aws/aws-cdk/pull/29186/issues/issuecomment-1959231406)
-   **events_targets:** installing latest aws sdk fails in cn partition ([#&#8203;29374](https://togithub.com/aws/aws-cdk/issues/29374)) ([f0383d6](https://togithub.com/aws/aws-cdk/commit/f0383d65c7cc8017c55ec9c9262d4a863bb63730))
-   **events-targets:** ecs:TagResource permission ([#&#8203;28898](https://togithub.com/aws/aws-cdk/issues/28898)) ([4af0dfc](https://togithub.com/aws/aws-cdk/commit/4af0dfcb0ecf7719d2ca15c7f971fa65ce8953cd)), closes [#&#8203;28854](https://togithub.com/aws/aws-cdk/issues/28854)
-   **lambda-nodejs:** support bundling aws-sdk as part of the bundled code asset ([#&#8203;29207](https://togithub.com/aws/aws-cdk/issues/29207)) ([2378635](https://togithub.com/aws/aws-cdk/commit/2378635ae278eb4c2f05ef1302c8737009022dc8)), closes [#&#8203;25492](https://togithub.com/aws/aws-cdk/issues/25492) [#&#8203;25492](https://togithub.com/aws/aws-cdk/issues/25492)
-   **rds:** `DatabaseCluster.instanceEndpoints` doesn't include writer endpoint ([#&#8203;29337](https://togithub.com/aws/aws-cdk/issues/29337)) ([ca59616](https://togithub.com/aws/aws-cdk/commit/ca596161e931d456e497bff762a19dca712d99f4)), closes [#&#8203;29279](https://togithub.com/aws/aws-cdk/issues/29279)
-   **rds:** incorrect error message for rds proxies ([#&#8203;29404](https://togithub.com/aws/aws-cdk/issues/29404)) ([2dbb381](https://togithub.com/aws/aws-cdk/commit/2dbb38174c7d5d74e2b78e227f29699f9dab1dca)), closes [#&#8203;29402](https://togithub.com/aws/aws-cdk/issues/29402)
-   **spec2cdk:** use modern type when building tag type ([#&#8203;29389](https://togithub.com/aws/aws-cdk/issues/29389)) ([3fb0254](https://togithub.com/aws/aws-cdk/commit/3fb0254552c73e3467aeaee107423364206bca4e))
-   **sqs:** `redrivePermission` is set to `byQueue` no matter what value is specified ([#&#8203;29130](https://togithub.com/aws/aws-cdk/issues/29130)) ([aa8484a](https://togithub.com/aws/aws-cdk/commit/aa8484a154baea87f223c4b22135f3a845b836b3)), closes [#&#8203;29129](https://togithub.com/aws/aws-cdk/issues/29129) [#&#8203;29129](https://togithub.com/aws/aws-cdk/issues/29129)
-   **stepfunctions:** maxConcurrency does not support JsonPath ([#&#8203;29330](https://togithub.com/aws/aws-cdk/issues/29330)) ([b19f822](https://togithub.com/aws/aws-cdk/commit/b19f8221e2f71fa0159c77d67a183f3103f440b3)), closes [#&#8203;20835](https://togithub.com/aws/aws-cdk/issues/20835) [#&#8203;20279](https://togithub.com/aws/aws-cdk/issues/20279)

***

#### Alpha modules (2.132.0-alpha.0)

##### Bug Fixes

-   **glue:** `PythonRayExecutableProps` has innaccurate properties ([#&#8203;28625](https://togithub.com/aws/aws-cdk/issues/28625)) ([7994733](https://togithub.com/aws/aws-cdk/commit/79947337d59539a03a2d7d2849043aa9405268d8)), closes [#&#8203;28570](https://togithub.com/aws/aws-cdk/issues/28570)

</details>

<details>
<summary>aws/aws-sdk-js (aws-sdk)</summary>

### [`v2.1574.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215740)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1573.0...v2.1574.0)

-   feature: Batch: This release adds JobStateTimeLimitActions setting to the Job Queue API. It allows you to configure an action Batch can take for a blocking job in front of the queue after the defined period of time. The new parameter applies for ECS, EKS, and FARGATE Job Queues.
-   feature: CloudTrail: Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs.
-   feature: CognitoIdentityServiceProvider: Add ConcurrentModificationException to SetUserPoolMfaConfig
-   feature: GuardDuty: Add RDS Provisioned and Serverless Usage types
-   feature: Support: Update maintenance mode message to share upcoming end-of-support
-   feature: Transfer: Added DES_EDE3\_CBC to the list of supported encryption algorithms for messages sent with an AS2 connector.

### [`v2.1573.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215730)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1572.0...v2.1573.0)

-   feature: AppConfig: AWS AppConfig now supports dynamic parameters, which enhance the functionality of AppConfig Extensions by allowing you to provide parameter values to your Extensions at the time you deploy your configuration.
-   feature: EC2: This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation.
-   feature: Grafana: Adds support for the new GrafanaToken as part of the Amazon Managed Grafana Enterprise plugins upgrade to associate your AWS account with a Grafana Labs account.
-   feature: PaymentCryptographyData: AWS Payment Cryptography EMV Decrypt Feature  Release
-   feature: WAFV2: You can increase the max request body inspection size for some regional resources. The size setting is in the web ACL association config. Also, the AWSManagedRulesBotControlRuleSet EnableMachineLearning setting now takes a Boolean instead of a primitive boolean type, for languages like Java.

### [`v2.1572.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215720)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1571.0...v2.1572.0)

-   feature: Imagebuilder: Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response.
-   feature: RDS: Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value.
-   feature: Support: Update README with v2 end-of-support announcement
-   feature: Support: Add upcoming end-of-support message in postinstall
-   feature: VerifiedPermissions: Deprecating details in favor of configuration for GetIdentitySource and ListIdentitySources APIs.

### [`v2.1571.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215710)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1570.0...v2.1571.0)

-   feature: Organizations: This release contains an endpoint addition
-   feature: SESV2: Adds support for providing custom headers within SendEmail and SendBulkEmail for SESv2.

### [`v2.1570.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215700)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1569.0...v2.1570.0)

-   feature: CloudFormation: Add DetailedStatus field to DescribeStackEvents and DescribeStacks APIs
-   feature: FSx: Added support for creating FSx for NetApp ONTAP file systems with up to 12 HA pairs, delivering up to 72 GB/s of read throughput and 12 GB/s of write throughput.
-   feature: Organizations: Documentation update for AWS Organizations

</details>

<details>
<summary>Microsoft/TypeScript (typescript)</summary>

### [`v5.4.2`](https://togithub.com/microsoft/TypeScript/releases/tag/v5.4.2): TypeScript 5.4

[Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.3.3...v5.4.2)

For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-4/).

For the complete list of fixed issues, check out the

-   [fixed issues query for Typescript 5.4.0 (Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.0%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.4.1 (RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.1%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.4.2 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.2%22+is%3Aclosed+).

Downloads are available on:

-   [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)

</details>

<details>
<summary>remix-run/react-router (react-router)</summary>

### [`v6.22.3`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#6223)

[Compare Source](https://togithub.com/remix-run/react-router/compare/react-router@6.22.2...react-router@6.22.3)

##### Patch Changes

-   Updated dependencies:
    -   `@remix-run/router@1.15.3`

</details>

<details>
<summary>remix-run/react-router (react-router-dom)</summary>

### [`v6.22.3`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#6223)

[Compare Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.22.2...react-router-dom@6.22.3)

##### Patch Changes

-   Updated dependencies:
    -   `@remix-run/router@1.15.3`
    -   `react-router@6.22.3`

</details>

<details>
<summary>vitejs/vite (vite)</summary>

### [`v5.1.5`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small515-2024-03-04-small)

[Compare Source](https://togithub.com/vitejs/vite/compare/v5.1.4...v5.1.5)

-   fix: `__vite__mapDeps` code injection ([#&#8203;15732](https://togithub.com/vitejs/vite/issues/15732)) ([aff54e1](https://togithub.com/vitejs/vite/commit/aff54e1)), closes [#&#8203;15732](https://togithub.com/vitejs/vite/issues/15732)
-   fix: analysing build chunk without dependencies ([#&#8203;15469](https://togithub.com/vitejs/vite/issues/15469)) ([bd52283](https://togithub.com/vitejs/vite/commit/bd52283)), closes [#&#8203;15469](https://togithub.com/vitejs/vite/issues/15469)
-   fix: import with query with imports field ([#&#8203;16085](https://togithub.com/vitejs/vite/issues/16085)) ([ab823ab](https://togithub.com/vitejs/vite/commit/ab823ab)), closes [#&#8203;16085](https://togithub.com/vitejs/vite/issues/16085)
-   fix: normalize literal-only entry pattern ([#&#8203;16010](https://togithub.com/vitejs/vite/issues/16010)) ([1dccc37](https://togithub.com/vitejs/vite/commit/1dccc37)), closes [#&#8203;16010](https://togithub.com/vitejs/vite/issues/16010)
-   fix: optimizeDeps.entries with literal-only pattern(s) ([#&#8203;15853](https://togithub.com/vitejs/vite/issues/15853)) ([49300b3](https://togithub.com/vitejs/vite/commit/49300b3)), closes [#&#8203;15853](https://togithub.com/vitejs/vite/issues/15853)
-   fix: output correct error for empty import specifier ([#&#8203;16055](https://togithub.com/vitejs/vite/issues/16055)) ([a9112eb](https://togithub.com/vitejs/vite/commit/a9112eb)), closes [#&#8203;16055](https://togithub.com/vitejs/vite/issues/16055)
-   fix: upgrade esbuild to 0.20.x ([#&#8203;16062](https://togithub.com/vitejs/vite/issues/16062)) ([899d9b1](https://togithub.com/vitejs/vite/commit/899d9b1)), closes [#&#8203;16062](https://togithub.com/vitejs/vite/issues/16062)
-   fix(runtime): runtime HMR affects only imported files ([#&#8203;15898](https://togithub.com/vitejs/vite/issues/15898)) ([57463fc](https://togithub.com/vitejs/vite/commit/57463fc)), closes [#&#8203;15898](https://togithub.com/vitejs/vite/issues/15898)
-   fix(scanner): respect  `experimentalDecorators: true` ([#&#8203;15206](https://togithub.com/vitejs/vite/issues/15206)) ([4144781](https://togithub.com/vitejs/vite/commit/4144781)), closes [#&#8203;15206](https://togithub.com/vitejs/vite/issues/15206)
-   revert: "fix: upgrade esbuild to 0.20.x" ([#&#8203;16072](https://togithub.com/vitejs/vite/issues/16072)) ([11cceea](https://togithub.com/vitejs/vite/commit/11cceea)), closes [#&#8203;16072](https://togithub.com/vitejs/vite/issues/16072)
-   refactor: share code with vite runtime ([#&#8203;15907](https://togithub.com/vitejs/vite/issues/15907)) ([b20d542](https://togithub.com/vitejs/vite/commit/b20d542)), closes [#&#8203;15907](https://togithub.com/vitejs/vite/issues/15907)
-   refactor(runtime): use functions from `pathe` ([#&#8203;16061](https://togithub.com/vitejs/vite/issues/16061)) ([aac2ef7](https://togithub.com/vitejs/vite/commit/aac2ef7)), closes [#&#8203;16061](https://togithub.com/vitejs/vite/issues/16061)
-   chore(deps): update all non-major dependencies ([#&#8203;16028](https://togithub.com/vitejs/vite/issues/16028)) ([7cfe80d](https://togithub.com/vitejs/vite/commit/7cfe80d)), closes [#&#8203;16028](https://togithub.com/vitejs/vite/issues/16028)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on sunday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/SvenKirschbaum/share.kirschbaum.cloud).
@aws-cdk-automation
Copy link
Copy Markdown
Collaborator

This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state.

@wafuwafu13
Copy link
Copy Markdown
Contributor Author

Conflicts will occur due to fixing tests in next step so I close this

@wafuwafu13 wafuwafu13 closed this Mar 11, 2024
mergify bot pushed a commit that referenced this pull request Mar 13, 2024
…argateService` (#29431)

### Issue # (if applicable)

Closes #29430

(related to #29186 (comment))

### Reason for this change


We can't specify `securityGroups` in `NetworkLoadBalancedFargateService` now.

### Description of changes


- Add `securityGroups` property to `NetworkLoadBalancedFargateServiceProps`.
- Add unit test
- Add integ test

### Description of how you validated changes


- Pass unit test
- Pass integ test

### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
mergify bot pushed a commit to SvenKirschbaum/aws-utils that referenced this pull request Mar 17, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
|  |  | lockFileMaintenance | All locks refreshed |  |  |  |  |
| [@aws-lambda-powertools/logger](https://togithub.com/aws-powertools/powertools-lambda-typescript/tree/main/packages/logger#readme) ([source](https://togithub.com/aws-powertools/powertools-lambda-typescript)) | dependencies | patch | [`2.0.2` -> `2.0.3`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2flogger/2.0.2/2.0.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-lambda-powertools%2flogger/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-lambda-powertools%2flogger/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-lambda-powertools%2flogger/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-lambda-powertools%2flogger/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-lambda-powertools/tracer](https://togithub.com/aws-powertools/powertools-lambda-typescript/tree/main/packages/tracer#readme) ([source](https://togithub.com/aws-powertools/powertools-lambda-typescript)) | dependencies | patch | [`2.0.2` -> `2.0.3`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2ftracer/2.0.2/2.0.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-lambda-powertools%2ftracer/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-lambda-powertools%2ftracer/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-lambda-powertools%2ftracer/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-lambda-powertools%2ftracer/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-secrets-manager](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-secrets-manager) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager)) | dependencies | minor | [`3.529.1` -> `3.535.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-secrets-manager/3.529.1/3.535.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-secrets-manager/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-secrets-manager/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-secrets-manager/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-secrets-manager/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@fallobst22/cdk-cross-account-route53](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53) | dependencies | patch | [`^0.0.10` -> `^0.0.11`](https://renovatebot.com/diffs/npm/@fallobst22%2fcdk-cross-account-route53/0.0.10/0.0.11) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@fallobst22%2fcdk-cross-account-route53/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@fallobst22%2fcdk-cross-account-route53/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@fallobst22%2fcdk-cross-account-route53/0.0.10/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@fallobst22%2fcdk-cross-account-route53/0.0.10/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | dependencies | patch | [`5.15.12` -> `5.15.13`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.12/5.15.13) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2ficons-material/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2ficons-material/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/material](https://mui.com/material-ui/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-material)) | dependencies | patch | [`5.15.12` -> `5.15.13`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.15.12/5.15.13) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trautonen/cdk-dns-validated-certificate](https://togithub.com/trautonen/cdk-dns-validated-certificate) | dependencies | patch | [`0.0.46` -> `0.0.47`](https://renovatebot.com/diffs/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.46/0.0.47) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.46/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.46/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`20.11.25` -> `20.11.28`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.25/20.11.28) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.11.25/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.11.25/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk)) | devDependencies | minor | [`2.132.0` -> `2.133.0`](https://renovatebot.com/diffs/npm/aws-cdk/2.132.0/2.133.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk-lib](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib)) | dependencies | minor | [`2.132.0` -> `2.133.0`](https://renovatebot.com/diffs/npm/aws-cdk-lib/2.132.0/2.133.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk-lib/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk-lib/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk-lib/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk-lib/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [esbuild](https://togithub.com/evanw/esbuild) | devDependencies | patch | [`0.20.1` -> `0.20.2`](https://renovatebot.com/diffs/npm/esbuild/0.20.1/0.20.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/esbuild/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/esbuild/0.20.1/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.20.1/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | devDependencies | patch | [`18.2.64` -> `18.2.66`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.64/18.2.66) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.64/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.64/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom)) | devDependencies | patch | [`18.2.21` -> `18.2.22`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.21/18.2.22) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.21/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.21/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [vite](https://vitejs.dev) ([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite)) | devDependencies | patch | [`5.1.5` -> `5.1.6`](https://renovatebot.com/diffs/npm/vite/5.1.5/5.1.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.1.5/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.1.5/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

🔧 This Pull Request updates lock files to use the latest dependency versions.

---

### Release Notes

<details>
<summary>aws-powertools/powertools-lambda-typescript (@&#8203;aws-lambda-powertools/logger)</summary>

### [`v2.0.3`](https://togithub.com/aws-powertools/powertools-lambda-typescript/blob/HEAD/CHANGELOG.md#203-2024-03-15)

[Compare Source](https://togithub.com/aws-powertools/powertools-lambda-typescript/compare/v2.0.2...v2.0.3)

**feat(logger):** improve regex in stack trace parsing ([#&#8203;2121](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2121)) ([ebe5eef](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/ebe5eef3319fc95070c2c33c0ac64b8e42443b38))
**fix(idempotency):** transform private class fields ([#&#8203;2230](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2230)) ([aa6e6e0](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/aa6e6e0c25bbc93151cc5cddc584400575604f05))
**improv(commons):**: expand type utils functions ([#&#8203;2191](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2191)) ([9208393](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/9208393fe07d33cb35ea479b3c0866c8a7b91a21))
**feat(commons):** add fromBase64 helper function ([#&#8203;2188](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2188)) ([133159b](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/133159ba4cca41a61c14d62f9356bb89a7f0a08f))
**fix(layers):**: add createRequire banner in esm build ([#&#8203;2231](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2231)) ([730bcc9](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/730bcc93c027f4d60788badb6c5c01a09b3c70be))

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-secrets-manager)</summary>

### [`v3.535.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#35350-2024-03-15)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.534.0...v3.535.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager)

### [`v3.534.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#35340-2024-03-14)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.533.0...v3.534.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager)

### [`v3.533.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#35330-2024-03-13)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.1...v3.533.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager)

#### [3.529.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1) (2024-03-08)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-secrets-manager](https://togithub.com/aws-sdk/client-secrets-manager)

</details>

<details>
<summary>SvenKirschbaum/cdk-cross-account-route53 (@&#8203;fallobst22/cdk-cross-account-route53)</summary>

### [`v0.0.11`](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/releases/tag/v0.0.11)

[Compare Source](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.10...v0.0.11)

##### [0.0.11](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.10...v0.0.11) (2024-03-16)

</details>

<details>
<summary>mui/material-ui (@&#8203;mui/icons-material)</summary>

### [`v5.15.13`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51513)

[Compare Source](https://togithub.com/mui/material-ui/compare/v5.15.12...v5.15.13)



*Mar 12, 2024*

A big thanks to the 15 contributors who made this release possible. Here are some highights ✨

-   The Material UI free Checkout template got a design uplift ([#&#8203;41447](https://togithub.com/mui/material-ui/issues/41447)) [@&#8203;zanivan](https://togithub.com/zanivan)

##### `@mui/material@5.15.13`

-   \[Alert] Add `slots` and `slotProps` type to theme ([#&#8203;41324](https://togithub.com/mui/material-ui/issues/41324)) [@&#8203;sai6855](https://togithub.com/sai6855)
-   \[Autocomplete] Fix the options list being added to the DOM in `freeSolo` mode even when there are no options, causing style problems ([#&#8203;41300](https://togithub.com/mui/material-ui/issues/41300)) [@&#8203;rakeshmusturi](https://togithub.com/rakeshmusturi)
-   Add `paperChannel` token ([#&#8203;41447](https://togithub.com/mui/material-ui/issues/41447)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   \[Switch] Convert to support CSS extraction ([#&#8203;41367](https://togithub.com/mui/material-ui/issues/41367)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)
-   \[Tooltip] Support event handlers with extra parameters ([#&#8203;41320](https://togithub.com/mui/material-ui/issues/41320)) [@&#8203;LukasTy](https://togithub.com/LukasTy)

##### `@mui/system@5.15.13`

-   \[RtlProvider] Add component & hook ([#&#8203;41241](https://togithub.com/mui/material-ui/issues/41241)) [@&#8203;mnajdova](https://togithub.com/mnajdova)

##### `@mui/utils@5.15.13`

-   \[utils] Fix visually hidden styles' margin unit ([#&#8203;41477](https://togithub.com/mui/material-ui/issues/41477)) [@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/codemod@5.15.13`

-   Fix merging of slotProps and componentProps ([#&#8203;41323](https://togithub.com/mui/material-ui/issues/41323)) [@&#8203;sai6855](https://togithub.com/sai6855)

##### `@mui/base@5.0.0-beta.39`

-   \[material-ui]\[joy-ui]\[Autocomplete] Keep in sync highlighted index when the option still exists ([#&#8203;41306](https://togithub.com/mui/material-ui/issues/41306)) [@&#8203;CGNonofr](https://togithub.com/CGNonofr)
-   \[FormControl] Export `FormControlOwnerState` type from index ([#&#8203;41287](https://togithub.com/mui/material-ui/issues/41287)) [@&#8203;michaeldfoley](https://togithub.com/michaeldfoley)
-   \[material-ui]\[TextareaAutosize] Fix inline style not getting applied ([#&#8203;41369](https://togithub.com/mui/material-ui/issues/41369)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

##### `@pigment-css/react@0.0.2`

-   Handle more scenarios while transforming sx prop ([#&#8203;41372](https://togithub.com/mui/material-ui/issues/41372)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   Improve testing of fixtures ([#&#8203;41389](https://togithub.com/mui/material-ui/issues/41389)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   Fix `keyframes` serialize styles error ([#&#8203;41395](https://togithub.com/mui/material-ui/issues/41395)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   Use class selector instead of class value ([#&#8203;41442](https://togithub.com/mui/material-ui/issues/41442)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   \[next] Warn about unsupported turbo mode in Next.js ([#&#8203;41445](https://togithub.com/mui/material-ui/issues/41445)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)

##### Docs

-   \[material-ui] Refine checkout template ([#&#8203;40967](https://togithub.com/mui/material-ui/issues/40967)) [@&#8203;zanivan](https://togithub.com/zanivan)
-   \[material-ui] Add docs for complementary List components ([#&#8203;41329](https://togithub.com/mui/material-ui/issues/41329)) [@&#8203;anle9650](https://togithub.com/anle9650)
-   \[material-ui] Add docs for complementary Dialog components ([#&#8203;41313](https://togithub.com/mui/material-ui/issues/41313)) [@&#8203;jwithington](https://togithub.com/jwithington)
-   \[material-ui] Fix Templates live preview link ([#&#8203;41467](https://togithub.com/mui/material-ui/issues/41467)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[material-ui] Polish out the templates page ([#&#8203;41468](https://togithub.com/mui/material-ui/issues/41468)) [@&#8203;zanivan](https://togithub.com/zanivan)
-   \[material-ui] Adjust the Templates card design ([#&#8203;41450](https://togithub.com/mui/material-ui/issues/41450)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[joy-ui] Remove unnecessary styles in color inversion footer demo ([#&#8203;41419](https://togithub.com/mui/material-ui/issues/41419)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[joy-ui] Update case studies chip background color ([#&#8203;41413](https://togithub.com/mui/material-ui/issues/41413)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[joy-ui] Remove wrong CSS prop from the Sign-in-side template ([#&#8203;41383](https://togithub.com/mui/material-ui/issues/41383)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[joy-ui] Fix broken link on the Color Inversion page ([#&#8203;41407](https://togithub.com/mui/material-ui/issues/41407)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[pigment] Add example and guide section ([#&#8203;41249](https://togithub.com/mui/material-ui/issues/41249)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   \[pigment-css] Brand name nonbreaking space ([#&#8203;41438](https://togithub.com/mui/material-ui/issues/41438)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[pigment-css] Fix import on the README ([#&#8203;41411](https://togithub.com/mui/material-ui/issues/41411)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[pigment-css] Edit starter template links on README ([#&#8203;41409](https://togithub.com/mui/material-ui/issues/41409)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[pigment-css] Tweak the examples and edit READMEs ([#&#8203;41408](https://togithub.com/mui/material-ui/issues/41408)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[pigment-css] Adjust the bit about CSS vars on the README ([#&#8203;41463](https://togithub.com/mui/material-ui/issues/41463)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   Finish brand name fixes [#&#8203;41438](https://togithub.com/mui/material-ui/issues/41438) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   Remove noreferrer [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   Fix v4 docs <b> appearing in notifications ([#&#8203;41390](https://togithub.com/mui/material-ui/issues/41390)) [@&#8203;peterwangsc](https://togithub.com/peterwangsc)
-   Update GitHub project links ([#&#8203;41370](https://togithub.com/mui/material-ui/issues/41370)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)

##### Core

-   \[pigment] Make all Pigment CSS packages public ([#&#8203;41404](https://togithub.com/mui/material-ui/issues/41404)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   \[pigment] Rename directories to match package names ([#&#8203;41453](https://togithub.com/mui/material-ui/issues/41453)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   \[pigment-css] Example fix leading spaces ([#&#8203;41439](https://togithub.com/mui/material-ui/issues/41439)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[code-infra] Add short note about e2e-website workflow schedule ([#&#8203;41355](https://togithub.com/mui/material-ui/issues/41355)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Add alias for icon types ([#&#8203;41248](https://togithub.com/mui/material-ui/issues/41248)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Reduce concurrency of typescript:ci further ([#&#8203;41392](https://togithub.com/mui/material-ui/issues/41392)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Reduce concurrency for test_types ci job ([#&#8203;41385](https://togithub.com/mui/material-ui/issues/41385)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Adapt API code generator to Base UI repo needs ([#&#8203;41475](https://togithub.com/mui/material-ui/issues/41475)) [@&#8203;michaldudak](https://togithub.com/michaldudak)
-   \[docs-infra] Don't generate preview files for the templates ([#&#8203;41379](https://togithub.com/mui/material-ui/issues/41379)) [@&#8203;mnajdova](https://togithub.com/mnajdova)
-   \[docs-infra] Fix pigment css apps path in the render mui demos script ([#&#8203;41476](https://togithub.com/mui/material-ui/issues/41476)) [@&#8203;mnajdova](https://togithub.com/mnajdova)
-   \[docs-infra] move feedback to ESM ([#&#8203;41381](https://togithub.com/mui/material-ui/issues/41381)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)
-   \[docs-infra] Improve color contrast throughout ([#&#8203;41387](https://togithub.com/mui/material-ui/issues/41387)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[docs-infra] Simplify Algolia crawler config ([#&#8203;41312](https://togithub.com/mui/material-ui/issues/41312)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[docs-infra] Adjust the tabs and layout selection design ([#&#8203;41084](https://togithub.com/mui/material-ui/issues/41084)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[blog] Update the Base UI post with links to dedicated repo ([#&#8203;41358](https://togithub.com/mui/material-ui/issues/41358)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[website] Update the Careers page role ([#&#8203;41384](https://togithub.com/mui/material-ui/issues/41384)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[website] Compress about images [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[website] Improve color contrast on the homepage ([#&#8203;41465](https://togithub.com/mui/material-ui/issues/41465)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[examples] Add pigment-css-vite-ts starter example ([#&#8203;41196](https://togithub.com/mui/material-ui/issues/41196)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   \[examples] Add pigment-css-nextjs-ts starter project ([#&#8203;41105](https://togithub.com/mui/material-ui/issues/41105)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)

All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://togithub.com/alexfauquette), [@&#8203;brijeshb42](https://togithub.com/brijeshb42), [@&#8203;CGNonofr](https://togithub.com/CGNonofr), [@&#8203;cipherlogs](https://togithub.com/cipherlogs), [@&#8203;danilo-leal](https://togithub.com/danilo-leal), [@&#8203;Janpot](https://togithub.com/Janpot), [@&#8203;michaeldfoley](https://togithub.com/michaeldfoley), [@&#8203;mnajdova](https://togithub.com/mnajdova), [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari), [@&#8203;peterwangsc](https://togithub.com/peterwangsc), [@&#8203;rakeshmusturi](https://togithub.com/rakeshmusturi), [@&#8203;sai6855](https://togithub.com/sai6855), [@&#8203;siriwatknp](https://togithub.com/siriwatknp), [@&#8203;zanivan](https://togithub.com/zanivan), [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

</details>

<details>
<summary>trautonen/cdk-dns-validated-certificate (@&#8203;trautonen/cdk-dns-validated-certificate)</summary>

### [`v0.0.47`](https://togithub.com/trautonen/cdk-dns-validated-certificate/releases/tag/v0.0.47)

[Compare Source](https://togithub.com/trautonen/cdk-dns-validated-certificate/compare/v0.0.46...v0.0.47)

##### [0.0.47](https://togithub.com/trautonen/cdk-dns-validated-certificate/compare/v0.0.46...v0.0.47) (2024-03-11)

</details>

<details>
<summary>aws/aws-cdk (aws-cdk)</summary>

### [`v2.133.0`](https://togithub.com/aws/aws-cdk/releases/tag/v2.133.0)

[Compare Source](https://togithub.com/aws/aws-cdk/compare/v2.132.1...v2.133.0)

##### Features

-   **CLI:** improved nested stack diff ([#&#8203;29172](https://togithub.com/aws/aws-cdk/issues/29172)) ([135b520](https://togithub.com/aws/aws-cdk/commit/135b5208dce849f49b6f540f7199ece057a7ef22))
-   **codepipeline:** change default pipeline type to V2 (under feature flag) ([#&#8203;29096](https://togithub.com/aws/aws-cdk/issues/29096)) ([e85231c](https://togithub.com/aws/aws-cdk/commit/e85231c092892879479cf12b89756e8f2b70a094)), closes [/github.com/aws/aws-cdk/pull/28538#discussion_r1471761574](https://togithub.com/aws//github.com/aws/aws-cdk/pull/28538/issues/discussion_r1471761574) [/github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-codepipeline/lib/pipeline.ts#L492](https://togithub.com/aws//github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-codepipeline/lib/pipeline.ts/issues/L492)
-   **ec2:** add APPCONFIG and APPCONFIGDATA to InterfaceVpcEndpointAwsService ([#&#8203;29408](https://togithub.com/aws/aws-cdk/issues/29408)) ([baaa50c](https://togithub.com/aws/aws-cdk/commit/baaa50c73ae3a88d606b62349736ef1180dcf1ad))
-   **ecs-patterns:** support `securityGroups` in `NetworkLoadBalancedFargateService` ([#&#8203;29431](https://togithub.com/aws/aws-cdk/issues/29431)) ([00e8a7b](https://togithub.com/aws/aws-cdk/commit/00e8a7b877a732b4236227f6462bf3914ce7a214)), closes [#&#8203;29430](https://togithub.com/aws/aws-cdk/issues/29430) [/github.com/aws/aws-cdk/pull/29186#issuecomment-1959231406](https://togithub.com/aws//github.com/aws/aws-cdk/pull/29186/issues/issuecomment-1959231406)
-   **opensearchservice:** cold storage option ([#&#8203;29387](https://togithub.com/aws/aws-cdk/issues/29387)) ([ce52c7e](https://togithub.com/aws/aws-cdk/commit/ce52c7e1ac939dc2f9f08cb29fad0f2dc9714445)), closes [#&#8203;29366](https://togithub.com/aws/aws-cdk/issues/29366)
-   **rds:** proxy for mariadb ([#&#8203;29412](https://togithub.com/aws/aws-cdk/issues/29412)) ([6fef789](https://togithub.com/aws/aws-cdk/commit/6fef789e14a0f53317da9ca4f319950d33f86ed1)), closes [#&#8203;29402](https://togithub.com/aws/aws-cdk/issues/29402)
-   **stepfunctions-tasks:** start glue crawler ([#&#8203;29016](https://togithub.com/aws/aws-cdk/issues/29016)) ([5592553](https://togithub.com/aws/aws-cdk/commit/5592553ac5edc6b2c29a786031b8bec139b2aef7)), closes [#&#8203;24188](https://togithub.com/aws/aws-cdk/issues/24188)
-   update L1 CloudFormation resource definitions ([#&#8203;29438](https://togithub.com/aws/aws-cdk/issues/29438)) ([5b910f0](https://togithub.com/aws/aws-cdk/commit/5b910f0d61d4adae38788f7f16ccdae6cb214057))

##### Bug Fixes

-   **cli:** `cdk ls` returns stack id instead of stack display name ([#&#8203;29447](https://togithub.com/aws/aws-cdk/issues/29447)) ([77189be](https://togithub.com/aws/aws-cdk/commit/77189be16b4ab007450176010f71f1558ced6430)), closes [#&#8203;29420](https://togithub.com/aws/aws-cdk/issues/29420)
-   **lambda-nodejs:** fixing esbuildArgs to take in account re-specified keys ([#&#8203;29167](https://togithub.com/aws/aws-cdk/issues/29167)) ([919d16f](https://togithub.com/aws/aws-cdk/commit/919d16ff611ee01495ae2cb4c646c4e27378b3e3)), closes [#&#8203;25385](https://togithub.com/aws/aws-cdk/issues/25385)
-   **stepfunctions:** the retry field in CustomState is not iterable ([#&#8203;29403](https://togithub.com/aws/aws-cdk/issues/29403)) ([a1fbd51](https://togithub.com/aws/aws-cdk/commit/a1fbd51d7fa6791b6a55004a938ec157194b89ba)), closes [#&#8203;29274](https://togithub.com/aws/aws-cdk/issues/29274)

##### Reverts

-   prevent changeset diff for non-deployed stacks ([#&#8203;29485](https://togithub.com/aws/aws-cdk/issues/29485)) ([fac4a9c](https://togithub.com/aws/aws-cdk/commit/fac4a9c23f8e9090b3dc7e26a8306d3a8034b4c9)), closes [#&#8203;29394](https://togithub.com/aws/aws-cdk/issues/29394) [#&#8203;29172](https://togithub.com/aws/aws-cdk/issues/29172)

***

#### Alpha modules (2.133.0-alpha.0)

### [`v2.132.1`](https://togithub.com/aws/aws-cdk/releases/tag/v2.132.1)

[Compare Source](https://togithub.com/aws/aws-cdk/compare/v2.132.0...v2.132.1)

##### Bug Fixes

-   **cli:** `cdk ls` returns stack id instead of stack display name ([#&#8203;29447](https://togithub.com/aws/aws-cdk/issues/29447)) ([effad1c](https://togithub.com/aws/aws-cdk/commit/effad1cf8a854789070e963691b30fadf1597afb)), closes [#&#8203;29420](https://togithub.com/aws/aws-cdk/issues/29420)

***

##### Alpha modules (2.132.1-alpha.0)

</details>

<details>
<summary>evanw/esbuild (esbuild)</summary>

### [`v0.20.2`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0202)

[Compare Source](https://togithub.com/evanw/esbuild/compare/v0.20.1...v0.20.2)

-   Support TypeScript experimental decorators on `abstract` class fields ([#&#8203;3684](https://togithub.com/evanw/esbuild/issues/3684))

    With this release, you can now use TypeScript experimental decorators on `abstract` class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:

    ```ts
    // Original code
    const log = (x: any, y: string) => console.log(y)
    abstract class Foo { @&#8203;log abstract foo: string }
    new class extends Foo { foo = '' }

    // Old output (with --loader=ts --tsconfig-raw={\"compilerOptions\":{\"experimentalDecorators\":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    new class extends Foo {
      foo = "";
    }();

    // New output (with --loader=ts --tsconfig-raw={\"compilerOptions\":{\"experimentalDecorators\":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    __decorateClass([
      log
    ], Foo.prototype, "foo", 2);
    new class extends Foo {
      foo = "";
    }();
    ```

-   JSON loader now preserves `__proto__` properties ([#&#8203;3700](https://togithub.com/evanw/esbuild/issues/3700))

    Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the `__proto__` key. A literal `__proto__` property in a JavaScript object literal sets the prototype of the object instead of adding a property named `__proto__`, while a literal `__proto__` property in a JSON object literal just adds a property named `__proto__`. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:

    ```js
    // Original code
    import data from 'data:application/json,{"__proto__":{"fail":true}}'
    if (Object.getPrototypeOf(data)?.fail) throw 'fail'

    // Old output (with --bundle)
    (() => {
      // <data:application/json,{"__proto__":{"fail":true}}>
      var json_proto_fail_true_default = { __proto__: { fail: true } };

      // entry.js
      if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
        throw "fail";
    })();

    // New output (with --bundle)
    (() => {
      // <data:application/json,{"__proto__":{"fail":true}}>
      var json_proto_fail_true_default = { ["__proto__"]: { fail: true } };

      // example.mjs
      if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
        throw "fail";
    })();
    ```

-   Improve dead code removal of `switch` statements ([#&#8203;3659](https://togithub.com/evanw/esbuild/issues/3659))

    With this release, esbuild will now remove `switch` statements in branches when minifying if they are known to never be evaluated:

    ```js
    // Original code
    if (true) foo(); else switch (bar) { case 1: baz(); break }

    // Old output (with --minify)
    if(1)foo();else switch(bar){case 1:}

    // New output (with --minify)
    foo();
    ```

-   Empty enums should behave like an object literal ([#&#8203;3657](https://togithub.com/evanw/esbuild/issues/3657))

    TypeScript allows you to create an empty enum and add properties to it at run time. While people usually use an empty object literal for this instead of a TypeScript enum, esbuild's enum transform didn't anticipate this use case and generated `undefined` instead of `{}` for an empty enum. With this release, you can now use an empty enum to generate an empty object literal.

    ```ts
    // Original code
    enum Foo {}

    // Old output (with --loader=ts)
    var Foo = /* @&#8203;__PURE__ */ ((Foo2) => {
    })(Foo || {});

    // New output (with --loader=ts)
    var Foo = /* @&#8203;__PURE__ */ ((Foo2) => {
      return Foo2;
    })(Foo || {});
    ```

-   Handle Yarn Plug'n'Play edge case with `tsconfig.json` ([#&#8203;3698](https://togithub.com/evanw/esbuild/issues/3698))

    Previously a `tsconfig.json` file that `extends` another file in a package with an `exports` map failed to work when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

-   Work around issues with Deno 1.31+ ([#&#8203;3682](https://togithub.com/evanw/esbuild/issues/3682))

    Version 0.20.0 of esbuild changed how the esbuild child process is run in esbuild's API for Deno. Previously it used `Deno.run` but that API is being removed in favor of `Deno.Command`. As part of this change, esbuild is now calling the new `unref` function on esbuild's long-lived child process, which is supposed to allow Deno to exit when your code has finished running even though the child process is still around (previously you had to explicitly call esbuild's `stop()` function to terminate the child process for Deno to be able to exit).

    However, this introduced a problem for Deno's testing API which now fails some tests that use esbuild with `error: Promise resolution is still pending but the event loop has already resolved`. It's unclear to me why this is happening. The call to `unref` was recommended by someone on the Deno core team, and calling Node's equivalent `unref` API has been working fine for esbuild in Node for a long time. It could be that I'm using it incorrectly, or that there's some reference counting and/or garbage collection bug in Deno's internals, or that Deno's `unref` just works differently than Node's `unref`. In any case, it's not good for Deno tests that use esbuild to be failing.

    In this release, I am removing the call to `unref` to fix this issue. This means that you will now have to call esbuild's `stop()` function to allow Deno to exit, just like you did before esbuild version 0.20.0 when this regression was introduced.

    Note: This regression wasn't caught earlier because Deno doesn't seem to fail tests that have outstanding `setTimeout` calls, which esbuild's test harness was using to enforce a maximum test runtime. Adding a `setTimeout` was allowing esbuild's Deno tests to succeed. So this regression doesn't necessarily apply to all people using tests in Deno.

</details>

<details>
<summary>vitejs/vite (vite)</summary>

### [`v5.1.6`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small516-2024-03-11-small)

[Compare Source](https://togithub.com/vitejs/vite/compare/v5.1.5...v5.1.6)

-   chore(deps): update all non-major dependencies ([#&#8203;16131](https://togithub.com/vitejs/vite/issues/16131)) ([a862ecb](https://togithub.com/vitejs/vite/commit/a862ecb)), closes [#&#8203;16131](https://togithub.com/vitejs/vite/issues/16131)
-   fix: check for publicDir before checking if it is a parent directory ([#&#8203;16046](https://togithub.com/vitejs/vite/issues/16046)) ([b6fb323](https://togithub.com/vitejs/vite/commit/b6fb323)), closes [#&#8203;16046](https://togithub.com/vitejs/vite/issues/16046)
-   fix: escape single quote when relative base is used ([#&#8203;16060](https://togithub.com/vitejs/vite/issues/16060)) ([8f74ce4](https://togithub.com/vitejs/vite/commit/8f74ce4)), closes [#&#8203;16060](https://togithub.com/vitejs/vite/issues/16060)
-   fix: handle function property extension in namespace import ([#&#8203;16113](https://togithub.com/vitejs/vite/issues/16113)) ([f699194](https://togithub.com/vitejs/vite/commit/f699194)), closes [#&#8203;16113](https://togithub.com/vitejs/vite/issues/16113)
-   fix: server middleware mode resolve ([#&#8203;16122](https://togithub.com/vitejs/vite/issues/16122)) ([8403546](https://togithub.com/vitejs/vite/commit/8403546)), closes [#&#8203;16122](https://togithub.com/vitejs/vite/issues/16122)
-   fix(esbuild): update tsconfck to fix bug that could cause a deadlock  ([#&#8203;16124](https://togithub.com/vitejs/vite/issues/16124)) ([fd9de04](https://togithub.com/vitejs/vite/commit/fd9de04)), closes [#&#8203;16124](https://togithub.com/vitejs/vite/issues/16124)
-   fix(worker): hide "The emitted file overwrites" warning if the content is same ([#&#8203;16094](https://togithub.com/vitejs/vite/issues/16094)) ([60dfa9e](https://togithub.com/vitejs/vite/commit/60dfa9e)), closes [#&#8203;16094](https://togithub.com/vitejs/vite/issues/16094)
-   fix(worker): throw error when circular worker import is detected and support self referencing worker ([eef9da1](https://togithub.com/vitejs/vite/commit/eef9da1)), closes [#&#8203;16103](https://togithub.com/vitejs/vite/issues/16103)
-   style(utils): remove null check ([#&#8203;16112](https://togithub.com/vitejs/vite/issues/16112)) ([0d2df52](https://togithub.com/vitejs/vite/commit/0d2df52)), closes [#&#8203;16112](https://togithub.com/vitejs/vite/issues/16112)
-   refactor(runtime): share more code between runtime and main bundle ([#&#8203;16063](https://togithub.com/vitejs/vite/issues/16063)) ([93be84e](https://togithub.com/vitejs/vite/commit/93be84e)), closes [#&#8203;16063](https://togithub.com/vitejs/vite/issues/16063)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on sunday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/SvenKirschbaum/aws-utils).
mergify bot pushed a commit to SvenKirschbaum/share.kirschbaum.cloud that referenced this pull request Mar 17, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
|  |  | lockFileMaintenance | All locks refreshed |  |  |  |  |
| [@aws-lambda-powertools/logger](https://togithub.com/aws-powertools/powertools-lambda-typescript/tree/main/packages/logger#readme) ([source](https://togithub.com/aws-powertools/powertools-lambda-typescript)) | dependencies | patch | [`2.0.2` -> `2.0.3`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2flogger/2.0.2/2.0.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-lambda-powertools%2flogger/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-lambda-powertools%2flogger/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-lambda-powertools%2flogger/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-lambda-powertools%2flogger/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-lambda-powertools/tracer](https://togithub.com/aws-powertools/powertools-lambda-typescript/tree/main/packages/tracer#readme) ([source](https://togithub.com/aws-powertools/powertools-lambda-typescript)) | dependencies | patch | [`2.0.2` -> `2.0.3`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2ftracer/2.0.2/2.0.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-lambda-powertools%2ftracer/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-lambda-powertools%2ftracer/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-lambda-powertools%2ftracer/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-lambda-powertools%2ftracer/2.0.2/2.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-dynamodb](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb)) | dependencies | minor | [`3.529.1` -> `3.535.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-dynamodb/3.529.1/3.535.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-dynamodb/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-dynamodb/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-dynamodb/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-dynamodb/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3)) | dependencies | minor | [`3.529.1` -> `3.535.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.529.1/3.535.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-sesv2](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-sesv2) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sesv2)) | dependencies | minor | [`3.529.1` -> `3.535.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sesv2/3.529.1/3.535.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sesv2/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sesv2/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sesv2/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sesv2/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-sfn](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-sfn) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sfn)) | dependencies | minor | [`3.529.1` -> `3.535.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sfn/3.529.1/3.535.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sfn/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sfn/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sfn/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sfn/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/s3-request-presigner](https://togithub.com/aws/aws-sdk-js-v3/tree/main/packages/s3-request-presigner) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner)) | dependencies | minor | [`3.529.1` -> `3.535.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fs3-request-presigner/3.529.1/3.535.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fs3-request-presigner/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fs3-request-presigner/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fs3-request-presigner/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fs3-request-presigner/3.529.1/3.535.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@fallobst22/cdk-cross-account-route53](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53) | dependencies | patch | [`0.0.9` -> `0.0.11`](https://renovatebot.com/diffs/npm/@fallobst22%2fcdk-cross-account-route53/0.0.9/0.0.11) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@fallobst22%2fcdk-cross-account-route53/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@fallobst22%2fcdk-cross-account-route53/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@fallobst22%2fcdk-cross-account-route53/0.0.9/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@fallobst22%2fcdk-cross-account-route53/0.0.9/0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | dependencies | patch | [`5.15.12` -> `5.15.13`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.12/5.15.13) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2ficons-material/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2ficons-material/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/material](https://mui.com/material-ui/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-material)) | dependencies | patch | [`5.15.12` -> `5.15.13`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.15.12/5.15.13) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.15.12/5.15.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/x-date-pickers](https://mui.com/x/react-date-pickers/) ([source](https://togithub.com/mui/mui-x/tree/HEAD/packages/x-date-pickers)) | dependencies | patch | [`6.19.6` -> `6.19.7`](https://renovatebot.com/diffs/npm/@mui%2fx-date-pickers/6.19.6/6.19.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-date-pickers/6.19.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-date-pickers/6.19.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-date-pickers/6.19.6/6.19.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-date-pickers/6.19.6/6.19.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trautonen/cdk-dns-validated-certificate](https://togithub.com/trautonen/cdk-dns-validated-certificate) | dependencies | patch | [`0.0.46` -> `0.0.47`](https://renovatebot.com/diffs/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.46/0.0.47) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.46/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trautonen%2fcdk-dns-validated-certificate/0.0.46/0.0.47?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`20.11.25` -> `20.11.28`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.25/20.11.28) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.11.25/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.11.25/20.11.28?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | devDependencies | patch | [`18.2.64` -> `18.2.66`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.64/18.2.66) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.64/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.64/18.2.66?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom)) | devDependencies | patch | [`18.2.21` -> `18.2.22`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.21/18.2.22) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.21/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.21/18.2.22?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`7.1.1` -> `7.2.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/7.1.1/7.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`7.1.1` -> `7.2.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/7.1.1/7.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk)) | devDependencies | minor | [`2.132.0` -> `2.133.0`](https://renovatebot.com/diffs/npm/aws-cdk/2.132.0/2.133.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk-lib](https://togithub.com/aws/aws-cdk) ([source](https://togithub.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib)) | dependencies | minor | [`2.132.0` -> `2.133.0`](https://renovatebot.com/diffs/npm/aws-cdk-lib/2.132.0/2.133.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk-lib/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk-lib/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk-lib/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk-lib/2.132.0/2.133.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-sdk](https://togithub.com/aws/aws-sdk-js) | dependencies | minor | [`2.1574.0` -> `2.1579.0`](https://renovatebot.com/diffs/npm/aws-sdk/2.1574.0/2.1579.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-sdk/2.1579.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-sdk/2.1579.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-sdk/2.1574.0/2.1579.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-sdk/2.1574.0/2.1579.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [esbuild](https://togithub.com/evanw/esbuild) | dependencies | patch | [`0.20.1` -> `0.20.2`](https://renovatebot.com/diffs/npm/esbuild/0.20.1/0.20.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/esbuild/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/esbuild/0.20.1/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.20.1/0.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [axios](https://axios-http.com) ([source](https://togithub.com/axios/axios)) | dependencies | patch | [`1.6.7` -> `1.6.8`](https://renovatebot.com/diffs/npm/axios/1.6.7/1.6.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/axios/1.6.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/axios/1.6.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/axios/1.6.7/1.6.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/axios/1.6.7/1.6.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [vite](https://vitejs.dev) ([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite)) | devDependencies | patch | [`5.1.5` -> `5.1.6`](https://renovatebot.com/diffs/npm/vite/5.1.5/5.1.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.1.5/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.1.5/5.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

🔧 This Pull Request updates lock files to use the latest dependency versions.

---

### Release Notes

<details>
<summary>aws-powertools/powertools-lambda-typescript (@&#8203;aws-lambda-powertools/logger)</summary>

### [`v2.0.3`](https://togithub.com/aws-powertools/powertools-lambda-typescript/blob/HEAD/CHANGELOG.md#203-2024-03-15)

[Compare Source](https://togithub.com/aws-powertools/powertools-lambda-typescript/compare/v2.0.2...v2.0.3)

**feat(logger):** improve regex in stack trace parsing ([#&#8203;2121](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2121)) ([ebe5eef](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/ebe5eef3319fc95070c2c33c0ac64b8e42443b38))
**fix(idempotency):** transform private class fields ([#&#8203;2230](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2230)) ([aa6e6e0](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/aa6e6e0c25bbc93151cc5cddc584400575604f05))
**improv(commons):**: expand type utils functions ([#&#8203;2191](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2191)) ([9208393](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/9208393fe07d33cb35ea479b3c0866c8a7b91a21))
**feat(commons):** add fromBase64 helper function ([#&#8203;2188](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2188)) ([133159b](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/133159ba4cca41a61c14d62f9356bb89a7f0a08f))
**fix(layers):**: add createRequire banner in esm build ([#&#8203;2231](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/2231)) ([730bcc9](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/730bcc93c027f4d60788badb6c5c01a09b3c70be))

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-dynamodb)</summary>

### [`v3.535.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#35350-2024-03-15)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.533.0...v3.535.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

### [`v3.533.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#35330-2024-03-13)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.1...v3.533.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

#### [3.529.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1) (2024-03-08)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-s3)</summary>

### [`v3.535.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35350-2024-03-15)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.534.0...v3.535.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

### [`v3.534.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35340-2024-03-14)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.533.0...v3.534.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

### [`v3.533.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35330-2024-03-13)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.1...v3.533.0)

##### Features

-   **client-s3:** This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT). ([2ddd8ec](https://togithub.com/aws/aws-sdk-js-v3/commit/2ddd8ec13eaba4609acedfcf9ded5a380db8ae2e))

#### [3.529.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1) (2024-03-08)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-sesv2)</summary>

### [`v3.535.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#35350-2024-03-15)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.533.0...v3.535.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sesv2](https://togithub.com/aws-sdk/client-sesv2)

### [`v3.533.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#35330-2024-03-13)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.1...v3.533.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sesv2](https://togithub.com/aws-sdk/client-sesv2)

#### [3.529.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1) (2024-03-08)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sesv2](https://togithub.com/aws-sdk/client-sesv2)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-sfn)</summary>

### [`v3.535.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sfn/CHANGELOG.md#35350-2024-03-15)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.533.0...v3.535.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sfn](https://togithub.com/aws-sdk/client-sfn)

### [`v3.533.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sfn/CHANGELOG.md#35330-2024-03-13)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.1...v3.533.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sfn](https://togithub.com/aws-sdk/client-sfn)

#### [3.529.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1) (2024-03-08)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sfn](https://togithub.com/aws-sdk/client-sfn)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/s3-request-presigner)</summary>

### [`v3.535.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#35350-2024-03-15)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.534.0...v3.535.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

### [`v3.534.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#35340-2024-03-14)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.533.0...v3.534.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

### [`v3.533.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#35330-2024-03-13)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.1...v3.533.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

#### [3.529.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1) (2024-03-08)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

</details>

<details>
<summary>SvenKirschbaum/cdk-cross-account-route53 (@&#8203;fallobst22/cdk-cross-account-route53)</summary>

### [`v0.0.11`](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/releases/tag/v0.0.11)

[Compare Source](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.10...v0.0.11)

##### [0.0.11](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.10...v0.0.11) (2024-03-16)

### [`v0.0.10`](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/releases/tag/v0.0.10)

[Compare Source](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.9...v0.0.10)

##### [0.0.10](https://togithub.com/SvenKirschbaum/cdk-cross-account-route53/compare/v0.0.9...v0.0.10) (2024-03-10)

</details>

<details>
<summary>mui/material-ui (@&#8203;mui/icons-material)</summary>

### [`v5.15.13`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51513)

[Compare Source](https://togithub.com/mui/material-ui/compare/v5.15.12...v5.15.13)



*Mar 12, 2024*

A big thanks to the 15 contributors who made this release possible. Here are some highights ✨

-   The Material UI free Checkout template got a design uplift ([#&#8203;41447](https://togithub.com/mui/material-ui/issues/41447)) [@&#8203;zanivan](https://togithub.com/zanivan)

##### `@mui/material@5.15.13`

-   \[Alert] Add `slots` and `slotProps` type to theme ([#&#8203;41324](https://togithub.com/mui/material-ui/issues/41324)) [@&#8203;sai6855](https://togithub.com/sai6855)
-   \[Autocomplete] Fix the options list being added to the DOM in `freeSolo` mode even when there are no options, causing style problems ([#&#8203;41300](https://togithub.com/mui/material-ui/issues/41300)) [@&#8203;rakeshmusturi](https://togithub.com/rakeshmusturi)
-   Add `paperChannel` token ([#&#8203;41447](https://togithub.com/mui/material-ui/issues/41447)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   \[Switch] Convert to support CSS extraction ([#&#8203;41367](https://togithub.com/mui/material-ui/issues/41367)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)
-   \[Tooltip] Support event handlers with extra parameters ([#&#8203;41320](https://togithub.com/mui/material-ui/issues/41320)) [@&#8203;LukasTy](https://togithub.com/LukasTy)

##### `@mui/system@5.15.13`

-   \[RtlProvider] Add component & hook ([#&#8203;41241](https://togithub.com/mui/material-ui/issues/41241)) [@&#8203;mnajdova](https://togithub.com/mnajdova)

##### `@mui/utils@5.15.13`

-   \[utils] Fix visually hidden styles' margin unit ([#&#8203;41477](https://togithub.com/mui/material-ui/issues/41477)) [@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/codemod@5.15.13`

-   Fix merging of slotProps and componentProps ([#&#8203;41323](https://togithub.com/mui/material-ui/issues/41323)) [@&#8203;sai6855](https://togithub.com/sai6855)

##### `@mui/base@5.0.0-beta.39`

-   \[material-ui]\[joy-ui]\[Autocomplete] Keep in sync highlighted index when the option still exists ([#&#8203;41306](https://togithub.com/mui/material-ui/issues/41306)) [@&#8203;CGNonofr](https://togithub.com/CGNonofr)
-   \[FormControl] Export `FormControlOwnerState` type from index ([#&#8203;41287](https://togithub.com/mui/material-ui/issues/41287)) [@&#8203;michaeldfoley](https://togithub.com/michaeldfoley)
-   \[material-ui]\[TextareaAutosize] Fix inline style not getting applied ([#&#8203;41369](https://togithub.com/mui/material-ui/issues/41369)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

##### `@pigment-css/react@0.0.2`

-   Handle more scenarios while transforming sx prop ([#&#8203;41372](https://togithub.com/mui/material-ui/issues/41372)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   Improve testing of fixtures ([#&#8203;41389](https://togithub.com/mui/material-ui/issues/41389)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   Fix `keyframes` serialize styles error ([#&#8203;41395](https://togithub.com/mui/material-ui/issues/41395)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   Use class selector instead of class value ([#&#8203;41442](https://togithub.com/mui/material-ui/issues/41442)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   \[next] Warn about unsupported turbo mode in Next.js ([#&#8203;41445](https://togithub.com/mui/material-ui/issues/41445)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)

##### Docs

-   \[material-ui] Refine checkout template ([#&#8203;40967](https://togithub.com/mui/material-ui/issues/40967)) [@&#8203;zanivan](https://togithub.com/zanivan)
-   \[material-ui] Add docs for complementary List components ([#&#8203;41329](https://togithub.com/mui/material-ui/issues/41329)) [@&#8203;anle9650](https://togithub.com/anle9650)
-   \[material-ui] Add docs for complementary Dialog components ([#&#8203;41313](https://togithub.com/mui/material-ui/issues/41313)) [@&#8203;jwithington](https://togithub.com/jwithington)
-   \[material-ui] Fix Templates live preview link ([#&#8203;41467](https://togithub.com/mui/material-ui/issues/41467)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[material-ui] Polish out the templates page ([#&#8203;41468](https://togithub.com/mui/material-ui/issues/41468)) [@&#8203;zanivan](https://togithub.com/zanivan)
-   \[material-ui] Adjust the Templates card design ([#&#8203;41450](https://togithub.com/mui/material-ui/issues/41450)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[joy-ui] Remove unnecessary styles in color inversion footer demo ([#&#8203;41419](https://togithub.com/mui/material-ui/issues/41419)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[joy-ui] Update case studies chip background color ([#&#8203;41413](https://togithub.com/mui/material-ui/issues/41413)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[joy-ui] Remove wrong CSS prop from the Sign-in-side template ([#&#8203;41383](https://togithub.com/mui/material-ui/issues/41383)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[joy-ui] Fix broken link on the Color Inversion page ([#&#8203;41407](https://togithub.com/mui/material-ui/issues/41407)) [@&#8203;cipherlogs](https://togithub.com/cipherlogs)
-   \[pigment] Add example and guide section ([#&#8203;41249](https://togithub.com/mui/material-ui/issues/41249)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   \[pigment-css] Brand name nonbreaking space ([#&#8203;41438](https://togithub.com/mui/material-ui/issues/41438)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[pigment-css] Fix import on the README ([#&#8203;41411](https://togithub.com/mui/material-ui/issues/41411)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[pigment-css] Edit starter template links on README ([#&#8203;41409](https://togithub.com/mui/material-ui/issues/41409)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[pigment-css] Tweak the examples and edit READMEs ([#&#8203;41408](https://togithub.com/mui/material-ui/issues/41408)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[pigment-css] Adjust the bit about CSS vars on the README ([#&#8203;41463](https://togithub.com/mui/material-ui/issues/41463)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   Finish brand name fixes [#&#8203;41438](https://togithub.com/mui/material-ui/issues/41438) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   Remove noreferrer [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   Fix v4 docs <b> appearing in notifications ([#&#8203;41390](https://togithub.com/mui/material-ui/issues/41390)) [@&#8203;peterwangsc](https://togithub.com/peterwangsc)
-   Update GitHub project links ([#&#8203;41370](https://togithub.com/mui/material-ui/issues/41370)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)

##### Core

-   \[pigment] Make all Pigment CSS packages public ([#&#8203;41404](https://togithub.com/mui/material-ui/issues/41404)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   \[pigment] Rename directories to match package names ([#&#8203;41453](https://togithub.com/mui/material-ui/issues/41453)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42)
-   \[pigment-css] Example fix leading spaces ([#&#8203;41439](https://togithub.com/mui/material-ui/issues/41439)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[code-infra] Add short note about e2e-website workflow schedule ([#&#8203;41355](https://togithub.com/mui/material-ui/issues/41355)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Add alias for icon types ([#&#8203;41248](https://togithub.com/mui/material-ui/issues/41248)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Reduce concurrency of typescript:ci further ([#&#8203;41392](https://togithub.com/mui/material-ui/issues/41392)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Reduce concurrency for test_types ci job ([#&#8203;41385](https://togithub.com/mui/material-ui/issues/41385)) [@&#8203;Janpot](https://togithub.com/Janpot)
-   \[code-infra] Adapt API code generator to Base UI repo needs ([#&#8203;41475](https://togithub.com/mui/material-ui/issues/41475)) [@&#8203;michaldudak](https://togithub.com/michaldudak)
-   \[docs-infra] Don't generate preview files for the templates ([#&#8203;41379](https://togithub.com/mui/material-ui/issues/41379)) [@&#8203;mnajdova](https://togithub.com/mnajdova)
-   \[docs-infra] Fix pigment css apps path in the render mui demos script ([#&#8203;41476](https://togithub.com/mui/material-ui/issues/41476)) [@&#8203;mnajdova](https://togithub.com/mnajdova)
-   \[docs-infra] move feedback to ESM ([#&#8203;41381](https://togithub.com/mui/material-ui/issues/41381)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)
-   \[docs-infra] Improve color contrast throughout ([#&#8203;41387](https://togithub.com/mui/material-ui/issues/41387)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[docs-infra] Simplify Algolia crawler config ([#&#8203;41312](https://togithub.com/mui/material-ui/issues/41312)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[docs-infra] Adjust the tabs and layout selection design ([#&#8203;41084](https://togithub.com/mui/material-ui/issues/41084)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[blog] Update the Base UI post with links to dedicated repo ([#&#8203;41358](https://togithub.com/mui/material-ui/issues/41358)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[website] Update the Careers page role ([#&#8203;41384](https://togithub.com/mui/material-ui/issues/41384)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[website] Compress about images [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   \[website] Improve color contrast on the homepage ([#&#8203;41465](https://togithub.com/mui/material-ui/issues/41465)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   \[examples] Add pigment-css-vite-ts starter example ([#&#8203;41196](https://togithub.com/mui/material-ui/issues/41196)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
-   \[examples] Add pigment-css-nextjs-ts starter project ([#&#8203;41105](https://togithub.com/mui/material-ui/issues/41105)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)

All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://togithub.com/alexfauquette), [@&#8203;brijeshb42](https://togithub.com/brijeshb42), [@&#8203;CGNonofr](https://togithub.com/CGNonofr), [@&#8203;cipherlogs](https://togithub.com/cipherlogs), [@&#8203;danilo-leal](https://togithub.com/danilo-leal), [@&#8203;Janpot](https://togithub.com/Janpot), [@&#8203;michaeldfoley](https://togithub.com/michaeldfoley), [@&#8203;mnajdova](https://togithub.com/mnajdova), [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari), [@&#8203;peterwangsc](https://togithub.com/peterwangsc), [@&#8203;rakeshmusturi](https://togithub.com/rakeshmusturi), [@&#8203;sai6855](https://togithub.com/sai6855), [@&#8203;siriwatknp](https://togithub.com/siriwatknp), [@&#8203;zanivan](https://togithub.com/zanivan), [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

</details>

<details>
<summary>mui/mui-x (@&#8203;mui/x-date-pickers)</summary>

### [`v6.19.7`](https://togithub.com/mui/mui-x/compare/v6.19.6...b054297fc121b54099427bd84c12ad79716581f0)

[Compare Source](https://togithub.com/mui/mui-x/compare/v6.19.6...v6.19.7)

</details>

<details>
<summary>trautonen/cdk-dns-validated-certificate (@&#8203;trautonen/cdk-dns-validated-certificate)</summary>

### [`v0.0.47`](https://togithub.com/trautonen/cdk-dns-validated-certificate/releases/tag/v0.0.47)

[Compare Source](https://togithub.com/trautonen/cdk-dns-validated-certificate/compare/v0.0.46...v0.0.47)

##### [0.0.47](https://togithub.com/trautonen/cdk-dns-validated-certificate/compare/v0.0.46...v0.0.47) (2024-03-11)

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary>

### [`v7.2.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#720-2024-03-11)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.1.1...v7.2.0)

##### 🚀 Features

-   support TS 5.4

-   **eslint-plugin:** \[prefer-string-starts-ends-with] add allowSingleElementEquality option

##### 🩹 Fixes

-   **eslint-plugin:** expose \*-type-checked-only configs for extension

-   **eslint-plugin:** \[member-ordering] report alphabetical sorting for all groups instead of just the first failing group

-   **eslint-plugin:** \[no-var-requires, no-require-imports] support template literal

-   **eslint-plugin:** \[no-useless-template-literals] detect TemplateLiteral

-   **eslint-plugin:** \[no-unnecessary-condition] handle union array and tuple type

-   **eslint-plugin:** \[prefer-find] support ternary branches in prefer-find

##### ❤️  Thank You

-   Arka Pratim Chaudhuri
-   auvred
-   Chris Plummer
-   Fotis Papadogeorgopoulos
-   Josh Goldberg ✨
-   Kirk Waiblinger
-   Wayne Zhang
-   YeonJuan

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/parser)</summary>

### [`v7.2.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#720-2024-03-11)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.1.1...v7.2.0)

##### 🚀 Features

-   support TS 5.4

##### ❤️  Thank You

-   Arka Pratim Chaudhuri
-   auvred
-   Chris Plummer
-   Fotis Papadogeorgopoulos
-   Josh Goldberg ✨
-   Kirk Waiblinger
-   Wayne Zhang
-   YeonJuan

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

<details>
<summary>aws/aws-cdk (aws-cdk)</summary>

### [`v2.133.0`](https://togithub.com/aws/aws-cdk/releases/tag/v2.133.0)

[Compare Source](https://togithub.com/aws/aws-cdk/compare/v2.132.1...v2.133.0)

##### Features

-   **CLI:** improved nested stack diff ([#&#8203;29172](https://togithub.com/aws/aws-cdk/issues/29172)) ([135b520](https://togithub.com/aws/aws-cdk/commit/135b5208dce849f49b6f540f7199ece057a7ef22))
-   **codepipeline:** change default pipeline type to V2 (under feature flag) ([#&#8203;29096](https://togithub.com/aws/aws-cdk/issues/29096)) ([e85231c](https://togithub.com/aws/aws-cdk/commit/e85231c092892879479cf12b89756e8f2b70a094)), closes [/github.com/aws/aws-cdk/pull/28538#discussion_r1471761574](https://togithub.com/aws//github.com/aws/aws-cdk/pull/28538/issues/discussion_r1471761574) [/github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-codepipeline/lib/pipeline.ts#L492](https://togithub.com/aws//github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-codepipeline/lib/pipeline.ts/issues/L492)
-   **ec2:** add APPCONFIG and APPCONFIGDATA to InterfaceVpcEndpointAwsService ([#&#8203;29408](https://togithub.com/aws/aws-cdk/issues/29408)) ([baaa50c](https://togithub.com/aws/aws-cdk/commit/baaa50c73ae3a88d606b62349736ef1180dcf1ad))
-   **ecs-patterns:** support `securityGroups` in `NetworkLoadBalancedFargateService` ([#&#8203;29431](https://togithub.com/aws/aws-cdk/issues/29431)) ([00e8a7b](https://togithub.com/aws/aws-cdk/commit/00e8a7b877a732b4236227f6462bf3914ce7a214)), closes [#&#8203;29430](https://togithub.com/aws/aws-cdk/issues/29430) [/github.com/aws/aws-cdk/pull/29186#issuecomment-1959231406](https://togithub.com/aws//github.com/aws/aws-cdk/pull/29186/issues/issuecomment-1959231406)
-   **opensearchservice:** cold storage option ([#&#8203;29387](https://togithub.com/aws/aws-cdk/issues/29387)) ([ce52c7e](https://togithub.com/aws/aws-cdk/commit/ce52c7e1ac939dc2f9f08cb29fad0f2dc9714445)), closes [#&#8203;29366](https://togithub.com/aws/aws-cdk/issues/29366)
-   **rds:** proxy for mariadb ([#&#8203;29412](https://togithub.com/aws/aws-cdk/issues/29412)) ([6fef789](https://togithub.com/aws/aws-cdk/commit/6fef789e14a0f53317da9ca4f319950d33f86ed1)), closes [#&#8203;29402](https://togithub.com/aws/aws-cdk/issues/29402)
-   **stepfunctions-tasks:** start glue crawler ([#&#8203;29016](https://togithub.com/aws/aws-cdk/issues/29016)) ([5592553](https://togithub.com/aws/aws-cdk/commit/5592553ac5edc6b2c29a786031b8bec139b2aef7)), closes [#&#8203;24188](https://togithub.com/aws/aws-cdk/issues/24188)
-   update L1 CloudFormation resource definitions ([#&#8203;29438](https://togithub.com/aws/aws-cdk/issues/29438)) ([5b910f0](https://togithub.com/aws/aws-cdk/commit/5b910f0d61d4adae38788f7f16ccdae6cb214057))

##### Bug Fixes

-   **cli:** `cdk ls` returns stack id instead of stack display name ([#&#8203;29447](https://togithub.com/aws/aws-cdk/issues/29447)) ([77189be](https://togithub.com/aws/aws-cdk/commit/77189be16b4ab007450176010f71f1558ced6430)), closes [#&#8203;29420](https://togithub.com/aws/aws-cdk/issues/29420)
-   **lambda-nodejs:** fixing esbuildArgs to take in account re-specified keys ([#&#8203;29167](https://togithub.com/aws/aws-cdk/issues/29167)) ([919d16f](https://togithub.com/aws/aws-cdk/commit/919d16ff611ee01495ae2cb4c646c4e27378b3e3)), closes [#&#8203;25385](https://togithub.com/aws/aws-cdk/issues/25385)
-   **stepfunctions:** the retry field in CustomState is not iterable ([#&#8203;29403](https://togithub.com/aws/aws-cdk/issues/29403)) ([a1fbd51](https://togithub.com/aws/aws-cdk/commit/a1fbd51d7fa6791b6a55004a938ec157194b89ba)), closes [#&#8203;29274](https://togithub.com/aws/aws-cdk/issues/29274)

##### Reverts

-   prevent changeset diff for non-deployed stacks ([#&#8203;29485](https://togithub.com/aws/aws-cdk/issues/29485)) ([fac4a9c](https://togithub.com/aws/aws-cdk/commit/fac4a9c23f8e9090b3dc7e26a8306d3a8034b4c9)), closes [#&#8203;29394](https://togithub.com/aws/aws-cdk/issues/29394) [#&#8203;29172](https://togithub.com/aws/aws-cdk/issues/29172)

***

#### Alpha modules (2.133.0-alpha.0)

### [`v2.132.1`](https://togithub.com/aws/aws-cdk/releases/tag/v2.132.1)

[Compare Source](https://togithub.com/aws/aws-cdk/compare/v2.132.0...v2.132.1)

##### Bug Fixes

-   **cli:** `cdk ls` returns stack id instead of stack display name ([#&#8203;29447](https://togithub.com/aws/aws-cdk/issues/29447)) ([effad1c](https://togithub.com/aws/aws-cdk/commit/effad1cf8a854789070e963691b30fadf1597afb)), closes [#&#8203;29420](https://togithub.com/aws/aws-cdk/issues/29420)

***

##### Alpha modules (2.132.1-alpha.0)

</details>

<details>
<summary>aws/aws-sdk-js (aws-sdk)</summary>

### [`v2.1579.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215790)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1578.0...v2.1579.0)

-   feature: Backup: This release introduces a boolean attribute ManagedByAWSBackupOnly as part of ListRecoveryPointsByResource api to filter the recovery points based on ownership. This attribute can be used to filter out the recovery points protected by AWSBackup.
-   feature: CodeBuild: AWS CodeBuild now supports overflow behavior on Reserved Capacity.
-   feature: Connect: This release adds Hierarchy based Access Control fields to Security Profile public APIs and adds support for UserAttributeFilter to SearchUsers API.
-   feature: EC2: Add media accelerator and neuron device information on the describe instance types API.
-   feature: KinesisAnalyticsV2: Support for Flink 1.18 in Managed Service for Apache Flink
-   feature: SageMaker: Adds m6i, m6id, m7i, c6i, c6id, c7i, r6i r6id, r7i, p5 instance type support to Sagemaker Notebook Instances and miscellaneous wording fixes for previous Sagemaker documentation.
-   feature: WorkSpacesThinClient: Removed unused parameter kmsKeyArn from UpdateDeviceRequest

### [`v2.1578.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215780)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1577.0...v2.1578.0)

-   bugfix: IoTRoborunner: Deprecate IoTRoborunner
-   feature: EC2InstanceConnect: This release includes a new exception type "SerialConsoleSessionUnsupportedException" for SendSerialConsoleSSHPublicKey API.
-   feature: Fis: This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses.
-   feature: TimestreamInfluxDB: This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs.

### [`v2.1577.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215770)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1576.0...v2.1577.0)

-   feature: IVSRealTime: adds support for multiple new composition layout configuration options (grid, pip)
-   feature: KinesisAnalyticsV2: Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.
-   feature: S3: This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).

### [`v2.1576.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215760)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1575.0...v2.1576.0)

-   feature: Connect: This release increases MaxResults limit to 500 in request for SearchUsers, SearchQueues and SearchRoutingProfiles APIs of Amazon Connect.
-   feature: Kafka: Added support for specifying the starting position of topic replication in MSK-Replicator.

### [`v2.1575.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#215750)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1574.0...v2.1575.0)

-   feature: CodeStarconnections: Added a sync configuration enum to disable publishing of deployment status to source providers (PublishDeploymentStatus). Added a sync configuration enum (TriggerStackUpdateOn) to only trigger changes.
-   feature: MediaPackageV2: This release enables customers to safely update their MediaPackage v2 channel groups, channels and origin endpoints using entity tags.

</details>

<details>
<summary>evanw/esbuild (esbuild)</summary>

### [`v0.20.2`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0202)

[Compare Source](https://togithub.com/evanw/esbuild/compare/v0.20.1...v0.20.2)

-   Support TypeScript experimental decorators on `abstract` class fields ([#&#8203;3684](https://togithub.com/evanw/esbuild/issues/3684))

    With this release, you can now use TypeScript experimental decorators on `abstract` class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:

    ```ts
    // Original code
    const log = (x: any, y: string) => console.log(y)
    abstract class Foo { @&#8203;log abstract foo: string }
    new class extends Foo { foo = '' }

    // Old output (with --loader=ts --tsconfig-raw={\"compilerOptions\":{\"experimentalDecorators\":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    new class extends Foo {
      foo = "";
    }();

    // New output (with --loader=ts --tsconfig-raw={\"compilerOptions\":{\"experimentalDecorators\":true}})
    const log = (x, y) => console.log(y);
    class Foo {
    }
    __decorateClass([
      log
    ], Foo.prototype, "foo", 2);
    new class extends Foo {
      foo = "";
    }();
    ```

-   JSON loader now preserves `__proto__` properties ([#&#8203;3700](https://togithub.com/evanw/esbuild/issues/3700))

    Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the `__proto__` key. A literal `__proto__` property in a JavaScript object literal sets the prototype of the object instead of adding a property named `__proto__`, while a literal `__proto__` property in a JSON object literal just adds a property named `__proto__`. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:

    ```js
    // Original code
    import data from 'data:application/json,{"__proto__":{"fail":true}}'
    if (Object.getPrototypeOf(data)?.fail) throw 'fail'

    // Old output (with --bundle)
    (() => {
      // <data:application/json,{"__proto__":{"fail":true}}>
      var json_proto_fail_true_default = { __proto__: { fail: true } };

      // entry.js
      if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
        throw "fail";
    })();

    // New output (with --bundle)
    (() => {
      // <data:application/json,{"__proto__":{"fail":true}}>
      var json_proto_fail_true_default = { ["__proto__"]: { fail: true } };

      // example.mjs
      if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail)
        throw "fail";
    })();
    ```

-   Improve dead code removal of `switch` statements ([#&#8203;3659](https://togithub.com/evanw/esbuild/issues/3659))

    With this release, esbuild will now remove `switch` statements in branches when minifying if they are known to never be evaluated:

    ```js
    // Original code
    if (true) foo(); else switch (bar) { case 1: baz(); break }

    // Old output (with --minify)
    if(1)foo();else switch(bar){case 1:}

    // New output (with --minify)
    foo();
    ```

-   Empty enums should behave like an object literal ([#&#8203;3657](https://togithub.com/evanw/esbuild/issues/3657))

    TypeScript allows you to create an empty enum and add properties to it at run time. While people usually use an empty object literal for this instead of a TypeScript enum, esbuild's enum transform didn't anticipate this use case and generated `undefined` instead of `{}` for an empty enum. With this release, you can now use an empty enum to generate an empty object literal.

    ```ts
    // Original code
    enum Foo {}

    // Old output (with --loader=ts)
    var Foo = /* @&#8203;__PURE__ */ ((Foo2) => {
    })(Foo || {});

    // New output (with --loader=ts)
    var Foo = /* @&#8203;__PURE__ */ ((Foo2) => {
      return Foo2;
    })(Foo || {});
    ```

-   Handle Yarn Plug'n'Play edge case with `tsconfig.json` ([#&#8203;3698](https://togithub.com/evanw/esbuild/issues/3698))

    Previously a `tsconfig.json` file that `extends` another file in a package with an `exports` map failed to work when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

-   Work around issues with Deno 1.31+ ([#&#8203;3682](https://togithub.com/evanw/esbuild/issues/3682))

    Version 0.20.0 of esbuild changed how the esbuild child process is run in esbuild's API for Deno. Previously it used `Deno.run` but that API is being removed in favor of `Deno.Command`. As part of this change, esbuild is now calling the new `unref` function on esbuild's long-lived child process, which is supposed to allow Deno to exit when your code has finished running even though the child process is still around (previously you had to explicitly call esbuild's `stop()` function to terminate the child process for Deno to be able to exit).

    However, this introduced a problem for Deno's testing API which now fails some tests that use esbuild with `error: Promise resolution is still pending but the event loop has already resolved`. It's unclear to me why this is happening. The call to `unref` was recommended by someone on the Deno core team, and calling Node's equivalent `unref` API has been working fine for esbuild in Node for a long time. It could be that I'm using it incorrectly, or that there's some reference counting and/or garbage collection bug in Deno's internals, or that Deno's `unref` just works differently than Node's `unref`. In any case, it's not good for Deno tests that use esbuild to be failing.

    In this release, I am removing the call to `unref` to fix this issue. This means that you will now have to call esbuild's `stop()` function to allow Deno to exit, just like you did before esbuild version 0.20.0 when this regression was introduced.

    Note: This regression wasn't caught earlier because Deno doesn't seem to fail tests that have outstanding `setTimeout` calls, which esbuild's test harness was using to enforce a maximum test runtime. Adding a `setTimeout` was allowing esbuild's Deno tests to succeed. So this regression doesn't necessarily apply to all people using tests in Deno.

</details>

<details>
<summary>axios/axios (axios)</summary>

### [`v1.6.8`](https://togithub.com/axios/axios/blob/HEAD/CHANGELOG.md#168-2024-03-15)

[Compare Source](https://togithub.com/axios/axios/compare/v1.6.7...v1.6.8)

##### Bug Fixes

-   **AxiosHeaders:** fix AxiosHeaders conversion to an object during config merging ([#&#8203;6243](https://togithub.com/axios/axios/issue

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on sunday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/SvenKirschbaum/share.kirschbaum.cloud).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

effort/medium Medium work item – several days of effort feature-request A feature should be added or improved. p2 valued-contributor [Pilot] contributed between 6-12 PRs to the CDK

Projects

None yet

Development

Successfully merging this pull request may close these issues.

ApplicationLoadBalancedFargateService : Add Support for IPv6 on LB's

2 participants