Skip to content

Commit 0208bd3

Browse files
committed
* '15588' of https://github.com/xykkong/aws-cdk: (47 commits) chore: rollback `GenericSSMParameterImage` deprecation (backport aws#16798) (aws#16800) chore(deps): bump actions/setup-node from 2.4.0 to 2.4.1 (aws#16778) Update CHANGELOG.md chore(release): 1.126.0 feat(assertions): matcher support for `templateMatches()` API (aws#16789) feat(stepfunctions-tasks): add step concurrency level to EmrCreateCluster (aws#15242) docs(s3): correct heading levels Object Ownership / Bucket deletion (aws#16790) chore(individual-pkg-gen): fix bug in setting alpha package visibility (aws#16787) fix(s3): setting `autoDeleteObjects` to `false` empties the bucket (aws#16756) fix(iam): `User.fromUserArn` does not work for ARNs that include a path (aws#16269) fix(cli): progress bar overshoots count by 1 for stack updates (aws#16168) fix(config): add SourceAccount condition to Lambda permission (aws#16617) docs(events): add a note about not using `EventPattern` with `CfnRule` (aws#16715) docs(core): fix reference to nonexistant enum value (aws#16716) chore(s3-deployments): update python version on BucketDeployment handler (aws#16771) chore: set response-requested length to 2 and closing-soon to 5 (aws#16763) fix(revert): "fix: CDK does not honor NO_PROXY settings (aws#16751)" (aws#16761) docs(GitHub issue templates): Upgrade to GitHub Issues v2 (aws#16592) chore: reset jsii-rosetta worker count to default (aws#16755) fix: CDK does not honor NO_PROXY settings (aws#16751) ...
2 parents e809bd2 + d133670 commit 0208bd3

File tree

1,172 files changed

+9035
-5348
lines changed

Some content is hidden

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

1,172 files changed

+9035
-5348
lines changed

Diff for: .github/ISSUE_TEMPLATE.md

-34
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/bug.md

-54
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/bug.yml

+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
name: Bug Report
2+
description: Report a bug
3+
title: "(module name): short issue description"
4+
labels: [bug, needs-triage]
5+
body:
6+
- type: textarea
7+
id: problem
8+
attributes:
9+
label: What is the problem?
10+
validations:
11+
required: true
12+
13+
- type: textarea
14+
id: reproduction
15+
attributes:
16+
label: Reproduction Steps
17+
description: |
18+
Minimal amount of code that causes the bug (if possible) or a reference.
19+
20+
The code sample should be an SSCCE. See http://sscce.org/ for details.
21+
In short, provide a code sample that we can copy/paste, run and reproduce.
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: expected
27+
attributes:
28+
label: What did you expect to happen?
29+
description: |
30+
What were you trying to achieve by performing the steps above?
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: actual
36+
attributes:
37+
label: What actually happened?
38+
description: |
39+
What is the unexpected behavior you were seeing? If you got an error, paste it here.
40+
validations:
41+
required: true
42+
43+
- type: input
44+
id: cdk-version
45+
attributes:
46+
label: CDK CLI Version
47+
description: Output of `cdk version`
48+
validations:
49+
required: true
50+
51+
- type: input
52+
id: framework-version
53+
attributes:
54+
label: Framework Version
55+
validations:
56+
required: false
57+
58+
- type: input
59+
id: node-version
60+
attributes:
61+
label: Node.js Version
62+
validations:
63+
required: true
64+
65+
- type: input
66+
id: operating-system
67+
attributes:
68+
label: OS
69+
validations:
70+
required: true
71+
72+
- type: dropdown
73+
id: language
74+
attributes:
75+
label: Language
76+
multiple: true
77+
options:
78+
- Typescript
79+
- Python
80+
- .NET
81+
- Java
82+
- Go
83+
validations:
84+
required: true
85+
86+
- type: input
87+
id: language-version
88+
attributes:
89+
label: Language Version
90+
description: E.g. TypeScript (3.8.3) | Java (8) | Python (3.7.3)
91+
validations:
92+
required: false
93+
94+
- type: textarea
95+
id: other
96+
attributes:
97+
label: Other information
98+
description: |
99+
e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, slack, etc
100+
validations:
101+
required: false
102+
103+
- type: markdown
104+
attributes:
105+
value: |
106+
---
107+
108+
This is :bug: Bug Report

Diff for: .github/ISSUE_TEMPLATE/doc.md

-29
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/doc.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Documentation Issue
2+
description: Issue in the reference documentation or developer guide
3+
title: "(module name): short issue description"
4+
labels: [feature-request, documentation, needs-triage]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Developer guide? Raise issue/pr here: https://github.com/awsdocs/aws-cdk-guide
10+
11+
Want to help? Submit a pull request here: https://github.com/aws/aws-cdk
12+
13+
- type: input
14+
id: doc-link
15+
attributes:
16+
label: link to reference doc page
17+
validations:
18+
required: false
19+
20+
- type: textarea
21+
id: issue
22+
attributes:
23+
label: Describe your issue?
24+
validations:
25+
required: true
26+
27+
- type: markdown
28+
attributes:
29+
value: |
30+
---
31+
32+
This is a 📕 documentation issue

Diff for: .github/ISSUE_TEMPLATE/feature-request.md

-46
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/feature-request.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Feature Request
2+
description: Request a new feature
3+
title: "(module name): short issue description"
4+
labels: [feature-request, needs-triage]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: Short description of the feature you are proposing.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: use-case
16+
attributes:
17+
label: Use Case
18+
description: |
19+
Why do you need this feature?
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: solution
25+
attributes:
26+
label: Proposed Solution
27+
description: |
28+
Please include prototype/workaround/sketch/reference implementation.
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: other
34+
attributes:
35+
label: Other information
36+
description: |
37+
e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, slack, etc
38+
validations:
39+
required: false
40+
41+
- type: checkboxes
42+
id: acknowledgments
43+
attributes:
44+
label: Acknowledge
45+
options:
46+
- label: I may be able to implement this feature request
47+
required: false
48+
- label: This feature might incur a breaking change
49+
required: false
50+
51+
- type: markdown
52+
attributes:
53+
value: |
54+
---
55+
56+
This is a :rocket: Feature Request

0 commit comments

Comments
 (0)