Skip to content

Commit f0ba374

Browse files
authored
Ensure clangd-server build properly. Update dependencies (#1054)
1 parent e6d742e commit f0ba374

20 files changed

Lines changed: 835 additions & 821 deletions

File tree

.github/workflows/publish_oidc.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ on:
1313
paths:
1414
- '.github/workflows/**/*'
1515
- '**/package.json'
16+
workflow_dispatch:
17+
inputs:
18+
dry-run:
19+
description: 'Dry run'
20+
required: true
21+
default: 'false'
1622

1723
jobs:
1824
publish_oidc:
@@ -58,7 +64,7 @@ jobs:
5864
- name: Publish
5965
uses: TypeFox/gh-publish-npm@0c4ee5a844ccb61c4092fc439f7db21c4a2f0ddb # v0.4.0
6066
with:
61-
dry-run: false
67+
dry-run: ${{ github.event.inputs.dry-run }}
6268
npm-tag: 'next'
6369
verbose: true
6470
npm-packages: |

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ 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**: `11.0.0-next.0` (release date: unreleased)
76-
- **@typefox/monaco-editor-react**: `8.0.0-next.0` (release date: unreleased)
75+
- **monaco-languageclient**: `11.0.0-next.1` (release date: unreleased)
76+
- **@typefox/monaco-editor-react**: `8.0.0-next.1` (release date: unreleased)
7777
- Aligned with:
78-
- **@codingame/monaco-vscode-[editor]-api**: `35.0.0`
79-
- **vscode**: `1.124.0`
78+
- **@codingame/monaco-vscode-[editor]-api**: `35.0.1`
79+
- **vscode**: `1.128.1`
8080
- **monaco-editor**: `0.55.1`
81-
- **vscode-ws-jsonrpc**: `4.0.0-next.0` (release date: unreleased)
81+
- **vscode-ws-jsonrpc**: `4.0.0-next.1` (release date: unreleased)
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.
8484

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@^35.0.0"
14+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^35.0.1"
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@^35.0.0"
26+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^35.0.1"
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@^35.0.0"
36+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^35.0.1"
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@^35.0.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@^35.0.1"` 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@^35.0.0"
63+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^35.0.1"
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@^35.0.0"
60+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^35.0.1"
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@^35.0.0"
74+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^35.0.1"
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": "^35.0.0",
87-
"@codingame/monaco-vscode-configuration-service-override": "^35.0.0",
88-
"@codingame/monaco-vscode-editor-api": "^35.0.0",
89-
"@codingame/monaco-vscode-editor-service-override": "^35.0.0",
90-
"@codingame/monaco-vscode-extension-api": "^35.0.0",
91-
"@codingame/monaco-vscode-extensions-service-override": "^35.0.0",
92-
"@codingame/monaco-vscode-languages-service-override": "^35.0.0",
93-
"@codingame/monaco-vscode-localization-service-override": "^35.0.0",
94-
"@codingame/monaco-vscode-log-service-override": "^35.0.0",
95-
"@codingame/monaco-vscode-model-service-override": "^35.0.0",
96-
"vscode": "npm:@codingame/monaco-vscode-extension-api@^35.0.0"
86+
"@codingame/monaco-vscode-api": "^35.0.1",
87+
"@codingame/monaco-vscode-configuration-service-override": "^35.0.1",
88+
"@codingame/monaco-vscode-editor-api": "^35.0.1",
89+
"@codingame/monaco-vscode-editor-service-override": "^35.0.1",
90+
"@codingame/monaco-vscode-extension-api": "^35.0.1",
91+
"@codingame/monaco-vscode-extensions-service-override": "^35.0.1",
92+
"@codingame/monaco-vscode-languages-service-override": "^35.0.1",
93+
"@codingame/monaco-vscode-localization-service-override": "^35.0.1",
94+
"@codingame/monaco-vscode-log-service-override": "^35.0.1",
95+
"@codingame/monaco-vscode-model-service-override": "^35.0.1",
96+
"vscode": "npm:@codingame/monaco-vscode-extension-api@^35.0.1"
9797
}
9898
}
9999
```

docs/versions-and-history.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +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-
| 11.0.0-next.0 | 4.0.0-next.0 | | 8.0.0-next.0 | 35.0.0 | 1.124.0 | 0.55.1 | unreleased | |
9+
| 11.0.0-next.1 | 4.0.0-next.1 | | 8.0.0-next.1 | 35.0.1 | 1.128.1 | 0.55.1 | unreleased | |
1010
| 10.7.0 | 3.5.0 | | 7.7.0 | 25.1.2 | 1.108.2 | 0.55.1 | 2026-02-04 | |
1111
| 10.6.0 | 3.5.0 | | 7.6.0 | 25.0.0 | 1.108.0 | 0.55.1 | 2026-01-14 | |
1212
| 10.5.0 | 3.5.0 | | 7.5.0 | 24.2.0 | 1.107.1 | 0.55.1 | 2025-12-23 | |

0 commit comments

Comments
 (0)