Skip to content

Commit 2fae8f7

Browse files
authored
Update to monaco-vscode-api 22.1.0, update all dependecnies, increment minor versions (#978)
1 parent 3aa9f25 commit 2fae8f7

File tree

20 files changed

+1822
-1824
lines changed

20 files changed

+1822
-1824
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ Important Project changes and notes about the project's history are found [here]
7272

7373
These are the current versions of packages from this repository and their alignment with **@codingame/monaco-vscode-api** **monaco-editor** and **vscode**:
7474

75-
- **monaco-languageclient**: `10.1.0` (release date: 2025-09-30)
76-
- **@typefox/monaco-editor-react**: `7.1.0` (release date: 2025-09-30)
75+
- **monaco-languageclient**: `10.2.0` (release date: 2025-10-20)
76+
- **@typefox/monaco-editor-react**: `7.2.0` (release date: 2025-10-20)
7777
- Aligned with:
78-
- **@codingame/monaco-vscode-[editor]-api**: `21.3.2`
79-
- **vscode**: `1.104.2`
80-
- **monaco-editor**: `0.53.0`
78+
- **@codingame/monaco-vscode-[editor]-api**: `22.1.0`
79+
- **vscode**: `1.105.0`
80+
- **monaco-editor**: `0.54.0`
8181
- **vscode-ws-jsonrpc**: `3.5.0` (release date: 2025-08-11)
8282

8383
Check find the [full compatibility table](https://github.com/TypeFox/monaco-languageclient/blob/main/docs/versions-and-history.md#monaco-editor--codingamemonaco-vscode-api-compatibility-table) with all previous versions.

docs/guides/troubleshooting.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Whenever you use `monaco-editor`/`@codingame/monaco-vscode-editor-api` `vscode`/
1111
If you use pnpm or yarn, you have to add `vscode` / `@codingame/monaco-vscode-api` as direct dependency, otherwise the installation will fail:
1212

1313
```json
14-
"vscode": "npm:@codingame/monaco-vscode-extension-api@^21.3.2"
14+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^22.1.0"
1515
```
1616

1717
### Missing Overrides or Resolutions
@@ -23,7 +23,7 @@ To ensure all Monaco-related packages use a single, compatible version, you must
2323
```json
2424
{
2525
"overrides": {
26-
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.2"
26+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^22.1.0"
2727
}
2828
}
2929
```
@@ -33,7 +33,7 @@ To ensure all Monaco-related packages use a single, compatible version, you must
3333
```json
3434
{
3535
"resolutions": {
36-
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.2"
36+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^22.1.0"
3737
}
3838
}
3939
```
@@ -50,7 +50,7 @@ Additionally, if you see a message in the browser console starting with `Another
5050

5151
### @codingame/monaco-vscode-editor-api / monaco-editor usage
5252

53-
When you use the libraries from this project you are no longer required to proxy `monaco-editor` like `"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.2"` in you `package.json`. You can directly use it like so:
53+
When you use the libraries from this project you are no longer required to proxy `monaco-editor` like `"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^22.1.0"` in you `package.json`. You can directly use it like so:
5454

5555
```js
5656
import * as monaco from '@codingame/monaco-vscode-editor-api';
@@ -60,7 +60,7 @@ If your dependency stack already contains a reference `monaco-editor` you must e
6060

6161
```json
6262
"overrides": {
63-
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.2"
63+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^22.1.0"
6464
}
6565
```
6666

docs/installation.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ If using npm or pnpm, and your dependencies already contain a refernence to `mon
4545
```json
4646
{
4747
"overrides": {
48-
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.2"
48+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^22.1.0"
4949
}
5050
}
5151
```
@@ -57,7 +57,7 @@ In yarn you have to specify `resolutions` instead of `overrides`:
5757
```json
5858
{
5959
"resolutions": {
60-
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.2"
60+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^22.1.0"
6161
}
6262
}
6363
```
@@ -69,17 +69,17 @@ If using pnpm, you have to add more transitive dependencies that npm or yarn aut
6969
```json
7070
{
7171
"dependencies": {
72-
"@codingame/monaco-vscode-api": "^21.3.2",
73-
"@codingame/monaco-vscode-configuration-service-override": "^21.3.2",
74-
"@codingame/monaco-vscode-editor-api": "^21.3.2",
75-
"@codingame/monaco-vscode-editor-service-override": "^21.3.2",
76-
"@codingame/monaco-vscode-extension-api": "^21.3.2",
77-
"@codingame/monaco-vscode-extensions-service-override": "^21.3.2",
78-
"@codingame/monaco-vscode-languages-service-override": "^21.3.2",
79-
"@codingame/monaco-vscode-localization-service-override": "^21.3.2",
80-
"@codingame/monaco-vscode-log-service-override": "^21.3.2",
81-
"@codingame/monaco-vscode-model-service-override": "^21.3.2",
82-
"vscode": "npm:@codingame/monaco-vscode-extension-api@^21.3.2"
72+
"@codingame/monaco-vscode-api": "^22.1.0",
73+
"@codingame/monaco-vscode-configuration-service-override": "^22.1.0",
74+
"@codingame/monaco-vscode-editor-api": "^22.1.0",
75+
"@codingame/monaco-vscode-editor-service-override": "^22.1.0",
76+
"@codingame/monaco-vscode-extension-api": "^22.1.0",
77+
"@codingame/monaco-vscode-extensions-service-override": "^22.1.0",
78+
"@codingame/monaco-vscode-languages-service-override": "^22.1.0",
79+
"@codingame/monaco-vscode-localization-service-override": "^22.1.0",
80+
"@codingame/monaco-vscode-log-service-override": "^22.1.0",
81+
"@codingame/monaco-vscode-model-service-override": "^22.1.0",
82+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^22.1.0"
8383
}
8484
}
8585
```

docs/versions-and-history.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ The following table describes which version of **monaco-languageclient** and **@
66

77
| monaco-languageclient | vscode-ws-jsonrpc | monaco-editor-wrapper | monaco-editor-react | monaco-vscode-api / editor-api | vscode | monaco-editor | release date | comment |
88
| :---- | :---- | :---- | :--- | :--- | :--- | :--- | :--- | :--- |
9+
| 10.2.0 | 3.5.0 | 7.2.0 | | 22.1.0 | 1.105.0 | 0.54.0 | 2025-10-20 | |
910
| 10.1.0 | 3.5.0 | 7.1.0 | | 21.3.2 | 1.104.2 | 0.53.0 | 2025-09-30 | |
1011
| 10.0.0 | 3.5.0 | 7.0.0 | | 21.1.0 | 1.104.0 | 0.53.0 | 2025-09-19 | |
1112
| 9.11.0 | 3.5.0 | 6.12.0 | 6.12.0 | 20.2.1 | 1.103.1 | 0.52.2 | 2025-08-21 | |

0 commit comments

Comments
 (0)