Skip to content

Commit 6736b67

Browse files
authored
Merge pull request #9421 from microsoft/seanmcm/1_10_5_release
Merge for 1.10.5
2 parents 380dcbb + 4b4ea51 commit 6736b67

File tree

169 files changed

+2834
-1140
lines changed

Some content is hidden

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

169 files changed

+2834
-1140
lines changed

.github/ISSUE_TEMPLATE/debugger.md

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

.github/ISSUE_TEMPLATE/debugger.yml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: Bug Report - Debugger
2+
description: Create a bug report for debugging such as call stack, breakpoints, watch window, launching or attaching to a debuggee.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
### Is there an existing issue for this?
8+
Please search our [existing issues](https://github.com/microsoft/vscode-cpptools/issues) to see if an issue already exists for the bug you encountered.
9+
10+
Please also review our [documentation](https://code.visualstudio.com/docs/languages/cpp) and [FAQs](https://code.visualstudio.com/docs/cpp/faq-cpp).
11+
- type: textarea
12+
attributes:
13+
label: Environment
14+
description: |
15+
Please provide the information for the following:
16+
- OS and version
17+
- VS Code version
18+
- C/C++ extension version
19+
- OS and version of remote machine (if applicable)
20+
- GDB / LLDB version
21+
value: |
22+
- OS and version:
23+
- VS Code:
24+
- C/C++ extension:
25+
- OS and version of remote machine (if applicable):
26+
- GDB / LLDB version:
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: Bug Summary and Steps to Reproduce
32+
description: |
33+
Please describe the debugging issue or debugger feature that is not working as expected.
34+
35+
Include clear steps on how to reproduce the issue.
36+
value: |
37+
Bug Summary:
38+
39+
40+
Steps to reproduce:
41+
1. In this environment...
42+
2. With this config...
43+
3. Do '...'
44+
4. See error...
45+
validations:
46+
required: true
47+
- type: textarea
48+
attributes:
49+
label: Debugger Configurations
50+
description: Please provide the debugger configurations from the **tasks.json** and **launch.json** files.
51+
render: shell
52+
validations:
53+
required: true
54+
- type: textarea
55+
attributes:
56+
label: Debugger Logs
57+
description: |
58+
If applicable, please include [logging for the debugger adapter](https://code.visualstudio.com/docs/cpp/enable-logging-cpp#_enable-logging-for-the-debug-adapter) by adding `"logging": { "engineLogging": true, "trace": true, "traceResponse": true }` in the **launch.json** file.
59+
60+
Include logs or error messages from the Debug Console or Output windows.
61+
render: shell
62+
validations:
63+
required: true
64+
- type: textarea
65+
attributes:
66+
label: Other Extensions
67+
description: If applicable, please list other extensions installed and if the issue persists after disabling other extensions.
68+
validations:
69+
required: false
70+
- type: textarea
71+
attributes:
72+
label: Additional Information
73+
description: |
74+
Optionally provide other information that will give us more context about the issue you are encountering, such as a code sample, screenshots, or screen recording of the issue.
75+
76+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
77+
validations:
78+
required: false

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Feature Request
2+
description: Suggest an idea for the C/C++ extension.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
### Is there an existing request for this feature?
8+
Prior to creating a new feature request, please review our [existing feature requests](https://github.com/microsoft/vscode-cpptools/issues?q=is%3Aopen+is%3Aissue+label%3A%22Feature+Request%22) to avoid duplicates.
9+
- type: textarea
10+
attributes:
11+
label: Feature Request
12+
description: |
13+
Describe the feature you'd like.
14+
validations:
15+
required: true

.github/ISSUE_TEMPLATE/general-extension.md

Lines changed: 0 additions & 45 deletions
This file was deleted.
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Bug Report - General Extension
2+
description: Create a bug report for downloading, installing, or building the extension.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
### Is there an existing issue for this?
8+
Please search our [existing issues](https://github.com/microsoft/vscode-cpptools/issues) to see if an issue already exists for the bug you encountered.
9+
10+
Please also review our [documentation](https://code.visualstudio.com/docs/languages/cpp) and [FAQs](https://code.visualstudio.com/docs/cpp/faq-cpp).
11+
- type: textarea
12+
attributes:
13+
label: Environment
14+
description: |
15+
Please provide the information for the following:
16+
- OS and version
17+
- VS Code version
18+
- C/C++ extension version
19+
- OS and version of remote machine (if applicable)
20+
value: |
21+
- OS and version:
22+
- VS Code:
23+
- C/C++ extension:
24+
- OS and version of remote machine (if applicable):
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: Bug Summary and Steps to Reproduce
30+
description: |
31+
Please give a description of the issue you are encountering and what you expected to happen.
32+
33+
Include clear steps on how to reproduce the issue.
34+
value: |
35+
Bug Summary:
36+
37+
38+
Steps to reproduce:
39+
1. In this environment...
40+
2. With this config...
41+
3. Do '...'
42+
4. See error...
43+
validations:
44+
required: true
45+
- type: textarea
46+
attributes:
47+
label: Other Extensions
48+
description: If applicable, please list other extensions installed and if the issue persists after disabling other extensions.
49+
validations:
50+
required: false
51+
- type: textarea
52+
attributes:
53+
label: Additional Information
54+
description: |
55+
Optionally provide other information that will give us more context about the issue you are encountering.
56+
57+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
58+
validations:
59+
required: false

.github/workflows/by-design-closer-debugger .yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
labels: by design,debugger
2424
ignoreLabels: language service,internal
2525
closeDays: 0
26-
closeComment: "This issue has been closed automatically because it's labeled as 'by design'."
26+
closeComment: "This issue has been closed because the described behavior was determined to be by design."

.github/workflows/by-design-closer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
labels: by design
2424
ignoreLabels: debugger,Feature Request,more info needed,internal
2525
closeDays: 60
26-
closeComment: "This issue has been closed automatically because it's labeled as 'by design' and has not had recent activity."
26+
closeComment: "This issue has been closed because the described behavior was determined to be by design."
2727
pingDays: 80
2828
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if it is no longer relevant."

.github/workflows/duplicate-closer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
labels: duplicate
2424
ignoreLabels: debugger,Feature Request,more info needed,by design,internal
2525
closeDays: 60
26-
closeComment: "This issue has been closed automatically because it's labeled as a 'duplicate' and has not had recent activity."
26+
closeComment: "This issue has been closed because it is a duplicate of another issue we are tracking."
2727
pingDays: 80
2828
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if it is no longer relevant."

.github/workflows/enhancement-closer-no-milestone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
addLabels: more votes needed
2626
closeDays: 60
2727
maximumVotes: 2
28-
closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog."
28+
closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog."
2929
setMilestoneId: 30
3030
ignoreMilestoneNames: "*"

.github/workflows/enhancement-closer-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
addLabels: more votes needed
2626
closeDays: 60
2727
maximumVotes: 2
28-
closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog."
28+
closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog."
2929
milestoneName: Triage
3030
milestoneId: 30

.github/workflows/external-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
labels: external,debugger
2424
ignoreLabels: language service,internal
2525
closeDays: 0
26-
closeComment: "This issue has been closed automatically because it's labeled as 'external'."
26+
closeComment: "This issue has been closed because it is external or not applicable to the extension."

.github/workflows/feature-request-closer-no-milestone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
addLabels: more votes needed
2626
closeDays: 60
2727
maximumVotes: 2
28-
closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog."
28+
closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog."
2929
setMilestoneId: 30
3030
ignoreMilestoneNames: "*"

.github/workflows/feature-request-closer-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
addLabels: more votes needed
2626
closeDays: 60
2727
maximumVotes: 2
28-
closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog."
28+
closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog."
2929
milestoneName: Triage
3030
milestoneId: 30

.github/workflows/investigate-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
labels: investigate,debugger
2424
ignoreLabels: language service,internal
2525
closeDays: 180
26-
closeComment: "This issue has been closed automatically because it has not had recent activity."
26+
closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue."

.github/workflows/investigate-costing-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
labels: "investigate: costing,debugger"
2424
ignoreLabels: language service,internal
2525
closeDays: 180
26-
closeComment: "This issue has been closed automatically because it has not had recent activity."
26+
closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue."

.github/workflows/more-info-needed-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
ignoreLabels: language service,internal
2525
involves: wardengnaw,pieandcakes,calgagi
2626
closeDays: 14
27-
closeComment: "This issue has been closed automatically because it needs more information and has not had recent activity."
27+
closeComment: "This issue has been closed because it needs more information and has not had recent activity."
2828
pingDays: 7
2929
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."

.github/workflows/more-info-needed-closer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
labels: more info needed
2424
ignoreLabels: debugger,internal
2525
closeDays: 60
26-
closeComment: "This issue has been closed automatically because it needs more information and has not had recent activity."
26+
closeComment: "This issue has been closed because it needs more information and has not had recent activity."
2727
pingDays: 80
2828
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."

.github/workflows/question-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
ignoreLabels: language service,internal
2525
involves: wardengnaw,pieandcakes,calgagi
2626
closeDays: 14
27-
closeComment: "This issue has been closed automatically because it's labeled as a 'question' and has not had recent activity."
27+
closeComment: "This issue has been closed because it is a question and has not had recent activity."
2828
pingDays: 7
2929
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the question has been answered."

.github/workflows/question-closer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
labels: question
2424
ignoreLabels: debugger,internal
2525
closeDays: 60
26-
closeComment: "This issue has been closed automatically because it's labeled as a 'question' and has not had recent activity."
26+
closeComment: "This issue has been closed because it is a question and has not had recent activity."
2727
pingDays: 80
2828
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the question has been answered."

0 commit comments

Comments
 (0)