sysml-v2-lsp 0.16.0 → 0.17.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 +21 -0
- package/dist/server/mcpServer.js +1 -1
- package/dist/server/parseWorker.js +5 -2
- package/dist/server/server.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
## [0.17.0]
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Clear error messages when SysML keywords are used as identifiers
|
|
10
|
+
- Prepare Release workflow with manual gate, dry-run, and changelog stamping
|
|
11
|
+
- Composite GitHub Action for shared CI setup steps
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- DFA snapshot pre-seeded for SLL fast-path parsing (~60% warm, ~27% cold improvement)
|
|
16
|
+
- CI, Release, and Prepare Release workflows deduplicated via composite action
|
|
17
|
+
- Release checklist updated for automated workflow
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- "Go to References" now finds anonymous typed usages like `interface : PwrHeaterIface connect ...` ([#34](https://github.com/daltskin/VSCode_SysML_Extension/issues/34))
|
|
22
|
+
- DFA error-retry fires correctly when stale pre-seeded states persist after a previous successful parse
|
|
23
|
+
|
|
3
24
|
## [0.16.0]
|
|
4
25
|
|
|
5
26
|
### Added
|