Skip to content

Commit a58510c

Browse files
authored
2 parents c983471 + 9e000ff commit a58510c

229 files changed

Lines changed: 107622 additions & 53696 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PR Issue Reference Check
2+
on:
3+
pull_request_target:
4+
types: [opened, edited, reopened]
5+
6+
jobs:
7+
check-issue-reference:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
pull-requests: write
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v6
14+
- name: Install type dependencies
15+
run: yarn install --frozen-lockfile
16+
- name: Compile TypeScript
17+
run: npx tsc --project scripts/tsconfig.pr-issue-check.json
18+
- name: Check PR description for issue reference
19+
uses: actions/github-script@v9
20+
with:
21+
github-token: ${{ secrets.GITHUB_TOKEN }}
22+
script: |
23+
const { prIssueCheck } = require('./scripts/pr-issue-check.js');
24+
await prIssueCheck({ github, context, core });

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.252.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.251.0-alpha.0...v2.252.0-alpha.0) (2026-04-29)
6+
57
## [2.251.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.250.0-alpha.0...v2.251.0-alpha.0) (2026-04-24)
68

79

CHANGELOG.v2.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.252.0](https://github.com/aws/aws-cdk/compare/v2.251.0...v2.252.0) (2026-04-29)
6+
7+
8+
### Features
9+
10+
* **core:** `Validations` class now supports `addWarning`, `addError`, and `acknowledge` ([#37668](https://github.com/aws/aws-cdk/issues/37668)) ([5e8083c](https://github.com/aws/aws-cdk/commit/5e8083c79f2657fe2364a31ed3f26d0d88638920)), closes [aws/aws-cdk-rfcs#899](https://github.com/aws/aws-cdk-rfcs/issues/899)
11+
* **core:** add Box API for deferred values with accurate stack traces ([#37604](https://github.com/aws/aws-cdk/issues/37604)) ([d592a96](https://github.com/aws/aws-cdk/commit/d592a969caf30c2f62df99c9a269722ae528cd65))
12+
13+
14+
### Bug Fixes
15+
16+
* **aws-cdk-lib:** cannot be used as a `bundledDependency` ([#37726](https://github.com/aws/aws-cdk/issues/37726)) ([6ba0598](https://github.com/aws/aws-cdk/commit/6ba0598d0b1a099db9c74723ac2567cc947ad802)), closes [#37717](https://github.com/aws/aws-cdk/issues/37717)
17+
* **s3:** resolve S3 notification removal race condition ([#37708](https://github.com/aws/aws-cdk/issues/37708)) ([dc5be98](https://github.com/aws/aws-cdk/commit/dc5be981a9568a4bb60e47ec9106696650f0bfc8)), closes [#37667](https://github.com/aws/aws-cdk/issues/37667)
18+
519
## [2.251.0](https://github.com/aws/aws-cdk/compare/v2.250.0...v2.251.0) (2026-04-24)
620

721

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
"fs-extra": "^9.1.0",
2929
"graceful-fs": "^4.2.11",
3030
"jest-junit": "^13.2.0",
31-
"jsii-diff": "1.127.0",
32-
"jsii-pacmak": "1.127.0",
33-
"jsii-reflect": "1.127.0",
31+
"jsii-diff": "1.128.0",
32+
"jsii-pacmak": "1.128.0",
33+
"jsii-reflect": "1.128.0",
3434
"jsii-rosetta": "~5.9.32",
3535
"lerna": "^8.2.4",
3636
"nx": "^20",

packages/@aws-cdk-testing/framework-integ/test/aws-lambda-event-sources/test/integ.s3.imported-bucket.js.snapshot/TestStack1.assets.json

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

packages/@aws-cdk-testing/framework-integ/test/aws-lambda-event-sources/test/integ.s3.imported-bucket.js.snapshot/TestStack1.metadata.json

Lines changed: 98 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-lambda-event-sources/test/integ.s3.imported-bucket.js.snapshot/TestStack2.assets.json

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

0 commit comments

Comments
 (0)