-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 'origin/main' into nextest-race-condition
- Loading branch information
Showing
66 changed files
with
2,932 additions
and
1,055 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: I think I found a bug in SQLx | ||
description: Create a bug-report issue | ||
labels: [bug] | ||
body: | ||
- type: textarea | ||
id: related-issues | ||
validations: | ||
required: true | ||
attributes: | ||
label: I have found these related issues/pull requests | ||
description: | | ||
I have searched by clicking [HERE](https://github.com/launchbadge/sqlx/issues?q=) | ||
for existing issues, these are the ones I've found, | ||
and this is why I think this deserves a new issue. | ||
placeholder: "Related to ..." | ||
- type: textarea | ||
id: description | ||
validations: | ||
required: true | ||
attributes: | ||
label: Description | ||
description: Clear and concise description of what the bug is | ||
- type: textarea | ||
id: steps-to-reproduce | ||
validations: | ||
required: true | ||
attributes: | ||
label: Reproduction steps | ||
description: A small code snippet or a link to a Github repo or Gist, with instructions on reproducing the bug. | ||
- type: input | ||
id: sqlx-version | ||
attributes: | ||
label: SQLx version | ||
validations: | ||
required: true | ||
- type: input | ||
id: sqlx-features | ||
attributes: | ||
label: Enabled SQLx features | ||
validations: | ||
required: true | ||
- type: input | ||
id: db-server-and-version | ||
attributes: | ||
label: Database server and version | ||
placeholder: MySQL / Postgres / SQLite <x.y.z> | ||
validations: | ||
required: true | ||
- type: input | ||
id: os-type | ||
attributes: | ||
label: Operating system | ||
validations: | ||
required: true | ||
- type: input | ||
id: rust-version | ||
attributes: | ||
label: Rust version | ||
description: You can get this via running `rustc --version` | ||
validations: | ||
required: true |
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,37 @@ | ||
name: I have a feature request for SQLx | ||
description: Create a feature-request issue | ||
labels: [enhancement] | ||
body: | ||
- type: textarea | ||
id: related-issues | ||
validations: | ||
required: true | ||
attributes: | ||
label: I have found these related issues/pull requests | ||
description: "Provide context for your pull request." | ||
placeholder: | | ||
Closes \#... | ||
Relates to \#... | ||
- type: textarea | ||
id: feature-description | ||
validations: | ||
required: true | ||
attributes: | ||
label: Description | ||
description: A clear and concise description of what the problem is | ||
placeholder: You should add ... | ||
- type: textarea | ||
id: solution | ||
validations: | ||
required: true | ||
attributes: | ||
label: Prefered solution | ||
description: A clear and concise description of what you want to happen. | ||
placeholder: In my use-case, ... | ||
- type: textarea | ||
id: breaking-change | ||
validations: | ||
required: true | ||
attributes: | ||
label: Is this a breaking change? Why or why not? | ||
|
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
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
Oops, something went wrong.