Skip to content

Commit 3e4aa3a

Browse files
committed
10.3.0 and 7.3.0 release prep
1 parent 798f81a commit 3e4aa3a

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ It contains both the [language client](./packages/examples/src/clangd/client/mai
159159

160160
#### Application Playground ([Location](./packages/examples/src/appPlayground))
161161

162-
This [example](./packages/examples/src/appPlayground/main.ts) uses the view service provider from `@codingame/monaco-vscode-editor-api` to build an application that utilizes more vscode features. <b>Heads up:</b> This is a prototype and still evolving.
162+
This [example](./packages/examples/src/appPlayground/launcher.ts) uses the view service provider from `@codingame/monaco-vscode-editor-api` to build an application that utilizes more vscode features. Alternatively, it is possible to use a [react version of the app](./packages/examples/src/appPlayground/reactLauncher.ts) <b>Heads up:</b> This is a prototype and still evolving.
163163

164164
#### Langium grammar DSL ([Location](./packages/examples/src/langium/langium-dsl))
165165

@@ -182,7 +182,7 @@ See [Typescript Language support](./packages/examples/src/ts/clientTs.ts).
182182

183183
##### JSON Language Server
184184

185-
For the **json-client**, **react-client** or the **client-webpack** examples you need to ensure the **json-server** example is running:
185+
For all **json** client related examples you need to ensure the **json-server** example is running:
186186

187187
```shell
188188
# start the express server with the language server running in the same process.

docs/migration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Migration Guide
22

3-
This guide provides instructions for migrating from version `9` of `monaco-languageclient` and vrsion `6` of `monaco-editor-wrapper` or `@typefox/monaco-editor-react` verion `6` to `monaco-languageclient` version `10` or `@typefox/monaco-editor-react` verion `7`.
3+
This guide provides instructions for migrating from version `9` of `monaco-languageclient` and vrsion `6` of `monaco-editor-wrapper` or `@typefox/monaco-editor-react` verion `6` to `monaco-languageclient` version `10` or `@typefox/monaco-editor-react` version `7`.
44

55
## Overview
66

@@ -243,7 +243,7 @@ const editorAppConfig: EditorAppConfig = {
243243
244244
## @typefox/monaco-editor-react
245245
246-
`@typefox/monaco-editor-react` uses the same configuration because internally it relies on `MonacoVscodeApiWrapper`, `LanguageClientWrapper` and `EditorApp`. Thus, you need to pass `MonacoVscodeApiConfig`, `LanguageClientConfig` and `EditorAppConfig` as described in the previous chapter. Remember that the React component only allows to use one `LanguageClientConfig`.
246+
`@typefox/monaco-editor-react` uses the same configuration because internally it relies on `MonacoVscodeApiWrapper`, `LanguageClientWrapper` and `EditorApp`. Thus, you need to pass `MonacoVscodeApiConfig` (optional as you can initialize the api independently), `LanguageClientConfig` (optional) and `EditorAppConfig` (as described in the previous chapter. Remember that the React component only allows to use one `LanguageClientConfig`.
247247
248248
<table>
249249
<tr><th>v6</th><th>v7</th></tr>

packages/client/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

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

5-
## [10.3.0] - 2025-11-14
5+
## [10.3.0] - 2025-11-16
66

77
- Fixed re-rendering issues with React StrictMode [#986](https://github.com/TypeFox/monaco-languageclient/pull/986).
8+
- React comp: Only execute queued EditorApp start if HTML is still valid [#995](https://github.com/TypeFox/monaco-languageclient/pull/995).
89

910
## [10.2.0] - 2025-09-30
1011

packages/examples/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-
## [2025.11.1] - 2025-11-14
5+
## [2025.11.1] - 2025-11-16
66

77
- Updated to `[email protected]` and `@typefox/[email protected]`.
88
- Updated all `@codingame/monaco-vscode` packages to `23.0.0`.

packages/wrapper-react/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
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-
## [7.3.0] - 2025-11-14
5+
## [7.3.0] - 2025-11-16
66

77
- Fixed re-rendering issues with React StrictMode [#986](https://github.com/TypeFox/monaco-languageclient/pull/986).
8+
- Added `onConfigProcessed` to announced the `EditorAppConfig` changed. The editor is only re-launched the component was disposed.
9+
- Optional `modifiedTextValue` and `originalTextValue` are removed as text/model changes are handled via `EditorAppConfig`.
10+
- `vscodeApiConfig` is now optional as you can start the api layer independently. If you use the compoenent without `vscodeApiConfig`, but did not ensure it is started an error is thrown.
11+
- React comp: Only execute queued EditorApp start if HTML is still valid [#995](https://github.com/TypeFox/monaco-languageclient/pull/995).
812
- Updated to `[email protected]`.
913
- Updated all `@codingame/monaco-vscode` packages to `23.0.0`.
1014

0 commit comments

Comments
 (0)