-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'FasterXML/2.16'
- Loading branch information
Showing
6 changed files
with
115 additions
and
63 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
labels: [ "bug" ] | ||
assignees: [ ] | ||
|
||
body: | ||
- type: checkboxes | ||
id: pre-check | ||
attributes: | ||
label: Search before asking | ||
description: "Please search [issues](https://github.com/FasterXML/jackson-module-kotlin/issues) to check if your issue has already been reported." | ||
options: | ||
- label: "I searched in the [issues](https://github.com/FasterXML/jackson-module-kotlin/issues) and found nothing similar." | ||
required: true | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug | ||
description: "A clear and concise description of what the bug is." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: To Reproduce | ||
description: "Test case or steps to reproduce the behavior. It would be appreciated if you could provide code that can be executed with as few changes as possible, such as include 'import' statements." | ||
value: | | ||
```kotlin | ||
// Your code here | ||
``` | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: "Also, it would be appreciated if you could confirm in advance that the problem is reproduced only when using `Kotlin` or `kotlin-module`. For issues that are reproduced only in `Java`, please submit them to the appropriate repository, such as [FasterXML/jackson-databind](https://github.com/FasterXML/jackson-databind)." | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: "A clear and concise description of what you expected to happen." | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: version-info | ||
attributes: | ||
label: Versions | ||
description: "Please provide the versions you are using:" | ||
value: | | ||
Kotlin: | ||
Jackson-module-kotlin: | ||
Jackson-databind: | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: "Add any other context about the problem here." | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for reporting the bug!" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
labels: [ "enhancement" ] | ||
assignees: [ ] | ||
|
||
body: | ||
- type: textarea | ||
id: use-case | ||
attributes: | ||
label: Use case | ||
description: "A clear and concise description of what the use-case is. This will better help us understand the context in which you're looking for a new feature." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: desired-solution | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: "A clear and concise description of what you want to happen." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: "A clear and concise description of any alternative solutions or features you've considered." | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: "Add any other context or screenshots about the feature request here." | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for suggesting a feature! We appreciate your feedback and will consider it for future enhancements." |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Question | ||
description: Anything you're not sure about? Just ask us | ||
labels: [ "question" ] | ||
assignees: [ ] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Before asking your question, please check out the docs." | ||
- type: textarea | ||
id: user-question | ||
attributes: | ||
label: Your question | ||
placeholder: "What would you like to know?" | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for reaching out! We'll do our best to help." |