Releases: eclipse-glsp/glsp-server
1.1.0 Release Candiate 4
What's Changed
- Update tycho maven version: 2.3.0 => 2.7.5 by @xai in #180
- Update Jenkinsconfiguration by @tortmayr in #184
Full Changelog: v1.1.0.RC03...v1.1.0.RC04
1.1.0 Release Candiate 3
What's Changed
- #738: Add route data to ComputedBoundsAction by @martin-fleck-at in #181
- added a new constructor method providing a custom sort string by @rsoika in #182
New Contributors
Full Changelog: v1.1.0.RC02...v1.1.0.RC03
1.1.0 Release Candiate 2
1.1.0 Release Candidate 1
Changes
[graph] Update the Graph model and add Layoutable interface #175 - Contributed on behalf of STMicroelectronics
1.0.0. Release
Changes
- [documentation] Improved existing API javadoc and added missing documentation for service interfaces. #164 - Contributed on behalf of STMicroelectronics
- [graph] Fixed a bug that lead to incomplete
GModelIndex
initialization #143 - [example] Improved styling and cleaned up code of the workflow example #148 #156
- [gson] Ensure that
DefaultServerGsonConfigurator
properly disposes temporary DI diagram sessions after server initialization.#151 - [layout] Ensure that
LayoutEngine
is injected as optional field to avoidNullPointerExceptions
s if no implementation is bound #153 - [build] Remove dependency to
org.apache.commons.io
#157 - [emf] Inception of new
org.eclipse.glsp.server.emf
package + example models- Provides reusable base classes for EMF-based source models #159
- [graph] Introduced
GShapePrerenderedElementBuilder
to enable easy construction of shaped prerendered elements eg. foreign object elements. #168 - [diagram] Fixed a bug that could occur during saving by ensuring that all pending actions are dispatched before a client session is disposed. #172
Breaking Changes
- [protocol] Align server actions with the definitions in @eclipse-glsp-protocol #142
- Affects methods and return types of all action classes.
- [model] Source model refactoring #154
ModelSourceLoader
→SourceModelStorage
ModelSourceWatcher
→SourceModelWatcher
- Added method to
SourceModelStorage
- [model] Refactoring as part of adding new GLSP examples #159, #161
- Renamed
setRoot
toupdateRoot
in model state to better reflect dependent updates, remove re-generation of command stack in method but add index re-generation
- Renamed
- [operation] Refactoring as part of cleaning up operation handlers #164
- Renamed
CreateEdgeOperationHandler
toAbstractCreateEdgeOperationHandler
- Renamed
CreateNodeOperationHandler
toAbstractCreateNodeOperationHandler
- Renamed
- [gmodel] Move base diagram module and operation handlers that operate directly on GModels (as a model source) to the dedicated package
org.eclipse.glsp.server.gmodel
and add prefixGModel
in the class name #165 - [logging] Update from log4j 1.x to log4j 2.17.1. #163
- Affects logger creation across all classes
- [protocol] Rename
ModelSourceChangedAction
toSourceModelChangedAction
including handlers #171
0.9.0 Release
Changes
- [websocket] Fixed issue that was caused by reusing a shared injector for each client connection #149
- [navigation] Added a utility class for 'JsonOpenerOptions' #153
- [diagram] Merged the
ServerLayoutConfiguration
API into theDiagramConfiguration
API. #123 - [model] Reworked model update flow. All aspects of the update process are now handled by the
ModelSubmissionHandler
#122 - [model] Reworked and split
ModelFactory
API into a dedicated component responsible for loading the model source (ModelSourceLoader
) and a component responsible for transforming the current modelstate into its GModel-representation (GModelFactory
) #119 - [protocol] Added implementation for
SetViewportAction
#179 - [model] Introduced
GArgumentable
interface which is implemented by allGModelElement
s. This can be used to provide additional information in form of anargs
map without having to extend theGModel
type #194 - [model] Extended default type mapping and added builder for
GArgumentable
elements and corresponding utility classes #180 - [protocol] Added
fileUri
property toSaveModelAction
and updatedSaveModelActionHandler
accordingly #208 - [protocol] Added optional
reason
string property toSetDirtyStateAction
. This property indicates the reason that caused to dirty state change and enables more fine granular handling of dirty state changes #197 - [build] Update dependencies of Google Guava (>= 30.1) and Google Guice (>= 5.0.0). #260
- [protocol] Refactor the base communication protocol to support initializing and disposing a client session. #315
- [server] The
org.apache.log4j
dependency is not reexported any more when consumed as p2 artifact. #430 - [di] Complete rework of DI architecture. Move away from one global injector per application. Instead use one global server injector and dedicated child injectors for each diagram session. #150
- [launch] Improve customizability of
DefaultGLSPServerLauncher
. #385 - [model] Add properties map in model state to store arbitrary properties that are persistent between handler calls. #401
- [server] Refactor json-rpc protocol and
DefaultGLSPServerImplementation
. #421 - [action] Rework
ActionHandler
&OperationHandler
API. #425 - [action] Introduce
dispatchAfterNextUpdate
functionality for theActionDispatcher
. This enables queuing of actions until the next model updates has been processed. #448 - [protocol] Align server-side action definitions with protocol definition. #432
Breaking Changes
- [diagram] Merged the
ServerLayoutConfiguration
API into theDiagramConfiguration
API. The standaloneServerLayoutConfiguration
is now deprecated and no longer supported #123 - [model] Renamed
ModelFactory
toModelSourceLoader
and adapted interface method. This also affects implementing classes like theJsonFileModelFactory
#119 - [model] Reworked
ModelSubmissionHandler
API. This includes changes of method names and parameters #119 #197 - [build] Update dependencies of Google Guava (>= 30.1) and Google Guice (>= 5.0.0). #260
- [build] The
org.apache.log4j
dependency is not reexported any more when consumed as p2 artifact. You need to importorg.apache.log4j
in your own plugins if you use the log4j API there. #430 - [protocol] Refactor the base communication protocol to support initializing and disposing a client session. Remove now obsolete
InitializeClientSessionAction
andDisposeClientSessionAction
. #315 - [di] Complete rework of DI architecture. Your main module now has to extend
DiagramModule
instead ofGLSPModule
. Includes restructurings,cleanups and refactorings that affect most of the API components. #150 - [server] Refactor json-rpc protocol and
DefaultGLSPServerImplementation
. This includes changes of method names and parameters #421
0.9.0 Release Candidate 1
0.9.0 Release Candidate 1
Prerelease/Milestone build of the upcoming 0.9.0 version of the server plugins.
v0.9.0.RC01 Changelog
- [websocket] Fixed issue that was caused by reusing a shared injector for each client connection #149
- [server] Added a utility class for 'JsonOpenerOptions' #153
- [websocket] Align package import of javax.servlet with the dependency range of Jetty #156
- [server] Reworked model update flow. All aspects of the update process are now handled by the
ModelSubmissionHandler
#122 - [server] Reworked and split
ModelFactory
API into a dedicated component responsible for loading the model source (ModelSourceLoader
) and a component responsible for transforming the current modelstate into its GModel-representation (GModelFactory
) #119 - [protocol] Updated kind of
SelectAction
to be in-line with the client type. This ensures correct of handling ofSelectAction
s that were sent from the server #191 - [protocol] Added implementation for
SetViewportAction
#179 - [server] Introduced
GArgumentable
interface which is implemented by allGModelElement
s. This can be used to provide additional information in form of anargs
map without having to extend theGModel
type #194 - [server] Extended default type mapping and added builder for
GArgumentable
elements and corresponding utility classes #180 - [protocol] Added
fileUri
property toSaveModelAction
and updatedSaveModelActionHandler
accordingly #208 - [protocol] Added optional
reason
string property toSetDirtyStateAction
. This property indicates the reason that caused to dirty state change and enables more fine granular handling of dirty state changes #197
- [glsp-server] Merged the
ServerLayoutConfiguration
API into theDiagramConfiguration
API. The standaloneServerLayoutConfiguration
is now deprecated and no longer supported #123 - [glsp-server] Renamed
ModelFactory
toModelSourceLoader
and adapted interface method. This also affects implementing classes like theJsonFileModelFactory
#119 - [glsp-server] Reworked
ModelSubmissionHandler
API. This includes changes of method names and parameters #119 #197 - [glsp-server] Refactored the
CreateNodeOperationHandler.createNode
method. The method now also passes the argument map of the operation. #223 - [glsp-server] Refactored methods in
DiagramConfiguration
to correctly reflectShapeTypeHint
instead ofNodeTypeHint
.
0.8.0 Release
This is the first release of Eclipse GLSP since it is hosted at the Eclipse Foundation. The 0.8.0 release includes new protocol message types and respective framework support for several new features, such as copy-paste, diagram navigation, etc. It also contains several clean-ups of the protocol and refactorings to simplify and streamline the API. The Eclipse Theia integration of GLSP features many improvements, such as problem marker integration, native context menu items and keybindings. Finally, several bug fixes and minor are part of this release as well.
Release artificats are available here:
0.8.0 Release Candidate 02
Prerelease/Milestone build of the upcoming 0.8.0 version of the server plugins. (This will be the first official release since migrating to Eclipse)
Available on maven central (https://search.maven.org/search?q=org.eclipse.glsp)
P2 Updatesite:
https://download.eclipse.org/glsp/server/p2/staging/0.8.0-rc-02/
0.8.0 Release Candidate 01
Prerelease/Milestone build of the upcoming 0.8.0 version of the server plugins. (This will be the first official release since migrating to Eclipse)