Skip to content

Commit 57bae7a

Browse files
authored
2 parents 184b345 + c384c7f commit 57bae7a

File tree

339 files changed

+158894
-102630
lines changed

Some content is hidden

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

339 files changed

+158894
-102630
lines changed

.github/workflows/codecov-upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Checkout
2424
uses: actions/checkout@v5
2525
- name: Download Artifacts
26-
uses: actions/download-artifact@v5
26+
uses: actions/download-artifact@v6
2727
with:
2828
name: coverage-artifacts
2929
path: ./packages/aws-cdk-lib/core/coverage

.github/workflows/enum-auto-updater.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,12 @@ jobs:
7979
echo "ERROR: Cannot find module directory for $module"
8080
continue
8181
fi
82-
82+
83+
# Branch name for the module
84+
branchName="enum-update/${moduleName#aws-}"
85+
8386
# Check for existing PR with the same name
84-
prExists=$(gh pr list --state open --search "chore(${moduleName#aws-}): add new enum values for ${moduleName#aws-}" --json number,title -q '.[].number')
87+
prExists=$(gh pr list --state open --head ${branchName} --base main --json number,title -q '.[].number')
8588

8689
# If a PR exists, close it
8790
if [[ -n "$prExists" ]]; then
@@ -92,7 +95,6 @@ jobs:
9295
fi
9396

9497
# Create/switch to branch for the module
95-
branchName="enum-update/${moduleName#aws-}"
9698
echo "Creating/switching to branch: $branchName"
9799
git checkout -B "$branchName" $original_branch # -B forces branch creation/reset
98100

.github/workflows/integration-test-deployment.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,9 @@ jobs:
100100
- name: Build deployment-integ
101101
run: yarn --cwd tools/@aws-cdk/integration-test-deployment build
102102

103-
- name: Build Integration Tests
104-
run: npx lerna run build --scope=@aws-cdk-testing/framework-integ
103+
# Build integration test packages: @aws-cdk-testing/framework-integ (stable tests) and @aws-cdk/* (alpha tests)
104+
- name: Build Integration Test packages
105+
run: npx lerna run build --scope="{@aws-cdk/*,@aws-cdk-testing/framework-integ}"
105106

106107
- name: Run integration tests using integration-test-deployment script
107108
run: yarn run atmosphere-integ-test

.github/workflows/spec-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ jobs:
8585
CI: "true"
8686
steps:
8787
- name: Download base database
88-
uses: actions/download-artifact@v5
88+
uses: actions/download-artifact@v6
8989
with:
9090
name: db.base.json.gz
9191
path: base
9292
- name: Download head database
93-
uses: actions/download-artifact@v5
93+
uses: actions/download-artifact@v6
9494
with:
9595
name: db.head.json.gz
9696
path: head
@@ -128,7 +128,7 @@ jobs:
128128
uses: actions/checkout@v5
129129

130130
- name: Download patch
131-
uses: actions/download-artifact@v5
131+
uses: actions/download-artifact@v6
132132
with:
133133
name: update-spec.patch
134134
path: ${{ runner.temp }}
@@ -137,7 +137,7 @@ jobs:
137137
run: '[ -s ${{ runner.temp }}/update-spec.patch ] && git apply ${{ runner.temp }}/update-spec.patch || echo "Empty patch. Skipping."'
138138

139139
- name: Download PR body file
140-
uses: actions/download-artifact@v5
140+
uses: actions/download-artifact@v6
141141
with:
142142
name: PR.md
143143
path: ${{ runner.temp }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v5
5151

5252
- name: Download patch
53-
uses: actions/download-artifact@v5
53+
uses: actions/download-artifact@v6
5454
with:
5555
name: update-spec.patch
5656
path: ${{ runner.temp }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
uses: actions/checkout@v5
8484

8585
- name: Download patch
86-
uses: actions/download-artifact@v5
86+
uses: actions/download-artifact@v6
8787
with:
8888
name: upgrade.patch
8989
path: ${{ runner.temp }}

.github/workflows/yarn-upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
uses: actions/checkout@v5
9898

9999
- name: Download patch
100-
uses: actions/download-artifact@v5
100+
uses: actions/download-artifact@v6
101101
with:
102102
name: upgrade.patch
103103
path: ${{ runner.temp }}

.mergify.yml

Lines changed: 3 additions & 3 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: rebase
11+
update_method: merge
1212
merge_method: merge
1313
queue_conditions:
1414
- -title~=(WIP|wip)
@@ -33,7 +33,7 @@ queue_rules:
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: rebase
36+
update_method: merge
3737
merge_method: squash
3838
queue_conditions:
3939
- base!=release
@@ -58,7 +58,7 @@ queue_rules:
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: rebase
61+
update_method: merge
6262
merge_method: squash
6363
queue_conditions:
6464
- base!=release

CHANGELOG.v2.alpha.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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.223.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.222.0-alpha.0...v2.223.0-alpha.0) (2025-11-10)
6+
57
## [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)
68

79

CHANGELOG.v2.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
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.223.0](https://github.com/aws/aws-cdk/compare/v2.222.0...v2.223.0) (2025-11-10)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
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:
11+
* **aws-dynamodb**: AWS::DynamoDB::GlobalTable: GlobalTableSettingsReplicationMode property removed.
12+
* **aws-dynamodb**: AWS::DynamoDB::GlobalTable: GlobalTableSourceArn property removed.
13+
* **aws-dynamodb**: AWS::DynamoDB::Table: GlobalTableSettingsReplicationMode property removed.
14+
* **aws-events**: AWS::Events::EventBusPolicy: Id attribute removed.
15+
16+
17+
### Features
18+
19+
* update L1 CloudFormation resource definitions ([#35926](https://github.com/aws/aws-cdk/issues/35926)) ([3f4d585](https://github.com/aws/aws-cdk/commit/3f4d58548be8022660f62a99e43061fa54bd8588))
20+
* **ec2:** support for Cloud Wan Core Network routes ([#35008](https://github.com/aws/aws-cdk/issues/35008)) ([fba027b](https://github.com/aws/aws-cdk/commit/fba027bf2039c90265f4632bd76619f4bcde6f81))
21+
* **s3-deployment:** support securityGroups in BucketDeploymentProps ([#33233](https://github.com/aws/aws-cdk/issues/33233)) ([f2a3166](https://github.com/aws/aws-cdk/commit/f2a31666fa92d284f6e8602e475aa0b7fca05ef7)), closes [#33229](https://github.com/aws/aws-cdk/issues/33229)
22+
23+
24+
### Bug Fixes
25+
26+
* **stepfunctions:** `DistributedMap` ResultWriter correct query language selection ([#35834](https://github.com/aws/aws-cdk/issues/35834)) ([75b8ead](https://github.com/aws/aws-cdk/commit/75b8eadb3761f02798061fe5578af82f785f687a)), closes [#35403](https://github.com/aws/aws-cdk/issues/35403)
27+
* onEvent function to pass all the options to rule resource ([#35829](https://github.com/aws/aws-cdk/issues/35829)) ([3d7023d](https://github.com/aws/aws-cdk/commit/3d7023d4c6ee29b945034e56fd94b228f6e313f2))
28+
529
## [2.222.0](https://github.com/aws/aws-cdk/compare/v2.221.1...v2.222.0) (2025-11-04)
630

731

0 commit comments

Comments
 (0)