Skip to content

Commit 48d7be0

Browse files
committed
v2.2.1
1 parent 76b60cf commit 48d7be0

File tree

9 files changed

+67
-67
lines changed

9 files changed

+67
-67
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Eclipse GLSP Server Changelog
22

3-
## v2.2.0- active
3+
## [v2.2.1 - 22/07/2024](https://github.com/eclipse-glsp/glsp-server-node/releases/tag/v2.2.1)
44

55
- [layout] Ensure that model is updated correctly when using `automatic` server layout [#74](https://github.com/eclipse-glsp/glsp-server-node/pull/74)
66
- [gmodel] Add proper undefined/null handling in GModel builder functions [#76](https://github.com/eclipse-glsp/glsp-server-node/pull/76)

examples/workflow-server-bundled/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp-examples/workflow-server-bundled",
3-
"version": "2.2.0-next",
3+
"version": "2.2.1",
44
"description": "GLSP node server for the workflow example (bundled)",
55
"keywords": [
66
"eclipse",

examples/workflow-server/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp-examples/workflow-server",
3-
"version": "2.2.0-next",
3+
"version": "2.2.1",
44
"description": "GLSP node server for the workflow example",
55
"keywords": [
66
"eclipse",
@@ -56,9 +56,9 @@
5656
"watch:bundle": "webpack -w"
5757
},
5858
"dependencies": {
59-
"@eclipse-glsp/layout-elk": "2.2.0-next",
60-
"@eclipse-glsp/server": "2.2.0-next",
61-
"inversify": "^6.0.1"
59+
"@eclipse-glsp/layout-elk": "2.2.1",
60+
"@eclipse-glsp/server": "2.2.1",
61+
"inversify": "~6.0.2"
6262
},
6363
"devDependencies": {
6464
"source-map-loader": "^4.0.1",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.1.0",
2+
"version": "2.2.1",
33
"npmClient": "yarn",
44
"command": {
55
"run": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parent",
3-
"version": "2.1.0",
3+
"version": "2.2.1",
44
"private": true,
55
"workspaces": [
66
"packages/*",
@@ -33,7 +33,7 @@
3333
"watch:bundle": "yarn --cwd examples/workflow-server watch:bundle"
3434
},
3535
"devDependencies": {
36-
"@eclipse-glsp/dev": "next",
36+
"@eclipse-glsp/dev": "2.2.1",
3737
"@types/node": "16.x",
3838
"concurrently": "^8.2.2",
3939
"lerna": "^7.0.0",

packages/graph/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/graph",
3-
"version": "2.2.0-next",
3+
"version": "2.2.1",
44
"description": "The typescript implementation of the GLSP graphical model (GModel)",
55
"keywords": [
66
"eclipse",
@@ -49,7 +49,7 @@
4949
"watch": "tsc -w"
5050
},
5151
"dependencies": {
52-
"@eclipse-glsp/protocol": "next"
52+
"@eclipse-glsp/protocol": "2.2.1"
5353
},
5454
"devDependencies": {
5555
"@types/uuid": "8.3.1"

packages/layout-elk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/layout-elk",
3-
"version": "2.2.0-next",
3+
"version": "2.2.1",
44
"description": "Integration of ELK graph layout algorithms in GLSP Node Server",
55
"keywords": [
66
"eclipse",
@@ -49,11 +49,11 @@
4949
"watch": "tsc -w"
5050
},
5151
"dependencies": {
52-
"@eclipse-glsp/server": "2.2.0-next",
52+
"@eclipse-glsp/server": "2.2.1",
5353
"elkjs": "^0.7.1"
5454
},
5555
"peerDependencies": {
56-
"inversify": "^6.0.0"
56+
"inversify": "~6.0.2"
5757
},
5858
"publishConfig": {
5959
"access": "public"

packages/server/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/server",
3-
"version": "2.2.0-next",
3+
"version": "2.2.1",
44
"description": "A js server framework for Eclipse GLSP",
55
"keywords": [
66
"eclipse",
@@ -58,8 +58,8 @@
5858
"watch": "tsc -w"
5959
},
6060
"dependencies": {
61-
"@eclipse-glsp/graph": "2.2.0-next",
62-
"@eclipse-glsp/protocol": "next",
61+
"@eclipse-glsp/graph": "2.2.1",
62+
"@eclipse-glsp/protocol": "2.2.1",
6363
"@types/uuid": "8.3.1",
6464
"commander": "^8.3.0",
6565
"fast-json-patch": "^3.1.0",
@@ -71,7 +71,7 @@
7171
"@types/ws": "^8.5.4"
7272
},
7373
"peerDependencies": {
74-
"inversify": "^6.0.0"
74+
"inversify": "~6.0.2"
7575
},
7676
"publishConfig": {
7777
"access": "public"

yarn.lock

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,10 @@
223223
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
224224
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
225225

226-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
227-
version "2.2.0-next.c32aadb.160"
228-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/cli/-/cli-2.2.0-next.c32aadb.160.tgz#1171b21aec7bddfcc73e68cc41d0b9dcb199c258"
229-
integrity sha512-Clw0YKkMg41vQnd3UY9quIConKdQoQ98+dp15ouKps5yG8l3xpmjCC44V10N4LJ5l2Jmol6UTJfPGmA9FyrGdw==
226+
"@eclipse-glsp/[email protected].1":
227+
version "2.2.1"
228+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/cli/-/cli-2.2.1.tgz#7c1e99c6085063ca1092ec77efb5bdea2de5b460"
229+
integrity sha512-QWMSdLaoPA6FnsQFOySqt/A2okLVj1qRBEDdDWwqQdtWLv4In/ikqenzlqaeehPhowMpwoIiNlLxpIVzIIHbyw==
230230
dependencies:
231231
commander "^10.0.1"
232232
glob "^10.3.10"
@@ -237,13 +237,13 @@
237237
semver "^7.5.1"
238238
shelljs "^0.8.5"
239239

240-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
241-
version "2.2.0-next.c32aadb.160"
242-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/config-test/-/config-test-2.2.0-next.c32aadb.160.tgz#30f409221024544604f5030caf092ac89d22867d"
243-
integrity sha512-STBp0y+SmvpWz+D8wdyiVMelE7jFAGVxicFekalmoNaDO3pUSR3QmuxGHsSwWQ3qOB30vic4eMc3rSMrR4dABw==
240+
"@eclipse-glsp/[email protected].1":
241+
version "2.2.1"
242+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/config-test/-/config-test-2.2.1.tgz#fec91fb046c79538ea71e8bd479cebe0bb74b3b2"
243+
integrity sha512-juZdoK/3a/rauWmsYDQZoTG6IbKG1w9ofpspYBIGEdo3n6JZr+bMW/lFZBoh3cM/NY48z3C+Je4MTIAmTSk4jA==
244244
dependencies:
245-
"@eclipse-glsp/mocha-config" "2.2.0-next.c32aadb.160+c32aadb"
246-
"@eclipse-glsp/nyc-config" "2.2.0-next.c32aadb.160+c32aadb"
245+
"@eclipse-glsp/mocha-config" "2.2.1"
246+
"@eclipse-glsp/nyc-config" "2.2.1"
247247
"@istanbuljs/nyc-config-typescript" "^1.0.2"
248248
"@types/chai" "^4.3.7"
249249
"@types/mocha" "^10.0.2"
@@ -257,14 +257,14 @@
257257
sinon "^15.1.0"
258258
ts-node "^10.9.1"
259259

260-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
261-
version "2.2.0-next.c32aadb.160"
262-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/config/-/config-2.2.0-next.c32aadb.160.tgz#5e0c25ef98f2aad44de9cb3de1cb8c2523543835"
263-
integrity sha512-rFpykLbc3VC+Nx9iR5dOQUGU9FXYOrxC8qnOOBt+ou+xkSvdDTUYHKC4QKmXRZbiVnhfpbj7CIauBoU2XxineA==
260+
"@eclipse-glsp/[email protected].1":
261+
version "2.2.1"
262+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/config/-/config-2.2.1.tgz#6db57305366a671ffb37100a3c716a9ae2006f6e"
263+
integrity sha512-nwLbyj3cExt+HxcwTTAnoRD52hYO0MpvbRMYvN+eud8XnySQ4uplm11ynnBDhmLiMrEBNLGy5tt1gbRD34wtwg==
264264
dependencies:
265-
"@eclipse-glsp/eslint-config" "2.2.0-next.c32aadb.160+c32aadb"
266-
"@eclipse-glsp/prettier-config" "2.2.0-next.c32aadb.160+c32aadb"
267-
"@eclipse-glsp/ts-config" "2.2.0-next.c32aadb.160+c32aadb"
265+
"@eclipse-glsp/eslint-config" "2.2.1"
266+
"@eclipse-glsp/prettier-config" "2.2.1"
267+
"@eclipse-glsp/ts-config" "2.2.1"
268268
"@typescript-eslint/eslint-plugin" "^6.7.5"
269269
"@typescript-eslint/parser" "^6.7.5"
270270
eslint "^8.51.0"
@@ -278,50 +278,50 @@
278278
reflect-metadata "^0.1.13"
279279
rimraf "^5.0.5"
280280

281-
"@eclipse-glsp/dev@next":
282-
version "2.2.0-next.c32aadb.160"
283-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/dev/-/dev-2.2.0-next.c32aadb.160.tgz#d67cdceed91cb779e9495d06b6b4c7106541bc4f"
284-
integrity sha512-ns0jJBxcW3qkzx8RV8JB/YYHOrK/9OXy7qrvhNabqAPRTpzn5ovp2kv7rZd97JGMPenq+2iSgbcY39eqq4zAHg==
281+
"@eclipse-glsp/dev@2.2.1":
282+
version "2.2.1"
283+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/dev/-/dev-2.2.1.tgz#73e1ff854d1cdc13c22dc744a5fbd8a0c17a16cb"
284+
integrity sha512-RGOGthSD4e+7hagyWp8cBRa/m8MwglmpQLvLvTcEZIisKc9Vdku0SogtWLd6+bAXvvW7MSkUb3a7IDucXl1w0A==
285285
dependencies:
286-
"@eclipse-glsp/cli" "2.2.0-next.c32aadb.160+c32aadb"
287-
"@eclipse-glsp/config" "2.2.0-next.c32aadb.160+c32aadb"
288-
"@eclipse-glsp/config-test" "2.2.0-next.c32aadb.160+c32aadb"
286+
"@eclipse-glsp/cli" "2.2.1"
287+
"@eclipse-glsp/config" "2.2.1"
288+
"@eclipse-glsp/config-test" "2.2.1"
289289

290-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
291-
version "2.2.0-next.c32aadb.160"
292-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/eslint-config/-/eslint-config-2.2.0-next.c32aadb.160.tgz#40a2f916d662b5bd5eefac469214b2e74ba8d28c"
293-
integrity sha512-BDYLSB9lkgGmwA2fPB8OjnZTD4r48AHWAYSwkFdy/1RwJxL/F8fWlfWu6c8o5AVuNyMkrqedtmfdehSZA01u7A==
290+
"@eclipse-glsp/[email protected].1":
291+
version "2.2.1"
292+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/eslint-config/-/eslint-config-2.2.1.tgz#6686b88a3c46efbf51a5008aede34a94bc1e9762"
293+
integrity sha512-gfFaE/kqi6EouYF3TO71YWzxJdUPLtXAoYkXM356SFBCHghUYYs0mqqik5stZgvrH65NcKnbtkCd11XXblNvWw==
294294

295-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
296-
version "2.2.0-next.c32aadb.160"
297-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/mocha-config/-/mocha-config-2.2.0-next.c32aadb.160.tgz#c440d499ced653d342dcb39c52944e03b879ec40"
298-
integrity sha512-n3T212zAl5oKMGQM1V8L/GvDsZwyIDdZAVh25yHjh0hFgVfraaGqzvGPTZxlKmJBuD0++6LH9FDhUNcNhMllHQ==
295+
"@eclipse-glsp/[email protected].1":
296+
version "2.2.1"
297+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/mocha-config/-/mocha-config-2.2.1.tgz#5d60f9c04e8afdbb81f3b31a3b27b867a3b419e2"
298+
integrity sha512-VAQoOhCcqzXkxrY4Wgyp8lam1VQEXJ0SKnfznldGHTlVqtmpDxSqhW3Rb7nWMTDdbQ5yt75kBVyK48w7/DDbpA==
299299

300-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
301-
version "2.2.0-next.c32aadb.160"
302-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/nyc-config/-/nyc-config-2.2.0-next.c32aadb.160.tgz#9f84da72015c90aa2beb1394e14643f353a16158"
303-
integrity sha512-m00F5RLly63TNDe76pW2yk/BLGKWpoD+qvga7ZSVDf2KPpdjf2cBjw2ei816H+Avl1TI+ufauQO8NdRu5O5Vuw==
300+
"@eclipse-glsp/[email protected].1":
301+
version "2.2.1"
302+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/nyc-config/-/nyc-config-2.2.1.tgz#46e4e1cffffb985ecae748399fcedf0eee17cfd9"
303+
integrity sha512-WdvSFB6HDq0P25zRgRntw5YPKuUNiF4ZzVFkgrWKvXN+RimXp7pCypjh8D4DMcza1QJPrik4dnBLDHbMKTmXyQ==
304304

305-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
306-
version "2.2.0-next.c32aadb.160"
307-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/prettier-config/-/prettier-config-2.2.0-next.c32aadb.160.tgz#c4e019dbbafd04483cc7916f25c8b3a151f7d916"
308-
integrity sha512-xqfSe+UMS4p5WGimZnX5iIm1AX+x1CAAippobgogGRnbA5RBsUdOh/odFgfRcme6/IfyFWj5m4IY7IHlFPZwCw==
305+
"@eclipse-glsp/[email protected].1":
306+
version "2.2.1"
307+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/prettier-config/-/prettier-config-2.2.1.tgz#ed36f17b4a37a12c9c0e46fa0015a04569eb7cf3"
308+
integrity sha512-mf7Zh+0ZKbga7rq5bYyucTPV0YX9O+6hqgQlAZnYhlIVs/G9PtM9YfTo4PdaFeEfiFxse0o9OEd5OOgoc7Y4sw==
309309
dependencies:
310310
prettier-plugin-packagejson "~2.4.6"
311311

312-
"@eclipse-glsp/protocol@next":
313-
version "2.2.0-next.353"
314-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/protocol/-/protocol-2.2.0-next.353.tgz#5effcb22dd25ffae5a7264324c2752cf89754629"
315-
integrity sha512-LARvLG1bEmmfR8e6wFoEyYwOfMiQMyHEi/2SD/c08BUIDjEAuxbUEQyx2g+d9btfHdVEZJXfwfvy5oIuLEuI1Q==
312+
"@eclipse-glsp/protocol@2.2.1":
313+
version "2.2.1"
314+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/protocol/-/protocol-2.2.1.tgz#60fe2936aec71f5b52876ded8108ce06a08d1c61"
315+
integrity sha512-v0u9Izx5zn50beC9qJXSNlkoYDLaZ8z4+IT0c4jll6U4PG+unZbGWVWhC+mED7rY+BaA0oT683bxIB8yRhfIJA==
316316
dependencies:
317317
sprotty-protocol "1.2.0"
318318
uuid "~10.0.0"
319319
vscode-jsonrpc "8.2.0"
320320

321-
"@eclipse-glsp/[email protected].0-next.c32aadb.160+c32aadb":
322-
version "2.2.0-next.c32aadb.160"
323-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/ts-config/-/ts-config-2.2.0-next.c32aadb.160.tgz#d660cd736056a91c0c79fb2076835073ad12d7b9"
324-
integrity sha512-05D85X5tUY/M23rTDs1b9MfF+YbV7j97rTFss5PHad7YI2DOByqMGRxaoPI+xzyoQUUAHTxKekGb5KbE8douDQ==
321+
"@eclipse-glsp/[email protected].1":
322+
version "2.2.1"
323+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/ts-config/-/ts-config-2.2.1.tgz#c695dddebb3e00b530346bfbd12622aa90d1ce9f"
324+
integrity sha512-oSzFLcmMAJ3p/BAlxmTxn+aX43NZVk04sWvTbV0FXzwGazfADz+7iMYO2oAV53yJvWLJaPca8xWm++sEzOMrig==
325325

326326
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
327327
version "4.4.0"
@@ -3984,7 +3984,7 @@ interpret@^3.1.1:
39843984
resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4"
39853985
integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==
39863986

3987-
inversify@^6.0.1:
3987+
inversify@~6.0.2:
39883988
version "6.0.2"
39893989
resolved "https://registry.yarnpkg.com/inversify/-/inversify-6.0.2.tgz#dc7fa0348213d789d35ffb719dea9685570989c7"
39903990
integrity sha512-i9m8j/7YIv4mDuYXUAcrpKPSaju/CIly9AHK5jvCBeoiM/2KEsuCQTTP+rzSWWpLYWRukdXFSl6ZTk2/uumbiA==

0 commit comments

Comments
 (0)