sysml-v2-lsp 0.12.0 → 0.13.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 +22 -0
- package/dist/server/mcpServer.js +7 -8
- package/dist/server/parseWorker.js +2 -2
- package/dist/server/server.js +19 -20
- package/package.json +12 -7
- package/sysml.library/Domain Libraries/Quantities and Units/SIPrefixes.sysml +45 -45
- package/sysml.library/Kernel Libraries/Kernel Semantic Library/FeatureReferencingPerformances.kerml +106 -106
- package/sysml.library/Kernel Libraries/Kernel Semantic Library/Occurrences.kerml +992 -992
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.0]
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Comprehensive benchmark framework (`benchmarks/`) with 6 suites: parse, symbolTable, providers, memory, throughput, folderLoad — includes CLI runner, JSON baselines, and regression detection
|
|
8
|
+
- Dependabot configuration for weekly npm and GitHub Actions dependency updates
|
|
9
|
+
- Security audit step (`npm audit --audit-level=high`) in CI pipeline
|
|
10
|
+
- Configurable `sysml.scan.skipDirectories` setting for workspace scanning
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Symbol table: O(1) `inferKind()` via `ruleIndex` lookup maps, binary-search `findSymbolAtPosition()`, reverse-index `findReferences()`, cached `getAllSymbols()`
|
|
15
|
+
- Batch parsing with shared lexer/parser singletons; token stream reuse on SLL→LL fallback
|
|
16
|
+
- Workspace scanning redesigned as 3-phase async pipeline: concurrent discovery → batched file I/O → sequential batch parse
|
|
17
|
+
- Provider caching: SemanticTokens (URI+version), DiagnosticsProvider (grammar ranges), CompletionProvider (array identity), SemanticValidator (symbol names, library names, line-offset binary search)
|
|
18
|
+
- HoverProvider uses cached diagnostics only — no longer triggers full validation on hover
|
|
19
|
+
- Parse worker builds visible token array once, shared across all post-parse analysis
|
|
20
|
+
- Removed dead `scanWorkspaceFolder` function and superseded `scripts/benchmark-parse.ts`
|
|
21
|
+
- Security: updated `hono` to fix HTML injection via JSX attribute names (GHSA-458j-xx4x-4375)
|
|
22
|
+
- Enforced consistent LF line endings via `.gitattributes`
|
|
23
|
+
- Build artifacts and Python cache excluded from version control
|
|
24
|
+
|
|
3
25
|
## [0.12.0]
|
|
4
26
|
|
|
5
27
|
### Added
|