Skip to content

[ci] release - #39

Merged
CaiJimmy merged 1 commit into
mainfrom
changeset-release/main
Aug 6, 2026
Merged

[ci] release#39
CaiJimmy merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 8, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

jsoniq-language-server@2.8.0

Minor Changes

  • #40 face347 - Remove useless isTypeReferenceRule check because the rules it is checking are not part of the preferred antlr4-C3 rules. Therefore, they will never pass the check.

  • #45 4772a5e - Introduce full query execution support for JSONiq and XQuery files powered by RumbleDB, allowing users to run queries directly within VS Code and view formatted results in a side-by-side webview panel.

    The Java LSP wrapper now includes a dedicated RunQuery handler that executes JSONiq/XQuery scripts against the RumbleDB query engine and serializes execution results as structured JSON arrays.

    The Language Server protocol layer adds custom runQuery request handlers, protocol interfaces, and client execution helpers to bridge query execution requests between the editor client and the underlying Java wrapper process.

    The VS Code extension registers the jsoniq.runQuery command in editor context menus and title bars. It creates a new webview panel to display query results in a structured table format, powered by the new @jsoniq/results-ui webview package built with SolidJS and TanStack Table.

  • #43 98207ed - Synced the JSONiq and XQuery grammars with RumbleDB, changing declaration sites to use varBinding so it's easier to distinguish between variable declaration and reference.

    Unified analysis variable definitions under a single variable kind, removing declaration-kind branching.

    Moved the definition of visibleFrom into the parser AST for more precise definition visibility.

  • #44 0a67f42 - Replace the legacy static type index, which is carried with the static-typecheck request, with on-demand type queries via type-at-position. In the language server (packages/language-server), the full-document type table caching and indexing files (index.ts, key.ts, and format.ts) were removed and the hover.ts file was simplified to dynamically fetch types per position.

    In the Java wrapper (packages/rumble-lsp-wrapper), StaticTypeChecker.java was modified to focus strictly on error diagnostics rather than building whole-document type maps. Meanwhile, TypeAtPosition.java was modified to resolve types and AST ranges dynamically. It has also been refactored to use a AbstractNodeVisitor for cleaner traversal of the AST and allow for future extensibility.

  • #41 dcd685f - RumbleDB has been updated to latest commit in next branch: 7b462ac

    Also, the following Node.js dependencies have been updated:

    Dependency From To Scope
    @changesets/cli ^2.31.0 ^2.31.1 root
    @types/node ^26.0.0 ^26.1.2 language-server, vscode-extension
    fast-xml-parser ^5.9.3 ^5.10.1 language-server
    lint-staged ^17.0.7 ^17.3.0 root
    npm-run-all2 ^9.0.2 ^9.0.3 root
    oxfmt ^0.55.0 ^0.61.0 root, language-server, vscode-extension
    oxlint ^1.70.0 ^1.76.0 root, language-server, vscode-extension
    rolldown 1.1.2 1.2.1 vscode-extension
    tsc-alias ^1.8.17 ^1.9.1 language-server
    tsdown ^0.22.3 ^0.22.14 language-server
    tsx ^4.22.4 ^4.23.1 language-server
    typescript ^6.0.3 ^7.0.2 language-server, vscode-extension
    vitest ^4.1.9 ^4.1.10 language-server
    vscode-languageclient ^10.0.0 ^10.1.0 vscode-extension
    vscode-languageserver ^10.0.0 ^10.1.0 language-server

    And Maven dependencies have been updated:

    Dependency From To
    com.esotericsoftware:kryo 5.6.0 5.6.2
    org.apache.hadoop:hadoop-common 3.3.6 3.5.0
    org.apache.spark:spark-sql_2.13 4.0.1 4.2.0-preview5
    com.fasterxml.jackson.core:jackson-databind 2.20.0 2.22.1
    org.junit.jupiter:junit-jupiter 5.12.2 6.1.2

Patch Changes

  • #46 6daad42 - Use pidusage to get memory usage information

    Because ps is not available on Windows machine and will cause the server to crash.

rumble-lsp-wrapper@0.6.0

