Skip to content

Commit 6fa7c71

Browse files
github-actions[bot]tortmayr
authored andcommitted
v2.6.0 (#122)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Update changelog (#121) and add publish-release workflow
1 parent 53f5ed4 commit 6fa7c71

File tree

21 files changed

+158
-865
lines changed

21 files changed

+158
-865
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish Release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
branch:
7+
description: 'Branch to use for the release repo (default: default branch)'
8+
required: false
9+
type: string
10+
draft:
11+
description: 'Create draft GitHub release'
12+
required: false
13+
type: boolean
14+
default: false
15+
16+
jobs:
17+
publish-release:
18+
uses: eclipse-glsp/glsp/.github/workflows/publish-release.yml@master
19+
with:
20+
release_repo: glsp-eclipse-integration
21+
branch: ${{ inputs.branch }}
22+
draft: ${{ inputs.draft }}

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# Eclipse GLSP Eclipse Integration Changelog
22

3-
## v2.6.0 - active
3+
## [v2.6.0 - 11/02/2026](https://github.com/eclipse-glsp/glsp-eclipse-integration/releases/tag/v2.6.0)
44

55
### Changes
66

7+
- [diagram] Add NPE guard to `FocusAwareBrowser` [#119](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/119)
8+
79
### Potentially Breaking Changes
810

11+
- [websocket] Update to Jetty 12.1.4 as new minimum version [#118](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/118)
12+
913
## v2.5.0 - 07/09/2025(<https://github.com/eclipse-glsp/glsp-eclipse-integration/releases/tag/v2.5.0>)
1014

1115
### Potentially breaking changes

client/examples/workflow-webapp/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-examples/workflow-webapp",
3-
"version": "2.6.0-next",
3+
"version": "2.6.0",
44
"private": true,
55
"description": "GLSP-based webapp for the Workflow example",
66
"scripts": {
@@ -15,8 +15,8 @@
1515
"watch:tsc": "tsc -w"
1616
},
1717
"dependencies": {
18-
"@eclipse-glsp-examples/workflow-glsp": "next",
19-
"@eclipse-glsp/ide": "2.6.0-next"
18+
"@eclipse-glsp-examples/workflow-glsp": "2.6.0",
19+
"@eclipse-glsp/ide": "2.6.0"
2020
},
2121
"devDependencies": {
2222
"@vscode/codicons": "^0.0.25",

client/lerna.json

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

client/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.6.0-next",
3+
"version": "2.6.0",
44
"private": true,
55
"workspaces": [
66
"packages/*",
@@ -28,7 +28,7 @@
2828
"watch": "concurrently --kill-others -n tsc,webapp -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"yarn -s app watch\""
2929
},
3030
"devDependencies": {
31-
"@eclipse-glsp/dev": "next",
31+
"@eclipse-glsp/dev": "2.6.0",
3232
"@types/node": "20.x",
3333
"copyfiles": "^2.4.1",
3434
"lerna": "^9.0.0",

client/packages/ide/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/ide",
3-
"version": "2.6.0-next",
3+
"version": "2.6.0",
44
"description": "Glue code to integrate GLSP clients into Eclipse via a webapp",
55
"homepage": "https://www.eclipse.org/glsp/",
66
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
@@ -34,7 +34,7 @@
3434
"watch": "tsc -w"
3535
},
3636
"dependencies": {
37-
"@eclipse-glsp/client": "next"
37+
"@eclipse-glsp/client": "2.6.0"
3838
},
3939
"engines": {
4040
"yarn": "1.0.x || >=1.2.1"

0 commit comments

Comments
 (0)