Skip to content

Commit ca5457b

Browse files
authored
Prepare 3.0.6 release (#1649)
1 parent d11c3c5 commit ca5457b

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

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

3+
## [3.0.6] 09-Sep-2025
4+
- Enhancements
5+
- Add `objectscript.unitTest.enabled` setting (#1627)
6+
- Add a `New File...` command for creating an Interoperability Message (#1629)
7+
- Add logging for file change events synced to the server in client-side folders (#1643)
8+
- Fixes
9+
- Fix more uncaught errors (#1625)
10+
- Better support for server definitions defined at the workspace folder level (#1628)
11+
- Fix web application files not being included in server side search results (#1634) (contributed by @psteiwer)
12+
- Prevent concurrency-related errors when saving server-side files when source control is enabled (#1637)
13+
- Fully stringify `AggregateError` when writing to the Output channel (#1639)
14+
- Prevent errors being logged for folder creation or change events when client-side editing (#1643)
15+
- Update web application and abstract document caches when connection changes (#1644)
16+
- Fix logic that determines when to reload a server-side file's contents after save or compile (#1645)
17+
- Don't append extra trailing newlines when saving server-side web app files (#1648)
18+
319
## [3.0.5] 21-Jul-2025
420
- Enhancements
521
- Better telemetry (#1608)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ To unlock these features (optional):
5555

5656
1. Download and install a beta version from GitHub. This is necessary because Marketplace does not allow publication of extensions that use proposed APIs.
5757
- Go to https://github.com/intersystems-community/vscode-objectscript/releases
58-
- 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.
59-
- 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.
58+
- 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.
59+
- 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.
6060

6161
2. From [Command Palette](https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_command-palette) choose `Preferences: Configure Runtime Arguments`.
6262
3. In the argv.json file that opens, add this line (required for both Stable and Insiders versions of VS Code):

src/extension.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -815,6 +815,7 @@ function sendWsFolderTelemetryEvent(wsFolders: readonly vscode.WorkspaceFolder[]
815815
serverVersion: api.active ? api.config.serverVersion : undefined,
816816
"config.syncLocalChanges": !serverSide ? conf.get("syncLocalChanges") : undefined,
817817
dockerCompose: !serverSide ? String(typeof conf.get("conn.docker-compose") == "object") : undefined,
818+
"config.conn.links": String(Object.keys(conf.get("conn.links", {})).length),
818819
});
819820
});
820821
}

0 commit comments

Comments
 (0)