@kusto/monaco-kusto 10.0.8 → 10.0.10
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 +10 -2
- 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 +2 -2
- package/release/dev/kustoWorker.js +7 -48
- package/release/dev/{main-5c133770.js → main-ad2f3b71.js} +2 -2
- package/release/dev/monaco.contribution.js +2 -2
- package/release/dev/{schema-5549fea4.js → schema-f48be3f6.js} +2 -2
- package/release/esm/kusto.worker.js +9 -48
- package/release/esm/kustoMode.js +139 -1158
- package/release/esm/languageService/kustoLanguageService.js +5 -59
- package/release/esm/languageService/schema.d.ts +87 -87
- package/release/esm/{schema-0961786c.js → schema-53871787.js} +1 -1
- package/release/esm/util.d.ts +3 -0
- package/release/esm/util.js +1 -0
- 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-48530ed8.js → main-78a374a9.js} +2 -2
- package/release/min/monaco.contribution.js +2 -2
- package/release/min/{schema-9e266625.js → schema-afae2509.js} +2 -2
package/README.md
CHANGED
|
@@ -60,8 +60,8 @@ There are 2 APIs to set a Kusto schema:
|
|
|
60
60
|
|
|
61
61
|
### Setting up a dev environment
|
|
62
62
|
|
|
63
|
-
1. Install Node.js
|
|
64
|
-
2.
|
|
63
|
+
1. Install Node.js 20 https://nodejs.org/
|
|
64
|
+
2. Run `corepack enable` to make the `yarn` package manager available (https://yarnpkg.com/getting-started/install)
|
|
65
65
|
3. Clone repo and run `yarn` in repo root
|
|
66
66
|
4. Run `yarn watch` from /package and a http-server will automatically open the index.html
|
|
67
67
|
|
|
@@ -72,6 +72,14 @@ There are 2 APIs to set a Kusto schema:
|
|
|
72
72
|
|
|
73
73
|
## Changelog
|
|
74
74
|
|
|
75
|
+
### 10.0.0
|
|
76
|
+
|
|
77
|
+
- BREAKING CHANGE: addClusterToSchema know excepts databases as an object with name and alternative name instead of just a string name.
|
|
78
|
+
|
|
79
|
+
### 9.0.0
|
|
80
|
+
|
|
81
|
+
- feat: support entity groups and database alternative name
|
|
82
|
+
|
|
75
83
|
### 7.8.0
|
|
76
84
|
|
|
77
85
|
- feat: `plotly` is now supported in intellisense as a render command
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kusto/monaco-kusto",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.10",
|
|
4
4
|
"description": "CSL, KQL plugin for the Monaco Editor",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft"
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"vscode-languageserver-textdocument": "1.0.8"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@kusto/language-service": "0.0.
|
|
64
|
-
"@kusto/language-service-next": "11.4.
|
|
63
|
+
"@kusto/language-service": "0.0.278",
|
|
64
|
+
"@kusto/language-service-next": "11.4.301",
|
|
65
65
|
"lodash-es": "^4.17.21",
|
|
66
66
|
"vscode-languageserver-types": "^3.17.4",
|
|
67
67
|
"xregexp": "^5.1.1"
|