Skip to content

Commit 6c09c43

Browse files
committed
v2.5.0
1 parent 0edfb54 commit 6c09c43

File tree

21 files changed

+28
-26
lines changed

21 files changed

+28
-26
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Eclipse GLSP Server Changelog
22

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

55
### Changes
66

7-
### Potentially Breaking Changes
7+
- [api] Add missing `isOperation` discriminator to `Operation` [#256](https://github.com/eclipse-glsp/glsp-server/pull/256)
8+
- [layout] Guard `ElkLayoutEngine` against potential null access [#257](https://github.com/eclipse-glsp/glsp-server/pull/257)
9+
- [api] Add layout operation as optional parameter to `LayoutEngine.layout` [#259](https://github.com/eclipse-glsp/glsp-server/pull/259)
810

911
## [v2.4.0 - 04/04/2025](https://github.com/eclipse-glsp/glsp-server/releases/tag/v2.4.0)
1012

examples/org.eclipse.glsp.example.workflow/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: GLSP Workflow Example
44
Bundle-SymbolicName: org.eclipse.glsp.example.workflow;singleton:=true
5-
Bundle-Version: 2.5.0.qualifier
5+
Bundle-Version: 2.5.0
66
Bundle-ClassPath: .
77
Bundle-Vendor: Eclipse GLSP
88
Bundle-Localization: plugin

examples/org.eclipse.glsp.example.workflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.eclipse.glsp</groupId>
1111
<artifactId>org.eclipse.glsp.parent</artifactId>
12-
<version>2.5.0-SNAPSHOT</version>
12+
<version>2.5.0</version>
1313
<relativePath>../../pom.xml</relativePath>
1414
</parent>
1515

plugins/org.eclipse.glsp.graph/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: GLSP Graph
44
Bundle-SymbolicName: org.eclipse.glsp.graph;singleton:=true
5-
Bundle-Version: 2.5.0.qualifier
5+
Bundle-Version: 2.5.0
66
Bundle-Vendor: Eclipse GLSP
77
Automatic-Module-Name: org.eclipse.glsp.graph
88
Bundle-RequiredExecutionEnvironment: JavaSE-17

plugins/org.eclipse.glsp.graph/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.eclipse.glsp</groupId>
1010
<artifactId>org.eclipse.glsp.parent</artifactId>
11-
<version>2.5.0-SNAPSHOT</version>
11+
<version>2.5.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

plugins/org.eclipse.glsp.layout/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: GLSP Layout
44
Bundle-SymbolicName: org.eclipse.glsp.layout
5-
Bundle-Version: 2.5.0.qualifier
5+
Bundle-Version: 2.5.0
66
Bundle-Vendor: EclispeSource
77
Automatic-Module-Name: org.eclipse.glsp.layout
88
Bundle-RequiredExecutionEnvironment: JavaSE-17
@@ -11,5 +11,5 @@ Require-Bundle: com.google.inject;bundle-version="[7.0.0,8.0.0)",
1111
org.eclipse.emf.common;bundle-version="2.29.0",
1212
org.eclipse.elk.core;bundle-version="0.8.1",
1313
org.eclipse.elk.graph;bundle-version="0.8.1",
14-
org.eclipse.glsp.server;bundle-version="[2.3.0,3.0.0)"
14+
org.eclipse.glsp.server;bundle-version="[2.5.0,3.0.0)"
1515
Export-Package: org.eclipse.glsp.layout

plugins/org.eclipse.glsp.layout/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.eclipse.glsp</groupId>
1010
<artifactId>org.eclipse.glsp.parent</artifactId>
11-
<version>2.5.0-SNAPSHOT</version>
11+
<version>2.5.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

plugins/org.eclipse.glsp.server.emf/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: GLSP Server EMF
44
Bundle-SymbolicName: org.eclipse.glsp.server.emf;singleton:=true
5-
Bundle-Version: 2.5.0.qualifier
5+
Bundle-Version: 2.5.0
66
Bundle-ClassPath: .
77
Bundle-Vendor: Eclipse GLSP
88
Bundle-Localization: plugin
99
Automatic-Module-Name: org.eclipse.glsp.example.emf
1010
Bundle-RequiredExecutionEnvironment: JavaSE-17
11-
Require-Bundle: org.eclipse.glsp.server;bundle-version="[2.3.0,3.0.0)",
11+
Require-Bundle: org.eclipse.glsp.server;bundle-version="[2.5.0,3.0.0)",
1212
org.eclipse.emf.ecore;bundle-version="2.25.0",
1313
org.eclipse.emf.ecore.edit;bundle-version="2.13.0",
1414
org.eclipse.emf.ecore.xmi;bundle-version="2.16.0"

plugins/org.eclipse.glsp.server.emf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.eclipse.glsp</groupId>
1111
<artifactId>org.eclipse.glsp.parent</artifactId>
12-
<version>2.5.0-SNAPSHOT</version>
12+
<version>2.5.0</version>
1313
<relativePath>../../pom.xml</relativePath>
1414
</parent>
1515

plugins/org.eclipse.glsp.server.websocket/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: GLSP Server Websocket
44
Bundle-SymbolicName: org.eclipse.glsp.server.websocket
5-
Bundle-Version: 2.5.0.qualifier
5+
Bundle-Version: 2.5.0
66
Bundle-Vendor: Eclipse GLSP
77
Automatic-Module-Name: com.eclipsesource.glps.server.websocket
88
Bundle-RequiredExecutionEnvironment: JavaSE-17
99
Require-Bundle: com.google.gson;bundle-version="2.10.1",
10-
org.eclipse.glsp.server;bundle-version="[2.3.0,3.0.0]",
10+
org.eclipse.glsp.server;bundle-version="[2.5.0,3.0.0]",
1111
org.eclipse.lsp4j;bundle-version="0.21.0",
1212
org.eclipse.lsp4j.jsonrpc;bundle-version="0.21.0",
1313
org.eclipse.lsp4j.websocket.jakarta;bundle-version="0.21.0",

0 commit comments

Comments
 (0)