sysml-v2-lsp 0.14.0 → 0.16.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 +42 -0
- package/dist/server/mcpServer.js +8 -5
- package/dist/server/parseWorker.js +54 -1
- package/dist/server/server.js +8 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.16.0]
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Complex SysML v2 example files: smart home, DFA coverage advanced, and multiplicity examples
|
|
8
|
+
- Warm-up text expanded with directional ports (`in`, `out`, `inout`), nested action definitions, and prefix metadata annotations (`#Safety`, `#Security`)
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Semantic validator: `require constraint` with documentation-only body no longer raises a false positive inside viewpoint definitions
|
|
13
|
+
- DFA snapshot regenerated with updated warm-up coverage
|
|
14
|
+
|
|
15
|
+
## [0.15.0]
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- View filter, rendering, and expose target extraction in the symbol table
|
|
20
|
+
- View specialization chain resolution — views inherit filters, rendering, and expose targets from parent view defs
|
|
21
|
+
- Viewpoint satisfaction validation rule: warns when a view has no expose or filter directives
|
|
22
|
+
- Standard library view types (`GeneralView`, `InterconnectionView`, `TabularRendering`, etc.) recognised by the semantic validator
|
|
23
|
+
- Grammar: metadata cast expression `(as MetadataType)` in `baseExpression`
|
|
24
|
+
- `viewFilters` and `viewRendering` attributes surfaced in the model DTO
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Unused-definition rule now considers expose targets as references
|
|
29
|
+
- Keyword-truncation regex in type-name extraction requires uppercase boundary to avoid false matches inside identifiers like `InterconnectionView`
|
|
30
|
+
- Lint fixes: replaced `any` casts with proper types, removed unused imports and variables
|
|
31
|
+
|
|
32
|
+
## [0.14.0]
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- Expose target extraction for view usages and view definitions in the symbol table
|
|
37
|
+
- Markdown benchmark reporter for human-readable result summaries
|
|
38
|
+
- Expose targets surfaced as element attributes in the model DTO
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- CI skips runs on markdown-only changes (`paths-ignore: '**/*.md'`)
|
|
43
|
+
- Keyword-truncation regex uses negative lookbehind to avoid matching mid-identifier
|
|
44
|
+
|
|
3
45
|
## [0.13.0]
|
|
4
46
|
|
|
5
47
|
### Added
|