sysml-v2-lsp 0.8.0 → 0.9.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 +16 -1
- package/dist/server/mcpServer.js +5 -4
- package/dist/server/server.js +23 -18
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.0]
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Semantic rules: circular specialization, circular containment, unsatisfied requirements, unverified requirements
|
|
8
|
+
- Syntax error suppression for known grammar limitation zones (constraint bodies, calc/analysis expressions)
|
|
9
|
+
- Workspace file scanning improvements
|
|
10
|
+
- Document formatting provider
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Parser self-healing DFA: SLL→LL fallback builds correct DFA states in-place instead of clearing the entire snapshot
|
|
15
|
+
- Library index handles `<shortName>` and quoted long-name syntax
|
|
16
|
+
- Satisfy/verify caches on `SemanticValidator` avoid redundant workspace scans
|
|
17
|
+
- Type-name extraction strips leaked keyword concatenations from `getText()`
|
|
18
|
+
|
|
3
19
|
## [0.8.0]
|
|
4
20
|
|
|
5
21
|
### Added
|
|
@@ -7,7 +23,6 @@
|
|
|
7
23
|
- Update grammar files with Full OMG SysML v2 spec conformance: grammar now passes all official training, validation, and example files (309 .sysml files across 4 suites)
|
|
8
24
|
- `make update-grammar` now automatically rebuilds parser and regenerates DFA snapshot
|
|
9
25
|
- Standard library smoke test retained in LSP repo (`test/unit/conformance.test.ts`)
|
|
10
|
-
- 12 new grammar patches (Fix 40–51) in the grammar generator for spec conformance
|
|
11
26
|
|
|
12
27
|
### Changed
|
|
13
28
|
|