You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(dev): Clarify issue template framework field (#5480)
In our bug template, we ask users for their SDK version and, if they're using a framework SDK (react, etc), the version of the framework. Users often misunderstand, however, and just provide the SDK version twice. This aims to clarify the distinction, by making three changes:
- Adding clarifying language to the Framework Version field description.
- Changing the placeholder example for the field to include the name of the framework, and a recent IRL version.
- Changing the placeholder example for the SDK field to be the current version, to further emphasize which one is which.
It also fixes two schema errors highlighted by the linter.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug.yml
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
name: 🐞 Bug Report
2
2
description: Tell us about something that's not working the way we (probably) intend.
3
-
labels: "Type: Bug"
3
+
labels: ["Type: Bug"]
4
4
body:
5
5
- type: checkboxes
6
6
attributes:
@@ -45,15 +45,15 @@ body:
45
45
attributes:
46
46
label: SDK Version
47
47
description: What version of the SDK are you using?
48
-
placeholder: ex. 1.5.2
48
+
placeholder: ex. 7.8.0
49
49
validations:
50
50
required: true
51
51
- type: input
52
52
id: framework-version
53
53
attributes:
54
54
label: Framework Version
55
-
description: If you're using one of our framework-specific SDKs (`@sentry/react`, for example), what version of the framework are you using?
56
-
placeholder: ex. 1.5.2
55
+
description: If you're using one of our framework-specific SDKs (`@sentry/react`, for example), what version of the _framework_ (not SDK) are you using?
0 commit comments