Skip to content

Commit 8f87e0d

Browse files
committed
Prepare x.3.0 release
1 parent 82cd0b3 commit 8f87e0d

File tree

8 files changed

+22
-17
lines changed

8 files changed

+22
-17
lines changed

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 | monaco-editor-wrapper | monaco-editor-react | monaco-vscode-api / editor-api | vscode | monaco-editor | release date | comment |
88
| :---- | :---- | :--- | :--- | :--- | :--- | :--- | :--- |
9-
| 9.3.0 | 6.3.0 | 6.3.0 | 14.0.2 | 1.97.0 | 0.52.2 | 2025-02-1x | |
9+
| 9.3.0 | 6.3.0 | 6.3.0 | 14.0.2 | 1.97.0 | 0.52.2 | 2025-02-12 | |
1010
| 9.2.5 | 6.2.5 | 6.2.5 | 13.1.6 | 1.96.4 | 0.52.2 | 2025-02-08 | |
1111
| 9.2.4 | 6.2.4 | 6.2.4 | 13.1.4 | 1.96.4 | 0.52.2 | 2025-02-06 | |
1212
| 9.2.3 | 6.2.3 | 6.2.3 | 13.1.3 | 1.96.4 | 0.52.2 | 2025-02-04 | |

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@vitest/browser": "~3.0.5",
2828
"editorconfig": "~2.0.1",
2929
"esbuild": "~0.25.0",
30-
"eslint": "~9.20.0",
30+
"eslint": "~9.20.1",
3131
"eslint-plugin-header": "~3.1.1",
3232
"eslint-plugin-import": "~2.31.0",
3333
"eslint-plugin-unused-imports": "~4.1.4",

packages/client/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this npm module are documented in this file.
44

5-
## [9.3.0] - 2025-02-1x
5+
## [9.3.0] - 2025-02-12
66

77
- Updated all `@codingame/monaco-vscode` packages to `14.0.2`.
88

packages/examples/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
All notable changes to this npm module are documented in this file.
44

5-
## [2025.2.5] - 2025-02-1x
5+
## [2025.2.5] - 2025-02-12
66

7+
- Update to monaco-vscode-api 14.0.2 and incremented versions to x.3.0 [#852](https://github.com/TypeFox/monaco-languageclient/pull/852)
8+
- Updated all `@codingame/monaco-vscode` packages to `14.0.2`.
9+
- wrapper: start() never resolves if lsp websocket fails, and use of editor must wait for lsp websocket connection. [#851](https://github.com/TypeFox/monaco-languageclient/issues/851)
10+
- Two language clients example makes use of those changes
711
- Integrate python debugger [#842](https://github.com/TypeFox/monaco-languageclient/pull/842)
8-
- Updated all `@codingame/monaco-vscode` packages to `14.0.2`.
912
- Updated to `monaco-languageclient@9.3.0`, `monaco-editor-wrapper@6.3.0` and `@typefox/monaco-editor-react@6.3.0`.
1013

1114
## [2025.2.4] - 2025-02-08

packages/examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"langium": "~3.3.1",
110110
"monaco-editor-wrapper": "~6.3.0",
111111
"monaco-languageclient": "~9.3.0",
112-
"pyright": "~1.1.393",
112+
"pyright": "~1.1.394",
113113
"react": "~19.0.0",
114114
"react-dom": "~19.0.0",
115115
"request-light": "~0.8.0",

packages/wrapper-react/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to npm module [@typefox/monaco-editor-react](https://www.npmjs.com/package/@typefox/monaco-editor-react) are documented in this file.
44

5-
## [6.3.0] - 2025-02-1x
5+
## [6.3.0] - 2025-02-12
66

77
- Move text changes handling from react component to the wrapper [#849](https://github.com/TypeFox/monaco-languageclient/pull/849)
88
- Updated to `monaco-languageclient@9.3.0` and `monaco-editor-wrapper@6.3.0`.

packages/wrapper/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
All notable changes to npm module [monaco-editor-wrapper](https://www.npmjs.com/package/monaco-editor-wrapper) are documented in this file.
44

5-
## [6.3.0] - 2025-02-1x
5+
## [6.3.0] - 2025-02-12
66

7+
- Update to monaco-vscode-api 14.0.2 and incremented versions to x.3.0 [#852](https://github.com/TypeFox/monaco-languageclient/pull/852)
8+
- Updated all `@codingame/monaco-vscode` packages to `14.0.2`.
9+
- wrapper: start() never resolves if lsp websocket fails, and use of editor must wait for lsp websocket connection. [#851](https://github.com/TypeFox/monaco-languageclient/issues/851)
710
- Move text changes handling from react component to the wrapper [#849](https://github.com/TypeFox/monaco-languageclient/pull/849)
8-
- Updated all `@codingame/monaco-vscode` packages to `14.0.2`.
911
- Updated to `monaco-languageclient@9.3.0`.
1012

1113
## [6.2.5] - 2025-02-08

0 commit comments

Comments
 (0)