Skip to content

Commit 89cd610

Browse files
authored
Merge branch 'master' into njlynch/issues-5734
2 parents 26714b8 + f7d3cd6 commit 89cd610

File tree

177 files changed

+2223
-1283
lines changed

Some content is hidden

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

177 files changed

+2223
-1283
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: "Close Stale Issues"
2+
3+
# Controls when the action will run.
4+
on:
5+
schedule:
6+
- cron: "0 * * * *"
7+
8+
jobs:
9+
cleanup:
10+
runs-on: ubuntu-latest
11+
name: Stale issue job
12+
steps:
13+
- uses: aws-actions/stale-issue-cleanup@v3
14+
with:
15+
# Setting messages to an empty string will cause the automation to skip
16+
# that category
17+
ancient-issue-message: This issue has not received any attention in 3 years. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.
18+
stale-issue-message: This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.
19+
stale-pr-message: This PR has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.
20+
21+
# These labels are required
22+
stale-issue-label: closing-soon
23+
exempt-issue-label: no-autoclose
24+
stale-pr-label: pr/no-activity
25+
exempt-pr-label: no-autoclose
26+
response-requested-label: response-requested
27+
28+
# Don't set closed-for-staleness label to skip closing very old issues
29+
# regardless of label
30+
closed-for-staleness-label: closed-for-staleness
31+
32+
# Issue timing
33+
days-before-stale: 7
34+
days-before-close: 4
35+
days-before-ancient: 1095
36+
37+
# If you don't want to mark a issue as being ancient based on a
38+
# threshold of "upvotes", you can set this here. An "upvote" is
39+
# the total number of +1, heart, hooray, and rocket reactions
40+
# on an issue.
41+
minimum-upvotes-to-exempt: 5
42+
43+
repo-token: ${{ secrets.GITHUB_TOKEN }}
44+
# loglevel: DEBUG
45+
# Set dry-run to true to not perform label or close actions.
46+
dry-run: true

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.36.1](https://github.com/aws/aws-cdk/compare/v1.36.0...v1.36.1) (2020-04-29)
6+
7+
### Bug Fixes
8+
9+
* multiple breakages due to jest version upgrade ([#7667](https://github.com/aws/aws-cdk/pull/7667)) ([e18312](https://github.com/aws/aws-cdk/commit/e18312c4de42857d893913bd3124bd06bb16982e)), closes [#7657](https://github.com/aws/aws-cdk/issues/7657)
10+
511
## [1.36.0](https://github.com/aws/aws-cdk/compare/v1.35.0...v1.36.0) (2020-04-28)
612

713

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"tools/*"
1111
],
1212
"rejectCycles": "true",
13-
"version": "1.36.0"
13+
"version": "1.36.1"
1414
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"jsii-rosetta": "^1.4.1",
2222
"lerna": "^3.20.2",
2323
"standard-version": "^7.1.0",
24+
"graceful-fs": "^4.2.4",
2425
"typescript": "~3.8.3"
2526
},
2627
"repository": {

packages/@aws-cdk/alexa-ask/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
<!--END STABILITY BANNER-->
1515

1616
```ts
17-
const alexaAsk = require('@aws-cdk/alexa-ask');
17+
import * as alexaAsk from '@aws-cdk/alexa-ask';
1818
```

packages/@aws-cdk/app-delivery/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ The example below defines a *CDK App* that contains 3 stacks:
4141
#### `index.ts`
4242

4343
```typescript
44-
import codebuild = require('@aws-cdk/aws-codebuild');
45-
import codepipeline = require('@aws-cdk/aws-codepipeline');
46-
import codepipeline_actions = require('@aws-cdk/aws-codepipeline-actions');
47-
import cdk = require('@aws-cdk/core');
48-
import cicd = require('@aws-cdk/app-delivery');
44+
import * as codebuild from '@aws-cdk/aws-codebuild';
45+
import * as codepipeline from '@aws-cdk/aws-codepipeline';
46+
import * as codepipeline_actions from '@aws-cdk/aws-codepipeline-actions';
47+
import * as cdk from '@aws-cdk/core';
48+
import * as cicd from '@aws-cdk/app-delivery';
4949

5050
const app = new cdk.App();
5151

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"@types/jest": "^25.2.1",
3333
"cdk-build-tools": "0.0.0",
34-
"jest": "^25.4.0",
34+
"jest": "^25.5.2",
3535
"pkglint": "0.0.0",
3636
"ts-jest": "^25.4.0"
3737
},
@@ -44,7 +44,7 @@
4444
},
4545
"peerDependencies": {
4646
"@aws-cdk/core": "0.0.0",
47-
"jest": "^25.4.0",
47+
"jest": "^25.5.2",
4848
"constructs": "^3.0.2"
4949
},
5050
"repository": {

packages/@aws-cdk/aws-accessanalyzer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
1313

1414
```ts
15-
import accessanalyzer = require('@aws-cdk/aws-accessanalyzer');
15+
import * as accessanalyzer from '@aws-cdk/aws-accessanalyzer';
1616
```

packages/@aws-cdk/aws-acmpca/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
1313

1414
```ts
15-
import acmpca = require('@aws-cdk/aws-acmpca');
15+
import * as acmpca from '@aws-cdk/aws-acmpca';
1616
```

packages/@aws-cdk/aws-amazonmq/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
<!--END STABILITY BANNER-->
1111

1212
```ts
13-
const amazonmq = require('@aws-cdk/aws-amazonmq');
13+
import * as amazonmq from '@aws-cdk/aws-amazonmq';
1414
```

0 commit comments

Comments
 (0)