Skip to content

Commit 5007126

Browse files
authored
Update to monaco-vscode-api 25, update most of verification dependencies (#1009)
1 parent fbf4063 commit 5007126

26 files changed

+7153
-13579
lines changed

.oxlintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
// currently in oxlint's nursery (=under development)
3737
"getter-return": "error",
3838
"guard-for-in": "error",
39-
// currently unsupported by oxlint
39+
// currently unsupported by oxlint
4040
"new-parens": "error",
4141
"no-async-promise-executor": "error",
4242
"no-bitwise": "error",

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ 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.5.0` (release date: 2025-12-23)
76-
- **@typefox/monaco-editor-react**: `7.5.0` (release date: 2025-12-23)
75+
- **monaco-languageclient**: `10.6.0` (release date: 2026-01-14)
76+
- **@typefox/monaco-editor-react**: `7.6.0` (release date: 2026-01-14)
7777
- Aligned with:
78-
- **@codingame/monaco-vscode-[editor]-api**: `24.2.0`
79-
- **vscode**: `1.107.1`
78+
- **@codingame/monaco-vscode-[editor]-api**: `25.0.0`
79+
- **vscode**: `1.108.0`
8080
- **monaco-editor**: `0.55.1`
8181
- **vscode-ws-jsonrpc**: `3.5.0` (release date: 2025-08-11)
8282

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@^24.2.0"
14+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^25.0.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@^24.2.0"
26+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^25.0.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@^24.2.0"
36+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^25.0.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@^24.2.0"` 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@^25.0.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@^24.2.0"
63+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^25.0.0"
6464
}
6565
```
6666

docs/installation.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If using npm or pnpm, and your dependencies already contain a reference to `mona
5757
```json
5858
{
5959
"overrides": {
60-
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^24.2.0"
60+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^25.0.0"
6161
}
6262
}
6363
```
@@ -71,7 +71,7 @@ In yarn you have to specify `resolutions` instead of `overrides`:
7171
```json
7272
{
7373
"resolutions": {
74-
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^24.2.0"
74+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^25.0.0"
7575
}
7676
}
7777
```
@@ -83,17 +83,17 @@ If using pnpm, you have to add more transitive dependencies that npm or yarn aut
8383
```json
8484
{
8585
"dependencies": {
86-
"@codingame/monaco-vscode-api": "^24.2.0",
87-
"@codingame/monaco-vscode-configuration-service-override": "^24.2.0",
88-
"@codingame/monaco-vscode-editor-api": "^24.2.0",
89-
"@codingame/monaco-vscode-editor-service-override": "^24.2.0",
90-
"@codingame/monaco-vscode-extension-api": "^24.2.0",
91-
"@codingame/monaco-vscode-extensions-service-override": "^24.2.0",
92-
"@codingame/monaco-vscode-languages-service-override": "^24.2.0",
93-
"@codingame/monaco-vscode-localization-service-override": "^24.2.0",
94-
"@codingame/monaco-vscode-log-service-override": "^24.2.0",
95-
"@codingame/monaco-vscode-model-service-override": "^24.2.0",
96-
"vscode": "npm:@codingame/monaco-vscode-extension-api@^24.2.0"
86+
"@codingame/monaco-vscode-api": "^25.0.0",
87+
"@codingame/monaco-vscode-configuration-service-override": "^25.0.0",
88+
"@codingame/monaco-vscode-editor-api": "^25.0.0",
89+
"@codingame/monaco-vscode-editor-service-override": "^25.0.0",
90+
"@codingame/monaco-vscode-extension-api": "^25.0.0",
91+
"@codingame/monaco-vscode-extensions-service-override": "^25.0.0",
92+
"@codingame/monaco-vscode-languages-service-override": "^25.0.0",
93+
"@codingame/monaco-vscode-localization-service-override": "^25.0.0",
94+
"@codingame/monaco-vscode-log-service-override": "^25.0.0",
95+
"@codingame/monaco-vscode-model-service-override": "^25.0.0",
96+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^25.0.0"
9797
}
9898
}
9999
```

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.6.0 | 3.5.0 | 7.6.0 | | 25.0.0 | 1.108.0 | 0.55.1 | 2026-01-14 | |
910
| 10.5.0 | 3.5.0 | 7.5.0 | | 24.2.0 | 1.107.1 | 0.55.1 | 2025-12-23 | |
1011
| 10.4.0 | 3.5.0 | 7.4.0 | | 23.2.2 | 1.106.2 | 0.55.1 | 2025-11-26 | |
1112
| 10.3.0 | 3.5.0 | 7.3.0 | | 23.0.0 | 1.106.0 | 0.54.0 | 2025-11-16 | |

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default [{
2323
'**/public/**/*',
2424
'**/.next/**/*',
2525
'**/*env.d.ts',
26-
'**/.pnp.cjs'
26+
'**/.pnp.*'
2727
],
2828
}, {
2929
files: [

0 commit comments

Comments
 (0)