sysml-v2-lsp 0.10.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 +24 -0
- package/dist/server/mcpServer.js +9 -3
- package/dist/server/parseWorker.js +1 -1
- package/dist/server/server.js +10 -10
- package/index.cjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
3
27
|
## [0.10.0]
|
|
4
28
|
|
|
5
29
|
### Added
|