Skip to content

Commit e6472c5

Browse files
erpettcroblesm
andauthored
readme changelog and github template cherrypick for release branch (#19279)
* updates to readme and changelog for the 1.31 release (#19273) (cherry picked from commit f30530c) * Readme & GitHub issue template updates (#19274) * - Adding GitHub Copilot bug report issue template - Updating README to include Schema Compare addition * Updating GHCP feature names (cherry picked from commit cf56146) --------- Co-authored-by: Carlos Robles <[email protected]>
1 parent b2965f2 commit e6472c5

File tree

3 files changed

+109
-0
lines changed

3 files changed

+109
-0
lines changed
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
name: Bug Report - GitHub Copilot integration
2+
description: File a bug report to help us improve GitHub Copilot integration for the MSSQL extension.
3+
title: "[GitHub Copilot - Bug]: "
4+
labels: ["bug", "PrPr", "Area - GitHub Copilot", "Triage: Needed"]
5+
assignees: []
6+
7+
body:
8+
# Introductory message to thank the user and set expectations
9+
- type: markdown
10+
attributes:
11+
value: |
12+
## Thank you for taking the time to report a bug!
13+
Please provide as much detail as possible (screenshots, screen recordings, logs) to help us reproduce and fix the issue.
14+
15+
# Section for describing the issue
16+
- type: textarea
17+
id: description
18+
attributes:
19+
label: Description
20+
description: Briefly explain what you expected to happen and what actually happened.
21+
placeholder: |
22+
Expected GitHub Copilot to suggest valid output...
23+
But the suggestion was incorrect or not aligned with the prompt.
24+
Paste or drag and drop screenshots or recordings that show the bug.
25+
validations:
26+
required: true
27+
28+
# Section for providing steps to reproduce the issue
29+
- type: textarea
30+
id: repro-steps
31+
attributes:
32+
label: Steps to Reproduce
33+
description: Describe the GitHub Copilot prompt, action, and the sequence that led to the issue.
34+
placeholder: |
35+
1. Entered a prompt in the editor
36+
2. Reviewed GitHub Copilot's suggestion
37+
3. Accepted or modified the suggestion
38+
4. Observed unexpected output or behavior
39+
validations:
40+
required: true
41+
42+
# Section for selecting affected areas
43+
- type: checkboxes
44+
id: affected-area
45+
attributes:
46+
label: Affected Area
47+
description: Select all the areas where you encountered issues.
48+
options:
49+
- label: Chat and inline suggestions
50+
- label: Code generation
51+
- label: Schema Explorer & Designer
52+
- label: Smart Query Builder
53+
- label: Query Optimizer Assistant
54+
- label: Business Logic Explainer
55+
- label: Security Analyzer
56+
- label: Localization & Formatting Helper
57+
- label: Testing and Mocking Data Generator
58+
- label: Other (please describe below)
59+
60+
- type: textarea
61+
id: other-affected-area
62+
attributes:
63+
label: If you selected "Other", please describe the affected area
64+
description: Only fill this if you selected "Other" above.
65+
placeholder: Describe the affected area here...
66+
validations:
67+
required: false
68+
69+
# Section for providing environment details
70+
- type: textarea
71+
id: environment
72+
attributes:
73+
label: Environment Information (Optional)
74+
description: Add versions and environment details below.
75+
placeholder: |
76+
• VS Code Version:
77+
• MSSQL Extension Version:
78+
• GitHub Copilot Version:
79+
• Operating System:
80+
81+
# Section for confirming issue search and willingness to work on the issue
82+
- type: checkboxes
83+
id: confirmations
84+
attributes:
85+
label: Confirmation
86+
options:
87+
- label: I have searched existing issues and couldn’t find a match
88+
required: true
89+
- label: I want to work on this issue
90+
91+
# Closing message to thank the user
92+
- type: markdown
93+
attributes:
94+
value: "Thank you for reporting this issue! We’ll get back to you as soon as possible. 🙌"

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## Version 1.31.0
4+
* Release date: April 30, 2025
5+
* Release status: GA
6+
### What’s new in 1.31.0
7+
* Introduced Schema Compare to visually compare and script out schema differences
8+
* Enhanced Query Results experience with live execution timing summary metrics and stability improvements on large result sets
9+
* Improved connection workflow with smarter retries streamlined error handling and seamless AAD sign-in support
10+
* Resolved Fabric SQL Database connectivity issues for more reliable cloud access
11+
* UI/UX enhancements including removal of duplicate saved connections and elimination of console errors in the results pane
12+
313
## Version 1.30.0
414
* Release date: March 31, 2025
515
* Release status: GA

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ With a rich set of features, the MSSQL extension for Visual Studio Code enhances
3131
- **Node Navigation**: Interact with each step in the execution plan, including collapsing or expanding nodes for a simplified view.
3232
- **Zoom Controls**: Zoom in or out to adjust the level of detail, or use "zoom to fit" for a complete view of the plan.
3333
- **Metrics and Highlighting**: Highlight key performance indicators, such as elapsed time or subtree cost, to identify bottlenecks in query execution.
34+
- **Schema Compare (Preview)**: Effortless schema synchronization and management
35+
- Compare schemas between two databases, DACPAC files, or SQL projects and see additions, removals, and modifications at a glance
36+
- Filter and exclude specific differences before syncing
37+
- Apply changes directly or generate a deployment script for later use
38+
- Save comparisons to rerun or audit schema changes
3439
- **Customizable Extension Options**: Configure command shortcuts, appearance, and other settings to personalize your development experience.
3540

3641
<img src="https://github.com/Microsoft/vscode-mssql/raw/main/images/mssql-demo.gif" alt="demo" style="width:480px;"/>

0 commit comments

Comments
 (0)