Skip to content

Commit

Permalink
Fixes #282, Fixes #291, other changes
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed Oct 17, 2023
1 parent 5969c84 commit 7ebb0a0
Showing 24 changed files with 1,348 additions and 1,298 deletions.
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -16,3 +16,4 @@ server/lib/**
node_modules/**
images/*.gif
**/*.vsix
**/package-lock.json
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# Changelog

## [2.4.0] - 2023-XX-XX
- Fix issue [#282](https://github.com/intersystems/language-server/issues/282): Syntax error in SQL query using PARTITION or OVER
- Fix issue [#288](https://github.com/intersystems/language-server/issues/288): Intellisense for `$ZPOS` system variable doesn't suggest full name `$ZPOSITION`
- Fix issue [#289](https://github.com/intersystems/language-server/issues/289): Go To Definition confuses properties and methods with the same name
- Fix issue [#290](https://github.com/intersystems/language-server/issues/290): Add themes based on VS Code's new Modern default themes
- Fix issue [#291](https://github.com/intersystems/language-server/issues/291): Adopt Diagnostic pull model
- Parser changes:
- DP-424189: Fix syntax coloring of complex Index definitions on Properties with quoted names
- DP-425003: Add parser support for /POLL and /POLLDISCON OPEN/USE keywords
- DP-425015: Fix coloring of JavaScript for...in and for...of loops
- DP-425498: Properly color & embeddings that use marker syntax and follow a command's expression argument
- DP-425560: Coloring for BUILD INDEX
- DP-425908: Coloring for LOAD DATA
- DP-426025: Coloring for SQL Window functions
- DP-426213: Coloring for CREATE & DROP SCHEMA

## [2.3.6] - 2023-07-05
- Fix issue [#283](https://github.com/intersystems/language-server/issues/283): Use all include files for macro intellisense in routines
108 changes: 54 additions & 54 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -4,15 +4,15 @@
"version": "2.4.0-SNAPSHOT",
"private": true,
"engines": {
"vscode": "^1.78.0"
"vscode": "^1.82.0"
},
"dependencies": {
"axios": "^1.4.0",
"axios": "^1.5.1",
"vscode-cache": "^0.3.0",
"vscode-languageclient": "^8.1.0"
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/semver": "^7.5.0",
"@types/vscode": "1.78.0"
"@types/semver": "^7.5.3",
"@types/vscode": "1.82.0"
}
}
Loading

0 comments on commit 7ebb0a0

Please sign in to comment.