Skip to content

Commit b268d24

Browse files
authored
Merge branch 'main' into pipelines-fleet-certificate
2 parents 260cc05 + d52a4a7 commit b268d24

File tree

69 files changed

+160
-103
lines changed

Some content is hidden

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

69 files changed

+160
-103
lines changed

.github/workflows/security-guardian.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Security Guardian
22
on:
3-
pull_request_target: {}
3+
pull_request: {}
44

55
jobs:
66
log-skip:
@@ -19,6 +19,7 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v6
2121
with:
22+
ref: ${{ github.event.pull_request.head.sha }}
2223
fetch-depth: 0
2324

2425
- name: Install cfn-guard
@@ -47,8 +48,8 @@ jobs:
4748
echo "${{ github.event.pull_request.head.sha }}" > ./test-results/pr_sha
4849
4950
- name: Upload Security Guardian XML Reports
50-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v5
5152
if: always()
5253
with:
5354
name: security-guardian-reports
54-
path: test-results/
55+
path: test-results/

.github/workflows/security-report.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ jobs:
1010
permissions:
1111
checks: write
1212
pull-requests: write
13-
id-token: write
1413
actions: read
1514
steps:
1615
- name: Download artifacts
17-
uses: actions/download-artifact@v5
16+
uses: actions/download-artifact@v6
1817
with:
1918
name: security-guardian-reports
2019
path: test-results/
@@ -45,6 +44,7 @@ jobs:
4544
group_suite: true
4645
include_skipped: false
4746
check_title_template: '{{TEST_NAME}}'
47+
include_empty_in_summary: false
4848

4949
- name: Publish Security Test Results for resolved templates
5050
uses: mikepenz/action-junit-report@v6
@@ -63,3 +63,4 @@ jobs:
6363
group_suite: true
6464
include_skipped: false
6565
check_title_template: '{{TEST_NAME}}'
66+
include_empty_in_summary: false

.github/workflows/spec-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ jobs:
5858
# Build @aws-cdk/spec2cdk and run L1 gen script to generate base files for new modules
5959
- name: Build @aws-cdk/spec2cdk
6060
run: lerna run build --stream --no-progress --skip-nx-cache --scope @aws-cdk/spec2cdk
61-
- name: Generate L1s
62-
working-directory: packages/aws-cdk-lib
61+
- name: Generate code
6362
run: yarn gen
63+
run: lerna run gen --stream --no-progress --skip-nx-cache --scope aws-cdk-lib --scope @aws-cdk/mixins-preview
6464

6565
# Next, create and upload the changes as a patch file. This will later be downloaded to create a pull request
6666
# Creating a pull request requires write permissions and it's best to keep write privileges isolated.

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.232.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.232.0-alpha.0...v2.232.1-alpha.0) (2025-12-05)
6+
57
## [2.232.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.231.0-alpha.0...v2.232.0-alpha.0) (2025-12-04)
68

79

CHANGELOG.v2.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.232.1](https://github.com/aws/aws-cdk/compare/v2.232.0...v2.232.1) (2025-12-05)
6+
7+
8+
### Bug Fixes
9+
10+
* **core:** TypeScript properties missing for types which extend internal interfaces ([#36313](https://github.com/aws/aws-cdk/issues/36313)) ([3e7e17c](https://github.com/aws/aws-cdk/commit/3e7e17c0def24567610a541e39195596f5d83387)), closes [#36310](https://github.com/aws/aws-cdk/issues/36310)
11+
512
## [2.232.0](https://github.com/aws/aws-cdk/compare/v2.231.0...v2.232.0) (2025-12-04)
613

714

packages/@aws-cdk-testing/framework-integ/test/aws-lambda-nodejs/test/whitespace path/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"strict": true,
2626
"strictNullChecks": true,
2727
"strictPropertyInitialization": true,
28-
"stripInternal": true,
28+
"stripInternal": false,
2929
"target": "ES2022",
3030
"composite": true,
3131
"tsBuildInfoFile": "tsconfig.tsbuildinfo"

packages/@aws-cdk-testing/framework-integ/test/aws-lambda-nodejs/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"strict": true,
2525
"strictNullChecks": true,
2626
"strictPropertyInitialization": true,
27-
"stripInternal": true,
27+
"stripInternal": false,
2828
"target": "ES2022",
2929
"composite": true,
3030
"tsBuildInfoFile": "tsconfig.tsbuildinfo"

packages/@aws-cdk/app-staging-synthesizer-alpha/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"strict": true,
2323
"strictNullChecks": true,
2424
"strictPropertyInitialization": true,
25-
"stripInternal": true,
25+
"stripInternal": false,
2626
"target": "es2022",
2727
"esModuleInterop": false,
2828
"isolatedModules": true,

packages/@aws-cdk/aws-amplify-alpha/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"strict": true,
2323
"strictNullChecks": true,
2424
"strictPropertyInitialization": true,
25-
"stripInternal": true,
25+
"stripInternal": false,
2626
"target": "es2022",
2727
"composite": true,
2828
"tsBuildInfoFile": "tsconfig.tsbuildinfo",

packages/@aws-cdk/aws-applicationsignals-alpha/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"strict": true,
2525
"strictNullChecks": true,
2626
"strictPropertyInitialization": true,
27-
"stripInternal": true,
27+
"stripInternal": false,
2828
"target": "es2022",
2929
"composite": false,
3030
"tsBuildInfoFile": "tsconfig.tsbuildinfo"

0 commit comments

Comments
 (0)