From ce303c14402d616ccd1fb16fb0391a2bddeb7d04 Mon Sep 17 00:00:00 2001 From: isc-bsaviano Date: Tue, 30 Nov 2021 10:59:23 -0500 Subject: [PATCH 1/3] Prepare for 1.1.2 release --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b991fa4..1e6be3c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [1.1.2] 30-Nov-2021 +- Enhancements + - Overhaul `WorkspaceSymbolProvider` (#772) + - Add `Open Shell in Docker` option to Server Actions menu (#778) + - Premilinary web extension support (#782) + - Check all local folders in multi-root workspace for local copy of file (#785) +- Fixes + - Fix `FileSystemProvider` mtime caching (#770) + - Comply with new VS Code policy for scoping access to VS Code proposed API (#771) + - Append .pkg to package name when passed to source control / server command extensions (#776) + - Improve error messaging for Studio Actions (#784) + - Upgrade vulnerable dependencies (#787) + ## [1.1.1] 09-Nov-2021 - Fixes - Debugger: Breakpoint with no hitCondition cannot be set (#766) diff --git a/README.md b/README.md index 8feaf3b1..79992d3c 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,8 @@ To unlock these features (optional): 1. Download and install a beta version from GitHub. This is necessary because Marketplace does not allow publication of extensions that use proposed APIs. - Go to https://github.com/intersystems-community/vscode-objectscript/releases - - Locate the beta immediately above the release you installed from Marketplace. For instance, if you installed `1.1.1`, look for `1.1.2-beta.1`. This will be functionally identical to the Marketplace version apart from being able to use proposed APIs. - - Download the VSIX file (for example `vscode-objectscript-1.1.2-beta.1.vsix`) and install it. One way to install a VSIX is to drag it from your download folder and drop it onto the list of extensions in the Extensions view of VS Code. + - Locate the beta immediately above the release you installed from Marketplace. For instance, if you installed `1.1.2`, look for `1.1.3-beta.1`. This will be functionally identical to the Marketplace version apart from being able to use proposed APIs. + - Download the VSIX file (for example `vscode-objectscript-1.1.3-beta.1.vsix`) and install it. One way to install a VSIX is to drag it from your download folder and drop it onto the list of extensions in the Extensions view of VS Code. 2. From [Command Palette](https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_command-palette) choose `Preferences: Configure Runtime Arguments`. 3. In the argv.json file that opens, add this line: From f1c3804825b7a1e0a6486435e58b8b57f347c4cb Mon Sep 17 00:00:00 2001 From: Brett Saviano Date: Tue, 30 Nov 2021 16:03:24 -0500 Subject: [PATCH 2/3] Fix typo Co-authored-by: John Murray --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e6be3c8..2f67b148 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ - Enhancements - Overhaul `WorkspaceSymbolProvider` (#772) - Add `Open Shell in Docker` option to Server Actions menu (#778) - - Premilinary web extension support (#782) + - Preliminary web extension support (#782) - Check all local folders in multi-root workspace for local copy of file (#785) - Fixes - Fix `FileSystemProvider` mtime caching (#770) From bf317d23ac73d99cdcd78782d81872bc88702e9f Mon Sep 17 00:00:00 2001 From: isc-bsaviano Date: Thu, 2 Dec 2021 08:26:32 -0500 Subject: [PATCH 3/3] Update version number --- CHANGELOG.md | 2 +- README.md | 4 ++-- package-lock.json | 5 ++--- package.json | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f67b148..388c49bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [1.1.2] 30-Nov-2021 +## [1.2.0] 02-Dec-2021 - Enhancements - Overhaul `WorkspaceSymbolProvider` (#772) - Add `Open Shell in Docker` option to Server Actions menu (#778) diff --git a/README.md b/README.md index 79992d3c..4f8b230b 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,8 @@ To unlock these features (optional): 1. Download and install a beta version from GitHub. This is necessary because Marketplace does not allow publication of extensions that use proposed APIs. - Go to https://github.com/intersystems-community/vscode-objectscript/releases - - Locate the beta immediately above the release you installed from Marketplace. For instance, if you installed `1.1.2`, look for `1.1.3-beta.1`. This will be functionally identical to the Marketplace version apart from being able to use proposed APIs. - - Download the VSIX file (for example `vscode-objectscript-1.1.3-beta.1.vsix`) and install it. One way to install a VSIX is to drag it from your download folder and drop it onto the list of extensions in the Extensions view of VS Code. + - Locate the beta immediately above the release you installed from Marketplace. For instance, if you installed `1.2.0`, look for `1.2.1-beta.1`. This will be functionally identical to the Marketplace version apart from being able to use proposed APIs. + - Download the VSIX file (for example `vscode-objectscript-1.2.1-beta.1.vsix`) and install it. One way to install a VSIX is to drag it from your download folder and drop it onto the list of extensions in the Extensions view of VS Code. 2. From [Command Palette](https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_command-palette) choose `Preferences: Configure Runtime Arguments`. 3. In the argv.json file that opens, add this line: diff --git a/package-lock.json b/package-lock.json index d2a44461..452c132f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,11 @@ { "name": "vscode-objectscript", - "version": "1.1.2-SNAPSHOT", + "version": "1.2.0-SNAPSHOT", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "vscode-objectscript", - "version": "1.1.2-SNAPSHOT", + "version": "1.2.0-SNAPSHOT", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 0137deab..a5a1b336 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-objectscript", "displayName": "InterSystems ObjectScript", "description": "InterSystems ObjectScript language support for Visual Studio Code", - "version": "1.1.2-SNAPSHOT", + "version": "1.2.0-SNAPSHOT", "icon": "images/logo.png", "aiKey": "9cd75d51-697c-406c-a929-2bcf46e97c64", "categories": [