Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tortmayr authored Oct 15, 2023
1 parent 4c08226 commit 4c8ff9c
Show file tree
Hide file tree
Showing 11 changed files with 204 additions and 192 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
# Eclipse GLSP VSCode Integration Changelog

## [1.1.0 - Upcoming]()
## [2.0.0 - 14/10/2023](https://github.com/eclipse-glsp/glsp-client/releases/tag/v1.0.0)

### Changes

- [launch] Socket-based launch quickstart components now support auto-assigned ports [#33](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/33)
- [launch] Provide `NodeGlspVscodeServer` to enable direct server integration in the extension context without a dedicated server process [#37](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/37)
- [diagram] Fix a bug where the context key for selected elements was not updated properly [#28](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/28)
- [diagram] Implement support for `MessageAction` notifications [#35](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/35)
- [diagram] Improve dirty state handling to also enable dirty state change evens that have not been triggered by an operation [#37](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/37)
- [launch] Provide `NodeGlspVscodeServer` to enable direct server integration in the extension context without a dedicated server process [#38](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/37)
- [diagram] Fixed a bug that prevented proper server-side disposal of diagram sessions [#40](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/40)
- [API] Restructured packages to also provide a node-dependency free entry point for web-extensions ('@eclipse-glsp/vscode-integration/browser`) [#39](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/39)
- [diagram] Add support for server progress reporting [#47](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/47)
- [example] Add keybinding for triggering `ExportSvgAction`s [#41](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/41)

### Breaking Changes

Expand All @@ -20,6 +24,14 @@
- Added `start()` and `onReady` to `GlspVscodeServer` interface
- [API] Refactored `GlspVscodeConnector.onSelectionUpdate` event [#40](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/40)
- `Event<string[]>` -> `Event<{selectedElementIDs:string[], deselectedElementIDs:[]}>`
- [API] Drop dependency to `sprotty-vscode-webview` [#36](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/36)
- Classes,Types and symbols provide by `sprotty-vscode-webview` are no longer exported via main index
- `SprottyDiagramIdentifier`->`GLSPDiagramIdentifier`
- `SprottyStarter`-> `GLSPStarter`
- `GLSPVscodeDiagramWidget`-> `GLSPDiagramWidget`
- [API] Refactor webview communication into a `WebviewEndpoint` service and use `vscode-messenger` protocol for webview communication [#51](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/51) [#52](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/52)
- Extract vscode specific diagram bindings into custom feature modules
- Replace `GLSPVscodeExtensionHandler` with `HostExtensionHandler`

## [v1.0.0 - 30/06/2022](https://github.com/eclipse-glsp/glsp-client/releases/tag/v1.0.0)

Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pipeline {
stage('Deploy (master only)') {
when {
allOf {
branch 'master'
branch 'skipForRelease'
expression {
/* Only trigger the deployment job if the changeset contains changes in
the `packages` or `example` directory */
Expand Down
10 changes: 5 additions & 5 deletions example/workflow/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workflow-vscode-example",
"displayName": "Workflow GLSP Example",
"version": "1.1.0-next",
"version": "2.0.0",
"private": "true",
"description": "An example graphical language used for modeling workflows",
"categories": [
Expand Down Expand Up @@ -194,16 +194,16 @@
"onStartupFinished"
],
"devDependencies": {
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp-examples/workflow-server-bundled": "next",
"@eclipse-glsp/vscode-integration": "1.1.0-next",
"@eclipse-glsp-examples/workflow-server": "~2.0.0",
"@eclipse-glsp-examples/workflow-server-bundled": "~2.0.0",
"@eclipse-glsp/vscode-integration": "~2.0.0",
"@vscode/vsce": "^2.19.0",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.4.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0",
"workflow-glsp-webview": "1.1.0-next"
"workflow-glsp-webview": "~2.0.0"
},
"engines": {
"vscode": "^1.54.0"
Expand Down
8 changes: 4 additions & 4 deletions example/workflow/web-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workflow-vscode-example-web",
"displayName": "Workflow GLSP Example (Web)",
"version": "1.1.0-next",
"version": "2.0.0",
"private": "true",
"description": "An example graphical language used for modeling workflows",
"categories": [
Expand Down Expand Up @@ -195,15 +195,15 @@
"onStartupFinished"
],
"devDependencies": {
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp/vscode-integration": "1.1.0-next",
"@eclipse-glsp-examples/workflow-server": "~2.0.0",
"@eclipse-glsp/vscode-integration": "~2.0.0",
"@types/node": "16.x",
"@vscode/vsce": "^2.19.0",
"copy-webpack-plugin": "^11.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.9.0",
"workflow-glsp-webview": "1.1.0-next"
"workflow-glsp-webview": "~2.0.0"
},
"engines": {
"vscode": "^1.54.0"
Expand Down
6 changes: 3 additions & 3 deletions example/workflow/webview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workflow-glsp-webview",
"version": "1.1.0-next",
"version": "2.0.0",
"private": "true",
"description": "Example of the Workflow GLSP diagram in a VS Code extensions (WebView part)",
"keywords": [
Expand Down Expand Up @@ -38,8 +38,8 @@
"watch": "tsc -w"
},
"devDependencies": {
"@eclipse-glsp-examples/workflow-glsp": "next",
"@eclipse-glsp/vscode-integration-webview": "1.1.0-next",
"@eclipse-glsp-examples/workflow-glsp": "~2.0.0",
"@eclipse-glsp/vscode-integration-webview": "~2.0.0",
"@vscode/codicons": "^0.0.25",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^6.7.1",
Expand Down
1 change: 0 additions & 1 deletion example/workflow/workspace/d

This file was deleted.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "2.0.0",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"workflow:web": "yarn --cwd example/workflow/web-extension"
},
"devDependencies": {
"@eclipse-glsp/dev": "^1.1.0-next.cbae4df.145",
"@eclipse-glsp/dev": "2.0.0",
"@types/node": "16",
"@types/vscode": "^1.54.0",
"lerna": "^6.6.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode-integration-webview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/vscode-integration-webview",
"version": "1.1.0-next",
"version": "2.0.0",
"description": "Integration of a GLSP diagram in a VS Code extensions (WebView part)",
"keywords": [
"vscode",
Expand Down Expand Up @@ -42,7 +42,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/client": "next",
"@eclipse-glsp/client": "~2.0.0",
"vscode-messenger-webview": "^0.4.5"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode-integration/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eclipse-glsp/vscode-integration",
"displayName": "GLSP VSCode Integration",
"version": "1.1.0-next",
"version": "2.0.0",
"description": "Glue code to integrate GLSP diagrams in VSCode extensions (extension part)",
"keywords": [
"eclipse",
Expand Down Expand Up @@ -47,7 +47,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/protocol": "next",
"@eclipse-glsp/protocol": "~2.0.0",
"vscode-jsonrpc": "^8.0.2",
"vscode-messenger": "^0.4.5",
"ws": "^8.13.0"
Expand Down
Loading

0 comments on commit 4c8ff9c

Please sign in to comment.