Skip to content

Commit 1180f5e

Browse files
committed
Updated to latest monaco-vscode-api and prepare new next releases
1 parent a95f0af commit 1180f5e

File tree

16 files changed

+1744
-1729
lines changed

16 files changed

+1744
-1729
lines changed

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@^23.0.3"
14+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^23.0.4"
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@^23.0.3"
26+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^23.0.4"
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@^23.0.3"
36+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^23.0.4"
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@^23.0.3"` 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@^23.0.4"` 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@^23.0.3"
63+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^23.0.4"
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@^23.0.3"
48+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^23.0.4"
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@^23.0.3"
60+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^23.0.4"
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": "^23.0.3",
73-
"@codingame/monaco-vscode-configuration-service-override": "^23.0.3",
74-
"@codingame/monaco-vscode-editor-api": "^23.0.3",
75-
"@codingame/monaco-vscode-editor-service-override": "^23.0.3",
76-
"@codingame/monaco-vscode-extension-api": "^23.0.3",
77-
"@codingame/monaco-vscode-extensions-service-override": "^23.0.3",
78-
"@codingame/monaco-vscode-languages-service-override": "^23.0.3",
79-
"@codingame/monaco-vscode-localization-service-override": "^23.0.3",
80-
"@codingame/monaco-vscode-log-service-override": "^23.0.3",
81-
"@codingame/monaco-vscode-model-service-override": "^23.0.3",
82-
"vscode": "npm:@codingame/monaco-vscode-extension-api@^23.0.3"
72+
"@codingame/monaco-vscode-api": "^23.0.4",
73+
"@codingame/monaco-vscode-configuration-service-override": "^23.0.4",
74+
"@codingame/monaco-vscode-editor-api": "^23.0.4",
75+
"@codingame/monaco-vscode-editor-service-override": "^23.0.4",
76+
"@codingame/monaco-vscode-extension-api": "^23.0.4",
77+
"@codingame/monaco-vscode-extensions-service-override": "^23.0.4",
78+
"@codingame/monaco-vscode-languages-service-override": "^23.0.4",
79+
"@codingame/monaco-vscode-localization-service-override": "^23.0.4",
80+
"@codingame/monaco-vscode-log-service-override": "^23.0.4",
81+
"@codingame/monaco-vscode-model-service-override": "^23.0.4",
82+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^23.0.4"
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.4.0 | 3.5.0 | 7.4.0 | | 23.0.4 | 1.106.2 | 0.54.0 | unreleased | |
910
| 10.3.0 | 3.5.0 | 7.3.0 | | 23.0.0 | 1.106.0 | 0.54.0 | 2025-11-16 | |
1011
| 10.2.0 | 3.5.0 | 7.2.0 | | 22.1.0 | 1.105.0 | 0.54.0 | 2025-10-20 | |
1112
| 10.1.0 | 3.5.0 | 7.1.0 | | 21.3.2 | 1.104.2 | 0.53.0 | 2025-09-30 | |

0 commit comments

Comments
 (0)