diff --git a/CHANGELOG.md b/CHANGELOG.md index 39c2e5df..5173f61a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [3.0.6] 09-Sep-2025 +- Enhancements + - Add `objectscript.unitTest.enabled` setting (#1627) + - Add a `New File...` command for creating an Interoperability Message (#1629) + - Add logging for file change events synced to the server in client-side folders (#1643) +- Fixes + - Fix more uncaught errors (#1625) + - Better support for server definitions defined at the workspace folder level (#1628) + - Fix web application files not being included in server side search results (#1634) (contributed by @psteiwer) + - Prevent concurrency-related errors when saving server-side files when source control is enabled (#1637) + - Fully stringify `AggregateError` when writing to the Output channel (#1639) + - Prevent errors being logged for folder creation or change events when client-side editing (#1643) + - Update web application and abstract document caches when connection changes (#1644) + - Fix logic that determines when to reload a server-side file's contents after save or compile (#1645) + - Don't append extra trailing newlines when saving server-side web app files (#1648) + ## [3.0.5] 21-Jul-2025 - Enhancements - Better telemetry (#1608) diff --git a/README.md b/README.md index 974a4505..b30f870d 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,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 `3.0.5`, look for `3.0.6-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-3.0.6-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 `3.0.6`, look for `3.0.7-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-3.0.7-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 (required for both Stable and Insiders versions of VS Code): diff --git a/src/extension.ts b/src/extension.ts index 29bc2347..5ed42f0f 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -815,6 +815,7 @@ function sendWsFolderTelemetryEvent(wsFolders: readonly vscode.WorkspaceFolder[] serverVersion: api.active ? api.config.serverVersion : undefined, "config.syncLocalChanges": !serverSide ? conf.get("syncLocalChanges") : undefined, dockerCompose: !serverSide ? String(typeof conf.get("conn.docker-compose") == "object") : undefined, + "config.conn.links": String(Object.keys(conf.get("conn.links", {})).length), }); }); }