From 98016c7489ece6679b4fc416abe2ec0fd5b4a1a2 Mon Sep 17 00:00:00 2001 From: Brett Saviano Date: Mon, 10 Aug 2026 12:35:55 -0400 Subject: [PATCH] Prepare 3.8.3 release --- CHANGELOG.md | 12 ++++++++++++ README.md | 4 ++-- package-lock.json | 16 ++++++++-------- package.json | 2 +- 4 files changed, 23 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5da05b8..781621eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [3.8.3] 11-Aug-2026 +- Enhancements + - Support OAuth2 for authorizing with InterSystems servers (#1799, #1820) + - Update `Open InterSystems Document...` command to show a flat list of documents (#1804) +- Fixes + - Always overwrite entire class for Pull Server Changes when there's a conflict between the local copy and server copy (#1797) + - Improve management of web sessions when connection changes (#1808) + - Improve performance of server-side project query (#1809) + - Only timeout server connection check during extension activation (#1814) + - Sync server-side web app files as raw bytes (#1818) + - Upgrade dependencies + ## [3.8.2] 04-Jun-2026 - Enhancements - Add `Import Files...` command that supports many file types (#1764) diff --git a/README.md b/README.md index 548d7657..e9157b30 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.8.2`, look for `3.8.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-3.8.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 `3.8.3`, look for `3.8.4-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.8.4-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/package-lock.json b/package-lock.json index 5d869e4f..7230076a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "@vscode/debugprotocol": "^1.68.0", "@vscode/extension-telemetry": "^1.5.2", "@xmldom/xmldom": "^0.9.10", - "axios": "^1.18.0", + "axios": "^1.19.0", "iconv-lite": "^0.7.2", "istextorbinary": "^7.0.0", "minimatch": "^10.2.5", @@ -1554,13 +1554,13 @@ } }, "node_modules/axios": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.18.0.tgz", - "integrity": "sha512-E32NzpYKp++W7XRe52rHiXV2ehxmh3wbdgO7MHeFM+vqxLBYHzt0ElkiImtOBxtOmyp0yoC8C6uESVV84Y2/hw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.19.0.tgz", + "integrity": "sha512-ht/iuYZXEjFxLH/Hkezgd7m6JKlHHXEUSneaDz8uZe1Gj5QZtCnpyDsckvAiEnT89OEbCLmnte4R4sn7P0EKFw==", "license": "MIT", "dependencies": { "follow-redirects": "^1.16.0", - "form-data": "^4.0.5", + "form-data": "^4.0.6", "https-proxy-agent": "^5.0.1", "proxy-from-env": "^2.1.0" } @@ -4565,9 +4565,9 @@ } }, "node_modules/mocha": { - "version": "11.7.6", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.6.tgz", - "integrity": "sha512-nS9xOGbw2I3cjCpxwZAEJ9xK9lmJ08vEkQvLtz4du9ZrF9UrjRpeJGiIgl2Z+Qs++pmB4ecDe48Fwsh+j+j7xA==", + "version": "11.8.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.8.0.tgz", + "integrity": "sha512-VyCeUdGN3A9lmCTTgG4yuvY9ixxaDk+xt2R/7/+1AP6EqNG+G9OKkzBwhVtVYoNX8YsxNSgAl8mOv3IAeOpFbw==", "dev": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 59abf64e..230958e3 100644 --- a/package.json +++ b/package.json @@ -1754,7 +1754,7 @@ "@vscode/debugprotocol": "^1.68.0", "@vscode/extension-telemetry": "^1.5.2", "@xmldom/xmldom": "^0.9.10", - "axios": "^1.18.0", + "axios": "^1.19.0", "iconv-lite": "^0.7.2", "istextorbinary": "^7.0.0", "minimatch": "^10.2.5",