@kusto/monaco-kusto 10.0.22 → 11.0.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 CHANGED
@@ -81,6 +81,11 @@ Every PR should come with a test that checks it.
81
81
 
82
82
  ## Changelog
83
83
 
84
+ ### 11.0.0
85
+
86
+ - BREAKING CHANGE: Removed the useIntellisenseV2 option; it now defaults to true.
87
+ - feat: upgrade language service next to 11.5.5
88
+
84
89
  ### 10.0.0
85
90
 
86
91
  - BREAKING CHANGE: addClusterToSchema know excepts databases as an object with name and alternative name instead of just
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kusto/monaco-kusto",
3
- "version": "10.0.22",
3
+ "version": "11.0.0",
4
4
  "description": "CSL, KQL plugin for the Monaco Editor",
5
5
  "author": {
6
6
  "name": "Microsoft"
@@ -23,8 +23,9 @@
23
23
  "test_release": "echo release > test/mode.txt && http-server -c-1 -p 8080 ./ -o index.html",
24
24
  "clean": "rimraf ./release",
25
25
  "start": "ts-node ./scripts/dev.ts",
26
- "test": "playwright test --trace=retain-on-failure -c tests/playwright.config.ts",
27
- "test:watch": "ts-node ./scripts/test.ts"
26
+ "test": "jest",
27
+ "test:integration": "playwright test --trace=retain-on-failure -c tests/integration/playwright.config.ts",
28
+ "test:integration:watch": "ts-node ./scripts/test.ts"
28
29
  },
29
30
  "types": "./release/esm/monaco.contribution.d.ts",
30
31
  "module": "./release/esm/monaco.contribution.js",
@@ -56,10 +57,12 @@
56
57
  "browser-sync": "^3.0.2",
57
58
  "concurrently": "^8.2.1",
58
59
  "http-server": "^14.1.1",
59
- "monaco-editor": "^0.46.0",
60
+ "jest": "^29.7.0",
61
+ "monaco-editor": "^0.49.0",
60
62
  "rimraf": "^5.0.1",
61
63
  "rollup": "^3.29.2",
62
64
  "terser": "^5.19.4",
65
+ "ts-jest": "^29.1.4",
63
66
  "ts-node": "^10.9.1",
64
67
  "typescript": "^5.2.2",
65
68
  "vite": "^5.2.11",
@@ -68,12 +71,12 @@
68
71
  },
69
72
  "dependencies": {
70
73
  "@kusto/language-service": "0.0.278",
71
- "@kusto/language-service-next": "11.5.3",
74
+ "@kusto/language-service-next": "11.5.5",
72
75
  "lodash-es": "^4.17.21",
73
76
  "vscode-languageserver-types": "^3.17.4",
74
77
  "xregexp": "^5.1.1"
75
78
  },
76
79
  "peerDependencies": {
77
- "monaco-editor": "^0.46.0"
80
+ "monaco-editor": "0.49.0"
78
81
  }
79
82
  }