Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 2.4.0 next #102

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Eclipse GLSP Server Changelog

## v2.4.0 - active

### Changes

### Potentially breaking changes

## [v2.3.0 - 23/12/2024](https://github.com/eclipse-glsp/glsp-server-node/releases/tag/v2.3.0)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/workflow-server-bundled/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp-examples/workflow-server-bundled",
"version": "2.3.0",
"version": "2.4.0-next",
"description": "GLSP node server for the workflow example (bundled)",
"keywords": [
"eclipse",
Expand Down
6 changes: 3 additions & 3 deletions examples/workflow-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp-examples/workflow-server",
"version": "2.3.0",
"version": "2.4.0-next",
"description": "GLSP node server for the workflow example",
"keywords": [
"eclipse",
Expand Down Expand Up @@ -56,8 +56,8 @@
"watch:bundle": "webpack -w"
},
"dependencies": {
"@eclipse-glsp/layout-elk": "2.3.0",
"@eclipse-glsp/server": "2.3.0",
"@eclipse-glsp/layout-elk": "2.4.0-next",
"@eclipse-glsp/server": "2.4.0-next",
"inversify": "^6.1.3"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.3.0",
"version": "2.4.0-next",
"npmClient": "yarn",
"command": {
"run": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parent",
"version": "2.3.0",
"version": "2.4.0-next",
"private": true,
"workspaces": [
"packages/*",
Expand Down
4 changes: 2 additions & 2 deletions packages/graph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/graph",
"version": "2.3.0",
"version": "2.4.0-next",
"description": "The typescript implementation of the GLSP graphical model (GModel)",
"keywords": [
"eclipse",
Expand Down Expand Up @@ -49,7 +49,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/protocol": "2.3.0"
"@eclipse-glsp/protocol": "next"
},
"devDependencies": {
"@types/uuid": "8.3.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/layout-elk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/layout-elk",
"version": "2.3.0",
"version": "2.4.0-next",
"description": "Integration of ELK graph layout algorithms in GLSP Node Server",
"keywords": [
"eclipse",
Expand Down Expand Up @@ -49,7 +49,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/server": "2.3.0",
"@eclipse-glsp/server": "2.4.0-next",
"elkjs": "^0.7.1"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/server",
"version": "2.3.0",
"version": "2.4.0-next",
"description": "A js server framework for Eclipse GLSP",
"keywords": [
"eclipse",
Expand Down Expand Up @@ -58,8 +58,8 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/graph": "2.3.0",
"@eclipse-glsp/protocol": "2.3.0",
"@eclipse-glsp/graph": "2.4.0-next",
"@eclipse-glsp/protocol": "next",
"@types/uuid": "8.3.1",
"commander": "^8.3.0",
"fast-json-patch": "^3.1.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,10 @@
dependencies:
prettier-plugin-packagejson "~2.4.6"

"@eclipse-glsp/protocol@2.3.0":
version "2.3.0"
resolved "https://registry.yarnpkg.com/@eclipse-glsp/protocol/-/protocol-2.3.0.tgz#87db53ffb81090abfe900e6ab7a5bb383a8cf2a3"
integrity sha512-y9gKtDYjvwLaWXi9ULhU21W4uEwNy94B2NjnNoxhAcZXwFxG14G4B2tBULnLJPCSeH+R717a7NRk3ECNX7lkcQ==
"@eclipse-glsp/protocol@next":
version "2.4.0-next.403"
resolved "https://registry.yarnpkg.com/@eclipse-glsp/protocol/-/protocol-2.4.0-next.403.tgz#3d6478344857524c6e8f564baf84aa1ec1794ff8"
integrity sha512-3+spkLirIPYeEqTP54+9FOoLrraYDD72cKQW6yxuSj8fQ/8QY7bSu94e9hP/3yzJMuwqdAudgdrUJRs0oNaXeA==
dependencies:
sprotty-protocol "1.4.0"
uuid "~10.0.0"
Expand Down
Loading