Skip to content

Commit dd5fca5

Browse files
authored
chore: restore bug and feature request issue templates (#1019)
Signed-off-by: andrerovee <roveda.andrea03@gmail.com> Signed-off-by: Andrea Roveda <roveda.andrea03@gmail.com>
1 parent e69cf65 commit dd5fca5

File tree

4 files changed

+116
-0
lines changed

4 files changed

+116
-0
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
labels: [ bug ]
4+
type: Bug
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
## Thanks for submitting a bug report!
10+
11+
Before submitting:
12+
1. Try searching the existing issues and discussions to see if your issue has already been reported
13+
2. Try asking on [Discord's hiero-general channel](discord.hiero.org)
14+
3. If you're reporting a security vulnerability, please disclose responsibly via our [bug bounty program](https://hedera.com/bounty)
15+
- type: textarea
16+
id: description
17+
attributes:
18+
label: Description
19+
description: What happened and what you did you expect to happen?
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: steps
24+
attributes:
25+
label: Steps to reproduce
26+
description: Steps to reproduce the behavior
27+
placeholder: |
28+
1. Run the program
29+
2. Click on '...'
30+
3. Scroll down to '...'
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: context
35+
attributes:
36+
label: Additional context
37+
description: Attach any logs or screenshots relevent to the problem.
38+
placeholder: |
39+
![Screenshot](bug.png)
40+
41+
```bash
42+
2021-06-29T13:50:45.008-0600 INFO thread-1 Some logs
43+
```
44+
- type: dropdown
45+
id: network
46+
attributes:
47+
description: Which network(s) did the issue occur on?
48+
label: Hedera network
49+
multiple: true
50+
options:
51+
- mainnet
52+
- testnet
53+
- previewnet
54+
- other
55+
- type: input
56+
id: version
57+
attributes:
58+
description: What version of the software are you using?
59+
label: Version
60+
placeholder: v0.1.0
61+
validations:
62+
required: true
63+
- type: dropdown
64+
id: os
65+
attributes:
66+
description: Which OS did the issue occur on?
67+
label: Operating system
68+
options:
69+
- Linux
70+
- macOS
71+
- Windows
72+
- Other
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Feature
2+
description: Suggest an idea for this project
3+
labels: [ enhancement ]
4+
type: Feature
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
## Thanks for submitting a feature request!
10+
11+
Before submitting:
12+
* Try searching the existing issues and discussions to see if something similar has been discussed previously
13+
* Try opening a GitHub discussion first to gather feedback and reach consensus
14+
* If this is a major enhancement, please open a [Hiero Improvement Proposal](https://github.com/hiero-ledger/hiero-improvement-proposals)
15+
- type: textarea
16+
id: problem
17+
attributes:
18+
label: Problem
19+
description: What is the problem you are trying to solve?
20+
placeholder: I'm always frustrated when ...
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: solution
25+
attributes:
26+
label: Solution
27+
description: What solution do you propose to solve the problem?
28+
placeholder: |
29+
- Add a config property
30+
- Change the schema
31+
- ...
32+
validations:
33+
required: true
34+
- type: textarea
35+
id: alternatives
36+
attributes:
37+
label: Alternatives
38+
description: What alternative solutions have you considered?

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ blank_issues_enabled: true
44
# issue_templates:
55
# - name: Good First Issue
66
# filename: 01-good_first_issue.yml
7+
#- name: Bug Report
8+
# filename: 02_bug_report.yml
9+
10+
# - name: Feature Request
11+
# filename: 03_feature_request.yml
712

813
# Test contact links
914
contact_links:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
1919
- feat: AccountCreateTransaction now supports both PrivateKey and PublicKey [#939](https://github.com/hiero-ledger/hiero-sdk-python/issues/939)
2020
- Added Acceptance Criteria section to Good First Issue template for better contributor guidance (#997)
2121
- Added __str__() to CustomRoyaltyFee and updated examples and tests accordingly (#986)
22+
- Restore bug and feature request issue templates (#996)(https://github.com/hiero-ledger/hiero-sdk-python/issues/996)
2223
- Support selecting specific node account ID(s) for queries and transactions and added `Network._get_node()` with updated execution flow (#362)
2324
- Add TLS support with two-stage control (`set_transport_security()` and `set_verify_certificates()`) for encrypted connections to Hedera networks. TLS is enabled by default for hosted networks (mainnet, testnet, previewnet) and disabled for local networks (solo, localhost) (#855)
2425

0 commit comments

Comments
 (0)