sysml-v2-lsp 0.14.0 → 0.15.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,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.15.0]
4
+
5
+ ### Added
6
+
7
+ - View filter, rendering, and expose target extraction in the symbol table
8
+ - View specialization chain resolution — views inherit filters, rendering, and expose targets from parent view defs
9
+ - Viewpoint satisfaction validation rule: warns when a view has no expose or filter directives
10
+ - Standard library view types (`GeneralView`, `InterconnectionView`, `TabularRendering`, etc.) recognised by the semantic validator
11
+ - Grammar: metadata cast expression `(as MetadataType)` in `baseExpression`
12
+ - `viewFilters` and `viewRendering` attributes surfaced in the model DTO
13
+
14
+ ### Changed
15
+
16
+ - Unused-definition rule now considers expose targets as references
17
+ - Keyword-truncation regex in type-name extraction requires uppercase boundary to avoid false matches inside identifiers like `InterconnectionView`
18
+ - Lint fixes: replaced `any` casts with proper types, removed unused imports and variables
19
+
20
+ ## [0.14.0]
21
+
22
+ ### Added
23
+
24
+ - Expose target extraction for view usages and view definitions in the symbol table
25
+ - Markdown benchmark reporter for human-readable result summaries
26
+ - Expose targets surfaced as element attributes in the model DTO
27
+
28
+ ### Changed
29
+
30
+ - CI skips runs on markdown-only changes (`paths-ignore: '**/*.md'`)
31
+ - Keyword-truncation regex uses negative lookbehind to avoid matching mid-identifier
32
+
3
33
  ## [0.13.0]
4
34
 
5
35
  ### Added