Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

(aws-ec2): Launch template support for multiple security groups #18712

Closed
1 of 2 tasks
TimQuist opened this issue Jan 28, 2022 · 6 comments · Fixed by #25697
Closed
1 of 2 tasks

(aws-ec2): Launch template support for multiple security groups #18712

TimQuist opened this issue Jan 28, 2022 · 6 comments · Fixed by #25697
Labels
@aws-cdk/aws-ec2 Related to Amazon Elastic Compute Cloud effort/small Small work item – less than a day of effort feature-request A feature should be added or improved. p2

Comments

@TimQuist
Copy link

TimQuist commented Jan 28, 2022

Description

Hi,

I noticed when migrating my EC2 launch template definition to CDK (Typescript project) that there is currently no option to provide multiple security groups for a launch template. When creating a launch template in the AWS Console this is possible to do.

I'm not sure if i am missing something here but it does not seem possible to add multiple security groups during creation or assigning additional security groups

Use Case

It would be nice to be able to re-use existing security groups instead of having to make a new (duplicate) one which is just a bunch of existing security groups combined.

Proposed Solution

LaunchTemplateProps currently only is able to process a single securityGroup. It would be nice if this would accept ISecurityGroup or ISecurityGroup[]

Another option would to be able to add additional security groups to the LaunchTemplate after instantiating just like with EC2 instances by using addSecurityGroup(securityGroup)

EDIT: Alternative is to use CfnLaunchTemplate since this does support multiple security groups.

Other information

No response

Acknowledge

  • I may be able to implement this feature request
  • This feature might incur a breaking change
@TimQuist TimQuist added feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged. labels Jan 28, 2022
@github-actions github-actions bot added the @aws-cdk/aws-ec2 Related to Amazon Elastic Compute Cloud label Jan 28, 2022
@corymhall
Copy link
Contributor

@TimQuist currently it is possible via connections

const launchTemplate = new ec2.LaunchTemplate(this, 'LT', {
  securityGroup,
});

launchTemplate.connections.addSecurityGroup(sg2);

But I do agree that we should make this easier through through a method on launch template or something.

@corymhall corymhall added effort/small Small work item – less than a day of effort p2 and removed needs-triage This issue or PR still needs to be triaged. labels Feb 1, 2022
@TimQuist
Copy link
Author

TimQuist commented Feb 1, 2022

@corymhall Ah, I have completely missed that! Thanks for the clarification.

I agree it would be a nice addition to have it directly on a method to prevent others like me sending issues like this in the future :)

@njlynch njlynch removed their assignment Feb 1, 2022
@panchesrbovski
Copy link

panchesrbovski commented May 25, 2022

Just to add one more workaround that did the job for me in this case.

#python
cfn_lt = launch_template.node.default_child
cfn_lt.add_property_override( "LaunchTemplateData.SecurityGroupIds", [ "security_group_id_string", "security_group_id_string", ... ] )

@andreprawira
Copy link

andreprawira commented Dec 6, 2022

@panchesrbovski those lines are to override an existing security group correct? if we were to create from scratch and empty, since there is no attribute to specify security group id in CDK, then we wouldnt be able to use it?

cause when i use
cfn_lt.add_property_override( "LaunchTemplateData.SecurityGroups", [ "my_sg_1", "my_sg_2"] ) it threw me GroupName is only supported for EC2-Classic and default VPC error

@corymhall thanks it works for python too

@mergify mergify bot closed this as completed in #25697 Jun 15, 2023
mergify bot pushed a commit that referenced this issue Jun 15, 2023
[LaunchTemplateProps](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.LaunchTemplateProps.html) is able to process a single securityGroup.
Currently we are required to use connections when we wanted to use multiple security groups. #18712 (comment)
I implemented addSecurityGroup method to make this easier.

Closes #18712

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
@github-actions
Copy link

⚠️COMMENT VISIBILITY WARNING⚠️

Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.

