From fb824404124a85739a5152e853fc601fb6b08a4d Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Wed, 10 Jan 2018 13:10:35 -0800 Subject: [PATCH 1/4] Bump product version to 0.25.2 (#461) --- npm-shrinkwrap.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index a3825ec241..f099c6d76b 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "sqlops", - "version": "0.25.1", + "version": "0.25.2", "dependencies": { "@angular/animations": { "version": "4.1.3", diff --git a/package.json b/package.json index 1f151b586c..013a58034a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlops", - "version": "0.25.1", + "version": "0.25.2", "electronVersion": "1.7.9", "distro": "8c3e97e3425cc9814496472ab73e076de2ba99ee", "author": { From 7a421cc0bdffd96cbe5e01f23fda2a838a828a53 Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Wed, 10 Jan 2018 16:48:08 -0800 Subject: [PATCH 2/4] Update changelog for Jan release (#466) --- CHANGELOG.md | 24 ++++++++++++++++++++++++ src/sql/workbench/update/releaseNotes.ts | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8eba02aa1..bc23ba91e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Change Log +## Version 0.25.2 +* Release date: January 17, 2017 +* Release status: Public Preview + +## What's new in this version +The January release focuses on addressing a few of the top upvoted feature suggestions, as well as fixing high-priority bugs. This release period coincides with holiday vacations, so the churn in this release is +relatively scoped. + +Here's some of the highlights in the January release. + +* Tab-coloring based on Server Group +* Saved Server connections are available in Connection Dialog +* Enable HotExit feature +* Fix broken Run Current Query command +* Fix drag-and-drop breaking scripting bug +* Fix incorrect pinned Start Menu icon +* Fix missing Azure Account branding icon +* Change "Server name" to "Server" in Connection Dialog + +## Contributions and "thank you" +We would like to thank all our users who raised issues, and in particular the following users who helped contribute fixes: + +* alextercete for `Fix "No extension gallery service configured" error (#427)` + ## Version 0.24.1 * Release date: December 19, 2017 * Release status: Public Preview diff --git a/src/sql/workbench/update/releaseNotes.ts b/src/sql/workbench/update/releaseNotes.ts index 9daa3a46d5..f756b54ba4 100644 --- a/src/sql/workbench/update/releaseNotes.ts +++ b/src/sql/workbench/update/releaseNotes.ts @@ -68,7 +68,7 @@ export class ProductContribution implements IWorkbenchContribution { text => editorService.openEditor(instantiationService.createInstance(ReleaseNotesInput, pkg.version, text), { pinned: true }), () => { messageService.show(Severity.Info, { - message: nls.localize('read the release notes', "Welcome to {0} December Public Preview! Would you like to view the Getting Started Guide?", product.nameLong, pkg.version), + message: nls.localize('read the release notes', "Welcome to {0} January Public Preview! Would you like to view the Getting Started Guide?", product.nameLong, pkg.version), actions: [ instantiationService.createInstance(OpenGettingStartedInBrowserAction), CloseAction From 8e8e1f6913d66944ede81ae41d048e857b734301 Mon Sep 17 00:00:00 2001 From: Matt Irvine Date: Wed, 10 Jan 2018 18:07:49 -0800 Subject: [PATCH 3/4] Disable hot exit (#468) --- src/vs/workbench/services/textfile/common/textFileService.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/services/textfile/common/textFileService.ts b/src/vs/workbench/services/textfile/common/textFileService.ts index 48c67ed270..bf8172bfc1 100644 --- a/src/vs/workbench/services/textfile/common/textFileService.ts +++ b/src/vs/workbench/services/textfile/common/textFileService.ts @@ -366,7 +366,10 @@ export abstract class TextFileService implements ITextFileService { } // Hot exit - const hotExitMode = configuration && configuration.files ? configuration.files.hotExit : HotExitConfiguration.ON_EXIT; + // {{SQL CARBON EDIT}} + + // const hotExitMode = configuration && configuration.files ? configuration.files.hotExit : HotExitConfiguration.ON_EXIT; + const hotExitMode = HotExitConfiguration.OFF; if (hotExitMode === HotExitConfiguration.OFF || hotExitMode === HotExitConfiguration.ON_EXIT_AND_WINDOW_CLOSE) { this.configuredHotExit = hotExitMode; } else { From 7cf0847ef596c2fe25e7911e925060e96db68240 Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Wed, 10 Jan 2018 21:58:27 -0800 Subject: [PATCH 4/4] Bump Tools Service version to pick up latest changes (#471) --- extensions/mssql/client/src/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/mssql/client/src/config.json b/extensions/mssql/client/src/config.json index 6e685eb1c1..dc6c8237aa 100644 --- a/extensions/mssql/client/src/config.json +++ b/extensions/mssql/client/src/config.json @@ -1,7 +1,7 @@ { "service": { "downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}", - "version": "1.2.0-alpha.49", + "version": "1.4.0-alpha.3", "downloadFileNames": { "Windows_86": "win-x86-netcoreapp2.0.zip", "Windows_64": "win-x64-netcoreapp2.0.zip",