@kusto/monaco-kusto 7.3.1 → 7.5.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/README.md +7 -0
- package/package.json +3 -3
- package/release/dev/Kusto.Language.Bridge.min.js +1 -1
- package/release/dev/kusto.javascript.client.min.js +1 -1
- package/release/dev/kustoMode.js +12 -7
- package/release/dev/kustoWorker.js +15 -11
- package/release/dev/{main-bd46c9da.js → main-aca53293.js} +2 -2
- package/release/dev/monaco.contribution.js +2 -2
- package/release/dev/{schema-4f7dc09d.js → schema-aa8a3973.js} +2 -2
- package/release/esm/kusto.worker.js +4 -4
- package/release/esm/kustoMode.d.ts +1 -1
- package/release/esm/kustoMode.js +9 -5
- package/release/esm/languageService/settings.d.ts +1 -0
- package/release/esm/monaco.contribution.js +3 -3
- package/release/esm/{schema-3d1d888f.js → schema-dc382300.js} +1 -1
- package/release/esm/types.d.ts +0 -1
- package/release/min/Kusto.Language.Bridge.min.js +1 -1
- package/release/min/kusto.javascript.client.min.js +1 -1
- package/release/min/kustoMode.js +2 -2
- package/release/min/kustoWorker.js +4 -4
- package/release/min/{main-1c0a9964.js → main-30131b2a.js} +2 -2
- package/release/min/monaco.contribution.js +2 -2
- package/release/min/{schema-68c4da6b.js → schema-5a439400.js} +2 -2
package/README.md
CHANGED
|
@@ -72,6 +72,13 @@ There are 2 APIs to set a Kusto schema:
|
|
|
72
72
|
|
|
73
73
|
## Changelog
|
|
74
74
|
|
|
75
|
+
### 7.3.0
|
|
76
|
+
|
|
77
|
+
- feat: Kusto worker will now respect `MonacoEnvironment.baseUrl`
|
|
78
|
+
configuration when running in a different origin. Checkout our [new
|
|
79
|
+
example](https://github.com/Azure/monaco-kusto/tree/master/samples/amd-webpack-react-cross-origin)
|
|
80
|
+
for details
|
|
81
|
+
|
|
75
82
|
### 7.2.1
|
|
76
83
|
|
|
77
84
|
- fix: Added types back to global api
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kusto/monaco-kusto",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"description": "CSL, KQL plugin for the Monaco Editor",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft"
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"vscode-languageserver-textdocument": "1.0.4"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@kusto/language-service": "0.0.
|
|
65
|
-
"@kusto/language-service-next": "0.0.
|
|
64
|
+
"@kusto/language-service": "0.0.58",
|
|
65
|
+
"@kusto/language-service-next": "0.0.81",
|
|
66
66
|
"lodash-es": "^4.17.21",
|
|
67
67
|
"vscode-languageserver-types": "3.16.0",
|
|
68
68
|
"xregexp": "^5.1.1"
|