Skip to content

Commit d754098

Browse files
authored
Merge branch 'awslabs:develop' into develop
2 parents f902046 + 9d8dd1b commit d754098

Some content is hidden

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

59 files changed

+2180
-573
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

-46
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
name: Bug report
2+
description: Report a reproducible bug to help us improve
3+
title: "Bug: TITLE"
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for submitting a bug report. Please add as much information as possible to help us reproduce, and remove any potential sensitive data.
10+
11+
Please become familiar with [our definition of bug](https://github.com/awslabs/aws-lambda-powertools-python/blob/develop/MAINTAINERS.md#is-that-a-bug).
12+
- type: textarea
13+
id: expected_behaviour
14+
attributes:
15+
label: Expected Behaviour
16+
description: Please share details on the behaviour you expected
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: current_behaviour
21+
attributes:
22+
label: Current Behaviour
23+
description: Please share details on the current issue
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: code_snippet
28+
attributes:
29+
label: Code snippet
30+
description: Please share a code snippet to help us reproduce the issue
31+
render: python
32+
validations:
33+
required: true
34+
- type: textarea
35+
id: solution
36+
attributes:
37+
label: Possible Solution
38+
description: If known, please suggest a potential resolution
39+
validations:
40+
required: false
41+
- type: textarea
42+
id: steps
43+
attributes:
44+
label: Steps to Reproduce
45+
description: Please share how we might be able to reproduce this issue
46+
validations:
47+
required: true
48+
- type: input
49+
id: version
50+
attributes:
51+
label: AWS Lambda Powertools for Python version
52+
placeholder: "latest, 1.25.6"
53+
value: latest
54+
validations:
55+
required: true
56+
- type: dropdown
57+
id: runtime
58+
attributes:
59+
label: AWS Lambda function runtime
60+
options:
61+
- 3.6
62+
- 3.7
63+
- 3.8
64+
- 3.9
65+
validations:
66+
required: true
67+
- type: dropdown
68+
id: packaging
69+
attributes:
70+
label: Packaging format used
71+
options:
72+
- Lambda Layers
73+
- Serverless Application Repository (SAR) App
74+
- PyPi
75+
multiple: true
76+
validations:
77+
required: true
78+
- type: textarea
79+
id: logs
80+
attributes:
81+
label: Debugging logs
82+
description: If available, please share [debugging logs](https://awslabs.github.io/aws-lambda-powertools-python/#debug-mode)
83+
render: python
84+
validations:
85+
required: false
86+
- type: markdown
87+
attributes:
88+
value: |
89+
---
90+
91+
**Disclaimer**: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful.

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask a question
4+
url: https://github.com/awslabs/aws-lambda-powertools-python/discussions/new
5+
about: Ask a general question about Lambda Powertools

.github/ISSUE_TEMPLATE/documentation-improvements.md

-17
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Documentation improvements
2+
description: Suggest a documentation update to improve everyone's experience
3+
title: "Docs: TITLE"
4+
labels: ["documentation", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for helping us improve everyone's experience. We review documentation updates on a case by case basis.
10+
- type: textarea
11+
id: search_area
12+
attributes:
13+
label: What were you searching in the docs?
14+
description: Please help us understand how you looked for information that was either unclear or not available
15+
validations:
16+
required: true
17+
- type: input
18+
id: area
19+
attributes:
20+
label: Is this related to an existing documentation section?
21+
description: Please share a link, if applicable
22+
validations:
23+
required: false
24+
- type: textarea
25+
id: idea
26+
attributes:
27+
label: How can we improve?
28+
description: Please share your thoughts on how we can improve this experience
29+
render: markdown
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: suggestion
34+
attributes:
35+
label: Got a suggestion in mind?
36+
description: Please suggest a proposed update
37+
validations:
38+
required: false
39+
- type: checkboxes
40+
id: acknowledgment
41+
attributes:
42+
label: Acknowledgment
43+
options:
44+
- label: I understand the final update might be different from my proposed suggestion, or refused.
45+
required: true
46+
- type: markdown
47+
attributes:
48+
value: |
49+
---
50+
51+
**Disclaimer**: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful.

.github/ISSUE_TEMPLATE/feature_request.md

-20
This file was deleted.
+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Feature request
2+
description: Suggest an idea for Lambda Powertools
3+
title: "Feature request: TITLE"
4+
labels: ["feature-request", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for taking the time to suggest an idea to the Lambda Powertools project.
10+
11+
*Future readers*: Please react with 👍 and your use case to help us understand customer demand.
12+
- type: textarea
13+
id: problem
14+
attributes:
15+
label: Use case
16+
description: Please help us understand your use case or problem you're facing
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: suggestion
21+
attributes:
22+
label: Solution/User Experience
23+
description: Please share what a good solution would look like to this use case
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: alternatives
28+
attributes:
29+
label: Alternative solutions
30+
description: Please describe what alternative solutions to this use case, if any
31+
render: markdown
32+
validations:
33+
required: false
34+
- type: checkboxes
35+
id: acknowledgment
36+
attributes:
37+
label: Acknowledgment
38+
options:
39+
- label: This feature request meets [Lambda Powertools Tenets](https://awslabs.github.io/aws-lambda-powertools-python/latest/#tenets)
40+
required: true
41+
- label: Should this be considered in other Lambda Powertools languages? i.e. [Java](https://github.com/awslabs/aws-lambda-powertools-java/), [TypeScript](https://github.com/awslabs/aws-lambda-powertools-typescript/)
42+
required: false
43+
- type: markdown
44+
attributes:
45+
value: |
46+
---
47+
48+
**Disclaimer**: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful.

.github/ISSUE_TEMPLATE/rfc.md

-62
This file was deleted.

0 commit comments

Comments
 (0)