Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
499ca07
bump version to 0.9.6
raleigh-g-thompson May 29, 2026
fe5f3a9
add convert CQL to ELM as an AST
raleigh-g-thompson May 31, 2026
6dacc56
add cql/ast splitview and lock scrolling
raleigh-g-thompson May 31, 2026
83e9dd3
remove old execute cql (dead-code)
raleigh-g-thompson May 31, 2026
a13ca96
adds cql deugging support
raleigh-g-thompson May 15, 2026
f637309
fixes issue with cql-ls jar getting deleted when running vscode-cql u…
raleigh-g-thompson May 18, 2026
ffe8b1e
debug hover enhancements
raleigh-g-thompson May 19, 2026
99172a3
update debug to support streaming
raleigh-g-thompson May 29, 2026
2966403
implement and test debug test case functionality
raleigh-g-thompson May 31, 2026
85a01ae
catch and surface DAP session startup errors to the user
raleigh-g-thompson Jun 1, 2026
5e4310e
change AST indent to 2 spaces
raleigh-g-thompson Jun 1, 2026
631a0bc
Update view-elm test mock for 2-space indent and return type format
raleigh-g-thompson Jun 1, 2026
b8af21a
update the cql/ast lock-step tracking
raleigh-g-thompson Jun 1, 2026
3287fda
add AST debug walking support
raleigh-g-thompson Jun 1, 2026
66473d9
fix issues with how AST is displayed while debugging
raleigh-g-thompson Jun 2, 2026
8e8f349
add debug session shutdown enhancements
raleigh-g-thompson Jun 2, 2026
18f4124
enhance AST highlighting with in a debug session
raleigh-g-thompson Jun 2, 2026
acd6ca7
clean up issue with stepping through AST
raleigh-g-thompson Jun 3, 2026
723abea
resurrect package:local script with javaServiceInstaller path fix
raleigh-g-thompson Jun 5, 2026
47af1cf
fix issue with initial debug test case quickpick race condition
raleigh-g-thompson Jun 5, 2026
8be76d9
fix sorting issues in CQL Explorer
raleigh-g-thompson Jun 8, 2026
ad702ba
fix issue taht affected packaging extension
raleigh-g-thompson Jun 8, 2026
ae6b425
refactor view-elm logic
raleigh-g-thompson Jun 9, 2026
c99b99d
add timestamp to server logs
raleigh-g-thompson Jun 9, 2026
6d30df2
debugger ui updates
raleigh-g-thompson Jun 11, 2026
2b724bc
replace debug ast split view with treeview
raleigh-g-thompson Jun 12, 2026
1d90486
add version info
raleigh-g-thompson Jun 12, 2026
4e93ee4
clean-up test case result output
raleigh-g-thompson Jun 12, 2026
bc7942e
fix issue with execute filtered libraries with no test cases
raleigh-g-thompson Jun 12, 2026
413b419
fix CQL Explorer library sorting
raleigh-g-thompson Jun 12, 2026
43fc151
add webview config editor
raleigh-g-thompson Jun 12, 2026
5b5c4ff
fix issues with config webview editor
raleigh-g-thompson Jun 12, 2026
be1c953
chnage version to v.9.6.0
raleigh-g-thompson Jun 13, 2026
e8f7a7d
update change log
raleigh-g-thompson Jun 13, 2026
84e257d
fix testing issues
raleigh-g-thompson Jun 13, 2026
456c3f8
remove duplicated version details in execution results
raleigh-g-thompson Jun 15, 2026
5bc3453
remove 'show /hide layout warnings' from CQL explorer - feature deferred
raleigh-g-thompson Jun 15, 2026
9e75d24
add flat file save test results location option
raleigh-g-thompson Jun 15, 2026
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ target
dist
bin
.vscode-test
coverage
src/__test__/resources/simple-project/input/tests/results
1 change: 1 addition & 0 deletions .vscode-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ module.exports = defineConfig({
'--skip-welcome',
'--skip-release-notes',
'--disable-workspace-trust',
'--user-data-dir=/tmp/vscode-test-userdata',
],
});
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ src/
.gitignore
tsconfig.json
dist/jars
dist/java-support/jars
dist/test

.vscode-test
Expand Down
18 changes: 18 additions & 0 deletions .vscodeignore.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.vscode
.idea
.github
.claude
src/
*.vsix
.gitignore
tsconfig.json
dist/jars
dist/test

.vscode-test
.vscode-test.js
.vscode-test.mjs
tests
.eslintrc.js
test-workspaces
scripts
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@




## v0.9.6 (prerelease)

Date: 2026-06-13

* add cql deugging support
* debug hover enhancements
* add webview config editor
* fix CQL Explorer library sorting
* fix issue with execute filtered libraries with no test cases
* add version info to test case result output
* add timestamp to server logs
* fix issue with initial debug test case quickpick race condition
* catch and surface DAP session startup errors to the user
* fix issue with cql-ls jar getting deleted when running vscode-cql unit tests
* remove old execute cql (dead-code)
* add convert CQL to ELM as an AST
* bump version to 0.9.6


## v0.9.5 (prerelease)

Date: 2026-05-28
Expand Down
10 changes: 10 additions & 0 deletions language-configuration-ast.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"comments": {
"lineComment": "//",
"blockComment": ["/*", "*/"]
},
"indentationRules": {
"increaseIndentPattern": "^.*└── .*:$",
"decreaseIndentPattern": "^ └── "
}
}
162 changes: 160 additions & 2 deletions package-lock.json

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

Loading
Loading