Skip to content

Commit 8604c5d

Browse files
committed
v2.3.0
1 parent fe1ed99 commit 8604c5d

File tree

21 files changed

+32
-21
lines changed

21 files changed

+32
-21
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
# Eclipse GLSP Server Changelog
22

3-
## v2.3.0 - active
3+
## [v2.3.0 - 27/12/2024](https://github.com/eclipse-glsp/glsp-server/releases/tag/v2.3.0)
44

55
### Changes
66

77
- [API] Fix: do not bind the DefaultActionDispatcher as ActionHandler, so it can be correctly disposed and the thread is closed at the end of a session [#246](https://github.com/eclipse-glsp/glsp-server/pull/246) - Contributed on behalf of Axon Ivy AG
8+
- [API] Align default type configuration with client side [#245](https://github.com/eclipse-glsp/glsp-server/pull/245)
9+
- Introduce `GForeignObjectElement` and corresponding builder
10+
- Update default type mapping configuration to match the configuration on client side
11+
- Introduce async live model validation behavior [#247](https://github.com/eclipse-glsp/glsp-server/pull/247)
812

913
### Potentially Breaking Changes
1014

15+
- [deps] Remove dependency to Google Guava [#244](https://github.com/eclipse-glsp/glsp-server/pull/244)
16+
- The core framework no longer depends on any Guava components.
17+
- Introduced custom `BiIndex` class to replace usage of Guava's `BiMap`
18+
- Adopters that want that still depend on Guava code have to ensure that the dependency is available as it is no longer shipped with GLSP
19+
- [deps] Update dependencies to Jakarta namespace and Eclipse 2024-x [#249](https://github.com/eclipse-glsp/glsp-server/pull/249)
20+
- This includes a switch to Jetty 12.x, and the Jakarta variant of LSP4j Websocket. For adopters that still rely on the javax namespace and [alternative release](https://github.com/eclipse-glsp/glsp-server/releases/tag/v2.3.0.javax) is provided
21+
1122
## [v2.2.1 - 22/07/2024](https://github.com/eclipse-glsp/glsp-server/releases/tag/v2.2.1)
1223

1324
### Changes

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.3.0.qualifier
5+
Bundle-Version: 2.3.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.3.0-SNAPSHOT</version>
12+
<version>2.3.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.3.0.qualifier
5+
Bundle-Version: 2.3.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.3.0-SNAPSHOT</version>
11+
<version>2.3.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

plugins/org.eclipse.glsp.layout/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 Layout
44
Bundle-SymbolicName: org.eclipse.glsp.layout
5-
Bundle-Version: 2.3.0.qualifier
5+
Bundle-Version: 2.3.0
66
Bundle-Vendor: EclispeSource
77
Automatic-Module-Name: org.eclipse.glsp.layout
88
Bundle-RequiredExecutionEnvironment: JavaSE-17

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.3.0-SNAPSHOT</version>
11+
<version>2.3.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

plugins/org.eclipse.glsp.server.emf/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 Server EMF
44
Bundle-SymbolicName: org.eclipse.glsp.server.emf;singleton:=true
5-
Bundle-Version: 2.3.0.qualifier
5+
Bundle-Version: 2.3.0
66
Bundle-ClassPath: .
77
Bundle-Vendor: Eclipse GLSP
88
Bundle-Localization: plugin

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.3.0-SNAPSHOT</version>
12+
<version>2.3.0</version>
1313
<relativePath>../../pom.xml</relativePath>
1414
</parent>
1515

plugins/org.eclipse.glsp.server.websocket/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 Server Websocket
44
Bundle-SymbolicName: org.eclipse.glsp.server.websocket
5-
Bundle-Version: 2.3.0.qualifier
5+
Bundle-Version: 2.3.0
66
Bundle-Vendor: Eclipse GLSP
77
Automatic-Module-Name: com.eclipsesource.glps.server.websocket
88
Bundle-RequiredExecutionEnvironment: JavaSE-17

0 commit comments

Comments
 (0)