Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
- Update copyright headers
- Update standalone example (Remove index and directly import reflect-metadata in app.ts)
  • Loading branch information
tortmayr committed May 5, 2023
1 parent 462aba6 commit cb7168a
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 23 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@
- [diagram] Fixed a bug in the `EditLabelUIExtension` where the diagram becomes dirt wihtout an acual change. [#766](https://github.com/eclipse-glsp/glsp/issues/766)
- [diagram] Extends `ComputedBoundsAction` definition with routing information. This enables proper forwarding of cliend-side computed routes to the server. [#201](https://github.com/eclipse-glsp/glsp-client/pull/201/)
- [DI] The `createClientContainer` function is now deprecated. Please use `initializeDiagramContainer` instead. This new function also can be used with `ModuleConfigurations` which allow a more fine granular configuration by adding new modules and/or removing default modules. [#218](https://github.com/eclipse-glsp/glsp-client/pull/218) [#231](https://github.com/eclipse-glsp/glsp-client/pull/231) [#236](https://github.com/eclipse-glsp/glsp-client/pull/236)
- [diagram] Fixed incorrect calculation of decorator popup positions for edges. [#221](https://github.com/eclipse-glsp/glsp-client/pull/221)
- [protocol] Introduce a reusable `Disposable` type [#222](https://github.com/eclipse-glsp/glsp-client/pull/222)
- [protocol] Introduce reusable utility function for DI configuration [#236](https://github.com/eclipse-glsp/glsp-client/pull/236)[#237](https://github.com/eclipse-glsp/glsp-client/pull/237)
- [diagram] Augment diagram SVG with additional model metadata to enable easier integration tests and accessibility. [#239](https://github.com/eclipse-glsp/glsp-client/pull/239)
- [validation] Add and track reason for validation markers (e.g. batch and live validation) [#243](https://github.com/eclipse-glsp/glsp-client/pull/243)
- [protocol] Provide the common interfaces and type definitions for TS-based GLSP servers [#245](https://github.com/eclipse-glsp/glsp-client/pull/245) - Contributed on behalf of STMicroelectronics

### Breaking Changes

- [DI] Injecting an `IButtonHandler` constructor is now deprecated. Please use `configureButtonHandler()` instead. [#195](https://github.com/eclipse-glsp/glsp-client/pull/195) - Contributed on behalf of STMicroelectronics
- [node] Update minimum requirements for Node to >=16.11.0 [#210](https://github.com/eclipse-glsp/glsp-client/pull/210)
- [protocol] Renamed `UndoOperation` and `RedoOperation` to `UndoAction` and `RedoAction` to match operation specification [#216](https://github.com/eclipse-glsp/glsp-client/pull/216)
- [protocol] Remove dependency to `vscode-ws-jsonrpc`. The protocol package now directly offers functions to create a websocket rpc connections [#215](https://github.com/eclipse-glsp/glsp-client/pull/215)
- [protocol] The `elementIds` property of `LayoutOperation` is now optional. If `undefined` the entire model will be layouted. [#232](https://github.com/eclipse-glsp/glsp-client/pull/232)

## [v1.0.0 - 30/06/2022](https://github.com/eclipse-glsp/glsp-client/releases/tag/v1.0.0)

Expand Down
2 changes: 2 additions & 0 deletions examples/workflow-standalone/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/
import 'reflect-metadata';

import {
ApplicationIdProvider,
BaseJsonrpcGLSPClient,
Expand Down
2 changes: 1 addition & 1 deletion examples/workflow-standalone/src/di.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/********************************************************************************
* Copyright (c) 2019-2022 EclipseSource and others.
* Copyright (c) 2019-2023 EclipseSource and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down
17 changes: 0 additions & 17 deletions examples/workflow-standalone/src/index.ts

This file was deleted.

2 changes: 1 addition & 1 deletion examples/workflow-standalone/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const appRoot = path.resolve(__dirname, 'app');
var CircularDependencyPlugin = require('circular-dependency-plugin');

module.exports = {
entry: [path.resolve(buildRoot, 'index')],
entry: [path.resolve(buildRoot, 'app')],
output: {
filename: 'bundle.js',
path: appRoot
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/********************************************************************************
* Copyright (c) 2019-2022 EclipseSource and others.
* Copyright (c) 2019-2023 EclipseSource and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/********************************************************************************
* Copyright (c) 2019-2022 EclipseSource and others.
* Copyright (c) 2019-2023 EclipseSource and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/********************************************************************************
* Copyright (c) 2022 STMicroelectronics and others.
* Copyright (c) 2022-2023 STMicroelectronics and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/********************************************************************************
* Copyright (c) 2021-2022 STMicroelectronics and others.
* Copyright (c) 2021-2023 STMicroelectronics and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down

0 comments on commit cb7168a

Please sign in to comment.