sysml-v2-lsp 0.11.0 → 0.12.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
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.12.0]
4
+
5
+ ### Added
6
+
7
+ - Parse performance benchmark script (`scripts/benchmark-parse.ts`) for cold vs DFA-pre-seeded comparisons
8
+ - Async workspace scanning with post-scan revalidation of open documents
9
+
10
+ ### Changed
11
+
12
+ - Workspace file scanning now only runs for `.code-workspace` projects, avoiding wasteful scans in single-file mode
13
+ - Completion provider caches definition completions per document version
14
+ - Hover provider shares the server-level semantic validator to reuse cached indexes
15
+ - Semantic validator caches symbol indexes across validation runs
16
+ - Parse worker improved DFA snapshot retry and re-parse logic
17
+ - Diagnostics line numbers clamped to prevent negative values from error listener
18
+ - Workspace scan skips `temp`, `test`, `dist`, `build`, and similar non-project directories
19
+
3
20
  ## [0.11.0]
4
21
 
5
22
  ### Added
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/sysml-v2-lsp?logo=npm)](https://www.npmjs.com/package/sysml-v2-lsp)
4
4
 
5
- [![SysML v2.0 Language Support VS Code Marketplace](https://img.shields.io/visual-studio-marketplace/v/JamieD.sysml-v2-support?label=VS%20Code%20Marketplace&logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=JamieD.sysml-v2-support)
5
+ [![SysML v2.0 Language Support VS Code Marketplace](https://img.shields.io/badge/Install-VS%20Code%20Marketplace-007ACC?logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=JamieD.sysml-v2-support)
6
6
 
7
7
  A [Language Server Protocol (LSP)](https://microsoft.github.io/language-server-protocol/) implementation for [SysML v2](https://www.omgsysml.org/SysML-2.htm).
8
8