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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: meta
path: .
Expand All @@ -96,12 +96,12 @@ jobs:
set -x
echo "version=`cat meta.version`" >> $GITHUB_OUTPUT
echo "name=`cat meta.name`" >> $GITHUB_OUTPUT
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: ${{ steps.set-version.outputs.name }}.vsix
- name: Create Release
id: create-release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v3
with:
tag_name: v${{ steps.set-version.outputs.version }}
prerelease: ${{ github.event_name != 'release' }}
Expand All @@ -116,7 +116,7 @@ jobs:
with:
ref: master
token: ${{ secrets.TOKEN }}
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: meta
path: .
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
npx vsce package -o ${{ steps.set-version.outputs.name }}.vsix
- name: Upload Release Asset
id: upload-release-asset
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ github.event.release.tag_name }}
files: ${{ steps.set-version.outputs.name }}.vsix
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: meta
path: .
Expand All @@ -91,12 +91,12 @@ jobs:
set -x
echo "version=`cat meta.version`" >> $GITHUB_OUTPUT
echo "name=`cat meta.name`" >> $GITHUB_OUTPUT
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: ${{ steps.set-version.outputs.name }}.vsix
- name: Create Pre-Release
id: create-release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v3
with:
tag_name: v${{ steps.set-version.outputs.version }}
target_commitish: ${{ github.sha }}
Expand All @@ -112,7 +112,7 @@ jobs:
with:
ref: prerelease
token: ${{ secrets.TOKEN }}
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: meta
path: .
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
npx vsce package --pre-release -o ${{ steps.set-version.outputs.name }}.vsix
- name: Upload Release Asset
id: upload-release-asset
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ github.event.release.tag_name }}
files: ${{ steps.set-version.outputs.name }}.vsix
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## [3.8.2] 04-Jun-2026
- Enhancements
- Add `Import Files...` command that supports many file types (#1764)
- Add `objectscript.insertStubContent` setting (#1765)
- Fixes
- Allow webapp file creation on older IRIS servers (#1768)
- Show detailed error messages when a server-side URI is invalid (#1772)
- Support `Save As...` for server-side documents (#1774)
- Fix issue where unit tests are always run in the first workspace folder (#1775)
- Fix a spelling error (#1777)
- Reinstate reconnect option from status bar panel of server-side workspace folder (#1788)
- Update status of document after running server-side source control action on it when `respectEditableStatus` is set (#1792)
- Ensure cookies are always fresh before starting a Lite Terminal (#1793)
- Upgrade dependencies

## [3.8.1] 15-Apr-2026
- Fixes
- Fix issue that causes client-side connections to be forced active (#1748)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,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.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.
- 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.
- 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.

- 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.4.0`, look for `3.4.1-beta.1`. This will be functionally identical to the Marketplace version apart from being able to use proposed APIs.
Expand Down
Loading