Skip to content

Commit 3118e93

Browse files
committed
Updated CHANGELOGs and version to -next.6
1 parent 9d4c543 commit 3118e93

File tree

12 files changed

+61
-37
lines changed

12 files changed

+61
-37
lines changed

package-lock.json

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

packages/client/CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

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

5-
## [8.0.0] - 2024-03-0x
6-
7-
- WIP: Repository now includes `monaco-editor-wrapper` and `@typefox/monaco-editor-react`
8-
- Updated to `@codingame/[email protected]`. This ensures amoung other things proper sematic versioning
9-
- Details
5+
## [8.0.0] - 2024-03-1x
6+
7+
- Repository now includes `monaco-editor-wrapper` and `@typefox/monaco-editor-react`
8+
- Aligned LICENSE usage throughout the repository
9+
- Introduce new exports `vscode/services` where you find all mandatory functions related to `@codingame/monaco-vscode-api` service initialization
10+
- Updated to `@codingame/[email protected]` and `@codingame/[email protected]`
11+
- Proper sematic versioning, versions are now idenpendent of VSCode versioning scheme, but compatibility table is found [here](https://github.com/TypeFox/monaco-languageclient/blob/main/docs/versions-and-history.md#monaco-editor--codingamemonaco-vscode-api-compatibility-table).
12+
- `@codingame/monaco-vscode-editor-api` is now the alias for `monaco-editor` It provides the full editor's full api and hereby removes the need for a treemended version.
1013

1114
## [7.3.0] - 2024-01-04
1215

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monaco-languageclient",
3-
"version": "8.0.0-next.5",
3+
"version": "8.0.0-next.6",
44
"description": "Monaco Language client implementation",
55
"author": {
66
"name": "TypeFox GmbH",

packages/examples/CHANGELOG.md

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

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

5-
## [8.0.0] - 2024-02-0x
5+
## [8.0.0] - 2024-03-1x
66

7-
- Updated to `[email protected]`
7+
- Repository now includes `monaco-editor-wrapper` and `@typefox/monaco-editor-react`
8+
- Unified examples. Make use of `monaco-editor-wrapper` or `@typefox/monaco-editor-react` in all client applications
9+
- Aligned LICENSE usage throughout the repository
10+
811
- feat: add LanguageServerRunConfig and groovy example [#591](https://github.com/TypeFox/monaco-languageclient/pull/591)
912

1013
## [7.3.0] - 2023-01-04

packages/examples/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monaco-languageclient-examples",
3-
"version": "8.0.0-next.5",
3+
"version": "8.0.0-next.6",
44
"description": "Monaco Language client examples",
55
"author": {
66
"name": "TypeFox GmbH",
@@ -70,12 +70,12 @@
7070
"@codingame/monaco-vscode-language-pack-de": "~3.1.2",
7171
"@codingame/monaco-vscode-language-pack-es": "~3.1.2",
7272
"@codingame/monaco-vscode-language-pack-fr": "~3.1.2",
73-
"@typefox/monaco-editor-react": "~3.0.0-next.5",
73+
"@typefox/monaco-editor-react": "~3.0.0-next.6",
7474
"express": "~4.18.3",
7575
"langium": "3.0.0",
7676
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~3.1.2",
77-
"monaco-editor-wrapper": "~4.0.0-next.5",
78-
"monaco-languageclient": "~8.0.0-next.5",
77+
"monaco-editor-wrapper": "~4.0.0-next.6",
78+
"monaco-languageclient": "~8.0.0-next.6",
7979
"pyright": "~1.1.354",
8080
"react": "~18.2.0",
8181
"react-dom": "~18.2.0",
@@ -85,7 +85,7 @@
8585
"vscode-languageclient": "~9.0.1",
8686
"vscode-languageserver": "~9.0.1",
8787
"vscode-uri": "~3.0.8",
88-
"vscode-ws-jsonrpc": "~3.3.0-next.5",
88+
"vscode-ws-jsonrpc": "~3.3.0-next.6",
8989
"ws": "~8.16.0"
9090
},
9191
"devDependencies": {

packages/vscode-ws-jsonrpc/CHANGELOG.md

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

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

5+
## [3.3.0] - 2024-03-1x
6+
7+
- Repository now includes `monaco-editor-wrapper` and `@typefox/monaco-editor-react`
8+
- Aligned LICENSE usage throughout the repository
9+
- No direct code changes
10+
511
## [3.2.0] - 2024-02-19
612

713
- Implement dispose method on WebSocketMessageReader [#602](https://github.com/TypeFox/monaco-languageclient/pull/602)

packages/vscode-ws-jsonrpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-ws-jsonrpc",
3-
"version": "3.3.0-next.5",
3+
"version": "3.3.0-next.6",
44
"description": "VSCode JSON RPC over WebSocket",
55
"author": {
66
"name": "TypeFox GmbH",

packages/wrapper-react/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to npm module [@typefox/monaco-editor-react](https://www.npm
55
## [3.0.0] - 2024-03-0x
66

77
- Moved code to [monaco-languageclient](https://github.com/TypeFox/monaco-languageclient) repository.
8+
- Vite & monaco-editor-workers [monaco-components #67](https://github.com/TypeFox/monaco-components/issues/67)
9+
- Selective applicance of wrappers css [monaco-components #65](https://github.com/TypeFox/monaco-components/issues/65)
10+
- Having the component twice on a page [monaco-components #64](https://github.com/TypeFox/monaco-components/issues/64)
11+
- [Monaco Editor React Component] unavailable language server throws unhandled error [monaco-components #62](https://github.com/TypeFox/monaco-components/issues/62)
812

913
## [2.6.0] - 2024-01-04
1014

packages/wrapper-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typefox/monaco-editor-react",
3-
"version": "3.0.0-next.5",
3+
"version": "3.0.0-next.6",
44
"license": "MIT",
55
"description": "React component for Monaco-Editor and Monaco Languageclient",
66
"keywords": [
@@ -52,12 +52,12 @@
5252
},
5353
"dependencies": {
5454
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~3.1.2",
55-
"monaco-editor-wrapper": "~4.0.0-next.5",
55+
"monaco-editor-wrapper": "~4.0.0-next.6",
5656
"react": "~18.2.0",
5757
"vscode": "npm:@codingame/monaco-vscode-api@~3.1.2"
5858
},
5959
"peerDependencies": {
60-
"monaco-editor-wrapper": "~4.0.0-next.5"
60+
"monaco-editor-wrapper": "~4.0.0-next.6"
6161
},
6262
"peerDependenciesMeta": {
6363
"monaco-editor-wrapper": {

packages/wrapper/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to npm module [monaco-editor-wrapper](https://www.npmjs.com/
55
## [4.0.0] - 2024-03-0x
66

77
- Moved code to [monaco-languageclient](https://github.com/TypeFox/monaco-languageclient) repository.
8+
- Aligned LICENSE usage throughout the repository
9+
- Introduce new export `vscode/services`
10+
- Extends functions `monaco-languageclient/vscode/services` provides
11+
- Introduce new export `workerFactory`
12+
- Replaces `monaco-editor-workers` and allows to fully override the default definiton
13+
- Vite & monaco-editor-workers [monaco-components #67](https://github.com/TypeFox/monaco-components/issues/67)
14+
- Selective applicance of wrappers css [monaco-components #65](https://github.com/TypeFox/monaco-components/issues/65)
15+
- Having the component twice on a page [monaco-components #64](https://github.com/TypeFox/monaco-components/issues/64)
816

917
## [3.6.0] - 2024-01-04
1018

packages/wrapper/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monaco-editor-wrapper",
3-
"version": "4.0.0-next.5",
3+
"version": "4.0.0-next.6",
44
"license": "MIT",
55
"description": "Wrapper for monaco-vscode-editor-api and monaco-languageclient",
66
"keywords": [
@@ -112,14 +112,14 @@
112112
"vscode": "npm:@codingame/monaco-vscode-api@~3.1.2",
113113
"vscode-languageclient": "~9.0.1",
114114
"vscode-languageserver-protocol": "~3.17.5",
115-
"vscode-ws-jsonrpc": "~3.3.0-next.5"
115+
"vscode-ws-jsonrpc": "~3.3.0-next.6"
116116
},
117117
"devDependencies": {
118118
"monaco-editor-ms": "npm:monaco-editor@~0.47.0"
119119
},
120120
"peerDependencies": {
121121
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~3.1.2",
122-
"monaco-languageclient": "~8.0.0-next.5",
122+
"monaco-languageclient": "~8.0.0-next.6",
123123
"vscode": "npm:@codingame/monaco-vscode-api@~3.1.2"
124124
},
125125
"peerDependenciesMeta": {

verify/yarn/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"private": true,
55
"type": "module",
66
"dependencies": {
7-
"@typefox/monaco-editor-react": "3.0.0-next.5",
7+
"@typefox/monaco-editor-react": "3.0.0-next.6",
88
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~3.1.2",
9-
"monaco-editor-wrapper": "4.0.0-next.5",
10-
"monaco-languageclient-examples": "8.0.0-next.5",
9+
"monaco-editor-wrapper": "4.0.0-next.6",
10+
"monaco-languageclient-examples": "8.0.0-next.6",
1111
"vscode": "npm:@codingame/monaco-vscode-api@~3.1.2",
12-
"vscode-ws-jsonrpc": "~3.3.0-next.5"
12+
"vscode-ws-jsonrpc": "~3.3.0-next.6"
1313
},
1414
"devDependencies": {
1515
"http-server": "~14.1.1",

0 commit comments

Comments
 (0)