Skip to content

Commit b7660ef

Browse files
authored
2 parents 731eb40 + fe24cd6 commit b7660ef

File tree

669 files changed

+227635
-63274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

669 files changed

+227635
-63274
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@v3
47+
uses: github/codeql-action/init@v4
4848
with:
4949
languages: ${{ matrix.language }}
5050
build-mode: ${{ matrix.build-mode }}
@@ -73,6 +73,6 @@ jobs:
7373
exit 1
7474
7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@v3
76+
uses: github/codeql-action/analyze@v4
7777
with:
7878
category: "/language:${{matrix.language}}"

.github/workflows/github-merit-badger.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ jobs:
1818
thresholds: '[0,3,6,13,25,50]'
1919
badge-type: 'achievement'
2020
ignore-usernames: '[rix0rrr,iliapolo,otaviomacedo,kaizencc,TheRealAmazonKendra,mrgrain,pahud,kellertk,ashishdhingra,khushail,moelasmar,paulhcsun,GavinZZ,xazhao,gracelu0,shikha372,godwingrs22,bergjaak,IanKonlog,Leo10Gama,samson-keung,scorbiere,jiayiwang7,saiyush,5d,iankhou,QuantumNeuralCoder,SimonCMoore,Y-JayKim,ykethan,astiwana,maharajhaider,aws-cdk-automation,dependabot[bot],mergify[bot],aemada-aws,ozelalisen,abogical,alinko-aws,vishaalmehrishi,alvazjor,kumsmrit,kumvprat,leonmk-aws,matboros,gasolima,abidhasan-aws,9pace]'
21+
ignore-teams: 'aws/aws-cdk-team'
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
name: Integration Test deployment
2+
3+
permissions:
4+
id-token: write # This is required for requesting the OIDC JWT ID token
5+
6+
on:
7+
workflow_dispatch: {}
8+
merge_group: {}
9+
pull_request_target:
10+
branches:
11+
- main
12+
paths:
13+
- '**.js.snapshot**'
14+
15+
# In each PR, cancel any previous deployment integration test in progress for that PR
16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.pull_request.number || github.run_id }}
18+
cancel-in-progress: true
19+
20+
jobs:
21+
integration_test_deployment:
22+
runs-on: codebuild-aws-cdk-github-actions-deployment-integ-runner-${{ github.run_id }}-${{ github.run_attempt }}
23+
environment: deployment-integ-test # Do not change or remove this without discussing with Appsec
24+
if: contains(github.event.pull_request.labels.*.name, 'pr/needs-integration-tests-deployment ')
25+
name: 'Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)'
26+
27+
env:
28+
PR_BUILD: true
29+
30+
steps:
31+
- name: Checkout BASE
32+
uses: actions/checkout@v5
33+
with:
34+
ref: ${{ github.event.pull_request.base.sha }}
35+
fetch-depth: 0
36+
path: base
37+
38+
- name: Checkout HEAD
39+
uses: actions/checkout@v5
40+
with:
41+
ref: ${{ github.event.pull_request.head.sha }}
42+
fetch-depth: 0
43+
path: head
44+
45+
- name: Configure AWS credentials
46+
uses: aws-actions/configure-aws-credentials@v5
47+
with:
48+
role-to-assume: ${{ vars.CDK_ATMOSPHERE_OIDC_ROLE }}
49+
role-session-name: run-tests@aws-cdk-deployment-integ
50+
aws-region: us-east-1
51+
52+
- name: Setup Node.js
53+
uses: actions/setup-node@v5
54+
with:
55+
node-version: "lts/*"
56+
cache: "yarn"
57+
cache-dependency-path: |
58+
base/yarn.lock
59+
head/yarn.lock
60+
61+
- name: Set up Docker
62+
uses: docker/setup-buildx-action@v3
63+
64+
- name: Load Docker images
65+
id: docker-cache
66+
uses: actions/cache/restore@v4
67+
with:
68+
path: |
69+
~/.docker-images.tar
70+
key: docker-cache-${{ runner.os }}
71+
72+
- name: Restore Docker images
73+
if: ${{ steps.docker-cache.outputs.cache-hit }}
74+
run: docker image load --input ~/.docker-images.tar
75+
76+
- name: Cache build artifacts
77+
uses: actions/cache@v4
78+
with:
79+
path: |
80+
~/.s3buildcache
81+
key: s3buildcache-${{ runner.os }}
82+
83+
#Increases vm.max_map_count for memory intensive jobs
84+
- name: Configure system settings for
85+
run: |
86+
(command -v sysctl || sudo apt-get update && sudo apt-get install -y procps) && \
87+
sudo sysctl -w vm.max_map_count=2251954
88+
89+
- name: Install dependencies for integration-test-deployment (BASE)
90+
working-directory: base
91+
run: yarn --cwd tools/@aws-cdk/integration-test-deployment install
92+
93+
- name: Build deployment-integ (BASE)
94+
working-directory: base
95+
run: yarn --cwd tools/@aws-cdk/integration-test-deployment build
96+
97+
- name: Install dependencies for Integration Tests (HEAD)
98+
working-directory: head
99+
run: yarn install
100+
101+
- name: Build Integration Tests (HEAD)
102+
working-directory: head
103+
run: npx lerna run build --scope=@aws-cdk-testing/framework-integ
104+
105+
- name: Run integration tests from HEAD using integration-test-deployment script from BASE
106+
run: yarn --cwd ../base/tools/@aws-cdk/integration-test-deployment/ integration-test-deployment
107+
working-directory: head
108+
env:
109+
CDK_ATMOSPHERE_ENDPOINT: ${{ vars.CDK_ATMOSPHERE_ENDPOINT }}
110+
CDK_ATMOSPHERE_POOL: ${{ vars.CDK_ATMOSPHERE_POOL}}
111+
TARGET_BRANCH_COMMIT: ${{ github.event.pull_request.base.sha }}
112+
SOURCE_BRANCH_COMMIT: ${{ github.event.pull_request.head.sha }}
113+
114+
- name: Export Docker images
115+
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
116+
run: docker image save --output ~/.docker-images.tar $(docker image list --format '{{ if ne .Repository "<none>" }}{{ .Repository }}{{ if ne .Tag "<none>" }}:{{ .Tag }}{{ end }}{{ else }}{{ .ID }}{{ end }}')
117+
118+
- name: Cache Docker images
119+
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
120+
uses: actions/cache/save@v4
121+
with:
122+
path: |
123+
~/.docker-images.tar
124+
key: docker-cache-${{ runner.os }}

