@kusto/monaco-kusto 11.2.0 → 11.3.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 +12 -4
- package/package.json +2 -2
- package/release/dev/Kusto.Language.Bridge.min.js +190 -193
- package/release/dev/kustoMode.js +2 -2
- package/release/dev/kustoWorker.js +3 -3
- package/release/dev/{main-fb7fb4af.js → main-80b384b2.js} +2 -2
- package/release/dev/monaco.contribution.js +2 -2
- package/release/dev/{schema-ba97d97d.js → schema-89d23a07.js} +2 -2
- package/release/esm/kusto.worker.js +3 -3
- package/release/esm/languageServiceManager/kustoLanguageService.js +1 -1
- package/release/esm/{schema-42c630bd.js → schema-aeb83929.js} +1 -1
- package/release/min/Kusto.Language.Bridge.min.js +190 -193
- package/release/min/kustoMode.js +2 -2
- package/release/min/kustoWorker.js +3 -3
- package/release/min/{main-af6b4751.js → main-b6454357.js} +2 -2
- package/release/min/monaco.contribution.js +2 -2
- package/release/min/{schema-2057d871.js → schema-1c89ac80.js} +2 -2
package/README.md
CHANGED
|
@@ -85,15 +85,23 @@ Every PR should come with a test that checks it.
|
|
|
85
85
|
|
|
86
86
|
## Changelog
|
|
87
87
|
|
|
88
|
-
### 11.
|
|
88
|
+
### 11.3.0
|
|
89
89
|
|
|
90
|
-
-
|
|
91
|
-
|
|
90
|
+
- fix: Exclude punctuation-only syntax from completion items.
|
|
91
|
+
|
|
92
|
+
### 11.2.1
|
|
93
|
+
|
|
94
|
+
- feat: Upgrade language-service-next to 11.6.1.
|
|
95
|
+
|
|
96
|
+
- ### 11.2.0
|
|
97
|
+
|
|
98
|
+
- feat: Fix bugs related to last version upgrade.
|
|
99
|
+
- feat: Upgrade language-service-next to 11.6.0.
|
|
92
100
|
|
|
93
101
|
### 11.1.0
|
|
94
102
|
|
|
95
103
|
- feat: Modify the ordering of completion items so that columns always appear at the top.
|
|
96
|
-
- feat:
|
|
104
|
+
- feat: Upgrade language-service-next to 11.5.6.
|
|
97
105
|
|
|
98
106
|
### 11.0.0
|
|
99
107
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kusto/monaco-kusto",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.3.0",
|
|
4
4
|
"description": "CSL, KQL plugin for the Monaco Editor",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft"
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"@kusto/language-service": "0.0.278",
|
|
76
|
-
"@kusto/language-service-next": "11.6.
|
|
76
|
+
"@kusto/language-service-next": "11.6.1",
|
|
77
77
|
"lodash-es": "^4.17.21",
|
|
78
78
|
"vscode-languageserver-types": "^3.17.4",
|
|
79
79
|
"xregexp": "^5.1.1"
|