Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fbcc537

Browse files
committedJun 11, 2025·
Merge remote-tracking branch 'upstream/main' into add-postgres-bind-iter
2 parents 6ae3505 + 9079720 commit fbcc537

File tree

185 files changed

+6725
-2954
lines changed

Some content is hidden

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

185 files changed

+6725
-2954
lines changed
 

‎.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

‎.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: I think I found a bug in SQLx
2+
description: Create a bug-report issue
3+
labels: [bug]
4+
body:
5+
- type: textarea
6+
id: related-issues
7+
validations:
8+
required: true
9+
attributes:
10+
label: I have found these related issues/pull requests
11+
description: |
12+
I have searched by clicking [HERE](https://github.com/launchbadge/sqlx/issues?q=)
13+
for existing issues, these are the ones I've found,
14+
and this is why I think this deserves a new issue.
15+
placeholder: "Related to ..."
16+
- type: textarea
17+
id: description
18+
validations:
19+
required: true
20+
attributes:
21+
label: Description
22+
description: Clear and concise description of what the bug is
23+
- type: textarea
24+
id: steps-to-reproduce
25+
validations:
26+
required: true
27+
attributes:
28+
label: Reproduction steps
29+
description: A small code snippet or a link to a Github repo or Gist, with instructions on reproducing the bug.
30+
- type: input
31+
id: sqlx-version
32+
attributes:
33+
label: SQLx version
34+
validations:
35+
required: true
36+
- type: input
37+
id: sqlx-features
38+
attributes:
39+
label: Enabled SQLx features
40+
validations:
41+
required: true
42+
- type: input
43+
id: db-server-and-version
44+
attributes:
45+
label: Database server and version
46+
placeholder: MySQL / Postgres / SQLite <x.y.z>
47+
validations:
48+
required: true
49+
- type: input
50+
id: os-type
51+
attributes:
52+
label: Operating system
53+
validations:
54+
required: true
55+
- type: input
56+
id: rust-version
57+
attributes:
58+
label: Rust version
59+
description: You can get this via running `rustc --version`
60+
validations:
61+
required: true

0 commit comments

Comments
 (0)
Please sign in to comment.