.github/workflows/repo-metrics-monthly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
SEARCH_QUERY: 'repo:aws/aws-cdk is:issue created:${{ env.last_month }} -reason:"not planned"'
3737

3838
- name: Create report for issues
39-
uses: peter-evans/create-issue-from-file@v5
39+
uses: peter-evans/create-issue-from-file@v6
4040
with:
4141
title: Monthly issue metrics report
4242
token: ${{ secrets.GITHUB_TOKEN }}
@@ -50,7 +50,7 @@ jobs:
5050
SEARCH_QUERY: 'repo:aws/aws-cdk is:pr created:${{ env.last_month }} -is:draft'
5151

5252
- name: Create report for PRs
53-
uses: peter-evans/create-issue-from-file@v5
53+
uses: peter-evans/create-issue-from-file@v6
5454
with:
5555
title: Monthly PR metrics report
5656
token: ${{ secrets.GITHUB_TOKEN }}

.mergify.yml

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ queue_rules:
88
batch_size: 1
99
update_method: merge
1010
merge_method: merge
11-
conditions:
11+
queue_conditions:
1212
- -title~=(WIP|wip)
1313
- -label~=(blocked|do-not-merge)
1414
# Only if no-squash is set
@@ -21,6 +21,9 @@ queue_rules:
2121
- "#changes-requested-reviews-by=0"
2222
- check-success=validate-pr
2323
- check-success=build
24+
- or:
25+
- "-label~=pr/needs-integration-tests-deployment"
26+
- "check-success=integration_test_deployment"
2427
commit_message_template: |-
2528
{{ title }} (#{{ number }})
2629
{{ body }}
@@ -30,7 +33,7 @@ queue_rules:
3033
batch_size: 1
3134
update_method: merge
3235
merge_method: squash
33-
conditions:
36+
queue_conditions:
3437
- base!=release
3538
- -title~=(WIP|wip)
3639
- -label~=(blocked|do-not-merge|no-squash)
@@ -43,6 +46,9 @@ queue_rules:
4346
- "#changes-requested-reviews-by=0"
4447
- check-success=validate-pr
4548
- check-success=build
49+
- or:
50+
- "-label~=pr/needs-integration-tests-deployment"
51+
- "check-success=integration_test_deployment"
4652
commit_message_template: |-
4753
{{ title }} (#{{ number }})
4854
{{ body }}
@@ -52,7 +58,7 @@ queue_rules:
5258
batch_size: 1
5359
update_method: merge
5460
merge_method: squash
55-
conditions:
61+
queue_conditions:
5662
- base!=release
5763
- -title~=(WIP|wip)
5864
- -label~=(blocked|do-not-merge|no-squash|priority-pr)
@@ -64,6 +70,9 @@ queue_rules:
6470
- "#changes-requested-reviews-by=0"
6571
- check-success=validate-pr
6672
- check-success=build
73+
- or:
74+
- "-label~=pr/needs-integration-tests-deployment"
75+
- "check-success=integration_test_deployment"
6776
commit_message_template: |-
6877
{{ title }} (#{{ number }})
6978
{{ body }}
@@ -96,6 +105,9 @@ pull_request_rules:
96105
- "#changes-requested-reviews-by=0"
97106
- check-success=validate-pr
98107
- check-success=build
108+
- or:
109+
- "-label~=pr/needs-integration-tests-deployment"
110+
- "check-success=integration_test_deployment"
99111
- name: automatic priority merge
100112
actions:
101113
comment:
@@ -117,6 +129,9 @@ pull_request_rules:
117129
- "#changes-requested-reviews-by=0"
118130
- check-success=validate-pr
119131
- check-success=build
132+
- or:
133+
- "-label~=pr/needs-integration-tests-deployment"
134+
- "check-success=integration_test_deployment"
120135
- name: automatic merge (2+ approvers)
121136
actions:
122137
comment:
@@ -138,6 +153,9 @@ pull_request_rules:
138153
- "#changes-requested-reviews-by=0"
139154
- check-success=validate-pr
140155
- check-success=build
156+
- or:
157+
- "-label~=pr/needs-integration-tests-deployment"
158+
- "check-success=integration_test_deployment"
141159
- name: automatic merge (no-squash)
142160
actions:
143161
comment:
@@ -159,6 +177,9 @@ pull_request_rules:
159177
- "#changes-requested-reviews-by=0"
160178
- check-success=validate-pr
161179
- check-success=build
180+
- or:
181+
- "-label~=pr/needs-integration-tests-deployment"
182+
- "check-success=integration_test_deployment"
162183
- name: remove stale reviews
163184
actions:
164185
dismiss_reviews:
@@ -199,6 +220,9 @@ pull_request_rules:
199220
- "#changes-requested-reviews-by=0"
200221
- check-success=validate-pr
201222
- check-success=build
223+
- or:
224+
- "-label~=pr/needs-integration-tests-deployment"
225+
- "check-success=integration_test_deployment"
202226
priority_rules:
203227
- name: priority for queue `default-merge`
204228
conditions:

CHANGELOG.v2.alpha.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.220.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.219.0-alpha.0...v2.220.0-alpha.0) (2025-10-14)
6+
7+
8+
### Bug Fixes
9+
10+
* **amplify-alpha:** handle empty customResponseHeaders array ([#35700](https://github.com/aws/aws-cdk/issues/35700)) ([57f9068](https://github.com/aws/aws-cdk/commit/57f90687d56ebe2cdc3fd5cff1dc35329c502ee4)), closes [#35693](https://github.com/aws/aws-cdk/issues/35693)
511
## [2.219.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.218.0-alpha.0...v2.219.0-alpha.0) (2025-10-01)
612

713
## [2.218.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.217.0-alpha.0...v2.218.0-alpha.0) (2025-09-29)

CHANGELOG.v2.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,48 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.220.0](https://github.com/aws/aws-cdk/compare/v2.219.0...v2.220.0) (2025-10-14)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* **
11+
L1 resources are automatically generated from public CloudFormation Resource Schemas. They are built to closely reflect the real state of CloudFormation. Sometimes these updates can contain changes that are incompatible with previous types, but more accurately reflect reality. In this release we have changed:
12+
13+
- **aws-neptune**: AWS::Neptune::EventSubscription: SnsTopicArn property is now required.
14+
- **aws-neptune**: AWS::Neptune::EventSubscription: Id attribute removed.
15+
- **aws-servicecatalog**: AWS::ServiceCatalog::PortfolioShare: Id attribute removed.
16+
- **aws-lex**: AWS::Lex::ResourcePolicy: ResourceArn property is now immutable.
17+
18+
Co-authored-by: aws-cdk-automation <aws-cdk-automation@users.noreply.github.com>
19+
* **
20+
### Features
21+
22+
* **batch:** ec2 Managed Compute Environment support default instance classes, deprecate `useOptimalInstanceClasses` ([#35537](https://github.com/aws/aws-cdk/issues/35537)) ([9d59dd8](https://github.com/aws/aws-cdk/commit/9d59dd8676bdfbba6f562d82411a527e1f7b6296)), closes [#35515](https://github.com/aws/aws-cdk/issues/35515)
23+
* **kinesis:** shard-level metrics for stream ([#34963](https://github.com/aws/aws-cdk/issues/34963)) ([ce9b3a8](https://github.com/aws/aws-cdk/commit/ce9b3a8ddba75b646db54f6b8834067d6f50cea5))
24+
* **lambda:** refactor Function URL permissions ([#35725](https://github.com/aws/aws-cdk/issues/35725)) ([d38d015](https://github.com/aws/aws-cdk/commit/d38d015dfe752249236224c25946d8acc12448f5))
25+
* update L1 CloudFormation resource definitions ([#35679](https://github.com/aws/aws-cdk/issues/35679)) ([dec6e6a](https://github.com/aws/aws-cdk/commit/dec6e6a24ae4529b64eebeb529a92772e6a292d7))
26+
* update L1 CloudFormation resource definitions ([#35695](https://github.com/aws/aws-cdk/issues/35695)) ([8a6cf46](https://github.com/aws/aws-cdk/commit/8a6cf46db1d3821cd2a16f0209dc70b03c1e2485))
27+
* update L1 CloudFormation resource definitions ([#35712](https://github.com/aws/aws-cdk/issues/35712)) ([27a8760](https://github.com/aws/aws-cdk/commit/27a8760c1905badbc8597926473da01796bc29fa))
28+
* **amplify:** support build compute type ([#34796](https://github.com/aws/aws-cdk/issues/34796)) ([a02c656](https://github.com/aws/aws-cdk/commit/a02c6565cf0768024de244b96ecfc0d972c89f3d))
29+
* **cloudfront-origins:** add ipAddressType property to Lambda Function URL origins ([#35458](https://github.com/aws/aws-cdk/issues/35458)) ([6cf6dc8](https://github.com/aws/aws-cdk/commit/6cf6dc800d888fcce1746fd8564fa2e7371a21cc)), closes [#35450](https://github.com/aws/aws-cdk/issues/35450)
30+
* **ec2:** add BEDROCK_AGENTCORE and BEDROCK_AGENTCORE_GATEWAY to InterfaceVpcEndpointAwsService ([#35667](https://github.com/aws/aws-cdk/issues/35667)) ([6966c03](https://github.com/aws/aws-cdk/commit/6966c03b1a7aece0846f5a91bbeb825cd7491689))
31+
* **ec2:** support for automatic VPN session reconnect on client VPN endpoint ([#35538](https://github.com/aws/aws-cdk/issues/35538)) ([9536472](https://github.com/aws/aws-cdk/commit/95364728f518c46cd6035dbea3953bdd71839e66))
32+
* **eks:** add removal policy support for EKS cluster construct ([#35560](https://github.com/aws/aws-cdk/issues/35560)) ([4b4e322](https://github.com/aws/aws-cdk/commit/4b4e3221182fba200c2b1f25043904e9dc1f10fb)), closes [#25544](https://github.com/aws/aws-cdk/issues/25544)
33+
* **logs:** add parameter to allow metric filter on transformed logs ([#35359](https://github.com/aws/aws-cdk/issues/35359)) ([effa46d](https://github.com/aws/aws-cdk/commit/effa46d0e6edd197fa53f94bb9d3d6fc071afa25))
34+
* **opensearch:** add OpenSearch 3.1 engine version ([#35477](https://github.com/aws/aws-cdk/issues/35477)) ([3bd7cf9](https://github.com/aws/aws-cdk/commit/3bd7cf944f2ec0b4b0191942682d19b954423536)), closes [#35471](https://github.com/aws/aws-cdk/issues/35471)
35+
* **route53:** add fromPrivateHostedZoneAttributes function to PrivateHostedZone ([#35552](https://github.com/aws/aws-cdk/issues/35552)) ([c8d7a79](https://github.com/aws/aws-cdk/commit/c8d7a79f204315a2dab1700ce5c358d73aa80756)), closes [#23268](https://github.com/aws/aws-cdk/issues/23268)
36+
* **synthetics:** allow root level canary scripts files for Puppeteer versions 11 and greater ([#35426](https://github.com/aws/aws-cdk/issues/35426)) ([46fb2dc](https://github.com/aws/aws-cdk/commit/46fb2dc010afd029d318b8c5f033bd94b23a60c4))
37+
38+
39+
### Bug Fixes
40+
41+
* **cloudwatch:** metric period in AnomalyDetectionAlarm is not being respected ([#35319](https://github.com/aws/aws-cdk/issues/35319)) ([c7d8004](https://github.com/aws/aws-cdk/commit/c7d80040d0d64858a083757dd4805df70460bc10)), closes [#34614](https://github.com/aws/aws-cdk/issues/34614) [/github.com/aws/aws-cdk/blob/6966c03b1a7aece0846f5a91bbeb825cd7491689/packages/aws-cdk-lib/aws-cloudwatch/lib/private/alarm-options.ts#L16-L18](https://github.com/aws//github.com/aws/aws-cdk/blob/6966c03b1a7aece0846f5a91bbeb825cd7491689/packages/aws-cdk-lib/aws-cloudwatch/lib/private/alarm-options.ts/issues/L16-L18) [/github.com/aws/aws-cdk/blob/86638f6daca6ead382d0b9c1cf65bb04f70d4b3d/packages/aws-cdk-lib/package.json#L32](https://github.com/aws//github.com/aws/aws-cdk/blob/86638f6daca6ead382d0b9c1cf65bb04f70d4b3d/packages/aws-cdk-lib/package.json/issues/L32) [/github.com/aws/aws-cdk/pull/35319#discussion_r2407134489](https://github.com/aws//github.com/aws/aws-cdk/pull/35319/issues/discussion_r2407134489)
42+
* **ecs:** update task definition validations for managed instances ([#35684](https://github.com/aws/aws-cdk/issues/35684)) ([8638a78](https://github.com/aws/aws-cdk/commit/8638a788e4c4bc482139830b53ca460f490ca322)), closes [#35644](https://github.com/aws/aws-cdk/issues/35644)
43+
* **lambda-nodejs:** bump bun to 1.2.23 for ARM64 support ([#35702](https://github.com/aws/aws-cdk/issues/35702)) ([3aa186c](https://github.com/aws/aws-cdk/commit/3aa186c7b5c2aba8a84e1cee9278034136cd9d03)), closes [#35534](https://github.com/aws/aws-cdk/issues/35534)
44+
* **s3:** resolve synthesis error in BucketPolicy.fromCfnBucketPolicy() ([#35633](https://github.com/aws/aws-cdk/issues/35633)) ([d9085cc](https://github.com/aws/aws-cdk/commit/d9085cc851a4fe16419c4c3f5c51e6c1b032e786)), closes [#34322](https://github.com/aws/aws-cdk/issues/34322)
45+
* **s3tables:** s3 table bucket read access role uses incorrect permission for s3tables:ListNamespaces ([#35420](https://github.com/aws/aws-cdk/issues/35420)) ([eb949bb](https://github.com/aws/aws-cdk/commit/eb949bb13a145c046d096937ce1e9c26d4b84f7b))
46+
547
## [2.219.0](https://github.com/aws/aws-cdk/compare/v2.218.0...v2.219.0) (2025-10-01)
648

749

CONTRIBUTORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ Shout out to our top contributors!
2929
- [colifran](https://github.com/colifran)
3030

3131

32-
_Last updated: Mon, 01 Sep 25 00:15:12 +0000_
32+
_Last updated: Wed, 01 Oct 25 00:14:08 +0000_

lerna.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"tools/@aws-cdk/lambda-integration-test-updater",
2121
"tools/@aws-cdk/construct-metadata-updater",
2222
"tools/@aws-cdk/project-sync",
23+
"tools/@aws-cdk/integration-test-deployment",
2324
"scripts/@aws-cdk/script-tests"
2425
],
2526
"rejectCycles": true,

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"devDependencies": {
1818
"@nx/workspace": "^20",
19-
"@types/node": "18.11.19",
19+
"@types/node": "18.19.129",
2020
"@types/prettier": "2.6.0",
2121
"@yarnpkg/lockfile": "^1.1.0",
2222
"aws-sdk-js-codemod": "^2.4.5",
@@ -86,6 +86,7 @@
8686
"tools/@aws-cdk/spec2cdk",
8787
"tools/@aws-cdk/lazify",
8888
"tools/@aws-cdk/project-sync",
89+
"tools/@aws-cdk/integration-test-deployment",
8990
"tools/@aws-cdk/lambda-integration-test-updater",
9091
"tools/@aws-cdk/construct-metadata-updater",
9192
"scripts/@aws-cdk/script-tests"

0 commit comments

Comments
 (0)