diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml new file mode 100644 index 0000000..60f1b85 --- /dev/null +++ b/.github/workflows/publish-release.yml @@ -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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eea42f..d9a3498 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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