Skip to content

Commit 8fd264e

Browse files
authored
Merge branch 'main' into feat-synthetics-nodejs-puppeteer-10.0
2 parents 9d77687 + 8328c79 commit 8fd264e

File tree

581 files changed

+156225
-82930
lines changed

Some content is hidden

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

581 files changed

+156225
-82930
lines changed

.github/workflows/codecov-upload.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
uses: actions/download-artifact@v4
2525
with:
2626
name: coverage-artifacts
27-
path: ./coverage
27+
path: ./packages/aws-cdk-lib/core/coverage
2828
github-token: ${{ secrets.GITHUB_TOKEN }}
2929
repository: ${{ github.repository }}
3030
run-id: ${{ github.event.workflow_run.id }}
3131

3232
- name: Upload to Codecov
3333
uses: codecov/codecov-action@v5
3434
with:
35-
files: ./coverage/packages/aws-cdk-lib/coverage/cobertura-coverage.xml
35+
files: ./packages/aws-cdk-lib/core/coverage/cobertura-coverage.xml
3636
fail_ci_if_error: true
3737
flags: suite.unit
3838
use_oidc: true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
badges: '[beginning-contributor,repeat-contributor,valued-contributor,admired-contributor,star-contributor,distinguished-contributor]'
1818
thresholds: '[0,3,6,13,25,50]'
1919
badge-type: 'achievement'
20-
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]'
20+
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]'

.github/workflows/pr-build.yml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
name: PR Build
2+
3+
on:
4+
workflow_dispatch: {}
5+
merge_group: {}
6+
push:
7+
branches:
8+
- main
9+
- v2-release
10+
pull_request:
11+
branches:
12+
- main
13+
- v2-release
14+
15+
# For every PR, cancel any previous builds in progress
16+
# ... but for all other builds we keep them running
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.pull_request.number || github.run_id }}
19+
cancel-in-progress: true
20+
21+
jobs:
22+
build:
23+
runs-on: aws-cdk_ubuntu-latest_32-core
24+
25+
env:
26+
PR_BUILD: true
27+
28+
steps:
29+
- name: Checkout code
30+
uses: actions/checkout@v4
31+
32+
- name: Setup Node.js
33+
uses: actions/setup-node@v4
34+
with:
35+
node-version: "18"
36+
cache: "yarn"
37+
38+
- name: Set up Docker
39+
uses: docker/setup-buildx-action@v3
40+
41+
- name: Load Docker images
42+
id: docker-cache
43+
uses: actions/cache/restore@v4
44+
with:
45+
path: |
46+
~/.docker-images.tar
47+
key: docker-cache-${{ runner.os }}
48+
49+
- name: Restore Docker images
50+
if: ${{ steps.docker-cache.outputs.cache-hit }}
51+
run: docker image load --input ~/.docker-images.tar
52+
53+
- name: Cache build artifacts
54+
uses: actions/cache@v4
55+
with:
56+
path: |
57+
~/.s3buildcache
58+
key: s3buildcache-${{ runner.os }}
59+
60+
- name: Configure system settings
61+
run: |
62+
(command -v sysctl || sudo apt-get update && sudo apt-get install -y procps) && \
63+
sudo sysctl -w vm.max_map_count=2251954
64+
65+
- name: Build
66+
run: /bin/bash ./build.sh --ci
67+
68+
- name: Run Rosetta
69+
run: /bin/bash ./scripts/run-rosetta.sh
70+
71+
- name: Check for uncommitted changes
72+
run: git diff-index --exit-code --ignore-space-at-eol --stat HEAD
73+
74+
- name: Export Docker images
75+
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
76+
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 }}')
77+
78+
- name: Cache Docker images
79+
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
80+
uses: actions/cache/save@v4
81+
with:
82+
path: |
83+
~/.docker-images.tar
84+
key: docker-cache-${{ runner.os }}

.github/workflows/spec-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: AWS Service Spec Update
22

33
on:
44
schedule:
5-
# Every Monday at 13:37 UTC
6-
- cron: 37 13 * * 1
5+
# Every Monday at 10:15 UTC since dependency releases are on Fridays : https://github.com/cdklabs/awscdk-service-spec/releases?q=-spec&expanded=true
6+
- cron: 15 10 * * 1
77
workflow_dispatch: {}
88

99
jobs:

.mergify.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ queue_rules:
1616
- "#changes-requested-reviews-by=0"
1717
- status-success~=AWS CodeBuild us-east-1
1818
- status-success=validate-pr
19+
- status-success=build
1920
commit_message_template: |-
2021
{{ title }} (#{{ number }})
2122
{{ body }}
@@ -36,6 +37,7 @@ queue_rules:
3637
- "#changes-requested-reviews-by=0"
3738
- status-success~=AWS CodeBuild us-east-1
3839
- status-success=validate-pr
40+
- status-success=build
3941
commit_message_template: |-
4042
{{ title }} (#{{ number }})
4143
{{ body }}
@@ -55,6 +57,7 @@ queue_rules:
5557
- "#changes-requested-reviews-by=0"
5658
- status-success~=AWS CodeBuild us-east-1
5759
- status-success=validate-pr
60+
- status-success=build
5861
commit_message_template: |-
5962
{{ title }} (#{{ number }})
6063
{{ body }}
@@ -65,7 +68,7 @@ pull_request_rules:
6568
label:
6669
add: [contribution/core]
6770
conditions:
68-
- author~=^(rix0rrr|iliapolo|otaviomacedo|kaizencc|TheRealAmazonKendra|mrgrain|pahud|ashishdhingra|kellertk|moelasmar|paulhcsun|GavinZZ|xazhao|gracelu0|shikha372|QuantumNeuralCoder|godwingrs22|bergjaak|samson-keung|IanKonlog|Leo10Gama|scorbiere|jiayiwang7|saiyush|5d|iankhou|SimonCMoore|maharajhaider|Y-JayKim|astiwana|ykethan|aemada-aws|ozelalisen|abogical|alinko-aws|vishaalmehrishi|alvazjor|kumsmrit|kumvprat|leonmk-aws|matboros|gasolima)$
71+
- author=@aws/aws-cdk-team
6972
- -label~="contribution/core"
7073
- name: automatic merge
7174
actions:
@@ -87,6 +90,7 @@ pull_request_rules:
8790
- "#changes-requested-reviews-by=0"
8891
- status-success~=AWS CodeBuild us-east-1
8992
- status-success=validate-pr
93+
- status-success=build
9094
- name: automatic priority merge
9195
actions:
9296
comment:
@@ -108,6 +112,7 @@ pull_request_rules:
108112
- "#changes-requested-reviews-by=0"
109113
- status-success~=AWS CodeBuild us-east-1
110114
- status-success=validate-pr
115+
- status-success=build
111116
- name: automatic merge (2+ approvers)
112117
actions:
113118
comment:
@@ -129,6 +134,7 @@ pull_request_rules:
129134
- "#changes-requested-reviews-by=0"
130135
- status-success~=AWS CodeBuild us-east-1
131136
- status-success=validate-pr
137+
- status-success=build
132138
- name: automatic merge (no-squash)
133139
actions:
134140
comment:
@@ -150,6 +156,7 @@ pull_request_rules:
150156
- "#changes-requested-reviews-by=0"
151157
- status-success~=AWS CodeBuild us-east-1
152158
- status-success=validate-pr
159+
- status-success=build
153160
- name: remove stale reviews
154161
actions:
155162
dismiss_reviews:
@@ -190,6 +197,7 @@ pull_request_rules:
190197
- "#changes-requested-reviews-by=0"
191198
- status-success~=AWS CodeBuild us-east-1
192199
- status-success=validate-pr
200+
- status-success=build
193201
priority_rules:
194202
- name: priority for queue `default-merge`
195203
conditions:

CHANGELOG.v2.alpha.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
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.203.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.203.0-alpha.0...v2.203.1-alpha.0) (2025-07-02)
6+
7+
## [2.203.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.202.0-alpha.0...v2.203.0-alpha.0) (2025-07-01)
8+
9+
10+
### Features
11+
12+
* **ec2:** support for client route enforcement for client VPN endpoint ([#34405](https://github.com/aws/aws-cdk/issues/34405)) ([063f4e7](https://github.com/aws/aws-cdk/commit/063f4e79d7416c52b622450222c5439e893ca74c))
13+
14+
15+
### Bug Fixes
16+
17+
* **ec2:** don't use inferenceAccellerators in the constructors if not needed ([#34618](https://github.com/aws/aws-cdk/issues/34618)) ([054c6c5](https://github.com/aws/aws-cdk/commit/054c6c53982b8ba33ca31af6752b1662ed5752b8)), closes [#33505](https://github.com/aws/aws-cdk/issues/33505) [/github.com/aws/aws-cdk/issues/33505#issuecomment-2770818825](https://github.com/aws//github.com/aws/aws-cdk/issues/33505/issues/issuecomment-2770818825) [#34610](https://github.com/aws/aws-cdk/issues/34610)
18+
519
## [2.202.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.201.0-alpha.0...v2.202.0-alpha.0) (2025-06-20)
620

721

CHANGELOG.v2.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
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.203.1](https://github.com/aws/aws-cdk/compare/v2.203.0...v2.203.1) (2025-07-02)
6+
7+
### Bug Fixes
8+
9+
* "Invalid Assembly Manifest" when used with CLI 2.1017.0 and 2.1018.0 ([#34880](https://github.com/aws/aws-cdk/issues/34880)) ([32ee050](https://github.com/aws/aws-cdk/commit/32ee0504a83647a88b24361094ef76aef18e7b8b)), closes [aws/aws-cdk#34798](https://github.com/aws/aws-cdk/issues/34798)
10+
11+
## [2.203.0](https://github.com/aws/aws-cdk/compare/v2.202.0...v2.203.0) (2025-07-01)
12+
13+
14+
### ⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
15+
16+
* **cloudformation:** Some L1 resources experienced breaking changes due to updated CloudFormation resources. Please check the notes for each specific module for more information.
17+
18+
- ***aws-cdk-lib.aws_kendra.CfnDataSource.TemplateConfigurationProperty***: `template` property here has changed from `string` to `json`
19+
20+
### Features
21+
22+
* **rds:** instance engine lifecycle support ([#34719](https://github.com/aws/aws-cdk/issues/34719)) ([bab7413](https://github.com/aws/aws-cdk/commit/bab74137f17bb0759b1a922d8e88df5c0f6e9bc1)), closes [#34492](https://github.com/aws/aws-cdk/issues/34492)
23+
* report feature flag configuration into Cloud Assembly ([#34798](https://github.com/aws/aws-cdk/issues/34798)) ([76af7dc](https://github.com/aws/aws-cdk/commit/76af7dc8b5bc80dcc00ad9f3bbf6dc8fecfec5c3))
24+
* **backup:** add support for ScheduleExpressionTimezone ([#34603](https://github.com/aws/aws-cdk/issues/34603)) ([8ceea43](https://github.com/aws/aws-cdk/commit/8ceea437e332d4a1339c26f13b59b424ef389135)), closes [#34532](https://github.com/aws/aws-cdk/issues/34532)
25+
* **cloudformation:** update L1 CloudFormation resource definitions ([#34839](https://github.com/aws/aws-cdk/issues/34839)) ([4c75889](https://github.com/aws/aws-cdk/commit/4c75889fb44e16bc5ef979c5c6d42390ddc0a17b))
26+
* **cloudwatch:** add account id field for log query and metric widgets to support cross account visibility ([#34793](https://github.com/aws/aws-cdk/issues/34793)) ([ac4d09d](https://github.com/aws/aws-cdk/commit/ac4d09d91bcedc4dca144ba68b1951cc12c9b70c)), closes [#26105](https://github.com/aws/aws-cdk/issues/26105)
27+
* **lambda:** function log removal policy ([#34723](https://github.com/aws/aws-cdk/issues/34723)) ([0388483](https://github.com/aws/aws-cdk/commit/0388483537bbd2f6fef4e8dd3156341a90ee9d68)), closes [#34669](https://github.com/aws/aws-cdk/issues/34669)
28+
* **pipelines:** cdk-assets version is configurable ([#34802](https://github.com/aws/aws-cdk/issues/34802)) ([a361c9c](https://github.com/aws/aws-cdk/commit/a361c9ce325f6d1f63a62c69d26af4ce6b2e12f3))
29+
* update L1 CloudFormation resource definitions ([#34792](https://github.com/aws/aws-cdk/issues/34792)) ([074cb8c](https://github.com/aws/aws-cdk/commit/074cb8c8502463e658ab009c5bebf5a84ad6555b))
30+
31+
32+
### Bug Fixes
33+
34+
* **codecov:** update codecov-upload.yml ([#34845](https://github.com/aws/aws-cdk/issues/34845)) ([8055016](https://github.com/aws/aws-cdk/commit/805501692991825aa4949bf830fa40e4e1c4cd6b)), closes [/github.com/aws/aws-cdk/blob/main/codecov.yml#L35](https://github.com/aws//github.com/aws/aws-cdk/blob/main/codecov.yml/issues/L35)
35+
* **codecov:** update codecov-upload.yml action to upload report with correct path ([#34814](https://github.com/aws/aws-cdk/issues/34814)) ([705e76b](https://github.com/aws/aws-cdk/commit/705e76bf22da1e743f22428aab4c36f900b484e5))
36+
* **stepfunctions-tasks:** properly serialize CallAwsServiceCrossRegion Lambda responses ([#34843](https://github.com/aws/aws-cdk/issues/34843)) ([a4b15df](https://github.com/aws/aws-cdk/commit/a4b15df5d1669056947df757471ad0b921335f23)), closes [#34768](https://github.com/aws/aws-cdk/issues/34768)
37+
38+
39+
### Reverts
40+
41+
* "ci: add tool to sync with project board" ([#34817](https://github.com/aws/aws-cdk/issues/34817)) ([1965014](https://github.com/aws/aws-cdk/commit/1965014d1233b956fc2c6cbbdf72bfade9aaab5d)), closes [aws/aws-cdk#34776](https://github.com/aws/aws-cdk/issues/34776)
42+
543
## [2.202.0](https://github.com/aws/aws-cdk/compare/v2.201.0...v2.202.0) (2025-06-20)
644

745

CONTRIBUTORS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Shout out to our top contributors!
99
- [jogold](https://github.com/jogold)
1010
- [iliapolo](https://github.com/iliapolo)
1111
- [corymhall](https://github.com/corymhall)
12-
- [shivlaks](https://github.com/shivlaks)
1312
- [mrgrain](https://github.com/mrgrain)
13+
- [shivlaks](https://github.com/shivlaks)
1414
- [otaviomacedo](https://github.com/otaviomacedo)
1515
- [mazyu36](https://github.com/mazyu36)
1616
- [pahud](https://github.com/pahud)
@@ -29,4 +29,4 @@ Shout out to our top contributors!
2929
- [colifran](https://github.com/colifran)
3030

3131

32-
_Last updated: Sun, 01 Jun 25 00:16:05 +0000_
32+
_Last updated: Tue, 01 Jul 25 00:15:11 +0000_

allowed-breaking-changes.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
# and that won't typecheck if Manifest.load() adds a union arm and now returns A | B | C.
44
change-return-type:@aws-cdk/cloud-assembly-schema.Manifest.load
55

6+
# To deal with the same as the above: adding artifact properties weakens the ArtifactManifest type.
7+
# This is done on purpose though, and doesn't break a real type contract in practice because the type
8+
# of the `properties` field is already unreliable for exhaustive checking.
9+
weakened:aws-cdk-lib.cloud_assembly_schema.ArtifactManifest
10+
611
# Adding any new context queries will add to the ContextQueryProperties type,
712
# which changes the signature of MissingContext.
813
weakened:@aws-cdk/cloud-assembly-schema.MissingContext
@@ -190,7 +195,7 @@ removed:aws-cdk-lib.aws_ec2.CfnNetworkInterface.enablePrimaryIpv6
190195
removed:aws-cdk-lib.aws_ec2.CfnNetworkInterfaceAttachment.attrId
191196
removed:aws-cdk-lib.aws_ec2.CfnNetworkInterfaceProps.enablePrimaryIpv6
192197

193-
# Changed type from GraphqlApi to IGraphqlApi to support import from a different stack, should not matter.
198+
# Changed type from GraphqlApi to IGraphqlApi to support import from a different stack, should not matter.
194199
weakened:aws-cdk-lib.aws_appsync.SourceApi
195200

196201
# Due to https://github.com/aws/aws-cdk/issues/27259, none of these could have worked

lerna.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@
1212
"tools/@aws-cdk/cdk-build-tools",
1313
"tools/@aws-cdk/user-input-gen",
1414
"tools/@aws-cdk/cdk-release",
15-
"tools/@aws-cdk/node-bundle",
1615
"tools/@aws-cdk/pkglint",
1716
"tools/@aws-cdk/pkgtools",
1817
"tools/@aws-cdk/prlint",
1918
"tools/@aws-cdk/spec2cdk",
20-
"tools/@aws-cdk/yarn-cling",
2119
"tools/@aws-cdk/lazify",
2220
"tools/@aws-cdk/lambda-integration-test-updater",
2321
"tools/@aws-cdk/construct-metadata-updater",
@@ -26,4 +24,4 @@
2624
"rejectCycles": true,
2725
"version": "0.0.0",
2826
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
29-
}
27+
}

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"nx": "^20",
3333
"semver": "^7.7.2",
3434
"standard-version": "^9.5.0",
35-
"ts-jest": "^29.3.4",
35+
"ts-jest": "^29.4.0",
3636
"ts-node": "^10.9.2",
3737
"typescript": "~5.5.4"
3838
},
@@ -79,12 +79,10 @@
7979
"tools/@aws-cdk/cdk-build-tools",
8080
"tools/@aws-cdk/user-input-gen",
8181
"tools/@aws-cdk/cdk-release",
82-
"tools/@aws-cdk/node-bundle",
8382
"tools/@aws-cdk/pkglint",
8483
"tools/@aws-cdk/pkgtools",
8584
"tools/@aws-cdk/prlint",
8685
"tools/@aws-cdk/spec2cdk",
87-
"tools/@aws-cdk/yarn-cling",
8886
"tools/@aws-cdk/lazify",
8987
"tools/@aws-cdk/lambda-integration-test-updater",
9088
"tools/@aws-cdk/construct-metadata-updater",

packages/@aws-cdk-testing/framework-integ/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "cdk-lint",
1010
"pkglint": "pkglint -f",
1111
"test": "cdk-test",
12-
"integ": "integ-runner --language javascript",
12+
"integ": "integ-runner --unstable=toolkit-lib-engine --language javascript",
1313
"package": "cdk-package",
1414
"build+test": "yarn build && yarn test",
1515
"build+extract": "yarn build",
@@ -30,13 +30,13 @@
3030
"license": "Apache-2.0",
3131
"devDependencies": {
3232
"@aws-cdk/cdk-build-tools": "0.0.0",
33-
"@aws-cdk/integ-runner": "^2.187.0",
33+
"@aws-cdk/integ-runner": "^2.188.2",
3434
"@aws-cdk/pkglint": "0.0.0",
3535
"@aws-sdk/client-acm": "3.632.0",
3636
"@aws-sdk/client-rds": "3.632.0",
3737
"@aws-sdk/client-s3": "3.632.0",
3838
"@aws-sdk/client-cognito-identity-provider": "3.632.0",
39-
"axios": "1.9.0",
39+
"axios": "1.10.0",
4040
"delay": "5.0.0"
4141
},
4242
"dependencies": {
@@ -48,7 +48,7 @@
4848
"@aws-cdk/lambda-layer-kubectl-v32": "^2.1.0",
4949
"@aws-cdk/lambda-layer-kubectl-v33": "^2.0.0",
5050
"aws-cdk-lib": "0.0.0",
51-
"cdk8s": "2.69.73",
51+
"cdk8s": "2.69.74",
5252
"cdk8s-plus-27": "2.9.5",
5353
"constructs": "^10.0.0"
5454
},

packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ.graphql-lambda-permission.js.snapshot/GraphqlApiLambdaPermissionTestDefaultTestDeployAssert7720B39B.assets.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)