From b945122ac82aec7f7d3c302caf5c06b4ee336318 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 19:13:32 +0000 Subject: [PATCH] [ci] release --- .changeset/free-waves-prove.md | 9 ------ .changeset/huge-rabbits-burn.md | 9 ------ .changeset/kind-months-attend.md | 9 ------ .changeset/tricky-frogs-drop.md | 5 ---- .changeset/wicked-files-send.md | 5 ---- .changeset/wild-baboons-invite.md | 7 ----- .changeset/yellow-beers-feel.md | 9 ------ .changeset/yellow-kiwis-chew.md | 9 ------ packages/language-server/CHANGELOG.md | 36 ++++++++++++++++++++++++ packages/language-server/package.json | 2 +- packages/rumble-lsp-wrapper/CHANGELOG.md | 12 ++++++++ packages/rumble-lsp-wrapper/package.json | 2 +- packages/vscode-extension/CHANGELOG.md | 19 +++++++++++++ packages/vscode-extension/package.json | 2 +- 14 files changed, 70 insertions(+), 65 deletions(-) delete mode 100644 .changeset/free-waves-prove.md delete mode 100644 .changeset/huge-rabbits-burn.md delete mode 100644 .changeset/kind-months-attend.md delete mode 100644 .changeset/tricky-frogs-drop.md delete mode 100644 .changeset/wicked-files-send.md delete mode 100644 .changeset/wild-baboons-invite.md delete mode 100644 .changeset/yellow-beers-feel.md delete mode 100644 .changeset/yellow-kiwis-chew.md diff --git a/.changeset/free-waves-prove.md b/.changeset/free-waves-prove.md deleted file mode 100644 index 7e66d905..00000000 --- a/.changeset/free-waves-prove.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"rumble-lsp-wrapper": minor -"jsoniq-vscode": minor -"jsoniq-language-server": minor ---- - -Add library-module parsing, import resolution, document links, and cross-file definitions, references, renames, and diagnostics for JSONiq and XQuery. - -Recognize module file extensions in VS Code and keep module analysis synchronized with open documents and workspace file changes. diff --git a/.changeset/huge-rabbits-burn.md b/.changeset/huge-rabbits-burn.md deleted file mode 100644 index 5c6a8f41..00000000 --- a/.changeset/huge-rabbits-burn.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"jsoniq-language-server": minor ---- - -fix: declaration and variables in prolog does not have order - -"A variable initializer sees all functions, variables, and namespaces declared/imported anywhere in the Prolog—except the variable currently being initialized." - -"A declared function body sees all Prolog functions, variables, and namespaces, including itself." diff --git a/.changeset/kind-months-attend.md b/.changeset/kind-months-attend.md deleted file mode 100644 index f1d72fd9..00000000 --- a/.changeset/kind-months-attend.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"jsoniq-language-server": minor ---- - -Extend module support from open documents to the entire workspace. - -The language server discovers JSONiq and XQuery files in workspace folders, indexes unopened library modules, and keeps the index synchronized with file and workspace-folder changes. Find References and Rename can therefore locate usages across files, including references from main modules to declarations exported by library modules. - -Workspace handling is separated into document storage, module resolution, dependency tracking, and symbol indexing. Analyses are cached and invalidated transitively when module dependencies change, open editor content takes precedence over disk content, and failures in individual files do not interrupt indexing of the remaining workspace. Module imports also provide document links and support resolving relative file locations diff --git a/.changeset/tricky-frogs-drop.md b/.changeset/tricky-frogs-drop.md deleted file mode 100644 index e8241f07..00000000 --- a/.changeset/tricky-frogs-drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"jsoniq-vscode": minor ---- - -Synced the JSONiq and XQuery TextMate grammar with the latest ANTLR grammar behavior diff --git a/.changeset/wicked-files-send.md b/.changeset/wicked-files-send.md deleted file mode 100644 index ecec7623..00000000 --- a/.changeset/wicked-files-send.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"jsoniq-language-server": minor ---- - -refactor: remove `references` field from `Definition` type and `visibleFrom` from `BaseSourceDefinition` diff --git a/.changeset/wild-baboons-invite.md b/.changeset/wild-baboons-invite.md deleted file mode 100644 index 3524569d..00000000 --- a/.changeset/wild-baboons-invite.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"jsoniq-language-server": minor ---- - -refactor: classify definitions into `source`, `implicit` and `builtin` - -$err variable in catch blocks are implicit, but not builtin (it's still scope), this caused some problems with hover functionality (it was considering the whole catch block as selectionRange of the $err variable, which is not correct). Now, the hover functionality works correctly for $err variable in catch blocks. diff --git a/.changeset/yellow-beers-feel.md b/.changeset/yellow-beers-feel.md deleted file mode 100644 index cad9e98f..00000000 --- a/.changeset/yellow-beers-feel.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"jsoniq-language-server": minor ---- - -Adds a new Wadler-style formatter for JSONiq and XQuery. - -It formats core queries, declarations, expressions, collections, scripting statements, and direct XML constructors with configurable indentation and line width. It preserves comments and whitespace-sensitive content such as XML text and string constructors. - -The formatter only runs on valid documents and is covered by parse, idempotence, and regression tests. diff --git a/.changeset/yellow-kiwis-chew.md b/.changeset/yellow-kiwis-chew.md deleted file mode 100644 index 2886c605..00000000 --- a/.changeset/yellow-kiwis-chew.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"rumble-lsp-wrapper": minor -"jsoniq-vscode": minor -"jsoniq-language-server": minor ---- - -Improved local development build performance by caching unchanged Java wrapper builds, reusing existing built-in catalogs, and enabling incremental TypeScript type-checking. Production builds continue to regenerate catalogs and bypass development caches. - -Added coordinated watch scripts, separated wrapper tests from development packaging while retaining full CI coverage, and cached the assembled RumbleDB JAR in CI. Also fixed production builds to use the extension’s production configuration. diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 8744ea18..8f8b2570 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,41 @@ # jsoniq-language-server +## 2.9.0 + +### Minor Changes + +- [#52](https://github.com/RumbleDB/language-tools/pull/52) [`25ed540`](https://github.com/RumbleDB/language-tools/commit/25ed540166cfabb68a49dbb28beceb4f5479dc74) - Add library-module parsing, import resolution, document links, and cross-file definitions, references, renames, and diagnostics for JSONiq and XQuery. + + Recognize module file extensions in VS Code and keep module analysis synchronized with open documents and workspace file changes. + +- [#54](https://github.com/RumbleDB/language-tools/pull/54) [`dded099`](https://github.com/RumbleDB/language-tools/commit/dded0994fe19ab4b7f09866ea93f230e8cac26e6) - fix: declaration and variables in prolog does not have order + + "A variable initializer sees all functions, variables, and namespaces declared/imported anywhere in the Prolog—except the variable currently being initialized." + + "A declared function body sees all Prolog functions, variables, and namespaces, including itself." + +- [#53](https://github.com/RumbleDB/language-tools/pull/53) [`1f2eb0c`](https://github.com/RumbleDB/language-tools/commit/1f2eb0cf2a94be4f707b5d956bab7fa58baace7d) - Extend module support from open documents to the entire workspace. + + The language server discovers JSONiq and XQuery files in workspace folders, indexes unopened library modules, and keeps the index synchronized with file and workspace-folder changes. Find References and Rename can therefore locate usages across files, including references from main modules to declarations exported by library modules. + + Workspace handling is separated into document storage, module resolution, dependency tracking, and symbol indexing. Analyses are cached and invalidated transitively when module dependencies change, open editor content takes precedence over disk content, and failures in individual files do not interrupt indexing of the remaining workspace. Module imports also provide document links and support resolving relative file locations + +- [#51](https://github.com/RumbleDB/language-tools/pull/51) [`fe20e9a`](https://github.com/RumbleDB/language-tools/commit/fe20e9ae0729a5b2c2fe325d9c8040807042bd37) - refactor: remove `references` field from `Definition` type and `visibleFrom` from `BaseSourceDefinition` + +- [#50](https://github.com/RumbleDB/language-tools/pull/50) [`a7a5c26`](https://github.com/RumbleDB/language-tools/commit/a7a5c26de4a36530bc4be52d0852c036d5502829) - refactor: classify definitions into `source`, `implicit` and `builtin` + + $err variable in catch blocks are implicit, but not builtin (it's still scope), this caused some problems with hover functionality (it was considering the whole catch block as selectionRange of the $err variable, which is not correct). Now, the hover functionality works correctly for $err variable in catch blocks. + +- [#48](https://github.com/RumbleDB/language-tools/pull/48) [`2aa8734`](https://github.com/RumbleDB/language-tools/commit/2aa8734d98834939aec1af1058e4f5779d07301e) - Adds a new Wadler-style formatter for JSONiq and XQuery. + + It formats core queries, declarations, expressions, collections, scripting statements, and direct XML constructors with configurable indentation and line width. It preserves comments and whitespace-sensitive content such as XML text and string constructors. + + The formatter only runs on valid documents and is covered by parse, idempotence, and regression tests. + +- [`f31310b`](https://github.com/RumbleDB/language-tools/commit/f31310bc5da52fbdb938664f5e2e8fb66edf297e) - Improved local development build performance by caching unchanged Java wrapper builds, reusing existing built-in catalogs, and enabling incremental TypeScript type-checking. Production builds continue to regenerate catalogs and bypass development caches. + + Added coordinated watch scripts, separated wrapper tests from development packaging while retaining full CI coverage, and cached the assembled RumbleDB JAR in CI. Also fixed production builds to use the extension’s production configuration. + ## 2.8.1 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index bb197914..c4a0742b 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "jsoniq-language-server", - "version": "2.8.1", + "version": "2.9.0", "private": false, "license": "Apache-2.0", "repository": { diff --git a/packages/rumble-lsp-wrapper/CHANGELOG.md b/packages/rumble-lsp-wrapper/CHANGELOG.md index fdbe8185..bd0203da 100644 --- a/packages/rumble-lsp-wrapper/CHANGELOG.md +++ b/packages/rumble-lsp-wrapper/CHANGELOG.md @@ -1,5 +1,17 @@ # rumble-lsp-wrapper +## 0.7.0 + +### Minor Changes + +- [#52](https://github.com/RumbleDB/language-tools/pull/52) [`25ed540`](https://github.com/RumbleDB/language-tools/commit/25ed540166cfabb68a49dbb28beceb4f5479dc74) - Add library-module parsing, import resolution, document links, and cross-file definitions, references, renames, and diagnostics for JSONiq and XQuery. + + Recognize module file extensions in VS Code and keep module analysis synchronized with open documents and workspace file changes. + +- [`f31310b`](https://github.com/RumbleDB/language-tools/commit/f31310bc5da52fbdb938664f5e2e8fb66edf297e) - Improved local development build performance by caching unchanged Java wrapper builds, reusing existing built-in catalogs, and enabling incremental TypeScript type-checking. Production builds continue to regenerate catalogs and bypass development caches. + + Added coordinated watch scripts, separated wrapper tests from development packaging while retaining full CI coverage, and cached the assembled RumbleDB JAR in CI. Also fixed production builds to use the extension’s production configuration. + ## 0.6.1 ### Patch Changes diff --git a/packages/rumble-lsp-wrapper/package.json b/packages/rumble-lsp-wrapper/package.json index 4807d3a2..4b169654 100644 --- a/packages/rumble-lsp-wrapper/package.json +++ b/packages/rumble-lsp-wrapper/package.json @@ -1,6 +1,6 @@ { "name": "rumble-lsp-wrapper", - "version": "0.6.1", + "version": "0.7.0", "private": true, "license": "Apache-2.0", "repository": { diff --git a/packages/vscode-extension/CHANGELOG.md b/packages/vscode-extension/CHANGELOG.md index 4c6ab7cd..254a2923 100644 --- a/packages/vscode-extension/CHANGELOG.md +++ b/packages/vscode-extension/CHANGELOG.md @@ -1,5 +1,24 @@ # jsoniq-vscode +## 1.6.0 + +### Minor Changes + +- [#52](https://github.com/RumbleDB/language-tools/pull/52) [`25ed540`](https://github.com/RumbleDB/language-tools/commit/25ed540166cfabb68a49dbb28beceb4f5479dc74) - Add library-module parsing, import resolution, document links, and cross-file definitions, references, renames, and diagnostics for JSONiq and XQuery. + + Recognize module file extensions in VS Code and keep module analysis synchronized with open documents and workspace file changes. + +- [`b057cd8`](https://github.com/RumbleDB/language-tools/commit/b057cd8eeadcd38e1fa34aeb35019aa5205309eb) - Synced the JSONiq and XQuery TextMate grammar with the latest ANTLR grammar behavior + +- [`f31310b`](https://github.com/RumbleDB/language-tools/commit/f31310bc5da52fbdb938664f5e2e8fb66edf297e) - Improved local development build performance by caching unchanged Java wrapper builds, reusing existing built-in catalogs, and enabling incremental TypeScript type-checking. Production builds continue to regenerate catalogs and bypass development caches. + + Added coordinated watch scripts, separated wrapper tests from development packaging while retaining full CI coverage, and cached the assembled RumbleDB JAR in CI. Also fixed production builds to use the extension’s production configuration. + +### Patch Changes + +- Updated dependencies [[`25ed540`](https://github.com/RumbleDB/language-tools/commit/25ed540166cfabb68a49dbb28beceb4f5479dc74), [`dded099`](https://github.com/RumbleDB/language-tools/commit/dded0994fe19ab4b7f09866ea93f230e8cac26e6), [`1f2eb0c`](https://github.com/RumbleDB/language-tools/commit/1f2eb0cf2a94be4f707b5d956bab7fa58baace7d), [`fe20e9a`](https://github.com/RumbleDB/language-tools/commit/fe20e9ae0729a5b2c2fe325d9c8040807042bd37), [`a7a5c26`](https://github.com/RumbleDB/language-tools/commit/a7a5c26de4a36530bc4be52d0852c036d5502829), [`2aa8734`](https://github.com/RumbleDB/language-tools/commit/2aa8734d98834939aec1af1058e4f5779d07301e), [`f31310b`](https://github.com/RumbleDB/language-tools/commit/f31310bc5da52fbdb938664f5e2e8fb66edf297e)]: + - jsoniq-language-server@2.9.0 + ## 1.5.1 ### Patch Changes diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json index 8aff00b5..7ce2220b 100644 --- a/packages/vscode-extension/package.json +++ b/packages/vscode-extension/package.json @@ -1,7 +1,7 @@ { "name": "jsoniq-vscode", "displayName": "JSONiq and XQuery Language Support", - "version": "1.5.1", + "version": "1.6.0", "private": true, "description": "Rich language support for JSONiq and XQuery, featuring syntax highlighting, code completion, and diagnostics powered by RumbleDB.", "categories": [