monaco-languageclient 7.2.0 → 7.3.0-next.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -2,20 +2,24 @@
2
2
 
3
3
  All notable changes to this npm module are documented in this file.
4
4
 
5
+ ## [7.3.0] - 2023-12-1x
6
+
7
+ - Updated to `@codingame/monaco-vscode-api@1.85.0` and `@codingame/monaco-editor-treemende@1.85.0` / `monaco-editor@0.45.0`
8
+
5
9
  ## [7.2.0] - 2023-12-07
6
10
 
7
- - Updated to `monaco-vscode-api@1.83.16`:
11
+ - Updated to `@codingame/monaco-vscode-api@1.83.16`:
8
12
  - Local extension hosts is automatically started. `initVscodeExtensions` is removed again.
9
13
  - Volta now uses Node 20 (current LTS).
10
14
 
11
15
  ## [7.1.0] - 2023-11-27
12
16
 
13
- - Updated to `monaco-vscode-api@1.83.12`:
17
+ - Updated to `@codingame/monaco-vscode-api@1.83.12`:
14
18
  - BREAKING: If you want to use `getConfigurationServiceOverride` you need to provide a `workspaceConfig` along the `userServices` in `initServices`.
15
19
 
16
20
  ## [7.0.2] - 2023-11-15
17
21
 
18
- - Updated to `monaco-vscode-api@1.83.7`.
22
+ - Updated to `@codingame/monaco-vscode-api@1.83.7`.
19
23
 
20
24
  ## [7.0.1] - 2023-11-10
21
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-languageclient",
3
- "version": "7.2.0",
3
+ "version": "7.3.0-next.1",
4
4
  "description": "Monaco Language client implementation",
5
5
  "author": {
6
6
  "name": "TypeFox GmbH",
@@ -48,16 +48,16 @@
48
48
  "License.txt"
49
49
  ],
50
50
  "dependencies": {
51
- "@codingame/monaco-vscode-editor-service-override": "~1.83.16",
52
- "@codingame/monaco-vscode-languages-service-override": "~1.83.16",
53
- "@codingame/monaco-vscode-model-service-override": "~1.83.16",
54
- "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.83.16 <1.84.0",
55
- "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.16 <1.84.0",
51
+ "@codingame/monaco-vscode-editor-service-override": "~1.85.0-next.2",
52
+ "@codingame/monaco-vscode-languages-service-override": "~1.85.0-next.2",
53
+ "@codingame/monaco-vscode-model-service-override": "~1.85.0-next.2",
54
+ "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.85.0-next.2 <1.86.0",
55
+ "vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0-next.2 <1.86.0",
56
56
  "vscode-languageclient": "~9.0.1"
57
57
  },
58
58
  "peerDependencies": {
59
- "monaco-editor": "0.44.0",
60
- "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.16 <1.84.0"
59
+ "monaco-editor": "0.45.0",
60
+ "vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0-next.2 <1.86.0"
61
61
  },
62
62
  "peerDependenciesMeta": {
63
63
  "monaco-editor": {
@@ -72,8 +72,8 @@
72
72
  "vscode": "$vscode"
73
73
  },
74
74
  "resolutions": {
75
- "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.83.16 <1.84.0",
76
- "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.16 <1.84.0"
75
+ "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.85.0-next.2 <1.86.0",
76
+ "vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0-next.2 <1.86.0"
77
77
  },
78
78
  "scripts": {
79
79
  "clean": "shx rm -fr lib *.tsbuildinfo",