Minor Changes

  • #45 4772a5e - Introduce full query execution support for JSONiq and XQuery files powered by RumbleDB, allowing users to run queries directly within VS Code and view formatted results in a side-by-side webview panel.

    The Java LSP wrapper now includes a dedicated RunQuery handler that executes JSONiq/XQuery scripts against the RumbleDB query engine and serializes execution results as structured JSON arrays.

    The Language Server protocol layer adds custom runQuery request handlers, protocol interfaces, and client execution helpers to bridge query execution requests between the editor client and the underlying Java wrapper process.

    The VS Code extension registers the jsoniq.runQuery command in editor context menus and title bars. It creates a new webview panel to display query results in a structured table format, powered by the new @jsoniq/results-ui webview package built with SolidJS and TanStack Table.

  • 1882dcc - Switch RumbleDB to the next branch and update the commit to the latest commit on that branch (RumbleDB/rumble@d08d74d).

  • #44 0a67f42 - Replace the legacy static type index, which is carried with the static-typecheck request, with on-demand type queries via type-at-position. In the language server (packages/language-server), the full-document type table caching and indexing files (index.ts, key.ts, and format.ts) were removed and the hover.ts file was simplified to dynamically fetch types per position.

    In the Java wrapper (packages/rumble-lsp-wrapper), StaticTypeChecker.java was modified to focus strictly on error diagnostics rather than building whole-document type maps. Meanwhile, TypeAtPosition.java was modified to resolve types and AST ranges dynamically. It has also been refactored to use a AbstractNodeVisitor for cleaner traversal of the AST and allow for future extensibility.

  • #41 dcd685f - RumbleDB has been updated to latest commit in next branch: 7b462ac

    Also, the following Node.js dependencies have been updated:

    Dependency From To Scope
    @changesets/cli ^2.31.0 ^2.31.1 root
    @types/node ^26.0.0 ^26.1.2 language-server, vscode-extension
    fast-xml-parser ^5.9.3 ^5.10.1 language-server
    lint-staged ^17.0.7 ^17.3.0 root
    npm-run-all2 ^9.0.2 ^9.0.3 root
    oxfmt ^0.55.0 ^0.61.0 root, language-server, vscode-extension
    oxlint ^1.70.0 ^1.76.0 root, language-server, vscode-extension
    rolldown 1.1.2 1.2.1 vscode-extension
    tsc-alias ^1.8.17 ^1.9.1 language-server
    tsdown ^0.22.3 ^0.22.14 language-server
    tsx ^4.22.4 ^4.23.1 language-server
    typescript ^6.0.3 ^7.0.2 language-server, vscode-extension
    vitest ^4.1.9 ^4.1.10 language-server
    vscode-languageclient ^10.0.0 ^10.1.0 vscode-extension
    vscode-languageserver ^10.0.0 ^10.1.0 language-server

    And Maven dependencies have been updated:

    Dependency From To
    com.esotericsoftware:kryo 5.6.0 5.6.2
    org.apache.hadoop:hadoop-common 3.3.6 3.5.0
    org.apache.spark:spark-sql_2.13 4.0.1 4.2.0-preview5
    com.fasterxml.jackson.core:jackson-databind 2.20.0 2.22.1
    org.junit.jupiter:junit-jupiter 5.12.2 6.1.2
  • c421fb1 - Switch the LSP wrapper to use the new RumbleConfiguration API.

jsoniq-vscode@1.5.0

Minor Changes

  • #45 4772a5e - Introduce full query execution support for JSONiq and XQuery files powered by RumbleDB, allowing users to run queries directly within VS Code and view formatted results in a side-by-side webview panel.

    The Java LSP wrapper now includes a dedicated RunQuery handler that executes JSONiq/XQuery scripts against the RumbleDB query engine and serializes execution results as structured JSON arrays.

    The Language Server protocol layer adds custom runQuery request handlers, protocol interfaces, and client execution helpers to bridge query execution requests between the editor client and the underlying Java wrapper process.

    The VS Code extension registers the jsoniq.runQuery command in editor context menus and title bars. It creates a new webview panel to display query results in a structured table format, powered by the new @jsoniq/results-ui webview package built with SolidJS and TanStack Table.

  • #42 4afa8c7 - Switch output format to ESM because it's now supported in VSCode

  • #41 dcd685f - RumbleDB has been updated to latest commit in next branch: 7b462ac

    Also, the following Node.js dependencies have been updated:

    Dependency From To Scope
    @changesets/cli ^2.31.0 ^2.31.1 root
    @types/node ^26.0.0 ^26.1.2 language-server, vscode-extension
    fast-xml-parser ^5.9.3 ^5.10.1 language-server
    lint-staged ^17.0.7 ^17.3.0 root
    npm-run-all2 ^9.0.2 ^9.0.3 root
    oxfmt ^0.55.0 ^0.61.0 root, language-server, vscode-extension
    oxlint ^1.70.0 ^1.76.0 root, language-server, vscode-extension
    rolldown 1.1.2 1.2.1 vscode-extension
    tsc-alias ^1.8.17 ^1.9.1 language-server
    tsdown ^0.22.3 ^0.22.14 language-server
    tsx ^4.22.4 ^4.23.1 language-server
    typescript ^6.0.3 ^7.0.2 language-server, vscode-extension
    vitest ^4.1.9 ^4.1.10 language-server
    vscode-languageclient ^10.0.0 ^10.1.0 vscode-extension
    vscode-languageserver ^10.0.0 ^10.1.0 language-server

    And Maven dependencies have been updated:

    Dependency From To
    com.esotericsoftware:kryo 5.6.0 5.6.2
    org.apache.hadoop:hadoop-common 3.3.6 3.5.0
    org.apache.spark:spark-sql_2.13 4.0.1 4.2.0-preview5
    com.fasterxml.jackson.core:jackson-databind 2.20.0 2.22.1
    org.junit.jupiter:junit-jupiter 5.12.2 6.1.2

Patch Changes

@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 56aafa0 to f5badde Compare July 12, 2026 20:53
@github-actions
github-actions Bot force-pushed the changeset-release/main branch 7 times, most recently from d74cf2d to 0a7e610 Compare August 6, 2026 10:00
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 0a7e610 to 2fed1cd Compare August 6, 2026 10:05
@CaiJimmy
CaiJimmy merged commit 41b7f0b into main Aug 6, 2026
@CaiJimmy
CaiJimmy deleted the changeset-release/main branch August 6, 2026 10:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant