Skip to content

Commit 2b474b9

Browse files
authored
Merge pull request #10964 from aws/bump/1.69.0
chore(release): 1.69.0
2 parents a6a3f46 + 426b7db commit 2b474b9

File tree

202 files changed

+3739
-3913
lines changed

Some content is hidden

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

202 files changed

+3739
-3913
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Automatically approve PRs that merge master forward to v2-main
2+
#
3+
# Only does approvals! mergify takes care of the actual merge.
4+
name: Auto-approve forward merges onto v2-main
5+
on:
6+
pull_request:
7+
types:
8+
- labeled
9+
- opened
10+
- ready_for_review
11+
- reopened
12+
- synchronize
13+
- unlabeled
14+
- unlocked
15+
16+
jobs:
17+
approve:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: hmarr/[email protected]
21+
if: >
22+
github.event.pull_request.user.login == 'aws-cdk-automation'
23+
&& github.event.pull_request.base.ref == 'v2-main'
24+
&& contains(github.event.pull_request.labels.*.name, 'pr/forward-merge')
25+
with:
26+
github-token: "${{ secrets.GITHUB_TOKEN }}"

.mergify.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,20 @@ pull_request_rules:
119119
- "#changes-requested-reviews-by=0"
120120
- status-success~=AWS CodeBuild us-east-1
121121
- status-success=validate-pr
122+
- name: automatic merge of v2 forward merges
123+
actions:
124+
comment:
125+
message: Forward merge successful!
126+
merge:
127+
method: merge
128+
strict: smart+fasttrack
129+
strict_method: merge
130+
commit_message: title+body
131+
conditions:
132+
- label~=forward-merge
133+
- -label~=(blocked|do-not-merge)
134+
- -merged
135+
- -closed
136+
- author~=aws-cdk-automation
137+
- "#approved-reviews-by>=1"
138+
- status-success~=AWS CodeBuild us-east-1

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
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.69.0](https://github.com/aws/aws-cdk/compare/v1.68.0...v1.69.0) (2020-10-19)
6+
7+
8+
### Features
9+
10+
* **apigatewayv2:** configure description for HttpApi ([#10863](https://github.com/aws/aws-cdk/issues/10863)) ([895372f](https://github.com/aws/aws-cdk/commit/895372fc8b027bd12d64450c429c04d8efdd27f4))
11+
* **pipelines:** temporarily disable self-mutation ([#10466](https://github.com/aws/aws-cdk/issues/10466)) ([8ffabb4](https://github.com/aws/aws-cdk/commit/8ffabb4325d2853f8650f991706eccfe233b2c74))
12+
13+
14+
### Bug Fixes
15+
16+
* **apigateway:** cannot configure stage for SpecRestApi ([#10749](https://github.com/aws/aws-cdk/issues/10749)) ([62a2286](https://github.com/aws/aws-cdk/commit/62a2286f6dc46059160daa3c7466e712dad9f136)), closes [#10300](https://github.com/aws/aws-cdk/issues/10300)
17+
* **apigateway:** lambda integration does not recognize allowTestInvoke ([#10828](https://github.com/aws/aws-cdk/issues/10828)) ([650c23f](https://github.com/aws/aws-cdk/commit/650c23f1fe9e87a7b1eb521faf57c7ed341d0eb6)), closes [#7605](https://github.com/aws/aws-cdk/issues/7605) [#7604](https://github.com/aws/aws-cdk/issues/7604)
18+
* **cli:** `cdk context --reset <number>` does not work ([#10753](https://github.com/aws/aws-cdk/issues/10753)) ([2f3a167](https://github.com/aws/aws-cdk/commit/2f3a167797e60fd2df6c83bc2f3906ddc8eb8966)), closes [#3033](https://github.com/aws/aws-cdk/issues/3033) [#10619](https://github.com/aws/aws-cdk/issues/10619)
19+
* **cli:** failure if account cache is malformed ([#10887](https://github.com/aws/aws-cdk/issues/10887)) ([9b2438a](https://github.com/aws/aws-cdk/commit/9b2438a6e78fc7a9622e79b1435ea6f8b76d98f7))
20+
* **lambda-python:** asset hashes changed ([#10959](https://github.com/aws/aws-cdk/issues/10959)) ([b8de264](https://github.com/aws/aws-cdk/commit/b8de264af75aed11e14fb715f40d6d2e41d5233e)), closes [#10958](https://github.com/aws/aws-cdk/issues/10958) [#10957](https://github.com/aws/aws-cdk/issues/10957)
21+
522
## [1.68.0](https://github.com/aws/aws-cdk/compare/v1.67.0...v1.68.0) (2020-10-15)
623

724

build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ done
3737
export PATH=$(npm bin):$PATH
3838
export NODE_OPTIONS="--max-old-space-size=4096 ${NODE_OPTIONS:-}"
3939

40+
if ! [ -x "$(command -v yarn)" ]; then
41+
echo "yarn is not installed. Install it from here- https://yarnpkg.com/en/docs/install."
42+
exit 1
43+
fi
44+
4045
echo "============================================================================================="
4146
echo "installing..."
4247
yarn install --frozen-lockfile --network-timeout 1000000
@@ -65,11 +70,6 @@ rm -rf $BUILD_INDICATOR
6570
export MERKLE_BUILD_CACHE=$(mktemp -d)
6671
trap "rm -rf $MERKLE_BUILD_CACHE" EXIT
6772

68-
if ! [ -x "$(command -v yarn)" ]; then
69-
echo "yarn is not installed. Install it from here- https://yarnpkg.com/en/docs/install."
70-
exit 1
71-
fi
72-
7373
echo "============================================================================================="
7474
echo "building..."
7575
time lerna run $bail --stream $runtarget || fail

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"tools/*"
1212
],
1313
"rejectCycles": "true",
14-
"version": "1.68.0"
14+
"version": "1.69.0"
1515
}

packages/@aws-cdk/alexa-ask/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"cfn2ts": "cfn2ts",
5151
"build+test+package": "npm run build+test && npm run package",
5252
"build+test": "npm run build && npm test",
53-
"compat": "cdk-compat"
53+
"compat": "cdk-compat",
54+
"gen": "cfn2ts"
5455
},
5556
"cdk-build": {
5657
"cloudformation": "Alexa::ASK",

packages/@aws-cdk/aws-accessanalyzer/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"cfn2ts": "cfn2ts",
5151
"compat": "cdk-compat",
5252
"build+test": "npm run build && npm test",
53-
"build+test+package": "npm run build+test && npm run package"
53+
"build+test+package": "npm run build+test && npm run package",
54+
"gen": "cfn2ts"
5455
},
5556
"cdk-build": {
5657
"cloudformation": "AWS::AccessAnalyzer",

packages/@aws-cdk/aws-acmpca/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"cfn2ts": "cfn2ts",
5151
"build+test+package": "npm run build+test && npm run package",
5252
"build+test": "npm run build && npm test",
53-
"compat": "cdk-compat"
53+
"compat": "cdk-compat",
54+
"gen": "cfn2ts"
5455
},
5556
"cdk-build": {
5657
"cloudformation": "AWS::ACMPCA",

packages/@aws-cdk/aws-amazonmq/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"cfn2ts": "cfn2ts",
5151
"build+test+package": "npm run build+test && npm run package",
5252
"build+test": "npm run build && npm test",
53-
"compat": "cdk-compat"
53+
"compat": "cdk-compat",
54+
"gen": "cfn2ts"
5455
},
5556
"cdk-build": {
5657
"cloudformation": "AWS::AmazonMQ",

packages/@aws-cdk/aws-amplify/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"cfn2ts": "cfn2ts",
5151
"build+test": "npm run build && npm test",
5252
"build+test+package": "npm run build+test && npm run package",
53-
"compat": "cdk-compat"
53+
"compat": "cdk-compat",
54+
"gen": "cfn2ts"
5455
},
5556
"cdk-build": {
5657
"cloudformation": "AWS::Amplify",

0 commit comments

Comments
 (0)