Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ These are the current versions of packages from this repository and their alignm
- **monaco-languageclient**: `10.0.1` (release date: unreleased)
- **@typefox/monaco-editor-react**: `7.0.1` (release date: unreleased)
- Aligned with:
- **@codingame/monaco-vscode-[editor]-api**: `^21.2.1`
- **@codingame/monaco-vscode-[editor]-api**: `^21.3.0`
- **vscode**: `1.104.1`
- **monaco-editor**: `0.53.0`
- **vscode-ws-jsonrpc**: `3.5.0` (release date: 2025-08-11)
Expand Down
10 changes: 5 additions & 5 deletions docs/guides/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Whenever you use `monaco-editor`/`@codingame/monaco-vscode-editor-api` `vscode`/
If you use pnpm or yarn, you have to add `vscode` / `@codingame/monaco-vscode-api` as direct dependency, otherwise the installation will fail:

```json
"vscode": "npm:@codingame/monaco-vscode-extension-api@^21.2.1"
"vscode": "npm:@codingame/monaco-vscode-extension-api@^21.3.0"
```

### Missing Overrides or Resolutions
Expand All @@ -23,7 +23,7 @@ To ensure all Monaco-related packages use a single, compatible version, you must
```json
{
"overrides": {
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.2.1"
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.0"
}
}
```
Expand All @@ -33,7 +33,7 @@ To ensure all Monaco-related packages use a single, compatible version, you must
```json
{
"resolutions": {
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.2.1"
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.0"
}
}
```
Expand All @@ -50,7 +50,7 @@ Additionally, if you see a message in the browser console starting with `Another

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

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.2.1"` in you `package.json`. You can directly use it like so:
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.0"` in you `package.json`. You can directly use it like so:

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

```json
"overrides": {
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.2.1"
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.0"
}
```

Expand Down
26 changes: 13 additions & 13 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ If using npm or pnpm, and your dependencies already contain a refernence to `mon
```json
{
"overrides": {
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.2.1"
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.0"
}
}
```
Expand All @@ -57,7 +57,7 @@ In yarn you have to specify `resolutions` instead of `overrides`:
```json
{
"resolutions": {
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.2.1"
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^21.3.0"
}
}
```
Expand All @@ -69,17 +69,17 @@ If using pnpm, you have to add more transitive dependencies that npm or yarn aut
```json
{
"dependencies": {
"@codingame/monaco-vscode-api": "^21.2.1",
"@codingame/monaco-vscode-configuration-service-override": "^21.2.1",
"@codingame/monaco-vscode-editor-api": "^21.2.1",
"@codingame/monaco-vscode-editor-service-override": "^21.2.1",
"@codingame/monaco-vscode-extension-api": "^21.2.1",
"@codingame/monaco-vscode-extensions-service-override": "^21.2.1",
"@codingame/monaco-vscode-languages-service-override": "^21.2.1",
"@codingame/monaco-vscode-localization-service-override": "^21.2.1",
"@codingame/monaco-vscode-log-service-override": "^21.2.1",
"@codingame/monaco-vscode-model-service-override": "^21.2.1",
"vscode": "npm:@codingame/monaco-vscode-extension-api@^21.2.1"
"@codingame/monaco-vscode-api": "^21.3.0",
"@codingame/monaco-vscode-configuration-service-override": "^21.3.0",
"@codingame/monaco-vscode-editor-api": "^21.3.0",
"@codingame/monaco-vscode-editor-service-override": "^21.3.0",
"@codingame/monaco-vscode-extension-api": "^21.3.0",
"@codingame/monaco-vscode-extensions-service-override": "^21.3.0",
"@codingame/monaco-vscode-languages-service-override": "^21.3.0",
"@codingame/monaco-vscode-localization-service-override": "^21.3.0",
"@codingame/monaco-vscode-log-service-override": "^21.3.0",
"@codingame/monaco-vscode-model-service-override": "^21.3.0",
"vscode": "npm:@codingame/monaco-vscode-extension-api@^21.3.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/versions-and-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The following table describes which version of **monaco-languageclient** and **@

| monaco-languageclient | vscode-ws-jsonrpc | monaco-editor-wrapper | monaco-editor-react | monaco-vscode-api / editor-api | vscode | monaco-editor | release date | comment |
| :---- | :---- | :---- | :--- | :--- | :--- | :--- | :--- | :--- |
| 10.0.1 | 3.5.0 | 7.0.1 | | 21.2.1 | 1.104.1 | 0.53.0 | unreleased | |
| 10.0.1 | 3.5.0 | 7.0.1 | | 21.3.0 | 1.104.1 | 0.53.0 | unreleased | |
| 10.0.0 | 3.5.0 | 7.0.0 | | 21.1.0 | 1.104.0 | 0.53.0 | 2025-09-19 | |
| 9.11.0 | 3.5.0 | 6.12.0 | 6.12.0 | 20.2.1 | 1.103.1 | 0.52.2 | 2025-08-21 | |
| 9.10.0 | 3.5.0 | 6.11.0 | 6.11.0 | 20.1.1 | 1.103.1 | 0.52.2 | 2025-08-14 | |
Expand Down
Loading