renovate bot added a commit to cythral/brighid-commands that referenced this issue Jun 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [Amazon.CDK.Lib](https://togithub.com/aws/aws-cdk) | nuget | minor |
`2.84.0` -> `2.85.0` |

---

### Release Notes

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

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

##### Features

- **cfnspec:** cloudformation spec v126.0.0
([#&#8203;25918](https://togithub.com/aws/aws-cdk/issues/25918))
([757fba9](https://togithub.com/aws/aws-cdk/commit/757fba9b7c71ee500446ab118cabc37037613333))
- **cfnspec:** cloudformation spec v127.0.0
([#&#8203;26009](https://togithub.com/aws/aws-cdk/issues/26009))
([4e57a8c](https://togithub.com/aws/aws-cdk/commit/4e57a8cbaa0bcd160976c4fa7d35485154109a7e))
- **core:** add option to suppress indentation in templates
([#&#8203;25892](https://togithub.com/aws/aws-cdk/issues/25892))
([b705956](https://togithub.com/aws/aws-cdk/commit/b70595686e0742691bf64ce80bd18ea26694400d)),
closes [#&#8203;18694](https://togithub.com/aws/aws-cdk/issues/18694)
[#&#8203;8712](https://togithub.com/aws/aws-cdk/issues/8712)
[#&#8203;19656](https://togithub.com/aws/aws-cdk/issues/19656)
- **ec2:** add addSecurityGroup method to launth template
([#&#8203;25697](https://togithub.com/aws/aws-cdk/issues/25697))
([28df618](https://togithub.com/aws/aws-cdk/commit/28df61866096829d2dd87e9174724764649f2524)),
closes
[/github.com/aws/aws-cdk/issues/18712#issuecomment-1026975615](https://togithub.com/aws//github.com/aws/aws-cdk/issues/18712/issues/issuecomment-1026975615)
[#&#8203;18712](https://togithub.com/aws/aws-cdk/issues/18712)
- **s3-deployment:** create `DeployTimeSubstitutedFile` to allow
substitutions in file
([#&#8203;25876](https://togithub.com/aws/aws-cdk/issues/25876))
([ca2e6a2](https://togithub.com/aws/aws-cdk/commit/ca2e6a255b20a54f93babc218abdc5102e95080a)),
closes [#&#8203;1461](https://togithub.com/aws/aws-cdk/issues/1461)
- **stepfunctions:** support string and file definitions
([#&#8203;25932](https://togithub.com/aws/aws-cdk/issues/25932))
([1cb9351](https://togithub.com/aws/aws-cdk/commit/1cb935172a2a373992167aebf0aaa72f02405d86))

##### Bug Fixes

- **cli:** deployment continues if ECR asset fails to build or publish
([#&#8203;26060](https://togithub.com/aws/aws-cdk/issues/26060))
([37caaab](https://togithub.com/aws/aws-cdk/commit/37caaabd9d28dd7bb7d0499cc8606e1a382b32fa)),
closes [#&#8203;26048](https://togithub.com/aws/aws-cdk/issues/26048)
[#&#8203;25827](https://togithub.com/aws/aws-cdk/issues/25827)
- remaining usage of node 14
([#&#8203;25995](https://togithub.com/aws/aws-cdk/issues/25995))
([67975ed](https://togithub.com/aws/aws-cdk/commit/67975edca519ead274a4fdd69d6b8c4e1e322dae)),
closes [#&#8203;25940](https://togithub.com/aws/aws-cdk/issues/25940)
- **app-mesh:** Missing port property in gRPC routers matchers
([#&#8203;25868](https://togithub.com/aws/aws-cdk/issues/25868))
([8ab920b](https://togithub.com/aws/aws-cdk/commit/8ab920b03da870741991a57754262b2285a55da7)),
closes [#&#8203;25810](https://togithub.com/aws/aws-cdk/issues/25810)
- **cloudfront:** avoid to sort TTLs when using Tokens in CachePolicy
([#&#8203;25920](https://togithub.com/aws/aws-cdk/issues/25920))
([bc80331](https://togithub.com/aws/aws-cdk/commit/bc803317468b0f414a397148baa9540c9aab35d5)),
closes [#&#8203;25795](https://togithub.com/aws/aws-cdk/issues/25795)
- **core:** prevent the error when the condition is split into groups of
10 and 1 in `Fn.conditionOr()`
([#&#8203;25708](https://togithub.com/aws/aws-cdk/issues/25708))
([c135656](https://togithub.com/aws/aws-cdk/commit/c135656bb0b6de9cce639218a83acf958f9bca4e)),
closes [#&#8203;25696](https://togithub.com/aws/aws-cdk/issues/25696)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1560136915](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1560136915)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1559887661](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1559887661)
- **ec2:** securityGroups is mandatory in fromClusterAttributes
([#&#8203;25976](https://togithub.com/aws/aws-cdk/issues/25976))
([d8f5e2d](https://togithub.com/aws/aws-cdk/commit/d8f5e2ddce00a3a53d0ddabb7085c51638480b5e)),
closes [#&#8203;11146](https://togithub.com/aws/aws-cdk/issues/11146)
- **ecr:** autoDeleteImages fails on multiple repositories
([#&#8203;25964](https://togithub.com/aws/aws-cdk/issues/25964))
([c121180](https://togithub.com/aws/aws-cdk/commit/c1211805b918f1b37168f88280d37190c4eb0f1d))
- **lambda:** corrected environment variable naming for params and
secrets extension
([#&#8203;26016](https://togithub.com/aws/aws-cdk/issues/26016))
([30596fe](https://togithub.com/aws/aws-cdk/commit/30596fe96bfba240a70e53ab64a9acbf39e92f77)),
closes [#&#8203;26011](https://togithub.com/aws/aws-cdk/issues/26011)
- **s3:** fail fast for s3 lifecycle configuration when
ExpiredObjectDeleteMarker specified with ExpirationInDays,
ExpirationDate, or TagFilters.
([#&#8203;25841](https://togithub.com/aws/aws-cdk/issues/25841))
([1a82d85](https://togithub.com/aws/aws-cdk/commit/1a82d858a7944f7df6f2eb575f17fa4be4ece4f6)),
closes [#&#8203;25824](https://togithub.com/aws/aws-cdk/issues/25824)
- **vpc:** detect subnet with TGW route as PRIVATE_WITH_EGRESS
([#&#8203;25958](https://togithub.com/aws/aws-cdk/issues/25958))
([49643d6](https://togithub.com/aws/aws-cdk/commit/49643d6c13b601627fd72ba38d25eb4ee81ffa73)),
closes [#&#8203;25626](https://togithub.com/aws/aws-cdk/issues/25626)

***

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

##### Features

- **app-staging-synthesizer:** clean up staging resources on deletion
([#&#8203;25906](https://togithub.com/aws/aws-cdk/issues/25906))
([3b14213](https://togithub.com/aws/aws-cdk/commit/3b142136524db7c1e9bff1a082b87219ea9ee1ff)),
closes [#&#8203;25722](https://togithub.com/aws/aws-cdk/issues/25722)
- **batch:** `ephemeralStorage` property on job definitions
([#&#8203;25399](https://togithub.com/aws/aws-cdk/issues/25399))
([a8768f4](https://togithub.com/aws/aws-cdk/commit/a8768f4da1bebbc4fd45b40e92ed82e868bb2a1b)),
closes [#&#8203;25393](https://togithub.com/aws/aws-cdk/issues/25393)

##### Bug Fixes

- **apprunner:** incorrect serviceName
([#&#8203;26015](https://togithub.com/aws/aws-cdk/issues/26015))
([ad89f01](https://togithub.com/aws/aws-cdk/commit/ad89f0182e218eee01b0aef84b055a96556dda59)),
closes [#&#8203;26002](https://togithub.com/aws/aws-cdk/issues/26002)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->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/cythral/brighid-commands).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to cythral/brighid-discord-adapter that referenced this issue Jun 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [Amazon.CDK.Lib](https://togithub.com/aws/aws-cdk) | nuget | minor |
`2.84.0` -> `2.85.0` |

---

### Release Notes

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

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

##### Features

- **cfnspec:** cloudformation spec v126.0.0
([#&#8203;25918](https://togithub.com/aws/aws-cdk/issues/25918))
([757fba9](https://togithub.com/aws/aws-cdk/commit/757fba9b7c71ee500446ab118cabc37037613333))
- **cfnspec:** cloudformation spec v127.0.0
([#&#8203;26009](https://togithub.com/aws/aws-cdk/issues/26009))
([4e57a8c](https://togithub.com/aws/aws-cdk/commit/4e57a8cbaa0bcd160976c4fa7d35485154109a7e))
- **core:** add option to suppress indentation in templates
([#&#8203;25892](https://togithub.com/aws/aws-cdk/issues/25892))
([b705956](https://togithub.com/aws/aws-cdk/commit/b70595686e0742691bf64ce80bd18ea26694400d)),
closes [#&#8203;18694](https://togithub.com/aws/aws-cdk/issues/18694)
[#&#8203;8712](https://togithub.com/aws/aws-cdk/issues/8712)
[#&#8203;19656](https://togithub.com/aws/aws-cdk/issues/19656)
- **ec2:** add addSecurityGroup method to launth template
([#&#8203;25697](https://togithub.com/aws/aws-cdk/issues/25697))
([28df618](https://togithub.com/aws/aws-cdk/commit/28df61866096829d2dd87e9174724764649f2524)),
closes
[/github.com/aws/aws-cdk/issues/18712#issuecomment-1026975615](https://togithub.com/aws//github.com/aws/aws-cdk/issues/18712/issues/issuecomment-1026975615)
[#&#8203;18712](https://togithub.com/aws/aws-cdk/issues/18712)
- **s3-deployment:** create `DeployTimeSubstitutedFile` to allow
substitutions in file
([#&#8203;25876](https://togithub.com/aws/aws-cdk/issues/25876))
([ca2e6a2](https://togithub.com/aws/aws-cdk/commit/ca2e6a255b20a54f93babc218abdc5102e95080a)),
closes [#&#8203;1461](https://togithub.com/aws/aws-cdk/issues/1461)
- **stepfunctions:** support string and file definitions
([#&#8203;25932](https://togithub.com/aws/aws-cdk/issues/25932))
([1cb9351](https://togithub.com/aws/aws-cdk/commit/1cb935172a2a373992167aebf0aaa72f02405d86))

##### Bug Fixes

- **cli:** deployment continues if ECR asset fails to build or publish
([#&#8203;26060](https://togithub.com/aws/aws-cdk/issues/26060))
([37caaab](https://togithub.com/aws/aws-cdk/commit/37caaabd9d28dd7bb7d0499cc8606e1a382b32fa)),
closes [#&#8203;26048](https://togithub.com/aws/aws-cdk/issues/26048)
[#&#8203;25827](https://togithub.com/aws/aws-cdk/issues/25827)
- remaining usage of node 14
([#&#8203;25995](https://togithub.com/aws/aws-cdk/issues/25995))
([67975ed](https://togithub.com/aws/aws-cdk/commit/67975edca519ead274a4fdd69d6b8c4e1e322dae)),
closes [#&#8203;25940](https://togithub.com/aws/aws-cdk/issues/25940)
- **app-mesh:** Missing port property in gRPC routers matchers
([#&#8203;25868](https://togithub.com/aws/aws-cdk/issues/25868))
([8ab920b](https://togithub.com/aws/aws-cdk/commit/8ab920b03da870741991a57754262b2285a55da7)),
closes [#&#8203;25810](https://togithub.com/aws/aws-cdk/issues/25810)
- **cloudfront:** avoid to sort TTLs when using Tokens in CachePolicy
([#&#8203;25920](https://togithub.com/aws/aws-cdk/issues/25920))
([bc80331](https://togithub.com/aws/aws-cdk/commit/bc803317468b0f414a397148baa9540c9aab35d5)),
closes [#&#8203;25795](https://togithub.com/aws/aws-cdk/issues/25795)
- **core:** prevent the error when the condition is split into groups of
10 and 1 in `Fn.conditionOr()`
([#&#8203;25708](https://togithub.com/aws/aws-cdk/issues/25708))
([c135656](https://togithub.com/aws/aws-cdk/commit/c135656bb0b6de9cce639218a83acf958f9bca4e)),
closes [#&#8203;25696](https://togithub.com/aws/aws-cdk/issues/25696)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1560136915](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1560136915)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1559887661](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1559887661)
- **ec2:** securityGroups is mandatory in fromClusterAttributes
([#&#8203;25976](https://togithub.com/aws/aws-cdk/issues/25976))
([d8f5e2d](https://togithub.com/aws/aws-cdk/commit/d8f5e2ddce00a3a53d0ddabb7085c51638480b5e)),
closes [#&#8203;11146](https://togithub.com/aws/aws-cdk/issues/11146)
- **ecr:** autoDeleteImages fails on multiple repositories
([#&#8203;25964](https://togithub.com/aws/aws-cdk/issues/25964))
([c121180](https://togithub.com/aws/aws-cdk/commit/c1211805b918f1b37168f88280d37190c4eb0f1d))
- **lambda:** corrected environment variable naming for params and
secrets extension
([#&#8203;26016](https://togithub.com/aws/aws-cdk/issues/26016))
([30596fe](https://togithub.com/aws/aws-cdk/commit/30596fe96bfba240a70e53ab64a9acbf39e92f77)),
closes [#&#8203;26011](https://togithub.com/aws/aws-cdk/issues/26011)
- **s3:** fail fast for s3 lifecycle configuration when
ExpiredObjectDeleteMarker specified with ExpirationInDays,
ExpirationDate, or TagFilters.
([#&#8203;25841](https://togithub.com/aws/aws-cdk/issues/25841))
([1a82d85](https://togithub.com/aws/aws-cdk/commit/1a82d858a7944f7df6f2eb575f17fa4be4ece4f6)),
closes [#&#8203;25824](https://togithub.com/aws/aws-cdk/issues/25824)
- **vpc:** detect subnet with TGW route as PRIVATE_WITH_EGRESS
([#&#8203;25958](https://togithub.com/aws/aws-cdk/issues/25958))
([49643d6](https://togithub.com/aws/aws-cdk/commit/49643d6c13b601627fd72ba38d25eb4ee81ffa73)),
closes [#&#8203;25626](https://togithub.com/aws/aws-cdk/issues/25626)

***

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

##### Features

- **app-staging-synthesizer:** clean up staging resources on deletion
([#&#8203;25906](https://togithub.com/aws/aws-cdk/issues/25906))
([3b14213](https://togithub.com/aws/aws-cdk/commit/3b142136524db7c1e9bff1a082b87219ea9ee1ff)),
closes [#&#8203;25722](https://togithub.com/aws/aws-cdk/issues/25722)
- **batch:** `ephemeralStorage` property on job definitions
([#&#8203;25399](https://togithub.com/aws/aws-cdk/issues/25399))
([a8768f4](https://togithub.com/aws/aws-cdk/commit/a8768f4da1bebbc4fd45b40e92ed82e868bb2a1b)),
closes [#&#8203;25393](https://togithub.com/aws/aws-cdk/issues/25393)

##### Bug Fixes

- **apprunner:** incorrect serviceName
([#&#8203;26015](https://togithub.com/aws/aws-cdk/issues/26015))
([ad89f01](https://togithub.com/aws/aws-cdk/commit/ad89f0182e218eee01b0aef84b055a96556dda59)),
closes [#&#8203;26002](https://togithub.com/aws/aws-cdk/issues/26002)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->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/cythral/brighid-discord-adapter).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
SvenKirschbaum pushed a commit to SvenKirschbaum/aws-utils that referenced this issue Jul 1, 2023
[![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 |
[![age](https://badges.renovateapi.com/packages////age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages////adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages////compatibility-slim/)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages////confidence-slim/)](https://docs.renovatebot.com/merge-confidence/)
|
| [@aws-cdk/aws-apigatewayv2-alpha](https://togithub.com/aws/aws-cdk) |
dependencies | minor | [`2.83.1-alpha.0` ->
`2.86.0-alpha.0`](https://renovatebot.com/diffs/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.83.1-alpha.0/2.86.0-alpha.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.86.0-alpha.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.86.0-alpha.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.86.0-alpha.0/compatibility-slim/2.83.1-alpha.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.86.0-alpha.0/confidence-slim/2.83.1-alpha.0)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@aws-cdk/aws-apigatewayv2-integrations-alpha](https://togithub.com/aws/aws-cdk)
| dependencies | minor | [`2.83.1-alpha.0` ->
`2.86.0-alpha.0`](https://renovatebot.com/diffs/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.83.1-alpha.0/2.86.0-alpha.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.86.0-alpha.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.86.0-alpha.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.86.0-alpha.0/compatibility-slim/2.83.1-alpha.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.86.0-alpha.0/confidence-slim/2.83.1-alpha.0)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@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 | minor | [`1.9.0` ->
`1.11.0`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2flogger/1.9.0/1.11.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.11.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.11.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.11.0/compatibility-slim/1.9.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.11.0/confidence-slim/1.9.0)](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 | minor | [`1.9.0` ->
`1.11.0`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2ftracer/1.9.0/1.11.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2ftracer/1.11.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2ftracer/1.11.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2ftracer/1.11.0/compatibility-slim/1.9.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2ftracer/1.11.0/confidence-slim/1.9.0)](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)) | dependencies |
minor | [`3.350.0` ->
`3.363.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-secrets-manager/3.350.0/3.363.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-secrets-manager/3.363.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-secrets-manager/3.363.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-secrets-manager/3.363.0/compatibility-slim/3.350.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-secrets-manager/3.363.0/confidence-slim/3.350.0)](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)) |
devDependencies | patch | [`8.10.117` ->
`8.10.119`](https://renovatebot.com/diffs/npm/@types%2faws-lambda/8.10.117/8.10.119)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2faws-lambda/8.10.119/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2faws-lambda/8.10.119/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2faws-lambda/8.10.119/compatibility-slim/8.10.117)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2faws-lambda/8.10.119/confidence-slim/8.10.117)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
devDependencies | minor | [`20.1.0` ->
`20.3.3`](https://renovatebot.com/diffs/npm/@types%2fnode/20.1.0/20.3.3)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/20.3.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/20.3.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/20.3.3/compatibility-slim/20.1.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/20.3.3/confidence-slim/20.1.0)](https://docs.renovatebot.com/merge-confidence/)
|
| [aws-cdk](https://togithub.com/aws/aws-cdk) | devDependencies | minor
| [`2.83.1` ->
`2.86.0`](https://renovatebot.com/diffs/npm/aws-cdk/2.83.1/2.86.0) |
[![age](https://badges.renovateapi.com/packages/npm/aws-cdk/2.86.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/aws-cdk/2.86.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/aws-cdk/2.86.0/compatibility-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/aws-cdk/2.86.0/confidence-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
|
| [aws-cdk-lib](https://togithub.com/aws/aws-cdk) | dependencies | minor
| [`2.83.1` ->
`2.86.0`](https://renovatebot.com/diffs/npm/aws-cdk-lib/2.83.1/2.86.0) |
[![age](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.86.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.86.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.86.0/compatibility-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.86.0/confidence-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
|
| [constructs](https://togithub.com/aws/constructs) | dependencies |
patch | [`10.2.49` ->
`10.2.65`](https://renovatebot.com/diffs/npm/constructs/10.2.49/10.2.65)
|
[![age](https://badges.renovateapi.com/packages/npm/constructs/10.2.65/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/constructs/10.2.65/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/constructs/10.2.65/compatibility-slim/10.2.49)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/constructs/10.2.65/confidence-slim/10.2.49)](https://docs.renovatebot.com/merge-confidence/)
|
| [ts-jest](https://kulshekhar.github.io/ts-jest)
([source](https://togithub.com/kulshekhar/ts-jest)) | devDependencies |
patch | [`29.1.0` ->
`29.1.1`](https://renovatebot.com/diffs/npm/ts-jest/29.1.0/29.1.1) |
[![age](https://badges.renovateapi.com/packages/npm/ts-jest/29.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/ts-jest/29.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/ts-jest/29.1.1/compatibility-slim/29.1.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/ts-jest/29.1.1/confidence-slim/29.1.0)](https://docs.renovatebot.com/merge-confidence/)
|
| [typescript](https://www.typescriptlang.org/)
([source](https://togithub.com/Microsoft/TypeScript)) | devDependencies
| patch | [`5.1.3` ->
`5.1.6`](https://renovatebot.com/diffs/npm/typescript/5.1.3/5.1.6) |
[![age](https://badges.renovateapi.com/packages/npm/typescript/5.1.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/typescript/5.1.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/typescript/5.1.6/compatibility-slim/5.1.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/typescript/5.1.6/confidence-slim/5.1.3)](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>

###
[`v1.11.0`](https://togithub.com/aws-powertools/powertools-lambda-typescript/blob/HEAD/CHANGELOG.md#&#8203;1110-httpsgithubcomaws-powertoolspowertools-lambda-typescriptcomparev1100v1110-2023-06-29)

[Compare
Source](https://togithub.com/aws-powertools/powertools-lambda-typescript/compare/v1.10.0...v1.11.0)

##### Features

- **idempotency:** preserve original error when wrapping into
`IdempotencyPersistenceLayerError`
([#&#8203;1552](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1552))
([866837d](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/866837daf34563698709612351c45769e02daf16))

###
[`v1.10.0`](https://togithub.com/aws-powertools/powertools-lambda-typescript/blob/HEAD/CHANGELOG.md#&#8203;1100-httpsgithubcomaws-powertoolspowertools-lambda-typescriptcomparev190v1100-2023-06-23)

[Compare
Source](https://togithub.com/aws-powertools/powertools-lambda-typescript/compare/v1.9.0...v1.10.0)

##### Bug Fixes

- **ci:** change how versions and aliases are inserted into
versions.json
([#&#8203;1549](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1549))
([9e1d19a](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/9e1d19a9bc89d31bef851a615860c3b01bd9d77f))
- **idempotency:** pass lambda context remaining time to save inprogress
([#&#8203;1540](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1540))
([d47c3ec](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/d47c3ec64d926d49f3799f361d54a11627d16cc1))
- **idempotency:** record validation not using hash
([#&#8203;1502](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1502))
([f475bd0](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/f475bd097b64f009c329c023a2dd7c7e9371270a))
- **idempotency:** skip persistence for optional idempotency key
([#&#8203;1507](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1507))
([b9fcef6](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/b9fcef66eb4bd9a7ad1eeac5f5db2cdbccc70c71))
- **metrics:** flush metrics when data points array reaches max size
([#&#8203;1548](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1548))
([24c247c](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/24c247c39c0ac29774ac3fcf09902916f3936e1e))
- missing quotes
([67f5f14](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/67f5f14e612a56d94923aa3b33df7d2e6b46cc06))
- missing quotes
([349e612](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/349e612e1a46646ef05b11e0478094bf7f74a5cd))
- update reference in workflow
([#&#8203;1518](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1518))
([9c75f9a](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/9c75f9a8a0b2fc4b24bbd37fdb00620d06903283))

##### Features

- **logger:** clear state when other middlewares return early
([#&#8203;1544](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1544))
([d5f3f13](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/d5f3f13ccd7aae1bbc59431741e8aaf042dd2a73))
- **metrics:** publish metrics when other middlewares return early
([#&#8203;1546](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1546))
([58b0877](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/58b087713814f1c5f56a86aa815d04372e98ebd0))
- **parameters:** review types and exports
([#&#8203;1528](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1528))
([6f96711](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/6f96711625e212898b1c227c651beba7e709c9d1))
- **tracer:** close & restore segments when other middlewares return
([#&#8203;1545](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1545))
([74ddb09](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/74ddb09a3107d9f45f34ccda1e691a9504578c2d))

</details>

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

###
[`v3.363.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33630-httpsgithubcomawsaws-sdk-js-v3comparev33620v33630-2023-06-29)

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

##### Features

- **clients:** use migrated
[@&#8203;smithy](https://togithub.com/smithy) packages
([#&#8203;4873](https://togithub.com/aws/aws-sdk-js-v3/issues/4873))
([d036e2e](https://togithub.com/aws/aws-sdk-js-v3/commit/d036e2e43cd33cfd497871f97dde907c3078b2fd))

###
[`v3.362.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33620-httpsgithubcomawsaws-sdk-js-v3comparev33610v33620-2023-06-28)

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

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

###
[`v3.360.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33600-httpsgithubcomawsaws-sdk-js-v3comparev33590v33600-2023-06-26)

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

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

###
[`v3.359.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33590-httpsgithubcomawsaws-sdk-js-v3comparev33580v33590-2023-06-23)

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

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

###
[`v3.358.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33580-httpsgithubcomawsaws-sdk-js-v3comparev33570v33580-2023-06-22)

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

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

###
[`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

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

##### Features

- **clients:** automatic blob type conversions
([#&#8203;4836](https://togithub.com/aws/aws-sdk-js-v3/issues/4836))
([60ec921](https://togithub.com/aws/aws-sdk-js-v3/commit/60ec921c879ae8363f32ebbe9e1ecd6062df1081))

###
[`v3.354.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33540-httpsgithubcomawsaws-sdk-js-v3comparev33530v33540-2023-06-16)

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

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

###
[`v3.353.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33530-httpsgithubcomawsaws-sdk-js-v3comparev33520v33530-2023-06-15)

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

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

###
[`v3.352.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-secrets-manager/CHANGELOG.md#&#8203;33520-httpsgithubcomawsaws-sdk-js-v3comparev33510v33520-2023-06-13)

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

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

</details>

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

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

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

##### Features

- **cfnspec:** cloudformation spec v128.1.0
([#&#8203;26096](https://togithub.com/aws/aws-cdk/issues/26096))
([d71c040](https://togithub.com/aws/aws-cdk/commit/d71c0407e7091a240dbecfdc910dc632ed1b7bff))

##### Bug Fixes

- **cdk-lib:** Pass lookupRoleArn to NestedStackSynthesizer
([#&#8203;26116](https://togithub.com/aws/aws-cdk/issues/26116))
([3c29223](https://togithub.com/aws/aws-cdk/commit/3c29223b178840368088b56aba2db9d2365bceed))
- **core:** network option is not being propagated to Docker
([#&#8203;26014](https://togithub.com/aws/aws-cdk/issues/26014))
([341de48](https://togithub.com/aws/aws-cdk/commit/341de48e3637953514a009715dfdeeb061aad929))
- **core:** prevent the error when the condition is split into groups of
10 and 1 in `Fn.conditionAnd()`
([#&#8203;25999](https://togithub.com/aws/aws-cdk/issues/25999))
([ee3d41e](https://togithub.com/aws/aws-cdk/commit/ee3d41e674bc6b02cabd986de92075350017209b)),
closes
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1561064092](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1561064092)
- **ecs:** potential race condition on TaskRole default policy update
with CfnService
([#&#8203;26070](https://togithub.com/aws/aws-cdk/issues/26070))
([2d9078c](https://togithub.com/aws/aws-cdk/commit/2d9078c6afc77c0ef026d74168730bff2a167a60)),
closes [#&#8203;24880](https://togithub.com/aws/aws-cdk/issues/24880)
- **ecs:** validation for task definition fails when task-level memory
is defined but container-level memory and memoryReservation are not
defined with EC2 compatibility
([#&#8203;26027](https://togithub.com/aws/aws-cdk/issues/26027))
([0e251e6](https://togithub.com/aws/aws-cdk/commit/0e251e68bad90b2dd7cb3ef48dfe025695e4ab64)),
closes [#&#8203;25275](https://togithub.com/aws/aws-cdk/issues/25275)
- **elbv2:** correct wrong timeout validation
([#&#8203;26031](https://togithub.com/aws/aws-cdk/issues/26031))
([636841c](https://togithub.com/aws/aws-cdk/commit/636841c380ccc3a6da372117cf0317f351a75cff)),
closes [#&#8203;26023](https://togithub.com/aws/aws-cdk/issues/26023)
- **stepfunctions:** nested arrays are not serialized correctly
([#&#8203;26055](https://togithub.com/aws/aws-cdk/issues/26055))
([f9d4573](https://togithub.com/aws/aws-cdk/commit/f9d45738d7b1ad0c9ad9877fe961fe063f544224)),
closes [#&#8203;26045](https://togithub.com/aws/aws-cdk/issues/26045)

***

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

##### Features

- **app-staging-synthesizer:** select different bootstrap region
([#&#8203;26129](https://togithub.com/aws/aws-cdk/issues/26129))
([2fec6a4](https://togithub.com/aws/aws-cdk/commit/2fec6a4cd09bd08b7183f1e67d5d7eb487e4ac29))
- **integ-runner:** integ-runner --watch
([#&#8203;26087](https://togithub.com/aws/aws-cdk/issues/26087))
([1fe2f09](https://togithub.com/aws/aws-cdk/commit/1fe2f095a0bc0aafb6b2dbd0cdaae79cc2e59ddd))
- **integ-tests:** new HttpApiCall method to easily make http calls
([#&#8203;26102](https://togithub.com/aws/aws-cdk/issues/26102))
([00b9c84](https://togithub.com/aws/aws-cdk/commit/00b9c84ecf17c05a4c794ba7b5bdc9d83b2fba16))

##### Bug Fixes

- **batch-alpha:** cannot import FargateComputeEnvironment with
fromFargateComputeEnvironmentArn
([#&#8203;25985](https://togithub.com/aws/aws-cdk/issues/25985))
([05810f4](https://togithub.com/aws/aws-cdk/commit/05810f44f3fa008c07c6fe39bacd2a00c52b32a0)),
closes
[40aws-cdk/aws-batch-alpha/lib/managed-compute-environment.ts#L1071](https://togithub.com/40aws-cdk/aws-batch-alpha/lib/managed-compute-environment.ts/issues/L1071)
[40aws-cdk/aws-batch-alpha/lib/managed-compute-environment.ts#L1077-L1079](https://togithub.com/40aws-cdk/aws-batch-alpha/lib/managed-compute-environment.ts/issues/L1077-L1079)
[#&#8203;25979](https://togithub.com/aws/aws-cdk/issues/25979)

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

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

##### Features

- **cfnspec:** cloudformation spec v126.0.0
([#&#8203;25918](https://togithub.com/aws/aws-cdk/issues/25918))
([757fba9](https://togithub.com/aws/aws-cdk/commit/757fba9b7c71ee500446ab118cabc37037613333))
- **cfnspec:** cloudformation spec v127.0.0
([#&#8203;26009](https://togithub.com/aws/aws-cdk/issues/26009))
([4e57a8c](https://togithub.com/aws/aws-cdk/commit/4e57a8cbaa0bcd160976c4fa7d35485154109a7e))
- **core:** add option to suppress indentation in templates
([#&#8203;25892](https://togithub.com/aws/aws-cdk/issues/25892))
([b705956](https://togithub.com/aws/aws-cdk/commit/b70595686e0742691bf64ce80bd18ea26694400d)),
closes [#&#8203;18694](https://togithub.com/aws/aws-cdk/issues/18694)
[#&#8203;8712](https://togithub.com/aws/aws-cdk/issues/8712)
[#&#8203;19656](https://togithub.com/aws/aws-cdk/issues/19656)
- **ec2:** add addSecurityGroup method to launth template
([#&#8203;25697](https://togithub.com/aws/aws-cdk/issues/25697))
([28df618](https://togithub.com/aws/aws-cdk/commit/28df61866096829d2dd87e9174724764649f2524)),
closes
[/github.com/aws/aws-cdk/issues/18712#issuecomment-1026975615](https://togithub.com/aws//github.com/aws/aws-cdk/issues/18712/issues/issuecomment-1026975615)
[#&#8203;18712](https://togithub.com/aws/aws-cdk/issues/18712)
- **s3-deployment:** create `DeployTimeSubstitutedFile` to allow
substitutions in file
([#&#8203;25876](https://togithub.com/aws/aws-cdk/issues/25876))
([ca2e6a2](https://togithub.com/aws/aws-cdk/commit/ca2e6a255b20a54f93babc218abdc5102e95080a)),
closes [#&#8203;1461](https://togithub.com/aws/aws-cdk/issues/1461)
- **stepfunctions:** support string and file definitions
([#&#8203;25932](https://togithub.com/aws/aws-cdk/issues/25932))
([1cb9351](https://togithub.com/aws/aws-cdk/commit/1cb935172a2a373992167aebf0aaa72f02405d86))

##### Bug Fixes

- **cli:** deployment continues if ECR asset fails to build or publish
([#&#8203;26060](https://togithub.com/aws/aws-cdk/issues/26060))
([37caaab](https://togithub.com/aws/aws-cdk/commit/37caaabd9d28dd7bb7d0499cc8606e1a382b32fa)),
closes [#&#8203;26048](https://togithub.com/aws/aws-cdk/issues/26048)
[#&#8203;25827](https://togithub.com/aws/aws-cdk/issues/25827)
- remaining usage of node 14
([#&#8203;25995](https://togithub.com/aws/aws-cdk/issues/25995))
([67975ed](https://togithub.com/aws/aws-cdk/commit/67975edca519ead274a4fdd69d6b8c4e1e322dae)),
closes [#&#8203;25940](https://togithub.com/aws/aws-cdk/issues/25940)
- **app-mesh:** Missing port property in gRPC routers matchers
([#&#8203;25868](https://togithub.com/aws/aws-cdk/issues/25868))
([8ab920b](https://togithub.com/aws/aws-cdk/commit/8ab920b03da870741991a57754262b2285a55da7)),
closes [#&#8203;25810](https://togithub.com/aws/aws-cdk/issues/25810)
- **cloudfront:** avoid to sort TTLs when using Tokens in CachePolicy
([#&#8203;25920](https://togithub.com/aws/aws-cdk/issues/25920))
([bc80331](https://togithub.com/aws/aws-cdk/commit/bc803317468b0f414a397148baa9540c9aab35d5)),
closes [#&#8203;25795](https://togithub.com/aws/aws-cdk/issues/25795)
- **core:** prevent the error when the condition is split into groups of
10 and 1 in `Fn.conditionOr()`
([#&#8203;25708](https://togithub.com/aws/aws-cdk/issues/25708))
([c135656](https://togithub.com/aws/aws-cdk/commit/c135656bb0b6de9cce639218a83acf958f9bca4e)),
closes [#&#8203;25696](https://togithub.com/aws/aws-cdk/issues/25696)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1560136915](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1560136915)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1559887661](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1559887661)
- **ec2:** securityGroups is mandatory in fromClusterAttributes
([#&#8203;25976](https://togithub.com/aws/aws-cdk/issues/25976))
([d8f5e2d](https://togithub.com/aws/aws-cdk/commit/d8f5e2ddce00a3a53d0ddabb7085c51638480b5e)),
closes [#&#8203;11146](https://togithub.com/aws/aws-cdk/issues/11146)
- **ecr:** autoDeleteImages fails on multiple repositories
([#&#8203;25964](https://togithub.com/aws/aws-cdk/issues/25964))
([c121180](https://togithub.com/aws/aws-cdk/commit/c1211805b918f1b37168f88280d37190c4eb0f1d))
- **lambda:** corrected environment variable naming for params and
secrets extension
([#&#8203;26016](https://togithub.com/aws/aws-cdk/issues/26016))
([30596fe](https://togithub.com/aws/aws-cdk/commit/30596fe96bfba240a70e53ab64a9acbf39e92f77)),
closes [#&#8203;26011](https://togithub.com/aws/aws-cdk/issues/26011)
- **s3:** fail fast for s3 lifecycle configuration when
ExpiredObjectDeleteMarker specified with ExpirationInDays,
ExpirationDate, or TagFilters.
([#&#8203;25841](https://togithub.com/aws/aws-cdk/issues/25841))
([1a82d85](https://togithub.com/aws/aws-cdk/commit/1a82d858a7944f7df6f2eb575f17fa4be4ece4f6)),
closes [#&#8203;25824](https://togithub.com/aws/aws-cdk/issues/25824)
- **vpc:** detect subnet with TGW route as PRIVATE_WITH_EGRESS
([#&#8203;25958](https://togithub.com/aws/aws-cdk/issues/25958))
([49643d6](https://togithub.com/aws/aws-cdk/commit/49643d6c13b601627fd72ba38d25eb4ee81ffa73)),
closes [#&#8203;25626](https://togithub.com/aws/aws-cdk/issues/25626)

***

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

##### Features

- **app-staging-synthesizer:** clean up staging resources on deletion
([#&#8203;25906](https://togithub.com/aws/aws-cdk/issues/25906))
([3b14213](https://togithub.com/aws/aws-cdk/commit/3b142136524db7c1e9bff1a082b87219ea9ee1ff)),
closes [#&#8203;25722](https://togithub.com/aws/aws-cdk/issues/25722)
- **batch:** `ephemeralStorage` property on job definitions
([#&#8203;25399](https://togithub.com/aws/aws-cdk/issues/25399))
([a8768f4](https://togithub.com/aws/aws-cdk/commit/a8768f4da1bebbc4fd45b40e92ed82e868bb2a1b)),
closes [#&#8203;25393](https://togithub.com/aws/aws-cdk/issues/25393)

##### Bug Fixes

- **apprunner:** incorrect serviceName
([#&#8203;26015](https://togithub.com/aws/aws-cdk/issues/26015))
([ad89f01](https://togithub.com/aws/aws-cdk/commit/ad89f0182e218eee01b0aef84b055a96556dda59)),
closes [#&#8203;26002](https://togithub.com/aws/aws-cdk/issues/26002)

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

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

##### Features

- **backup:** add recovery point tags param to backup plan rule
([#&#8203;25863](https://togithub.com/aws/aws-cdk/issues/25863))
([445543c](https://togithub.com/aws/aws-cdk/commit/445543cb8e23475d4eb6f33e1f45485b43e26403)),
closes [#&#8203;25671](https://togithub.com/aws/aws-cdk/issues/25671)
- **ecr:** repo.grantPush
([#&#8203;25845](https://togithub.com/aws/aws-cdk/issues/25845))
([01f0d92](https://togithub.com/aws/aws-cdk/commit/01f0d92ddd0065994c8b9c7868215ac62fd9311e))
- **eks:** enable ipv6 for eks cluster
([#&#8203;25819](https://togithub.com/aws/aws-cdk/issues/25819))
([75d1853](https://togithub.com/aws/aws-cdk/commit/75d18531ca7a31345d10b7d04ea07e0104115863))
- **events-targets:** support assignPublicIp flag to EcsTask
([#&#8203;25660](https://togithub.com/aws/aws-cdk/issues/25660))
([37f1eb0](https://togithub.com/aws/aws-cdk/commit/37f1eb020d505b2c1821cf47e3a5aefb2470aeea)),
closes [#&#8203;9233](https://togithub.com/aws/aws-cdk/issues/9233)
- **lambda:** provide support for AWS Parameters and Secrets Extension
for Lambda
([#&#8203;25725](https://togithub.com/aws/aws-cdk/issues/25725))
([7a74513](https://togithub.com/aws/aws-cdk/commit/7a74513672b5a016101791b26476ec00e707a252)),
closes [#&#8203;23187](https://togithub.com/aws/aws-cdk/issues/23187)
- **lambda:** provide support for AWS Parameters and Secrets Extension
for Lambda
([#&#8203;25928](https://togithub.com/aws/aws-cdk/issues/25928))
([4a3903f](https://togithub.com/aws/aws-cdk/commit/4a3903fc59ae513601b1892bdf61a935a75bf6da)),
closes [#&#8203;23187](https://togithub.com/aws/aws-cdk/issues/23187)
- **s3:** support s3 bucket double encryption mode aws:kms:dsse (…
([#&#8203;25961](https://togithub.com/aws/aws-cdk/issues/25961))
([df263a6](https://togithub.com/aws/aws-cdk/commit/df263a62ffbd48bcfa15234bdff06c9246aa8676))

##### Bug Fixes

- **autoscaling:** AutoScalingGroup maxCapacity defaults to minCapacity
when using Token
([#&#8203;25922](https://togithub.com/aws/aws-cdk/issues/25922))
([3bd973a](https://togithub.com/aws/aws-cdk/commit/3bd973aa064c44477ee85d51cfbc23ca19f4211a)),
closes [#&#8203;25920](https://togithub.com/aws/aws-cdk/issues/25920)
[/github.com/aws/aws-cdk/issues/25795#issuecomment-1571580559](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25795/issues/issuecomment-1571580559)
- **cli:** assets shared between stages lead to an error
([#&#8203;25907](https://togithub.com/aws/aws-cdk/issues/25907))
([3196cbc](https://togithub.com/aws/aws-cdk/commit/3196cbc8d09c54e634ad54487b88e5ac962909f3))
- **codebuild:** add possibility to specify `BUILD_GENERAL1_SMALL`
compute type with Linux GPU build image
([#&#8203;25880](https://togithub.com/aws/aws-cdk/issues/25880))
([2d74a46](https://togithub.com/aws/aws-cdk/commit/2d74a4695992b21d1adc2ccbe6874e1128e996db)),
closes [#&#8203;25857](https://togithub.com/aws/aws-cdk/issues/25857)
- **core:** Add stage prefix to stack name shortening process
([#&#8203;25359](https://togithub.com/aws/aws-cdk/issues/25359))
([79c58ed](https://togithub.com/aws/aws-cdk/commit/79c58ed36cfee613d17779630e5044732be16b62))
- **ecs:** remove accidental duplication of cloudmap namespaces with
service connect
([#&#8203;25891](https://togithub.com/aws/aws-cdk/issues/25891))
([4f60293](https://togithub.com/aws/aws-cdk/commit/4f6029372be147fad951cc88f6ce4d7fc2367a48)),
closes [#&#8203;25616](https://togithub.com/aws/aws-cdk/issues/25616)
[#&#8203;25616](https://togithub.com/aws/aws-cdk/issues/25616)
- **eks:** imported clusters can't deploy manifests
([#&#8203;25908](https://togithub.com/aws/aws-cdk/issues/25908))
([23a84d3](https://togithub.com/aws/aws-cdk/commit/23a84d37413555f872e7dfcf3a8e1a60e6e0476c))
- **iam:** Modify addManagedPolicy to compare ARN instead of instance
reference
([#&#8203;25529](https://togithub.com/aws/aws-cdk/issues/25529))
([5cc2b0b](https://togithub.com/aws/aws-cdk/commit/5cc2b0ba03d1f57f6d33dfb1ad838107874a074d))
- **stepfunctions-tasks:** incorrect policy generated for athena
startqueryexecution task
([#&#8203;25911](https://togithub.com/aws/aws-cdk/issues/25911))
([86e1b4c](https://togithub.com/aws/aws-cdk/commit/86e1b4ca0fd192d6215fc78edf27a3969c6baef6)),
closes [#&#8203;22314](https://togithub.com/aws/aws-cdk/issues/22314)
[#&#8203;25875](https://togithub.com/aws/aws-cdk/issues/25875)

***

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

##### Bug Fixes

- **batch:** computeEnvironmentName is not set in
FargateComputeEnvironment
([#&#8203;25944](https://togithub.com/aws/aws-cdk/issues/25944))
([fb9f559](https://togithub.com/aws/aws-cdk/commit/fb9f559ba0c40f5df5dc6d2a856d88826913eed4))

</details>

<details>
<summary>aws/constructs (constructs)</summary>

###
[`v10.2.65`](https://togithub.com/aws/constructs/releases/tag/v10.2.65)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.64...v10.2.65)

#####
[10.2.65](https://togithub.com/aws/constructs/compare/v10.2.64...v10.2.65)
(2023-07-01)

###
[`v10.2.64`](https://togithub.com/aws/constructs/releases/tag/v10.2.64)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.63...v10.2.64)

#####
[10.2.64](https://togithub.com/aws/constructs/compare/v10.2.63...v10.2.64)
(2023-06-30)

###
[`v10.2.63`](https://togithub.com/aws/constructs/releases/tag/v10.2.63)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.62...v10.2.63)

#####
[10.2.63](https://togithub.com/aws/constructs/compare/v10.2.62...v10.2.63)
(2023-06-29)

###
[`v10.2.62`](https://togithub.com/aws/constructs/releases/tag/v10.2.62)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.61...v10.2.62)

#####
[10.2.62](https://togithub.com/aws/constructs/compare/v10.2.61...v10.2.62)
(2023-06-28)

###
[`v10.2.61`](https://togithub.com/aws/constructs/releases/tag/v10.2.61)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.60...v10.2.61)

#####
[10.2.61](https://togithub.com/aws/constructs/compare/v10.2.60...v10.2.61)
(2023-06-27)

###
[`v10.2.60`](https://togithub.com/aws/constructs/releases/tag/v10.2.60)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.59...v10.2.60)

#####
[10.2.60](https://togithub.com/aws/constructs/compare/v10.2.59...v10.2.60)
(2023-06-26)

###
[`v10.2.59`](https://togithub.com/aws/constructs/releases/tag/v10.2.59)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.58...v10.2.59)

#####
[10.2.59](https://togithub.com/aws/constructs/compare/v10.2.58...v10.2.59)
(2023-06-25)

###
[`v10.2.58`](https://togithub.com/aws/constructs/releases/tag/v10.2.58)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.57...v10.2.58)

#####
[10.2.58](https://togithub.com/aws/constructs/compare/v10.2.57...v10.2.58)
(2023-06-24)

###
[`v10.2.57`](https://togithub.com/aws/constructs/releases/tag/v10.2.57)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.56...v10.2.57)

#####
[10.2.57](https://togithub.com/aws/constructs/compare/v10.2.56...v10.2.57)
(2023-06-23)

###
[`v10.2.56`](https://togithub.com/aws/constructs/releases/tag/v10.2.56)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.55...v10.2.56)

#####
[10.2.56](https://togithub.com/aws/constructs/compare/v10.2.55...v10.2.56)
(2023-06-22)

###
[`v10.2.55`](https://togithub.com/aws/constructs/releases/tag/v10.2.55)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.54...v10.2.55)

#####
[10.2.55](https://togithub.com/aws/constructs/compare/v10.2.54...v10.2.55)
(2023-06-20)

###
[`v10.2.54`](https://togithub.com/aws/constructs/releases/tag/v10.2.54)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.53...v10.2.54)

#####
[10.2.54](https://togithub.com/aws/constructs/compare/v10.2.53...v10.2.54)
(2023-06-19)

###
[`v10.2.53`](https://togithub.com/aws/constructs/releases/tag/v10.2.53)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.52...v10.2.53)

#####
[10.2.53](https://togithub.com/aws/constructs/compare/v10.2.52...v10.2.53)
(2023-06-19)

###
[`v10.2.52`](https://togithub.com/aws/constructs/releases/tag/v10.2.52)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.51...v10.2.52)

#####
[10.2.52](https://togithub.com/aws/constructs/compare/v10.2.51...v10.2.52)
(2023-06-13)

###
[`v10.2.51`](https://togithub.com/aws/constructs/releases/tag/v10.2.51)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.50...v10.2.51)

#####
[10.2.51](https://togithub.com/aws/constructs/compare/v10.2.50...v10.2.51)
(2023-06-13)

###
[`v10.2.50`](https://togithub.com/aws/constructs/releases/tag/v10.2.50)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.49...v10.2.50)

#####
[10.2.50](https://togithub.com/aws/constructs/compare/v10.2.49...v10.2.50)
(2023-06-12)

</details>

<details>
<summary>kulshekhar/ts-jest (ts-jest)</summary>

###
[`v29.1.1`](https://togithub.com/kulshekhar/ts-jest/blob/HEAD/CHANGELOG.md#&#8203;2911-httpsgithubcomkulshekharts-jestcomparev2910v2911-2023-06-23)

[Compare
Source](https://togithub.com/kulshekhar/ts-jest/compare/v29.1.0...v29.1.1)

##### Security Fixes

-   bump `semver` to `7.5.3`

</details>

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

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

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

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

For the complete list of fixed issues, check out the

- [fixed issues query for Typescript v5.1.0
(Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+).
- [fixed issues query for Typescript v5.1.1
(RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+).
- [fixed issues query for Typescript v5.1.2
(Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+).
- [fixed issues query for Typescript v5.1.3
(Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+).
- (5.1.4 [intentionally
skipped](https://togithub.com/microsoft/TypeScript/issues/53031#issuecomment-1610038922))
- [fixed issues query for Typescript v5.1.5
(Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+).

Downloads are available on:

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on sunday" (UTC),
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.

---

- [ ] <!-- rebase-check -->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).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjE0NC4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
yoav-lavi pushed a commit to grafbase/grafbase that referenced this issue Sep 5, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`18.16.17` ->
`18.16.18`](https://renovatebot.com/diffs/npm/@types%2fnode/18.16.17/18.16.18)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.18/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.18/compatibility-slim/18.16.17)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.18/confidence-slim/18.16.17)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint)
| [`5.59.9` ->
`5.60.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.59.9/5.60.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/compatibility-slim/5.59.9)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/confidence-slim/5.59.9)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint)
| [`5.59.11` ->
`5.60.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.59.11/5.60.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/compatibility-slim/5.59.11)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.0/confidence-slim/5.59.11)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint)
| [`5.59.9` ->
`5.60.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.59.9/5.60.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/compatibility-slim/5.59.9)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/confidence-slim/5.59.9)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint)
| [`5.59.11` ->
`5.60.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.59.11/5.60.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/compatibility-slim/5.59.11)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.0/confidence-slim/5.59.11)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [aws-cdk](https://togithub.com/aws/aws-cdk) | [`2.83.1` ->
`2.85.0`](https://renovatebot.com/diffs/npm/aws-cdk/2.83.1/2.85.0) |
[![age](https://badges.renovateapi.com/packages/npm/aws-cdk/2.85.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/aws-cdk/2.85.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/aws-cdk/2.85.0/compatibility-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/aws-cdk/2.85.0/confidence-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [aws-cdk-lib](https://togithub.com/aws/aws-cdk) | [`2.83.1` ->
`2.85.0`](https://renovatebot.com/diffs/npm/aws-cdk-lib/2.83.1/2.85.0) |
[![age](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.85.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.85.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.85.0/compatibility-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/aws-cdk-lib/2.85.0/confidence-slim/2.83.1)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [constructs](https://togithub.com/aws/constructs) | [`10.2.50` ->
`10.2.60`](https://renovatebot.com/diffs/npm/constructs/10.2.50/10.2.60)
|
[![age](https://badges.renovateapi.com/packages/npm/constructs/10.2.60/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/constructs/10.2.60/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/constructs/10.2.60/compatibility-slim/10.2.50)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/constructs/10.2.60/confidence-slim/10.2.50)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [cynic](https://cynic-rs.dev)
([source](https://togithub.com/obmarg/cynic)) | `3.1.0` -> `3.2.0` |
[![age](https://badges.renovateapi.com/packages/crate/cynic/3.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/crate/cynic/3.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/crate/cynic/3.2.0/compatibility-slim/3.1.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/crate/cynic/3.2.0/confidence-slim/3.1.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [cynic-codegen](https://cynic-rs.dev)
([source](https://togithub.com/obmarg/cynic)) | `3.1.0` -> `3.2.0` |
[![age](https://badges.renovateapi.com/packages/crate/cynic-codegen/3.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/crate/cynic-codegen/3.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/crate/cynic-codegen/3.2.0/compatibility-slim/3.1.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/crate/cynic-codegen/3.2.0/confidence-slim/3.1.0)](https://docs.renovatebot.com/merge-confidence/)
| build-dependencies | minor |
| [cynic-introspection](https://cynic-rs.dev)
([source](https://togithub.com/obmarg/cynic)) | `3.1.0` -> `3.2.0` |
[![age](https://badges.renovateapi.com/packages/crate/cynic-introspection/3.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/crate/cynic-introspection/3.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/crate/cynic-introspection/3.2.0/compatibility-slim/3.1.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/crate/cynic-introspection/3.2.0/confidence-slim/3.1.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [dotenv](https://togithub.com/motdotla/dotenv) | [`16.1.4` ->
`16.3.1`](https://renovatebot.com/diffs/npm/dotenv/16.1.4/16.3.1) |
[![age](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/compatibility-slim/16.1.4)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/confidence-slim/16.1.4)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [esbuild](https://togithub.com/evanw/esbuild) | [`0.18.1` ->
`0.18.9`](https://renovatebot.com/diffs/npm/esbuild/0.18.1/0.18.9) |
[![age](https://badges.renovateapi.com/packages/npm/esbuild/0.18.9/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/esbuild/0.18.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/esbuild/0.18.9/compatibility-slim/0.18.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/esbuild/0.18.9/confidence-slim/0.18.1)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.42.0` ->
`8.43.0`](https://renovatebot.com/diffs/npm/eslint/8.42.0/8.43.0) |
[![age](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/compatibility-slim/8.42.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/confidence-slim/8.42.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [hashicorp/vault-action](https://togithub.com/hashicorp/vault-action)
| `v2.6.0` -> `v2.7.0` |
[![age](https://badges.renovateapi.com/packages/github-tags/hashicorp%2fvault-action/v2.7.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/github-tags/hashicorp%2fvault-action/v2.7.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/github-tags/hashicorp%2fvault-action/v2.7.0/compatibility-slim/v2.6.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/github-tags/hashicorp%2fvault-action/v2.7.0/confidence-slim/v2.6.0)](https://docs.renovatebot.com/merge-confidence/)
| action | minor |
| [itertools](https://togithub.com/rust-itertools/itertools) | `0.10` ->
`0.11` |
[![age](https://badges.renovateapi.com/packages/crate/itertools/0.11.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/crate/itertools/0.11.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/crate/itertools/0.11.0/compatibility-slim/0.10.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/crate/itertools/0.11.0/confidence-slim/0.10.0)](https://docs.renovatebot.com/merge-confidence/)
| workspace.dependencies | minor |
| [lz4_flex](https://togithub.com/pseitz/lz4_flex) | `0.10` -> `0.11` |
[![age](https://badges.renovateapi.com/packages/crate/lz4_flex/0.11.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/crate/lz4_flex/0.11.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/crate/lz4_flex/0.11.1/compatibility-slim/0.10.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/crate/lz4_flex/0.11.1/confidence-slim/0.10.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| public.ecr.aws/lambda/nodejs | `ad9d4e1` -> `715a39e` |
[![age](https://badges.renovateapi.com/packages/docker/public.ecr.aws%2flambda%2fnodejs//age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/docker/public.ecr.aws%2flambda%2fnodejs//adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/docker/public.ecr.aws%2flambda%2fnodejs//compatibility-slim/18)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/docker/public.ecr.aws%2flambda%2fnodejs//confidence-slim/18)](https://docs.renovatebot.com/merge-confidence/)
| final | digest |
| [sentry-core](https://sentry.io/welcome/)
([source](https://togithub.com/getsentry/sentry-rust)) | `<=0.27` ->
`<=0.31` |
[![age](https://badges.renovateapi.com/packages/crate/sentry-core/0.31.5/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/crate/sentry-core/0.31.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/crate/sentry-core/0.31.5/compatibility-slim/0.27.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/crate/sentry-core/0.31.5/confidence-slim/0.27.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [tantivy](https://togithub.com/quickwit-oss/tantivy) | `0.19` ->
`0.20` |
[![age](https://badges.renovateapi.com/packages/crate/tantivy/0.20.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/crate/tantivy/0.20.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/crate/tantivy/0.20.2/compatibility-slim/0.19.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/crate/tantivy/0.20.2/confidence-slim/0.19.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |

---

### Release Notes

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

###
[`v5.60.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#&#8203;5600-httpsgithubcomtypescript-eslinttypescript-eslintcomparev55911v5600-2023-06-19)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.11...v5.60.0)

##### Features

- **eslint-plugin:** \[restrict-plus-operands] add allow\* options
([#&#8203;6161](https://togithub.com/typescript-eslint/typescript-eslint/issues/6161))
([def09f8](https://togithub.com/typescript-eslint/typescript-eslint/commit/def09f88cdb4a85cebb8619b45931f7e2c88dfc0))

####
[5.59.11](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.10...v5.59.11)
(2023-06-12)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.10](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.9...v5.59.10)
(2023-06-12)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.9](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.8...v5.59.9)
(2023-06-05)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.8](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.7...v5.59.8)
(2023-05-29)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.7](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.6...v5.59.7)
(2023-05-22)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.6](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.5...v5.59.6)
(2023-05-15)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.5](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.4...v5.59.5)
(2023-05-08)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.4](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.3...v5.59.4)
(2023-05-08)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.3](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.2...v5.59.3)
(2023-05-08)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.2](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.1...v5.59.2)
(2023-05-01)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

####
[5.59.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.0...v5.59.1)
(2023-04-24)

##### Bug Fixes

- **eslint-plugin:** \[prefer-regexp-exec] skip malformed regexes
([#&#8203;6935](https://togithub.com/typescript-eslint/typescript-eslint/issues/6935))
([05ed60e](https://togithub.com/typescript-eslint/typescript-eslint/commit/05ed60e25f1de9d1bb83d56c81a349130960bec8))
- **eslint-plugin:** \[unified-signatures] no parameters function
([#&#8203;6940](https://togithub.com/typescript-eslint/typescript-eslint/issues/6940))
([2970861](https://togithub.com/typescript-eslint/typescript-eslint/commit/297086154acc568a0ae8eb41c8977b7a7ba4e0ed))

###
[`v5.59.11`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#&#8203;55911-httpsgithubcomtypescript-eslinttypescript-eslintcomparev55910v55911-2023-06-12)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.10...v5.59.11)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

###
[`v5.59.10`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#&#8203;55910-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5599v55910-2023-06-12)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.9...v5.59.10)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

</details>

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

###
[`v5.60.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#&#8203;5600-httpsgithubcomtypescript-eslinttypescript-eslintcomparev55911v5600-2023-06-19)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.11...v5.60.0)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.11](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.10...v5.59.11)
(2023-06-12)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.10](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.9...v5.59.10)
(2023-06-12)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.9](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.8...v5.59.9)
(2023-06-05)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.8](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.7...v5.59.8)
(2023-05-29)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.7](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.6...v5.59.7)
(2023-05-22)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.6](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.5...v5.59.6)
(2023-05-15)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.5](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.4...v5.59.5)
(2023-05-08)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.4](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.3...v5.59.4)
(2023-05-08)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.3](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.2...v5.59.3)
(2023-05-08)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.2](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.1...v5.59.2)
(2023-05-01)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

####
[5.59.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.0...v5.59.1)
(2023-04-24)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

###
[`v5.59.11`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#&#8203;55911-httpsgithubcomtypescript-eslinttypescript-eslintcomparev55910v55911-2023-06-12)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.10...v5.59.11)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

###
[`v5.59.10`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#&#8203;55910-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5599v55910-2023-06-12)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.9...v5.59.10)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

</details>

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

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

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

##### Features

- **cfnspec:** cloudformation spec v126.0.0
([#&#8203;25918](https://togithub.com/aws/aws-cdk/issues/25918))
([757fba9](https://togithub.com/aws/aws-cdk/commit/757fba9b7c71ee500446ab118cabc37037613333))
- **cfnspec:** cloudformation spec v127.0.0
([#&#8203;26009](https://togithub.com/aws/aws-cdk/issues/26009))
([4e57a8c](https://togithub.com/aws/aws-cdk/commit/4e57a8cbaa0bcd160976c4fa7d35485154109a7e))
- **core:** add option to suppress indentation in templates
([#&#8203;25892](https://togithub.com/aws/aws-cdk/issues/25892))
([b705956](https://togithub.com/aws/aws-cdk/commit/b70595686e0742691bf64ce80bd18ea26694400d)),
closes [#&#8203;18694](https://togithub.com/aws/aws-cdk/issues/18694)
[#&#8203;8712](https://togithub.com/aws/aws-cdk/issues/8712)
[#&#8203;19656](https://togithub.com/aws/aws-cdk/issues/19656)
- **ec2:** add addSecurityGroup method to launth template
([#&#8203;25697](https://togithub.com/aws/aws-cdk/issues/25697))
([28df618](https://togithub.com/aws/aws-cdk/commit/28df61866096829d2dd87e9174724764649f2524)),
closes
[/github.com/aws/aws-cdk/issues/18712#issuecomment-1026975615](https://togithub.com/aws//github.com/aws/aws-cdk/issues/18712/issues/issuecomment-1026975615)
[#&#8203;18712](https://togithub.com/aws/aws-cdk/issues/18712)
- **s3-deployment:** create `DeployTimeSubstitutedFile` to allow
substitutions in file
([#&#8203;25876](https://togithub.com/aws/aws-cdk/issues/25876))
([ca2e6a2](https://togithub.com/aws/aws-cdk/commit/ca2e6a255b20a54f93babc218abdc5102e95080a)),
closes [#&#8203;1461](https://togithub.com/aws/aws-cdk/issues/1461)
- **stepfunctions:** support string and file definitions
([#&#8203;25932](https://togithub.com/aws/aws-cdk/issues/25932))
([1cb9351](https://togithub.com/aws/aws-cdk/commit/1cb935172a2a373992167aebf0aaa72f02405d86))

##### Bug Fixes

- **cli:** deployment continues if ECR asset fails to build or publish
([#&#8203;26060](https://togithub.com/aws/aws-cdk/issues/26060))
([37caaab](https://togithub.com/aws/aws-cdk/commit/37caaabd9d28dd7bb7d0499cc8606e1a382b32fa)),
closes [#&#8203;26048](https://togithub.com/aws/aws-cdk/issues/26048)
[#&#8203;25827](https://togithub.com/aws/aws-cdk/issues/25827)
- remaining usage of node 14
([#&#8203;25995](https://togithub.com/aws/aws-cdk/issues/25995))
([67975ed](https://togithub.com/aws/aws-cdk/commit/67975edca519ead274a4fdd69d6b8c4e1e322dae)),
closes [#&#8203;25940](https://togithub.com/aws/aws-cdk/issues/25940)
- **app-mesh:** Missing port property in gRPC routers matchers
([#&#8203;25868](https://togithub.com/aws/aws-cdk/issues/25868))
([8ab920b](https://togithub.com/aws/aws-cdk/commit/8ab920b03da870741991a57754262b2285a55da7)),
closes [#&#8203;25810](https://togithub.com/aws/aws-cdk/issues/25810)
- **cloudfront:** avoid to sort TTLs when using Tokens in CachePolicy
([#&#8203;25920](https://togithub.com/aws/aws-cdk/issues/25920))
([bc80331](https://togithub.com/aws/aws-cdk/commit/bc803317468b0f414a397148baa9540c9aab35d5)),
closes [#&#8203;25795](https://togithub.com/aws/aws-cdk/issues/25795)
- **core:** prevent the error when the condition is split into groups of
10 and 1 in `Fn.conditionOr()`
([#&#8203;25708](https://togithub.com/aws/aws-cdk/issues/25708))
([c135656](https://togithub.com/aws/aws-cdk/commit/c135656bb0b6de9cce639218a83acf958f9bca4e)),
closes [#&#8203;25696](https://togithub.com/aws/aws-cdk/issues/25696)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1560136915](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1560136915)
[/github.com/aws/aws-cdk/issues/25696#issuecomment-1559887661](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25696/issues/issuecomment-1559887661)
- **ec2:** securityGroups is mandatory in fromClusterAttributes
([#&#8203;25976](https://togithub.com/aws/aws-cdk/issues/25976))
([d8f5e2d](https://togithub.com/aws/aws-cdk/commit/d8f5e2ddce00a3a53d0ddabb7085c51638480b5e)),
closes [#&#8203;11146](https://togithub.com/aws/aws-cdk/issues/11146)
- **ecr:** autoDeleteImages fails on multiple repositories
([#&#8203;25964](https://togithub.com/aws/aws-cdk/issues/25964))
([c121180](https://togithub.com/aws/aws-cdk/commit/c1211805b918f1b37168f88280d37190c4eb0f1d))
- **lambda:** corrected environment variable naming for params and
secrets extension
([#&#8203;26016](https://togithub.com/aws/aws-cdk/issues/26016))
([30596fe](https://togithub.com/aws/aws-cdk/commit/30596fe96bfba240a70e53ab64a9acbf39e92f77)),
closes [#&#8203;26011](https://togithub.com/aws/aws-cdk/issues/26011)
- **s3:** fail fast for s3 lifecycle configuration when
ExpiredObjectDeleteMarker specified with ExpirationInDays,
ExpirationDate, or TagFilters.
([#&#8203;25841](https://togithub.com/aws/aws-cdk/issues/25841))
([1a82d85](https://togithub.com/aws/aws-cdk/commit/1a82d858a7944f7df6f2eb575f17fa4be4ece4f6)),
closes [#&#8203;25824](https://togithub.com/aws/aws-cdk/issues/25824)
- **vpc:** detect subnet with TGW route as PRIVATE_WITH_EGRESS
([#&#8203;25958](https://togithub.com/aws/aws-cdk/issues/25958))
([49643d6](https://togithub.com/aws/aws-cdk/commit/49643d6c13b601627fd72ba38d25eb4ee81ffa73)),
closes [#&#8203;25626](https://togithub.com/aws/aws-cdk/issues/25626)

***

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

##### Features

- **app-staging-synthesizer:** clean up staging resources on deletion
([#&#8203;25906](https://togithub.com/aws/aws-cdk/issues/25906))
([3b14213](https://togithub.com/aws/aws-cdk/commit/3b142136524db7c1e9bff1a082b87219ea9ee1ff)),
closes [#&#8203;25722](https://togithub.com/aws/aws-cdk/issues/25722)
- **batch:** `ephemeralStorage` property on job definitions
([#&#8203;25399](https://togithub.com/aws/aws-cdk/issues/25399))
([a8768f4](https://togithub.com/aws/aws-cdk/commit/a8768f4da1bebbc4fd45b40e92ed82e868bb2a1b)),
closes [#&#8203;25393](https://togithub.com/aws/aws-cdk/issues/25393)

##### Bug Fixes

- **apprunner:** incorrect serviceName
([#&#8203;26015](https://togithub.com/aws/aws-cdk/issues/26015))
([ad89f01](https://togithub.com/aws/aws-cdk/commit/ad89f0182e218eee01b0aef84b055a96556dda59)),
closes [#&#8203;26002](https://togithub.com/aws/aws-cdk/issues/26002)

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

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

##### Features

- **backup:** add recovery point tags param to backup plan rule
([#&#8203;25863](https://togithub.com/aws/aws-cdk/issues/25863))
([445543c](https://togithub.com/aws/aws-cdk/commit/445543cb8e23475d4eb6f33e1f45485b43e26403)),
closes [#&#8203;25671](https://togithub.com/aws/aws-cdk/issues/25671)
- **ecr:** repo.grantPush
([#&#8203;25845](https://togithub.com/aws/aws-cdk/issues/25845))
([01f0d92](https://togithub.com/aws/aws-cdk/commit/01f0d92ddd0065994c8b9c7868215ac62fd9311e))
- **eks:** enable ipv6 for eks cluster
([#&#8203;25819](https://togithub.com/aws/aws-cdk/issues/25819))
([75d1853](https://togithub.com/aws/aws-cdk/commit/75d18531ca7a31345d10b7d04ea07e0104115863))
- **events-targets:** support assignPublicIp flag to EcsTask
([#&#8203;25660](https://togithub.com/aws/aws-cdk/issues/25660))
([37f1eb0](https://togithub.com/aws/aws-cdk/commit/37f1eb020d505b2c1821cf47e3a5aefb2470aeea)),
closes [#&#8203;9233](https://togithub.com/aws/aws-cdk/issues/9233)
- **lambda:** provide support for AWS Parameters and Secrets Extension
for Lambda
([#&#8203;25725](https://togithub.com/aws/aws-cdk/issues/25725))
([7a74513](https://togithub.com/aws/aws-cdk/commit/7a74513672b5a016101791b26476ec00e707a252)),
closes [#&#8203;23187](https://togithub.com/aws/aws-cdk/issues/23187)
- **lambda:** provide support for AWS Parameters and Secrets Extension
for Lambda
([#&#8203;25928](https://togithub.com/aws/aws-cdk/issues/25928))
([4a3903f](https://togithub.com/aws/aws-cdk/commit/4a3903fc59ae513601b1892bdf61a935a75bf6da)),
closes [#&#8203;23187](https://togithub.com/aws/aws-cdk/issues/23187)
- **s3:** support s3 bucket double encryption mode aws:kms:dsse (…
([#&#8203;25961](https://togithub.com/aws/aws-cdk/issues/25961))
([df263a6](https://togithub.com/aws/aws-cdk/commit/df263a62ffbd48bcfa15234bdff06c9246aa8676))

##### Bug Fixes

- **autoscaling:** AutoScalingGroup maxCapacity defaults to minCapacity
when using Token
([#&#8203;25922](https://togithub.com/aws/aws-cdk/issues/25922))
([3bd973a](https://togithub.com/aws/aws-cdk/commit/3bd973aa064c44477ee85d51cfbc23ca19f4211a)),
closes [#&#8203;25920](https://togithub.com/aws/aws-cdk/issues/25920)
[/github.com/aws/aws-cdk/issues/25795#issuecomment-1571580559](https://togithub.com/aws//github.com/aws/aws-cdk/issues/25795/issues/issuecomment-1571580559)
- **cli:** assets shared between stages lead to an error
([#&#8203;25907](https://togithub.com/aws/aws-cdk/issues/25907))
([3196cbc](https://togithub.com/aws/aws-cdk/commit/3196cbc8d09c54e634ad54487b88e5ac962909f3))
- **codebuild:** add possibility to specify `BUILD_GENERAL1_SMALL`
compute type with Linux GPU build image
([#&#8203;25880](https://togithub.com/aws/aws-cdk/issues/25880))
([2d74a46](https://togithub.com/aws/aws-cdk/commit/2d74a4695992b21d1adc2ccbe6874e1128e996db)),
closes [#&#8203;25857](https://togithub.com/aws/aws-cdk/issues/25857)
- **core:** Add stage prefix to stack name shortening process
([#&#8203;25359](https://togithub.com/aws/aws-cdk/issues/25359))
([79c58ed](https://togithub.com/aws/aws-cdk/commit/79c58ed36cfee613d17779630e5044732be16b62))
- **ecs:** remove accidental duplication of cloudmap namespaces with
service connect
([#&#8203;25891](https://togithub.com/aws/aws-cdk/issues/25891))
([4f60293](https://togithub.com/aws/aws-cdk/commit/4f6029372be147fad951cc88f6ce4d7fc2367a48)),
closes [#&#8203;25616](https://togithub.com/aws/aws-cdk/issues/25616)
[#&#8203;25616](https://togithub.com/aws/aws-cdk/issues/25616)
- **eks:** imported clusters can't deploy manifests
([#&#8203;25908](https://togithub.com/aws/aws-cdk/issues/25908))
([23a84d3](https://togithub.com/aws/aws-cdk/commit/23a84d37413555f872e7dfcf3a8e1a60e6e0476c))
- **iam:** Modify addManagedPolicy to compare ARN instead of instance
reference
([#&#8203;25529](https://togithub.com/aws/aws-cdk/issues/25529))
([5cc2b0b](https://togithub.com/aws/aws-cdk/commit/5cc2b0ba03d1f57f6d33dfb1ad838107874a074d))
- **stepfunctions-tasks:** incorrect policy generated for athena
startqueryexecution task
([#&#8203;25911](https://togithub.com/aws/aws-cdk/issues/25911))
([86e1b4c](https://togithub.com/aws/aws-cdk/commit/86e1b4ca0fd192d6215fc78edf27a3969c6baef6)),
closes [#&#8203;22314](https://togithub.com/aws/aws-cdk/issues/22314)
[#&#8203;25875](https://togithub.com/aws/aws-cdk/issues/25875)

***

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

##### Bug Fixes

- **batch:** computeEnvironmentName is not set in
FargateComputeEnvironment
([#&#8203;25944](https://togithub.com/aws/aws-cdk/issues/25944))
([fb9f559](https://togithub.com/aws/aws-cdk/commit/fb9f559ba0c40f5df5dc6d2a856d88826913eed4))

</details>

<details>
<summary>aws/constructs (constructs)</summary>

###
[`v10.2.60`](https://togithub.com/aws/constructs/releases/tag/v10.2.60)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.59...v10.2.60)

#####
[10.2.60](https://togithub.com/aws/constructs/compare/v10.2.59...v10.2.60)
(2023-06-26)

###
[`v10.2.59`](https://togithub.com/aws/constructs/releases/tag/v10.2.59)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.58...v10.2.59)

#####
[10.2.59](https://togithub.com/aws/constructs/compare/v10.2.58...v10.2.59)
(2023-06-25)

###
[`v10.2.58`](https://togithub.com/aws/constructs/releases/tag/v10.2.58)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.57...v10.2.58)

#####
[10.2.58](https://togithub.com/aws/constructs/compare/v10.2.57...v10.2.58)
(2023-06-24)

###
[`v10.2.57`](https://togithub.com/aws/constructs/releases/tag/v10.2.57)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.56...v10.2.57)

#####
[10.2.57](https://togithub.com/aws/constructs/compare/v10.2.56...v10.2.57)
(2023-06-23)

###
[`v10.2.56`](https://togithub.com/aws/constructs/releases/tag/v10.2.56)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.55...v10.2.56)

#####
[10.2.56](https://togithub.com/aws/constructs/compare/v10.2.55...v10.2.56)
(2023-06-22)

###
[`v10.2.55`](https://togithub.com/aws/constructs/releases/tag/v10.2.55)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.54...v10.2.55)

#####
[10.2.55](https://togithub.com/aws/constructs/compare/v10.2.54...v10.2.55)
(2023-06-20)

###
[`v10.2.54`](https://togithub.com/aws/constructs/releases/tag/v10.2.54)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.53...v10.2.54)

#####
[10.2.54](https://togithub.com/aws/constructs/compare/v10.2.53...v10.2.54)
(2023-06-19)

###
[`v10.2.53`](https://togithub.com/aws/constructs/releases/tag/v10.2.53)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.52...v10.2.53)

#####
[10.2.53](https://togithub.com/aws/constructs/compare/v10.2.52...v10.2.53)
(2023-06-19)

###
[`v10.2.52`](https://togithub.com/aws/constructs/releases/tag/v10.2.52)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.51...v10.2.52)

#####
[10.2.52](https://togithub.com/aws/constructs/compare/v10.2.51...v10.2.52)
(2023-06-13)

###
[`v10.2.51`](https://togithub.com/aws/constructs/releases/tag/v10.2.51)

[Compare
Source](https://togithub.com/aws/constructs/compare/v10.2.50...v10.2.51)

#####
[10.2.51](https://togithub.com/aws/constructs/compare/v10.2.50...v10.2.51)
(2023-06-13)

</details>

<details>
<summary>obmarg/cynic (cynic)</summary>

###
[`v3.2.0`](https://togithub.com/obmarg/cynic/blob/HEAD/CHANGELOG.md#v320---2023-06-25)

[Compare
Source](https://togithub.com/obmarg/cynic/compare/v3.1.1...v3.2.0)

##### New Features

- Added support for introspecting the `specifiedByUrl` field of scalars
on
    servers supporting GraphQL 2021
-   `cynic-introspection` can now output SDL
-   Added `CapabilitiesQuery` to `cynic-introspection`, which can detect
    which version of the GraphQL specification a server supports.
- `QueryFragment` now allows users to specify features for parts of the
query,
allowing the same query to be used on servers with differing
capabilities.
- Added `cynic-cli`, a CLI for cynic that can introspect remote servers.

###
[`v3.1.1`](https://togithub.com/obmarg/cynic/blob/HEAD/CHANGELOG.md#v311---2023-06-22)

[Compare
Source](https://togithub.com/obmarg/cynic/compare/v3.1.0...v3.1.1)

##### Bug Fixes

- Fixed an issue where `InlineFragments` fallbacks would fail to decode
if the
    data contained anything other than just the `__typename`.
-   Inline fragment variants containing smart pointers should now decode
    correctly.

</details>

<details>
<summary>motdotla/dotenv (dotenv)</summary>

###
[`v16.3.1`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1631-httpsgithubcommotdotladotenvcomparev1630v1631-2023-06-17)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.3.0...v16.3.1)

##### Added

- Add missing type definitions for `processEnv` and `DOTENV_KEY`
options. [#&#8203;756](https://togithub.com/motdotla/dotenv/pull/756)

###
[`v16.3.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1630-httpsgithubcommotdotladotenvcomparev1620v1630-2023-06-16)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.2.0...v16.3.0)

##### Added

- Optionally pass `DOTENV_KEY` to options rather than relying on
`process.env.DOTENV_KEY`. Defaults to `process.env.DOTENV_KEY`
[#&#8203;754](https://togithub.com/motdotla/dotenv/pull/754)

###
[`v16.2.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1620-httpsgithubcommotdotladotenvcomparev1614v1620-2023-06-15)

[Compare
Source](https://togithub.com/motdotla/dotenv/compare/v16.1.4...v16.2.0)

##### Added

- Optionally write to your own target object rather than `process.env`.
Defaults to `process.env`.
[#&#8203;753](https://togithub.com/motdotla/dotenv/pull/753)
- Add import type URL to types file
[#&#8203;751](https://togithub.com/motdotla/dotenv/pull/751)

</details>

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

###
[`v0.18.9`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;0189)

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

-   Fix `await using` declarations inside `async` generator functions

I forgot about the new `await using` declarations when implementing
lowering for `async` generator functions in the previous release. This
change fixes the transformation of `await using` declarations when they
are inside lowered `async` generator functions:

    ```js
    // Original code
    async function* foo() {
      await using x = await y
    }

    // Old output (with --supported:async-generator=false)
    function foo() {
      return __asyncGenerator(this, null, function* () {
        await using x = yield new __await(y);
      });
    }

    // New output (with --supported:async-generator=false)
    function foo() {
      return __asyncGenerator(this, null, function* () {
        var _stack = [];
        try {
          const x = __using(_stack, yield new __await(y), true);
        } catch (_) {
          var _error = _, _hasError = true;
        } finally {
          var _promise = __callDispose(_stack, _error, _hasError);
          _promise && (yield new __await(_promise));
        }
      });
    }
    ```

- Insert some prefixed CSS properties when appropriate
([#&#8203;3122](https://togithub.com/evanw/esbuild/issues/3122))

With this release, esbuild will now insert prefixed CSS properties in
certain cases when the `target` setting includes browsers that require a
certain prefix. This is currently done for the following properties:

    -   `appearance: *;` => `-webkit-appearance: *; -moz-appearance: *;`
    -   `backdrop-filter: *;` => `-webkit-backdrop-filter: *;`
    -   `background-clip: text` => `-webkit-background-clip: text;`
    -   `box-decoration-break: *;` => `-webkit-box-decoration-break: *;`
    -   `clip-path: *;` => `-webkit-clip-path: *;`
    -   `font-kerning: *;` => `-webkit-font-kerning: *;`
    -   `hyphens: *;` => `-webkit-hyphens: *;`
    -   `initial-letter: *;` => `-webkit-initial-letter: *;`
    -   `mask-image: *;` => `-webkit-mask-image: *;`
    -   `mask-origin: *;` => `-webkit-mask-origin: *;`
    -   `mask-position: *;` => `-webkit-mask-position: *;`
    -   `mask-repeat: *;` => `-webkit-mask-repeat: *;`
    -   `mask-size: *;` => `-webkit-mask-size: *;`
    -   `position: sticky;` => `position: -webkit-sticky;`
    -   `print-color-adjust: *;` => `-webkit-print-color-adjust: *;`
    -   `tab-size: *;` => `-moz-tab-size: *; -o-tab-size: *;`
- `text-decoration-color: *;` => `-webkit-text-decoration-color: *;
-moz-text-decoration-color: *;`
- `text-decoration-line: *;` => `-webkit-text-decoration-line: *;
-moz-text-decoration-line: *;`
    -   `text-decoration-skip: *;` => `-webkit-text-decoration-skip: *;`
    -   `text-emphasis-color: *;` => `-webkit-text-emphasis-color: *;`
- `text-emphasis-position: *;` => `-webkit-text-emphasis-position: *;`
    -   `text-emphasis-style: *;` => `-webkit-text-emphasis-style: *;`
    -   `text-orientation: *;` => `-webkit-text-orientation: *;`
- `text-size-adjust: *;` => `-webkit-text-size-adjust: *;
-ms-text-size-adjust: *;`
- `user-select: *;` => `-webkit-user-select: *; -moz-user-select: *;
-ms-user-select: *;`

    Here is an example:

    ```css
    /* Original code */
    div {
      mask-image: url(x.png);
    }

    /* Old output (with --target=chrome99) */
    div {
      mask-image: url(x.png);
    }

    /* New output (with --target=chrome99) */
    div {
      -webkit-mask-image: url(x.png);
      mask-image: url(x.png);
    }
    ```

Browser compatibility data was sourced from the tables on
https://caniuse.com. Support for more CSS properties can be added in the
future as appropriate.

- Fix an obscure identifier minification bug
([#&#8203;2809](https://togithub.com/evanw/esbuild/issues/2809))

Function declarations in nested scopes behave differently depending on
whether or not `"use strict"` is present. To avoid generating code that
behaves differently depending on whether strict mode is enabled or not,
esbuild transforms nested function declarations into variable
declarations. However, there was a bug where the generated variable name
was not being recorded as declared internally, which meant that it
wasn't being renamed correctly by the minifier and could cause a name
collision. This bug has been fixed:

    ```js
    // Original code
    const n = ''
    for (let i of [0,1]) {
      function f () {}
    }

    // Old output (with --minify-identifiers --format=esm)
    const f = "";
    for (let o of [0, 1]) {
      let n = function() {
      };
      var f = n;
    }

    // New output (with --minify-identifiers --format=esm)
    const f = "";
    for (let o of [0, 1]) {
      let n = function() {
      };
      var t = n;
    }
    ```

- Fix a bug in esbuild's compatibility table script
([#&#8203;3179](https://togithub.com/evanw/esbuild/pull/3179))

Setting esbuild's `target` to a specific JavaScript engine tells esbuild
to use the JavaScript syntax feature compatibility data from
https://kangax.github.io/compat-table/es6/ for that engine to determine
which syntax features to allow. However, esbuild's script that builds
this internal compatibility table had a bug that incorrectly ignores
tests for engines that still have outstanding implementation bugs which
were never fixed. This change fixes this bug with the script.

The only case where this changed the information in esbuild's internal
compatibility table is that the `hermes` target is marked as no longer
supporting destructuring. This is because there is a failing
destructuring-related test for Hermes on
https://kangax.github.io/compat-table/es6/. If you want to use
destructuring with Hermes anyway, you can pass
`--supported:destructuring=true` to esbuild to override the `hermes`
target and force esbuild to accept this syntax.

This fix was contributed by
[@&#8203;ArrayZoneYour](https://togithub.com/ArrayZoneYour).

###
[`v0.18.8`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;0188)

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

- Implement transforming `async` generator functions
([#&#8203;2780](https://togithub.com/evanw/esbuild/issues/2780))

With this release, esbuild will now transform `async` generator
functions into normal generator functions when the configured target
environment doesn't support them. These functions behave similar to
normal generator functions except that they use the
`Symbol.asyncIterator` interface instead of the `Symbol.iterator`
interface and the iteration methods return promises. Here's an example
(helper functions are omitted):

    ```js
    // Original code
    async function* foo() {
      yield Promise.resolve(1)
      await new Promise(r => setTimeout(r, 100))
      yield *[Promise.resolve(2)]
    }
    async function bar() {
      for await (const x of foo()) {
        console.log(x)
      }
    }
    bar()

    // New output (with --target=es6)
    function foo() {
      return __asyncGenerator(this, null, function* () {
        yield Promise.resolve(1);
        yield new __await(new Promise((r) => setTimeout(r, 100)));
        yield* __yieldStar([Promise.resolve(2)]);
      });
    }
    function bar() {
      return __async(this, null, function* () {
        try {
for (var iter = __forAwait(foo()), more, temp, error; more = !(temp =
yield iter.next()).done; more = false) {
            const x = temp.value;
            console.log(x);
          }
        } catch (temp) {
          error = [temp];
        } finally {
          try {
            more && (temp = iter.return) && (yield temp.call(iter));
          } finally {
            if (error)
              throw error[0];
          }
        }
      });
    }
    bar();
    ```

This is an older feature that was added to JavaScript in ES2018 but I
didn't implement the transformation then because it's a rarely-used
feature. Note that esbuild already added support for transforming `for
await` loops (the other part of the [asynchronous iteration
proposal](https://togithub.com/tc39/proposal-async-iteration)) a year
ago, so support for asynchronous iteration should now be complete.

I have never used this feature myself and code that uses this feature is
hard to come by, so this transformation has not yet been tested on
real-world code. If you do write code that uses this feature, please let
me know if esbuild's `async` generator transformation doesn't work with
your code.

###
[`v0.18.7`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;0187)

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

- Add support for `using` declarations in TypeScript 5.2+
([#&#8203;3191](https://togithub.com/evanw/esbuild/issues/3191))

TypeScript 5.2 (due to be released in August of 2023) will introduce
`using` declarations, which will allow you to automatically dispose of
the declared resources when leaving the current scope. You can read the
[TypeScript PR for this
feature](https://togithub.com/microsoft/TypeScript/pull/54505) for more
information. This release of esbuild adds support for transforming this
syntax to target environments without support for `using` declarations
(which is currently all targets other than `esnext`). Here's an example
(helper functions are omitted):

    ```js
    // Original code
    class Foo {
      [Symbol.dispose]() {
        console.log('cleanup')
      }
    }
    using foo = new Foo;
    foo.bar();

    // New output (with --target=es6)
    var _stack = [];
    try {
      var Foo = class {
        [Symbol.dispose]() {
          console.log("cleanup");
        }
      };
      var foo = __using(_stack, new Foo());
      foo.bar();
    } catch (_) {
      var _error = _, _hasError = true;
    } finally {
      __callDispose(_stack, _error, _hasError);
    }
    ```

The injected helper functions ensure that the method named
`Symbol.dispose` is called on `new Foo` when control exits the scope.
Note that as with all new JavaScript APIs, you'll need to polyfill
`Symbol.dispose` if it's not present before you use it. This is not
something that esbuild does for you because esbuild only handles syntax,
not APIs. Polyfilling it can be done with something like this:

    ```js
    Symbol.dispose ||= Symbol('Symbol.dispose')
    ```

This feature also introduces `await using` declarations which are like
`using` declarations but they call `await` on the disposal method (not
on the initializer). Here's an example (helper functions are omitted):

    ```js
    // Original code
    class Foo {
      async [Symbol.asyncDispose]() {
        await new Promise(done => {
          setTimeout(done, 1000)
        })
        console.log('cleanup')
      }
    }
    await using foo = new Foo;
    foo.bar();

    // New output (with --target=es2022)
    var _stack = [];
    try {
      var Foo = class {
        async [Symbol.asyncDispose]() {
          await new Promise((done) => {
            setTimeout(done, 1e3);
          });
          console.log("cleanup");
        }
      };
      var foo = __using(_stack, new Foo(), true);
      foo.bar();
    } catch (_) {
      var _error = _, _hasError = true;
    } finally {
      var _promise = __callDispose(_stack, _error, _hasError);
      _promise && await _promise;
    }
    ```

The injected helper functions ensure that the method named
`Symbol.asyncDispose` is called on `new Foo` when control exits the
scope, and that the returned promise is awaited. Similarly to
`Symbol.dispose`, you'll also need to polyfill `Symbol.asyncDispose`
before you use it.

- Add a `--line-limit=` flag to limit line length
([#&#8203;3170](https://togithub.com/evanw/esbuild/issues/3170))

Long lines are common in minified code. However, many tools and text
editors can't handle long lines. This release introduces the
`--line-limit=` flag to tell esbuild to wrap lines longer than the
provided number of bytes. For example, `--line-limit=80` tells esbuild
to insert a newline soon after a given line reaches 80 bytes in length.
This setting applies to both JavaScript and CSS, and works even when
minification is disabled. Note that turning this setting on will make
your files bigger, as the extra newlines take up additional space in the
file (even after gzip compression).

###
[`v0.18.6`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;0186)

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

- Fix tree-shaking of classes with decorators
([#&#8203;3164](https://togithub.com/evanw/esbuild/issues/3164))

This release fixes a bug where esbuild incorrectly allowed tree-shaking
on classes with decorators. Each decorator is a function call, so
classes with decorators must never be tree-shaken. This bug was a
regression that was unintentionally introduced in version 0.18.2 by the
change that enabled tree-shaking of lowered private fields. Previously
decorators were always lowered, and esbuild always considered the
automatically-generated decorator code to be a side effect. But this is
no longer the case now that esbuild analyzes side effects using the AST
before lowering takes place. This bug was fixed by considering any
decorator a side effect.

- Fix a minification bug involving function expressions
([#&#8203;3125](https://togithub.com/evanw/esbuild/issues/3125))

When minification is enabled, esbuild does limited inlining of `const`
symbols at the top of a scope. This release fixes a bug where inlineable
symbols were incorrectly removed assuming that they were inlined. They
may not be inlined in cases where they were referenced by earlier
constants in the body of a function expression. The declarations
involved in these edge cases are now kept instead of being removed:

    ```js
    // Original code
    {
      const fn = () => foo
      const foo = 123
      console.log(fn)
    }

    // Old output (with --minify-syntax)
    console.log((() => foo)());

    // New output (with --minify-syntax)
    {
      const fn = () => foo, foo = 123;
      console.log(fn);
    }
    ```

###
[`v0.18.5`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;0185)

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

- Implement auto accessors
([#&#8203;3009](https://togithub.com/evanw/esbuild/issues/3009))

This release implements the new auto-accessor syntax from the upcoming
[JavaScript decorators
proposal](https://togithub.com/tc39/proposal-decorators). The
auto-accessor syntax looks like this:

    ```js
    class Foo {
      accessor foo;
      static accessor bar;
    }
    new Foo().foo = Foo.bar;
    ```

This syntax is not yet a part of JavaScript but it was [added to
TypeScript in version
4.9](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#auto-accessors-in-classes).
More information about this feature can be found in
[microsoft/TypeScript#&#8203;49705](https://togithub.com/microsoft/TypeScript/pull/49705).
Auto-accessors will be transformed if the target is set to something
other than `esnext`:

    ```js
    // Output (with --target=esnext)
    class Foo {
      accessor foo;
      static accessor bar;
    }
    new Foo().foo = Foo.bar;

    // Output (with --target=es2022)
    class Foo {
      #foo;
      get foo() {
        return this.#foo;
      }
      set foo(_) {
        this.#foo = _;
      }
      static #bar;
      static get bar() {
        return this.#bar;
      }
      static set bar(_) {
        this.#bar = _;
      }
    }
    new Foo().foo = Foo.bar;

    // Output (with --target=es2021)
    var _foo, _bar;
    class Foo {
      constructor() {
        __privateAdd(this, _foo, void 0);
      }
      get foo() {
        return __privateGet(this, _foo);
      }
      set foo(_) {
        __privateSet(this, _foo, _);
      }
      static get bar() {
        return __privateGet(this, _bar);
      }
      static set bar(_) {
        __privateSet(this, _bar, _);
      }
    }
    _foo = new WeakMap();
    _bar = new WeakMap();
    __privateAdd(Foo, _bar, void 0);
    new Foo().foo = Foo.bar;
    ```

You can also now use auto-accessors with esbuild's TypeScript
experimental decorator transformation, which should behave the same as
decorating the underlying getter/setter pair.

**Please keep in mind that this syntax is not yet part of JavaScript.**
This release enables auto-accessors in `.js` files with the expectation
that it will be a part of JavaScript soon. However, esbuild may change
or remove this feature in the future if JavaScript ends up changing or
removing this feature. Use this feature with caution for now.

- Pass through JavaScript decorators
([#&#8203;104](https://togithub.com/evanw/esbuild/issues/104))

In this release, esbuild now parses decorators from the upcoming
[JavaScript decorators
proposal](https://togithub.com/tc39/proposal-decorators) and passes them
through to the output unmodified (as long as the language target is set
to `esnext`). Transforming JavaScript decorators to environments that
don't support them has not been implemented yet. The only decorator
transform that esbuild currently implements is still the TypeScript
experimental decorator transform, which only works in `.ts` files and
which requires `"experimentalDecorators": true` in your `tsconfig.json`
file.

- Static fields with assign semantics now use static blocks if possible

Setting `useDefineForClassFields` to false in TypeScript requires
rewriting class fields to assignment statements. Previously this was
done by removing the field from the class body and adding an assignment
statement after the class declaration. However, this also caused any
private fields to also be lowered by necessity (in case a field
initializer uses a private symbol, either directly or indirectly). This
release changes this transform to use an inline static block if it's
supported, which avoids needing to lower private fields in this
scenario:

    ```js
    // Original code
    class Test {
      static #foo = 123
      static bar = this.#foo
    }

    // Old output (with useDefineForClassFields=false

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
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.

---

- [ ] <!-- rebase-check -->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/grafbase/api).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNDEuMyIsInVwZGF0ZWRJblZlciI6IjM1LjE0MS4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jakub Wieczorek <jakub@grafbase.com>
@teemuniiranen
Copy link

Be aware that changes to connection object are not reflected to already deployed resources: #18712

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/aws-ec2 Related to Amazon Elastic Compute Cloud effort/small Small work item – less than a day of effort feature-request A feature should be added or improved. p2
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants