Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
1 change: 1 addition & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
});
});
}
Expand Down