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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
outputs:
taggedbranch: ${{ steps.find-branch.outputs.taggedbranch }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Find which branch the release tag points at
id: find-branch
Expand Down Expand Up @@ -58,9 +58,9 @@ jobs:
echo $VERSION > meta.version
echo $NAME > meta.name
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- run: npm install
- name: lint
run: npm run lint
Expand All @@ -70,12 +70,12 @@ jobs:
- name: Build package
run: |
npx vsce package -o ${{ steps.set-version.outputs.name }}.vsix
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
if: github.event_name != 'release'
with:
name: ${{ steps.set-version.outputs.name }}.vsix
path: ${{ steps.set-version.outputs.name }}.vsix
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: meta
path: |
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
if: github.event_name == 'release' && needs.build.outputs.taggedbranch == 'master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: master
token: ${{ secrets.TOKEN }}
Expand All @@ -121,9 +121,9 @@ jobs:
name: meta
path: .
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- name: Prepare build
id: set-version
run: |
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
outputs:
taggedbranch: ${{ steps.find-branch.outputs.taggedbranch }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Find which branch the release tag points at
id: find-branch
Expand Down Expand Up @@ -53,9 +53,9 @@ jobs:
echo $VERSION > meta.version
echo $NAME > meta.name
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- run: npm install
- name: lint
run: npm run lint
Expand All @@ -65,12 +65,12 @@ jobs:
- name: Build pre-release package
run: |
npx vsce package --pre-release -o ${{ steps.set-version.outputs.name }}.vsix
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
if: github.event_name != 'release'
with:
name: ${{ steps.set-version.outputs.name }}.vsix
path: ${{ steps.set-version.outputs.name }}.vsix
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: meta
path: |
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
if: github.event_name == 'release' && needs.build.outputs.taggedbranch == 'prerelease'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: prerelease
token: ${{ secrets.TOKEN }}
Expand All @@ -116,9 +116,9 @@ jobs:
name: meta
path: .
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- name: Prepare pre-release build
id: set-version
run: |
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [3.8.0] 08-Apr-2026
- Enhancements
- Synchronize only the storage definition when compiling `*.cls` documents (#1730)
- Add Class entry to New File... quickpick (#1732)
- Infer doc URI based on doc name for the New File commands in client-side folders (#1741)
- Fixes
- Restore "compile with flags" commands (#1727)
- Disallow opening Hidden classes using `Open InterSystems Document...` command (#1735)
- Fix hanging in activation when a server-side folder connection is inactive (#1740)
- Don't show error when trying to trigger reload of any open `objectscript://` documents after importing a file (#1744)
- Upgrade dependencies (#1728, #1737, #1738, #1739, #1742, #1746)

## [3.6.0] 23-Feb-2026
Minimum VS Code version is now 1.109.0.
- Enhancements
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.6.0`, look for `3.6.1-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.6.1-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.0`, look for `3.8.1-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.1-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
Loading
Loading