Skip to content

Commit 7faaa22

Browse files
authored
Prepare 3.8.2 release (#1794)
1 parent ede9905 commit 7faaa22

6 files changed

Lines changed: 135 additions & 85 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
name: ${{ steps.set-version.outputs.name }}.vsix
102102
- name: Create Release
103103
id: create-release
104-
uses: softprops/action-gh-release@v1
104+
uses: softprops/action-gh-release@v3
105105
with:
106106
tag_name: v${{ steps.set-version.outputs.version }}
107107
prerelease: ${{ github.event_name != 'release' }}

.github/workflows/prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
name: ${{ steps.set-version.outputs.name }}.vsix
9797
- name: Create Pre-Release
9898
id: create-release
99-
uses: softprops/action-gh-release@v1
99+
uses: softprops/action-gh-release@v3
100100
with:
101101
tag_name: v${{ steps.set-version.outputs.version }}
102102
prerelease: ${{ github.event_name != 'release' }}
@@ -140,7 +140,7 @@ jobs:
140140
npx vsce package --pre-release -o ${{ steps.set-version.outputs.name }}.vsix
141141
- name: Upload Release Asset
142142
id: upload-release-asset
143-
uses: softprops/action-gh-release@v1
143+
uses: softprops/action-gh-release@v3
144144
with:
145145
tag_name: ${{ github.event.release.tag_name }}
146146
files: ${{ steps.set-version.outputs.name }}.vsix

CHANGELOG.md

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

3+
## [3.8.2] 04-Jun-2026
4+
- Enhancements
5+
- Add `Import Files...` command that supports many file types (#1764)
6+
- Add `objectscript.insertStubContent` setting (#1765)
7+
- Fixes
8+
- Allow webapp file creation on older IRIS servers (#1768)
9+
- Show detailed error messages when a server-side URI is invalid (#1772)
10+
- Support `Save As...` for server-side documents (#1774)
11+
- Fix issue where unit tests are always run in the first workspace folder (#1775)
12+
- Fix a spelling error (#1777)
13+
- Reinstate reconnect option from status bar panel of server-side workspace folder (#1788)
14+
- Update status of document after running server-side source control action on it when `respectEditableStatus` is set (#1792)
15+
- Ensure cookies are always fresh before starting a Lite Terminal (#1793)
16+
- Upgrade dependencies
17+
318
## [3.8.1] 15-Apr-2026
419
- Fixes
520
- Fix issue that causes client-side connections to be forced active (#1748)

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.8.1`, look for `3.8.2-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.8.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.
58+
- 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.
59+
- 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.
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):

0 commit comments

Comments
 (0)