Skip to content

Commit edf191c

Browse files
authored
Merge branch 'master' into fix(aws-autoscaling)--add-timezone-property-to-scheduled-action
2 parents bd745e7 + bc10e6f commit edf191c

File tree

520 files changed

+10268
-4557
lines changed

Some content is hidden

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

520 files changed

+10268
-4557
lines changed

.github/workflows/cr-checklist.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Custom resources checklist"
2+
on:
3+
pull_request:
4+
types: [ opened ]
5+
6+
jobs:
7+
checklist_job:
8+
runs-on: ubuntu-latest
9+
name: Creates a checklist for PRs that contain changes to custom resources
10+
steps:
11+
- name: Checkout repo
12+
uses: actions/checkout@v2
13+
- name: Dynamic checklist action
14+
uses: vishalsinha21/dynamic-checklist@v1
15+
with:
16+
mappingFile: './.github/workflows/cr-mapping.json'
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+

.github/workflows/cr-mapping.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mappings": [
3+
{
4+
"keywords": ["CustomResourceProvider", "CustomResource", "CloudFormationCustomResourceDeleteEvent", "CloudFormationCustomResourceUpdateEvent", "CloudFormationCustomResourceCreateEvent"],
5+
"comment": "I have read the guidelines on the [important cases to handle](https://github.com/aws/aws-cdk/tree/master/packages/%40aws-cdk/custom-resources#important-cases-to-handle) when implementing the custom resource."
6+
}
7+
]
8+
}

.github/workflows/pr-labeler.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
permissions:
1313
pull-requests: write
14+
issues: write
1415
steps:
1516
- run: gh pr edit ${{ github.event.pull_request.number }} --add-label "pr/auto-approve" -R ${{ github.repository }}
1617
env:

