Skip to content
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
22 changes: 22 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish Release

on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to use for the release repo (default: default branch)'
required: false
type: string
draft:
description: 'Create draft GitHub release'
required: false
type: boolean
default: false

jobs:
publish-release:
uses: eclipse-glsp/glsp/.github/workflows/publish-release.yml@master
with:
release_repo: glsp-server
branch: ${{ inputs.branch }}
draft: ${{ inputs.draft }}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Eclipse GLSP Server Changelog

## v2.6.0 - active

### Changes

- [api] Extend model submission with optional layout information [#121](https://github.com/eclipse-glsp/glsp-server-node/pull/121)

### Potentially Breaking Changes

- [api] Refactor MenuItem API [#116](https://github.com/eclipse-glsp/glsp-server-node/pull/116)
- `isEnabled`, `isToggled` and `isVisible` are now serializable boolean flags instead of functions

## [v2.5.0 - 07/09/2025](https://github.com/eclipse-glsp/glsp-server-node/releases/tag/v2.5.0)

### Changes
Expand Down