Skip to content

Commit c443c00

Browse files
committed
Fixes #258, Fixes #351, Prepare 2.7.0 release
1 parent e018d9a commit c443c00

22 files changed

+662
-750
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
platarch: [win32-x64, linux-x64, linux-arm64, alpine-x64, alpine-arm64, darwin-x64, darwin-arm64]
29+
platarch: [win32-x64, win32-arm64, linux-x64, linux-arm64, alpine-x64, alpine-arm64, darwin-x64, darwin-arm64]
3030
steps:
3131
- name: Check out repository
3232
uses: actions/checkout@v4

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
22

3-
## [2.7.0] - 2025-XX-XX
3+
## [2.7.0] - 2025-02-03
4+
- Fix issue [#258](https://github.com/intersystems/language-server/issues/258): Support Windows Arm
5+
- Fix issue [#351](https://github.com/intersystems/language-server/issues/351): Memory leak in parser module
46
- Fix issue [#357](https://github.com/intersystems/language-server/issues/357): Add completion for globals and routines
57
- Fix issue [#358](https://github.com/intersystems/language-server/issues/358): Uncaught error when hovering over a macro that's defined as empty in the current document
8+
- Parser changes:
9+
- DP-436793: Improve assigning of syntax error descriptions to tokens
10+
- DP-436900: Add support for /USEIPV6 OPEN keyword
611

712
## [2.6.5] - 2024-11-13
813
- Fix issue [#356](https://github.com/intersystems/language-server/issues/356): Unexpected new dialog during password retrieval using Server Manager authprovider

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ This extension can be installed on the following platforms:
8383
| `alpine-x64` | `alpine-arm64` |
8484
| `darwin-x64` | `darwin-arm64` |
8585
| `linux-x64` | `linux-arm64` |
86-
| `win32-x64` | |
86+
| `win32-x64` | `win32-arm64` |
8787

8888
## Dependencies
8989

client/package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "language-server-client",
33
"author": "InterSystems Corporation",
4-
"version": "2.6.6-SNAPSHOT",
4+
"version": "2.7.0-SNAPSHOT",
55
"private": true,
66
"engines": {
77
"vscode": "^1.93.0"
88
},
99
"dependencies": {
10-
"axios": "^1.7.7",
10+
"axios": "^1.7.9",
1111
"vscode-cache": "^0.3.0",
1212
"vscode-languageclient": "^9.0.1"
1313
},

0 commit comments

Comments
 (0)