CHANGELOG.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,72 @@
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+
## [1.132.0](https://github.com/aws/aws-cdk/compare/v1.131.0...v1.132.0) (2021-11-09)
6+
7+
8+
### Features
9+
10+
* **apigatewayv2:** http api - mTLS support ([#17284](https://github.com/aws/aws-cdk/issues/17284)) ([54be156](https://github.com/aws/aws-cdk/commit/54be1567546ffd52e83fbe52531f901c0b6c29c9)), closes [#12559](https://github.com/aws/aws-cdk/issues/12559)
11+
* **stepfunctions-tasks:** add `AutoTerminationPolicy` to `EmrCreateCluster` ([#16976](https://github.com/aws/aws-cdk/issues/16976)) ([27ad7d8](https://github.com/aws/aws-cdk/commit/27ad7d86824b6378d470cda7304e7ae89ebbebf4))
12+
* the assertions module is now stable! ([#17395](https://github.com/aws/aws-cdk/issues/17395)) ([ede5e22](https://github.com/aws/aws-cdk/commit/ede5e22da2e59218534c17c33a21cab98a3001a9))
13+
* **cfnspec:** cloudformation spec v47.0.0 ([#17392](https://github.com/aws/aws-cdk/issues/17392)) ([7100d43](https://github.com/aws/aws-cdk/commit/7100d43ba7b9e9ce74fb64b33403aa8eaee63255))
14+
* **lambda-nodejs:** custom asset hash ([#16412](https://github.com/aws/aws-cdk/issues/16412)) ([90da730](https://github.com/aws/aws-cdk/commit/90da730244513f9614604f6be3a77adbb6b17f79)), closes [#16157](https://github.com/aws/aws-cdk/issues/16157)
15+
16+
17+
### Bug Fixes
18+
19+
* **codecommit:** notifyOnPullRequestMerged method has a typo in its name ([#17348](https://github.com/aws/aws-cdk/issues/17348)) ([cac5726](https://github.com/aws/aws-cdk/commit/cac572620210a435f679cf7d7d9f8b6e733b340c))
20+
* **opensearch:** domain doesn't handle tokens in capacity configuration ([#17131](https://github.com/aws/aws-cdk/issues/17131)) ([2627939](https://github.com/aws/aws-cdk/commit/2627939108a2e979e385bf2942da1c05d48c678c)), closes [#15014](https://github.com/aws/aws-cdk/issues/15014)
21+
22+
## [1.131.0](https://github.com/aws/aws-cdk/compare/v1.130.0...v1.131.0) (2021-11-07)
23+
24+
25+
### ⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
26+
27+
* **apigatewayv2-authorizers:** `userPoolClient` property in `UserPoolAuthorizerProps`
28+
is now renamed to `userPoolClients`.
29+
30+
### Features
31+
32+
* **apigatewayv2-authorizers:** http api - allow multiple user pool clients per HttpUserPoolAuthorizer ([#16903](https://github.com/aws/aws-cdk/issues/16903)) ([747eb7c](https://github.com/aws/aws-cdk/commit/747eb7cf5dba4514241103ffebc49e03261d25a9)), closes [#15431](https://github.com/aws/aws-cdk/issues/15431)
33+
* **certificatemanager:** requesting private certificates issued by Private Certificate Authority ([#16315](https://github.com/aws/aws-cdk/issues/16315)) ([e26f5be](https://github.com/aws/aws-cdk/commit/e26f5befc2adedeb524fd263424c7920989b2288)), closes [#10076](https://github.com/aws/aws-cdk/issues/10076)
34+
* **cfnspec:** cloudformation spec v46.0.0 ([#17223](https://github.com/aws/aws-cdk/issues/17223)) ([d9f7b58](https://github.com/aws/aws-cdk/commit/d9f7b58a91a625ffd9bc366767794a3101b0afeb))
35+
* **cfnspec:** cloudformation spec v46.0.0 ([#17334](https://github.com/aws/aws-cdk/issues/17334)) ([e0f1180](https://github.com/aws/aws-cdk/commit/e0f118046c4a0350bdd614fbff4b96ba7772402e))
36+
* **cfnspec:** cloudformation spec v47.0.0 ([#17350](https://github.com/aws/aws-cdk/issues/17350)) ([ea71b4e](https://github.com/aws/aws-cdk/commit/ea71b4ed7466d8799bde4fdd5adfed9fc8febb9c)), closes [#17290](https://github.com/aws/aws-cdk/issues/17290) [#17223](https://github.com/aws/aws-cdk/issues/17223)
37+
* **cfnspec:** cloudformation spec v47.0.0 ([#17353](https://github.com/aws/aws-cdk/issues/17353)) ([7886607](https://github.com/aws/aws-cdk/commit/7886607528b0cb005fa1176803b2a45d3e948f48))
38+
* **cli:** added `build` field to cdk.json ([#17176](https://github.com/aws/aws-cdk/issues/17176)) ([57ad1e0](https://github.com/aws/aws-cdk/commit/57ad1e087edef653d672c1426b920b12962f0f0f))
39+
* **cli:** introduce the 'watch' command ([#17240](https://github.com/aws/aws-cdk/issues/17240)) ([0adc8b7](https://github.com/aws/aws-cdk/commit/0adc8b7e13011956929fc945e083f75edec16698))
40+
* **codepipeline:** add construct for registering custom Actions ([#17041](https://github.com/aws/aws-cdk/issues/17041)) ([c66ac89](https://github.com/aws/aws-cdk/commit/c66ac89f43d3d2cee2b5842c54dc00e14ccdd2f4)), closes [#17039](https://github.com/aws/aws-cdk/issues/17039)
41+
* **docdb:** add the ability to exclude characters when generating passwords ([#17262](https://github.com/aws/aws-cdk/issues/17262)) ([135f7d3](https://github.com/aws/aws-cdk/commit/135f7d33db5e96c3af4a8691c13b419e7b14ceae)), closes [#15732](https://github.com/aws/aws-cdk/issues/15732)
42+
* **ec2:** add c6i instances ([#17237](https://github.com/aws/aws-cdk/issues/17237)) ([25cea18](https://github.com/aws/aws-cdk/commit/25cea1807539a8d45f3f4ff8b775b3417387d6fe))
43+
* **ecs-service-extensions:** Target tracking policies for Service Extensions ([#17101](https://github.com/aws/aws-cdk/issues/17101)) ([6420b18](https://github.com/aws/aws-cdk/commit/6420b1817d4319924d11cfccb8b6a29d4a2d5008))
44+
* **eks:** expose FargateCluster's defaultProfile ([#17130](https://github.com/aws/aws-cdk/issues/17130)) ([e461601](https://github.com/aws/aws-cdk/commit/e4616010c1915206758be3bf4cd6da9f14d2101a)), closes [#16149](https://github.com/aws/aws-cdk/issues/16149)
45+
* **iot:** allow setting `description` and `enabled` of TopicRule ([#17225](https://github.com/aws/aws-cdk/issues/17225)) ([a9aae09](https://github.com/aws/aws-cdk/commit/a9aae097daad475dd57bbf4842956327a6d5a220))
46+
* **iot:** allow setting `errorAction` of TopicRule ([#17287](https://github.com/aws/aws-cdk/issues/17287)) ([e412308](https://github.com/aws/aws-cdk/commit/e412308bc81ede16b079077cfa4774ceaa2fadeb))
47+
* **iot-actions:** Add the action to put CloudWatch Logs ([#17228](https://github.com/aws/aws-cdk/issues/17228)) ([a7c869e](https://github.com/aws/aws-cdk/commit/a7c869e6d57932389df572cd7f104a4c9ea8f8a5))
48+
* **lambda-nodejs:** add sourcesContent in BundlingOptions ([#17280](https://github.com/aws/aws-cdk/issues/17280)) ([ea56e69](https://github.com/aws/aws-cdk/commit/ea56e6925422ebb987dbd87952511f23832ac7b6)), closes [#17256](https://github.com/aws/aws-cdk/issues/17256)
49+
* **logs:** add support for cloudwatch logs resource policy ([#17015](https://github.com/aws/aws-cdk/issues/17015)) ([e9a461d](https://github.com/aws/aws-cdk/commit/e9a461d6dcbad933fcb9d671a8c5b5ad8f5ece8d)), closes [#5343](https://github.com/aws/aws-cdk/issues/5343)
50+
* **servicecatalog:** allow creating a CFN Product Version with CDK code ([#17144](https://github.com/aws/aws-cdk/issues/17144)) ([f8d0ef5](https://github.com/aws/aws-cdk/commit/f8d0ef550df07e43aeab35dde4406c92f7551ed0))
51+
* **synthetics:** add static cron method to schedule class ([#17250](https://github.com/aws/aws-cdk/issues/17250)) ([1ab9b26](https://github.com/aws/aws-cdk/commit/1ab9b265e9899ffcd093b3600d658c8a6519cc69)), closes [#16402](https://github.com/aws/aws-cdk/issues/16402)
52+
53+
54+
### Bug Fixes
55+
56+
* **aws-eks:** proxy support and allow assigning a security group to all cluster handler functions ([#17200](https://github.com/aws/aws-cdk/issues/17200)) ([7bbd10d](https://github.com/aws/aws-cdk/commit/7bbd10deb322daf8ef1504ceb84ad3c895f291ae)), closes [#12469](https://github.com/aws/aws-cdk/issues/12469)
57+
* **cli:** `wmic not found` on modern Windows systems ([#17070](https://github.com/aws/aws-cdk/issues/17070)) ([332ce4d](https://github.com/aws/aws-cdk/commit/332ce4d9ae995bd1336fef13e2c7f9fc0c12f34d)), closes [#16419](https://github.com/aws/aws-cdk/issues/16419)
58+
* **cli:** cdk ls --long outputs less-friendly stack IDs for nested assemblies ([#17263](https://github.com/aws/aws-cdk/issues/17263)) ([864c50e](https://github.com/aws/aws-cdk/commit/864c50ed2f3ae133af0cffd17ed77a6cf32ac6f4)), closes [#14379](https://github.com/aws/aws-cdk/issues/14379)
59+
* **cli:** no longer disable rollback by default for hotswap deployments ([#17317](https://github.com/aws/aws-cdk/issues/17317)) ([e32b616](https://github.com/aws/aws-cdk/commit/e32b61652b5d01c44b05c2ac6d5fb1e99b50e059)), closes [#17267](https://github.com/aws/aws-cdk/issues/17267)
60+
* **cognito:** ambiguous error message when same trigger is added twice ([#16917](https://github.com/aws/aws-cdk/issues/16917)) ([4ae78b0](https://github.com/aws/aws-cdk/commit/4ae78b07af20ea3ef049079ac5b892f9ee8476e5))
61+
* **ec2:** functions addIngressRule and addEgressRule detect unresolved tokens as duplicates ([#17221](https://github.com/aws/aws-cdk/issues/17221)) ([d4952c3](https://github.com/aws/aws-cdk/commit/d4952c3cbe12e7c8c27e1bca7f9d8536d93fd3cb)), closes [#17201](https://github.com/aws/aws-cdk/issues/17201)
62+
* **lambda-nodejs:** yarn berry goes into immutable mode in CI ([#17086](https://github.com/aws/aws-cdk/issues/17086)) ([cc8dd69](https://github.com/aws/aws-cdk/commit/cc8dd694e6746b9c6fc4663775aaa3b68d19ef61)), closes [#17082](https://github.com/aws/aws-cdk/issues/17082)
63+
* **pipelines:** `additionalInputs` not working ([#17279](https://github.com/aws/aws-cdk/issues/17279)) ([9e81dc7](https://github.com/aws/aws-cdk/commit/9e81dc731993a55fbc05c642ce96151f12ed69da)), closes [#17224](https://github.com/aws/aws-cdk/issues/17224)
64+
* **s3:** enforce that fromBucketAttributes supplies a valid bucket name ([#16915](https://github.com/aws/aws-cdk/issues/16915)) ([30ac0cc](https://github.com/aws/aws-cdk/commit/30ac0cc2d95ef3fd79d0658428975ea675b6916f))
65+
66+
67+
### Reverts
68+
69+
* "chore: activate 'rosetta infuse' feature ([#17191](https://github.com/aws/aws-cdk/issues/17191))" ([#17329](https://github.com/aws/aws-cdk/issues/17329)) ([c8cd515](https://github.com/aws/aws-cdk/commit/c8cd515b3984ce0d8bfbe2d19cd56d299785e78b))
70+
571
## [1.130.0](https://github.com/aws/aws-cdk/compare/v1.129.0...v1.130.0) (2021-10-29)
672

773

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -978,3 +978,4 @@ $ node --inspect-brk /path/to/aws-cdk/node_modules/.bin/jest -i -t 'TESTNAME'
978978
* [Workshop](https://github.com/aws-samples/aws-cdk-intro-workshop): source for https://cdkworkshop.com
979979
* [Developer Guide](https://github.com/awsdocs/aws-cdk-guide): markdown source for developer guide
980980
* [jsii](https://github.com/aws/jsii): the technology we use for multi-language support. If you are looking to help us support new languages, start there.
981+

build.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ runtarget="build"
66
run_tests="true"
77
check_prereqs="true"
88
check_compat="true"
9-
extract_snippets="false"
109
while [[ "${1:-}" != "" ]]; do
1110
case $1 in
1211
-h|--help)
13-
echo "Usage: build.sh [--no-bail] [--force|-f] [--skip-test] [--skip-prereqs] [--skip-compat] [--extract]"
12+
echo "Usage: build.sh [--no-bail] [--force|-f] [--skip-test] [--skip-prereqs] [--skip-compat]"
1413
exit 1
1514
;;
1615
--no-bail)
@@ -28,9 +27,6 @@ while [[ "${1:-}" != "" ]]; do
2827
--skip-compat)
2928
check_compat="false"
3029
;;
31-
--extract)
32-
extract_snippets="true"
33-
;;
3430
*)
3531
echo "Unrecognized parameter: $1"
3632
exit 1
@@ -81,9 +77,6 @@ trap "rm -rf $MERKLE_BUILD_CACHE" EXIT
8177
if [ "$run_tests" == "true" ]; then
8278
runtarget="$runtarget+test"
8379
fi
84-
if [ "$extract_snippets" == "true" ]; then
85-
runtarget="$runtarget+extract"
86-
fi
8780

8881
echo "============================================================================================="
8982
echo "building..."

buildspec-pr.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,14 @@ phases:
1616
# Packing the mono-libraries (monocdk & aws-cdk-lib) can cause
1717
# memory errors. Increasing this value allows our build to more consistently succeed
1818
- (command -v sysctl || yum install -y procps-ng) && /sbin/sysctl -w vm.max_map_count=2251954
19+
pre_build:
20+
commands:
21+
- /bin/bash ./scripts/cache-load.sh
1922
build:
2023
commands:
21-
- /bin/bash ./build.sh --extract
22-
- /bin/bash ./scripts/transform.sh --extract
24+
- /bin/bash ./build.sh
25+
- /bin/bash ./scripts/transform.sh
26+
# After compilation, run Rosetta (using the cache if available).
27+
# This will print errors, and fail the build if there are compilation errors in any packages marked as 'strict'.
28+
- /bin/bash ./scripts/run-rosetta.sh
2329
- git diff-index --exit-code --ignore-space-at-eol --stat HEAD

buildspec.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ phases:
1616
# Packing the mono-libraries (monocdk & aws-cdk-lib) can cause
1717
# memory errors. Increasing this value allows our build to more consistently succeed
1818
- /sbin/sysctl -w vm.max_map_count=2251954
19+
pre_build:
20+
commands:
21+
- /bin/bash ./scripts/cache-load.sh
1922
build:
2023
commands:
2124
- 'if ${BUMP_CANDIDATE:-false}; then /bin/bash ./scripts/bump-candidate.sh; fi'
@@ -25,6 +28,7 @@ phases:
2528
post_build:
2629
commands:
2730
- "[ -f .BUILD_COMPLETED ] && /bin/bash ./pack.sh"
31+
- /bin/bash ./scripts/cache-store.sh
2832
artifacts:
2933
files:
3034
- "**/*"

pack.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ function lerna_scopes() {
3939
# Compile examples with respect to "decdk" directory, as all packages will
4040
# be symlinked there so they can all be included.
4141
echo "Extracting code samples" >&2
42-
$ROSETTA extract \
43-
--compile \
44-
--output samples.tabl.json \
45-
--directory packages/decdk \
46-
$(cat $TMPDIR/jsii.txt)
42+
scripts/run-rosetta.sh $TMPDIR/jsii.txt
4743

4844
echo "Infusing examples back into assemblies" >&2
4945
$ROSETTA infuse \

package.json

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"conventional-changelog-cli": "^2.1.1",
2020
"fs-extra": "^9.1.0",
2121
"graceful-fs": "^4.2.8",
22-
"jest-junit": "^12.3.0",
23-
"jsii-diff": "^1.42.0",
24-
"jsii-pacmak": "^1.42.0",
25-
"jsii-reflect": "^1.42.0",
26-
"jsii-rosetta": "^1.42.0",
22+
"jest-junit": "^13.0.0",
23+
"jsii-diff": "^1.43.0",
24+
"jsii-pacmak": "^1.43.0",
25+
"jsii-reflect": "^1.43.0",
26+
"jsii-rosetta": "^1.43.0",
2727
"lerna": "^4.0.0",
2828
"patch-package": "^6.4.7",
2929
"standard-version": "^9.3.2",
@@ -71,28 +71,8 @@
7171
"nohoist": [
7272
"**/jszip",
7373
"**/jszip/**",
74-
"@aws-cdk/assertions-alpha/colors",
75-
"@aws-cdk/assertions-alpha/colors/**",
76-
"@aws-cdk/assertions-alpha/diff",
77-
"@aws-cdk/assertions-alpha/diff/**",
78-
"@aws-cdk/assertions-alpha/fast-deep-equal",
79-
"@aws-cdk/assertions-alpha/fast-deep-equal/**",
80-
"@aws-cdk/assertions-alpha/string-width",
81-
"@aws-cdk/assertions-alpha/string-width/**",
82-
"@aws-cdk/assertions-alpha/table",
83-
"@aws-cdk/assertions-alpha/table/**",
8474
"@aws-cdk/aws-amplify-alpha/yaml",
8575
"@aws-cdk/aws-amplify-alpha/yaml/**",
86-
"@aws-cdk/assertions/colors",
87-
"@aws-cdk/assertions/colors/**",
88-
"@aws-cdk/assertions/diff",
89-
"@aws-cdk/assertions/diff/**",
90-
"@aws-cdk/assertions/fast-deep-equal",
91-
"@aws-cdk/assertions/fast-deep-equal/**",
92-
"@aws-cdk/assertions/string-width",
93-
"@aws-cdk/assertions/string-width/**",
94-
"@aws-cdk/assertions/table",
95-
"@aws-cdk/assertions/table/**",
9676
"@aws-cdk/aws-amplify/yaml",
9777
"@aws-cdk/aws-amplify/yaml/**",
9878
"@aws-cdk/aws-codebuild/yaml",

0 commit comments

Comments
 (0)