monaco-languageclient 6.5.0 → 6.5.2
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/CHANGELOG.md +11 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this npm module are documented in this file.
|
|
4
4
|
|
|
5
|
+
## [6.5.2] - 2023-10-07
|
|
6
|
+
|
|
7
|
+
- Updated to `monaco-vscode-api` `1.82.4`
|
|
8
|
+
|
|
9
|
+
## [6.5.1] - 2023-10-04
|
|
10
|
+
|
|
11
|
+
- Issue with v6.5.0 (There is already an extension with this id error) on inputFactories [#546](https://github.com/TypeFox/monaco-languageclient/issues/546)
|
|
12
|
+
- Fixed dependency defintion of `@codingame/monaco-vscode-api` and updated to `1.82.3`
|
|
13
|
+
|
|
5
14
|
## [6.5.0] - 2023-09-29
|
|
6
15
|
|
|
7
16
|
- Updated to `monaco-editor` `0.43.0` and `monaco-vscode-api` `1.82.2`
|
|
8
|
-
- Only keep user services in`initServices`. It requires to specifically import and use services provided by
|
|
17
|
+
- Only keep user services in`initServices`. It requires to specifically import and use services provided by [monaco-vscode-api](https://github.com/CodinGame/monaco-vscode-api#monaco-standalone-services)
|
|
18
|
+
- All *enable...* and *configure* type parameters have been removed from `monaco-languagclient`
|
|
9
19
|
- languages and model services are always added by `monaco-languagclient`
|
|
10
20
|
- layout, environment, extension, files and quickAccess servies are always added by `monaco-vscode-api`
|
|
11
21
|
- Additional services need to be added to the package dependencies and imported and configured as shown in the [examples](https://github.com/TypeFox/monaco-languageclient#examples)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monaco-languageclient",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.2",
|
|
4
4
|
"description": "Monaco Language client implementation",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "TypeFox GmbH",
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"monaco-editor": "~0.43.0",
|
|
52
|
-
"vscode": "npm:@codingame/monaco-vscode-api
|
|
53
|
-
"@codingame/monaco-vscode-languages-service-override": "~1.82.
|
|
54
|
-
"@codingame/monaco-vscode-model-service-override": "~1.82.
|
|
52
|
+
"vscode": "npm:@codingame/monaco-vscode-api@>=1.82.4 <1.83.0",
|
|
53
|
+
"@codingame/monaco-vscode-languages-service-override": "~1.82.4",
|
|
54
|
+
"@codingame/monaco-vscode-model-service-override": "~1.82.4",
|
|
55
55
|
"vscode-jsonrpc": "~8.1.0",
|
|
56
56
|
"vscode-languageclient": "~8.1.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"monaco-editor": "~0.43.0",
|
|
60
|
-
"vscode": "npm:@codingame/monaco-vscode-api
|
|
60
|
+
"vscode": "npm:@codingame/monaco-vscode-api@>=1.82.4 <1.83.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependenciesMeta": {
|
|
63
63
|
"monaco-editor": {
|