Skip to content

Commit 28431dc

Browse files
authored
Merge branch 'v1-main' into patch-1
2 parents 3682421 + 50bbb6e commit 28431dc

2,628 files changed

Lines changed: 93958 additions & 280848 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.

.devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"postCreateCommand": "yarn build --skip-test --no-bail --skip-prereqs --skip-compat",
55
"extensions": [
66
"dbaeumer.vscode-eslint@2.1.5"
7-
]
7+
],
8+
"remoteUser": "superchain"
89
}

.github/ISSUE_TEMPLATE/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: "📕 Documentation Issue"
33
description: Report an issue in the API Reference documentation or Developer Guide
4-
title: "(short issue description)"
4+
title: "(module name): (short issue description)"
55
labels: [documentation, needs-triage]
66
assignees: []
77
body:

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: 🚀 Feature Request
33
description: Suggest an idea for this project
4-
title: "(short issue description)"
4+
title: "(module name): (short issue description)"
55
labels: [feature-request, needs-triage]
66
assignees: []
77
body:

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,26 @@ updates:
1818
labels:
1919
- "auto-approve"
2020
open-pull-requests-limit: 5
21+
22+
# Non-TypeScript init template dependency updates
23+
- package-ecosystem: "pip"
24+
directory: "/packages/aws-cdk/lib/init-templates"
25+
schedule:
26+
interval: "weekly"
27+
labels:
28+
- "auto-approve"
29+
open-pull-requests-limit: 5
30+
- package-ecosystem: "maven"
31+
directory: "/packages/aws-cdk/lib/init-templates"
32+
schedule:
33+
interval: "weekly"
34+
labels:
35+
- "auto-approve"
36+
open-pull-requests-limit: 5
37+
- package-ecosystem: "nuget"
38+
directory: "/packages/aws-cdk/lib/init-templates"
39+
schedule:
40+
interval: "weekly"
41+
labels:
42+
- "auto-approve"
43+
open-pull-requests-limit: 5

.github/workflows/issue-label-assign.yml

Lines changed: 89 additions & 89 deletions
Large diffs are not rendered by default.

.github/workflows/issue-reprioritization.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ jobs:
77
issue-reprioritization:
88
permissions:
99
issues: write
10+
repository-projects: write
1011
runs-on: ubuntu-latest
1112
steps:
12-
- uses: kaizen3031593/issue-reprioritization-manager@main
13+
- uses: kaizencc/issue-reprioritization-manager@main
1314
id: reprioritization-manager
1415
with:
1516
github-token: ${{ secrets.GITHUB_TOKEN }}
1617
original-label: p2
1718
new-label: p1
1819
reprioritization-threshold: 20
19-
- uses: kaizen3031593/pr-triage-manager@main
20+
project-column-url: https://github.com/aws/aws-cdk/projects/13#column-18002436
21+
- uses: kaizencc/pr-triage-manager@main
2022
with:
2123
github-token: ${{ secrets.GITHUB_TOKEN }}
2224
on-pulls: ${{ steps.reprioritization-manager.outputs.linked-pulls }}

.github/workflows/pr-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
permissions:
2525
pull-requests: write
2626
steps:
27-
- uses: kaizen3031593/pr-triage-manager@main
27+
- uses: kaizencc/pr-triage-manager@main
2828
with:
2929
github-token: ${{ secrets.GITHUB_TOKEN }}
3030

.github/workflows/yarn-upgrade.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,15 @@ jobs:
6060
# Upgrade dependencies at repository root
6161
ncu --upgrade --filter=@types/node,@types/fs-extra --target=minor
6262
ncu --upgrade --filter=typescript --target=patch
63-
ncu --upgrade --reject=@types/node,@types/fs-extra,constructs,typescript,lerna --target=minor
63+
ncu --upgrade --reject=@types/node,@types/prettier,@types/fs-extra,constructs,typescript,lerna --target=minor
6464
# Upgrade all the packages
6565
lerna exec --parallel ncu -- --upgrade --filter=@types/node,@types/fs-extra --target=minor
6666
lerna exec --parallel ncu -- --upgrade --filter=typescript --target=patch
67-
lerna exec --parallel ncu -- --upgrade --reject='@types/node,@types/fs-extra,constructs,typescript,aws-sdk,aws-sdk-mock,${{ steps.list-packages.outputs.list }}' --target=minor
67+
lerna exec --parallel ncu -- --upgrade --reject='@types/node,@types/prettier,@types/fs-extra,constructs,typescript,aws-sdk,aws-sdk-mock,${{ steps.list-packages.outputs.list }}' --target=minor
68+
# Upgrade package.jsons in init templates
69+
for pj in $(find packages/aws-cdk/lib/init-templates -name package.json); do
70+
(cd $(dirname $pj) && ncu --upgrade --reject='@types/node,@types/prettier,@types/fs-extra,constructs,typescript,aws-sdk,aws-sdk-mock,ts-jest,jest,${{ steps.list-packages.outputs.list }}')
71+
done
6872
6973
# This will ensure the current lockfile is up-to-date with the dependency specifications (necessary for "yarn update" to run)
7074
- name: Run "yarn install"
@@ -116,6 +120,7 @@ jobs:
116120
with:
117121
# Git commit details
118122
branch: automation/yarn-upgrade
123+
author: aws-cdk-automation <aws-cdk-automation@users.noreply.github.com>
119124
commit-message: |-
120125
chore: npm-check-updates && yarn upgrade
121126
Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date.

.mergify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pull_request_rules:
1010
label:
1111
add: [ contribution/core ]
1212
conditions:
13-
- author~=^(eladb|RomainMuller|garnaat|nija-at|skinny85|rix0rrr|NGL321|Jerry-AWS|MrArnoldPalmer|NetaNir|iliapolo|njlynch|ericzbeard|ccfife|fulghum|pkandasamy91|SoManyHs|uttarasridhar|otaviomacedo|BenChaimberg|madeline-k|BryanPan342|kaizen3031593|comcalvi|Chriscbr|corymhall|peterwoodworth|ryparker|TheRealAmazonKendra|yuth)$
13+
- author~=^(RomainMuller|garnaat|skinny85|rix0rrr|NGL321|Jerry-AWS|MrArnoldPalmer|iliapolo|pkandasamy91|SoManyHs|uttarasridhar|otaviomacedo|madeline-k|kaizencc|comcalvi|Chriscbr|corymhall|peterwoodworth|ryparker|TheRealAmazonKendra|yuth|vinayak-kukreja)$
1414
- -label~="contribution/core"
1515
- name: automatic merge
1616
actions:

0 commit comments

Comments
 (0)