sysml-v2-lsp 0.9.0 → 0.11.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 +43 -0
- package/dist/server/mcpServer.js +9 -3
- package/dist/server/parseWorker.js +1079 -0
- package/dist/server/server.js +11 -11
- package/index.cjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.11.0]
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Cross-file requirement diagnostics: `satisfy` and `verify` checks now use workspace-wide model relationships instead of per-file text scanning (#10)
|
|
8
|
+
- Narrowed diagnostics suppression: syntax errors are only suppressed in blocks containing expression operators the grammar cannot parse (#8)
|
|
9
|
+
- Integration test suite covering keyword derivation, suppression narrowing, and end-to-end provider pipeline (#8)
|
|
10
|
+
- Regression tests for cross-file shorthand `satisfy`/`verify` (#10)
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- `stripComments()` consolidated into shared `identUtils.ts` — removed duplicates from model provider and semantic validator
|
|
15
|
+
- Keyword set derived from generated ANTLR lexer at runtime, replacing hardcoded list in symbol table (#8)
|
|
16
|
+
- `RelationshipDTO.source` is now optional for shorthand `satisfy`/`verify` without `by` clause
|
|
17
|
+
- Satisfy/verify caches populated in a single workspace scan instead of redundant passes
|
|
18
|
+
- Grammar and DFA snapshot updated
|
|
19
|
+
- Cascading `}` error suppression scoped to closing line of suppressed blocks only (#8)
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- False `unsatisfied-requirement` / `unverified-requirement` warnings when models are split across files (#10)
|
|
24
|
+
- Expression operators inside comments no longer falsely trigger diagnostics suppression
|
|
25
|
+
- Security: updated dependencies to resolve 7 CVEs (lodash, vite, hono, path-to-regexp, picomatch, brace-expansion)
|
|
26
|
+
|
|
27
|
+
## [0.10.0]
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- Off-main-thread parsing via worker thread — diagnostics arrive faster while hover/completion stay responsive
|
|
32
|
+
- Early-open document queue: files opened before server initialisation are re-validated once the DFA is ready
|
|
33
|
+
- Enum value recognition (`enum red;` and bare `red;`) modelled as `EnumUsage` children in the symbol table
|
|
34
|
+
- DFA loader module for worker-side snapshot hydration
|
|
35
|
+
- Expanded warm-up text with `import` and `import all` variants
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
|
|
39
|
+
- Parse-retry comment trimmed to a concise one-liner
|
|
40
|
+
- `empty-enum` diagnostic no longer fires when the enum body contains explicit or implicit values
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
|
|
44
|
+
- False-positive syntax errors on `import` statements inside package bodies
|
|
45
|
+
|
|
3
46
|
## [0.9.0]
|
|
4
47
|
|
|
5
48
|
### Added
|