sysml-v2-lsp 0.21.0 → 0.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.23.0]
6
+
7
+ ### Fixed
8
+
9
+ - Removed a stale `import/no-unresolved` eslint-disable directive (the `import` plugin is not configured, so the rule was undefined and `npm run lint` errored) and three unused `@typescript-eslint/no-unused-vars` disable directives in the browser platform shims; `npm run lint` is now clean
10
+
11
+ ### Changed
12
+
13
+ - Bumped dependencies: `esbuild` 0.28.0 → 0.28.1, `vite` 8.0.16 → 8.1.2, `vitest` 4.1.8 → 4.1.9, `vscode-languageserver` 10.0.0 → 10.0.1 ([#64](https://github.com/daltskin/sysml-v2-lsp/pull/64), [#58](https://github.com/daltskin/sysml-v2-lsp/pull/58))
14
+ - Bumped dev dependencies: `typescript-eslint` 8.60.1 → 8.62.1 ([#56](https://github.com/daltskin/sysml-v2-lsp/pull/56))
15
+ - Bumped dependencies: `hono` 4.12.23 → 4.12.27 ([#60](https://github.com/daltskin/sysml-v2-lsp/pull/60)), `undici` 7.27.2 → 7.28.0 ([#61](https://github.com/daltskin/sysml-v2-lsp/pull/61)), `form-data` 4.0.5 → 4.0.6 ([#62](https://github.com/daltskin/sysml-v2-lsp/pull/62))
16
+ - Bumped `actions/checkout` GitHub Action from v6 to v7 in CI and release workflows ([#63](https://github.com/daltskin/sysml-v2-lsp/pull/63))
17
+
18
+ ## [0.22.0]
19
+
20
+ ### Fixed
21
+
22
+ - Browser build no longer attempts to spawn a `worker_threads` parse worker (unavailable in the Web Worker runtime); parsing now runs inline, guarded by a new `__SYSML_BROWSER_SERVER__` compile-time flag injected via esbuild's `define`, avoiding a misleading worker-failure log
23
+ - Go-to-Definition into bundled `sysml-stdlib:` documents now resolves regardless of URI spelling: library content is additionally keyed by a canonical form so triple-slash/single-slash authority variants and differing percent-encoding (`vscode.Uri` vs `encodeURIComponent`) all map to the same file
24
+
5
25
  ## [0.21.0]
6
26
 
7
27
  ## [0.20.0]