Skip to content

Commit 184b345

Browse files
authored
2 parents 258f1a8 + b4d0a62 commit 184b345

File tree

354 files changed

+117034
-27968
lines changed

Some content is hidden

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

354 files changed

+117034
-27968
lines changed

.github/workflows/codebuild-pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
sudo sysctl -w vm.max_map_count=2251954
7171
7272
- name: Build
73-
run: /bin/bash ./build.sh --ci
73+
run: /bin/bash ./build.sh --ci --concurrency 10
7474

7575
- name: Run Rosetta
7676
run: /bin/bash ./scripts/run-rosetta.sh

.github/workflows/codecov-collect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: cd packages/aws-cdk-lib && yarn test core
2929

3030
- name: Upload Coverage and PR Info
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v5
3232
with:
3333
name: coverage-artifacts
3434
path: |

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
sudo sysctl -w vm.max_map_count=2251954
6666
6767
- name: Build
68-
run: /bin/bash ./build.sh --ci --concurrency=10
68+
run: /bin/bash ./build.sh --ci --concurrency 10
6969

7070
- name: Run Rosetta
7171
run: /bin/bash ./scripts/run-rosetta.sh

.github/workflows/pr-linter-review-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
mkdir -p ./pr
2727
echo $PR_NUMBER > ./pr/pr_number
2828
echo $PR_SHA > ./pr/pr_sha
29-
- uses: actions/upload-artifact@v4
29+
- uses: actions/upload-artifact@v5
3030
with:
3131
name: pr_info
3232
path: pr/

.github/workflows/spec-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
# Upload the current db to be used later
3333
- name: Upload base database
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v5
3535
with:
3636
name: db.base.json.gz
3737
path: node_modules/@aws-cdk/aws-service-spec/db.json.gz
@@ -49,7 +49,7 @@ jobs:
4949

5050
# Now that we have updated the database, upload the new candidate db
5151
- name: Upload head database
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v5
5353
with:
5454
name: db.head.json.gz
5555
path: node_modules/@aws-cdk/aws-service-spec/db.json.gz
@@ -69,7 +69,7 @@ jobs:
6969
git add .
7070
git diff --patch --staged > ${{ runner.temp }}/update-spec.patch
7171
- name: Upload Patch
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v5
7373
with:
7474
name: update-spec.patch
7575
path: ${{ runner.temp }}/update-spec.patch
@@ -110,7 +110,7 @@ jobs:
110110
cat DIFF >> PR.md
111111
echo '```' >> PR.md
112112
- name: Upload PR body file
113-
uses: actions/upload-artifact@v4
113+
uses: actions/upload-artifact@v5
114114
with:
115115
name: PR.md
116116
path: PR.md

.github/workflows/update-metadata-regions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
git add .
3434
git diff --patch --staged > ${{ runner.temp }}/update-spec.patch
3535
- name: Upload Patch
36-
uses: actions/upload-artifact@v4
36+
uses: actions/upload-artifact@v5
3737
with:
3838
name: update-spec.patch
3939
path: ${{ runner.temp }}/update-spec.patch

.github/workflows/yarn-upgrade-need-manual-work.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
git diff --binary --patch --staged > ${{ runner.temp }}/upgrade.patch
6767
6868
- name: Upload Patch
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: upgrade.patch
7272
path: ${{ runner.temp }}/upgrade.patch

.github/workflows/yarn-upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
git add .
8181
git diff --patch --staged > ${{ runner.temp }}/upgrade.patch
8282
- name: Upload Patch
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v5
8484
with:
8585
name: upgrade.patch
8686
path: ${{ runner.temp }}/upgrade.patch

.mergify.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ queue_rules:
88
- name: default-merge
99
# batch_size: 1 enables in-place checks (no draft PRs created for testing merges)
1010
batch_size: 1
11-
update_method: merge
11+
update_method: rebase
1212
merge_method: merge
1313
queue_conditions:
1414
- -title~=(WIP|wip)
@@ -25,15 +25,15 @@ queue_rules:
2525
- check-success=build
2626
- or:
2727
- "-label~=pr/needs-integration-tests-deployment"
28-
- "check-success=integration_test_deployment"
28+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
2929
commit_message_template: |-
3030
{{ title }} (#{{ number }})
3131
{{ body }}
3232
3333
- name: priority-squash
3434
# batch_size: 1 enables in-place checks (no draft PRs created for testing merges)
3535
batch_size: 1
36-
update_method: merge
36+
update_method: rebase
3737
merge_method: squash
3838
queue_conditions:
3939
- base!=release
@@ -50,15 +50,15 @@ queue_rules:
5050
- check-success=build
5151
- or:
5252
- "-label~=pr/needs-integration-tests-deployment"
53-
- "check-success=integration_test_deployment"
53+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
5454
commit_message_template: |-
5555
{{ title }} (#{{ number }})
5656
{{ body }}
5757
5858
- name: default-squash
5959
# batch_size: 1 enables in-place checks (no draft PRs created for testing merges)
6060
batch_size: 1
61-
update_method: merge
61+
update_method: rebase
6262
merge_method: squash
6363
queue_conditions:
6464
- base!=release
@@ -74,7 +74,7 @@ queue_rules:
7474
- check-success=build
7575
- or:
7676
- "-label~=pr/needs-integration-tests-deployment"
77-
- "check-success=integration_test_deployment"
77+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
7878
commit_message_template: |-
7979
{{ title }} (#{{ number }})
8080
{{ body }}
@@ -109,7 +109,7 @@ pull_request_rules:
109109
- check-success=build
110110
- or:
111111
- "-label~=pr/needs-integration-tests-deployment"
112-
- "check-success=integration_test_deployment"
112+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
113113
- name: automatic priority merge
114114
actions:
115115
comment:
@@ -133,7 +133,7 @@ pull_request_rules:
133133
- check-success=build
134134
- or:
135135
- "-label~=pr/needs-integration-tests-deployment"
136-
- "check-success=integration_test_deployment"
136+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
137137
- name: automatic merge (2+ approvers)
138138
actions:
139139
comment:
@@ -157,7 +157,7 @@ pull_request_rules:
157157
- check-success=build
158158
- or:
159159
- "-label~=pr/needs-integration-tests-deployment"
160-
- "check-success=integration_test_deployment"
160+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
161161
- name: automatic merge (no-squash)
162162
actions:
163163
comment:
@@ -181,7 +181,7 @@ pull_request_rules:
181181
- check-success=build
182182
- or:
183183
- "-label~=pr/needs-integration-tests-deployment"
184-
- "check-success=integration_test_deployment"
184+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
185185
- name: remove stale reviews
186186
actions:
187187
dismiss_reviews:
@@ -224,7 +224,7 @@ pull_request_rules:
224224
- check-success=build
225225
- or:
226226
- "-label~=pr/needs-integration-tests-deployment"
227-
- "check-success=integration_test_deployment"
227+
- "check-success=Deploy integration test snapshots (requires `pr/needs-integration-tests-deployment` label)"
228228
priority_rules:
229229
- name: priority for queue `default-merge`
230230
conditions:

CHANGELOG.v2.alpha.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
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.222.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.221.1-alpha.0...v2.222.0-alpha.0) (2025-11-04)
6+
7+
8+
### Features
9+
10+
* **eks-v2-alpha:** eks-v2-alpha is now in developer preview ([#35801](https://github.com/aws/aws-cdk/issues/35801)) ([32afc0f](https://github.com/aws/aws-cdk/commit/32afc0ff940394da737714e599ddc3c25ff738e3))
11+
12+
13+
### Bug Fixes
14+
15+
* **bedrock-alpha:** apply permission dependency to existing and non-existing roles ([#35123](https://github.com/aws/aws-cdk/issues/35123)) ([b39ccf3](https://github.com/aws/aws-cdk/commit/b39ccf3a874401c2a0a7ae0806f1be02b9b75d5e)), closes [#35120](https://github.com/aws/aws-cdk/issues/35120)
16+
* **eks-v2-alpha:** remove hyphen from Go package name ([#35927](https://github.com/aws/aws-cdk/issues/35927)) ([2cdfc8a](https://github.com/aws/aws-cdk/commit/2cdfc8a909ce3752833e46dd2ed0106fee0e785a))
17+
518
## [2.221.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.221.0-alpha.0...v2.221.1-alpha.0) (2025-10-29)
619

720
## [2.221.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.220.0-alpha.0...v2.221.0-alpha.0) (2025-10-24)

0 commit comments

Comments
 (0)