@kusto/monaco-kusto 12.0.0 → 12.0.1
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/README.md +6 -0
- package/package.json +1 -1
- package/release/dev/kustoMode-d3f9e09a.js +1818 -0
- package/release/dev/kustoMode.js +4 -1757
- package/release/dev/kustoWorker.js +2 -2
- package/release/dev/{main-b690e47e.js → main-f36cb42f.js} +2 -2
- package/release/dev/monaco.contribution.js +72 -66
- package/release/dev/{schema-957f5e9b.js → schema-077630e6.js} +2 -2
- package/release/esm/kusto.worker.js +2 -2
- package/release/esm/kustoMode-349f5467.js +957 -0
- package/release/esm/kustoMode.d.ts +4 -8
- package/release/esm/kustoMode.js +91 -111
- package/release/esm/languageFeatures.d.ts +1 -1
- package/release/esm/languageServiceManager/schema.d.ts +2 -2
- package/release/esm/monaco.contribution.js +42 -9
- package/release/esm/{schema-66580db4.js → schema-b8f0ba9b.js} +1 -1
- package/release/esm/syntaxHighlighting/SemanticTokensProvider.d.ts +1 -1
- package/release/esm/syntaxHighlighting/SemanticTokensProvider.js +3 -3
- package/release/esm/syntaxHighlighting/semanticTokensProviderRegistrar.d.ts +6 -0
- package/release/esm/syntaxHighlighting/semanticTokensProviderRegistrar.js +23 -0
- package/release/min/kustoMode-2dd4a01e.js +7 -0
- package/release/min/kustoMode.js +2 -2
- package/release/min/kustoWorker.js +2 -2
- package/release/min/{main-13659fc4.js → main-86d6c837.js} +2 -2
- package/release/min/monaco.contribution.js +2 -2
- package/release/min/{schema-ab3cbb28.js → schema-a60c216c.js} +2 -2
- package/release/dev/globals-0aacfe72.js +0 -46
- package/release/esm/globals-88d92b64.js +0 -40
- package/release/min/globals-cce7b304.js +0 -7
package/README.md
CHANGED
|
@@ -87,6 +87,12 @@ Every PR should come with a test that checks it.
|
|
|
87
87
|
|
|
88
88
|
### 12.0.0
|
|
89
89
|
|
|
90
|
+
- fix: Resolved a race condition to ensure the semantic tokens provider is registered after setting the language server schema.
|
|
91
|
+
- fix: Fixed an issue where semantic highlighting didn't work on schema change by properly handling provider registration.
|
|
92
|
+
- fix: Disposed of the existing provider whenever a new one is registered to prevent memory leaks.
|
|
93
|
+
|
|
94
|
+
### 12.0.0
|
|
95
|
+
|
|
90
96
|
### Breaking Changes
|
|
91
97
|
|
|
92
98
|
- Replaced syntax highlighting in Monaco-Kusto. The old method injected CSS for each KQL classified block, causing copy-to-clipboard issues. The new implementation uses:
|