Skip to content

Commit

Permalink
release(workbench): v18.0.0-beta.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwiehl authored and Marcarrian committed Oct 11, 2024
1 parent 26c0dd7 commit 41d12f4
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 35 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG_WORKBENCH.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# [18.0.0-beta.7](https://github.com/SchweizerischeBundesbahnen/scion-workbench/compare/18.0.0-beta.6...18.0.0-beta.7) (2024-10-11)


### Bug Fixes

* **workbench/dialog:** enable updating dialog properties in an Angular effect ([7da2418](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/7da24185e8cc94db2f45a31a6d367c190c5f4104))
* **workbench/view:** enable updating view properties in an Angular effect ([a7d3594](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/a7d3594193c31715ac5fcb5da2d8015e803bb0aa))
* **workbench:** position document root as required by `@scion/toolkit` ([0d2f6c2](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/0d2f6c2229d6c75f8271795b6e399affaa43eef1))



# [18.0.0-beta.6](https://github.com/SchweizerischeBundesbahnen/scion-workbench/compare/18.0.0-beta.5...18.0.0-beta.6) (2024-09-11)


Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG_WORKBENCH_CLIENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

### Bug Fixes

* **workbench-client:** position document root as required by @scion/toolkit ([007e9c3](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/007e9c396dff4c2dde11c62d810b5997c034eca2))
* **workbench-client:** position document root as required by `@scion/toolkit` ([007e9c3](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/007e9c396dff4c2dde11c62d810b5997c034eca2))



Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG_WORKBENCH_CLIENT_LATEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

### Bug Fixes

* **workbench-client:** position document root as required by @scion/toolkit ([007e9c3](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/007e9c396dff4c2dde11c62d810b5997c034eca2))
* **workbench-client:** position document root as required by `@scion/toolkit` ([007e9c3](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/007e9c396dff4c2dde11c62d810b5997c034eca2))



35 changes: 4 additions & 31 deletions CHANGELOG_WORKBENCH_LATEST.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,11 @@
# [18.0.0-beta.6](https://github.com/SchweizerischeBundesbahnen/scion-workbench/compare/18.0.0-beta.5...18.0.0-beta.6) (2024-09-11)
# [18.0.0-beta.7](https://github.com/SchweizerischeBundesbahnen/scion-workbench/compare/18.0.0-beta.6...18.0.0-beta.7) (2024-10-11)


### Bug Fixes

* **workbench/messagebox:** display message if opened from a `CanClose` guard of a microfrontend view ([b0829b3](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/b0829b31bd78e672ee90e37abc9ad735e46e9bd2)), closes [#591](https://github.com/SchweizerischeBundesbahnen/scion-workbench/issues/591)
* **workbench/view:** restore scroll position when switching views ([9265951](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/92659517c830e36d4d819743cac4f24229e92486)), closes [#588](https://github.com/SchweizerischeBundesbahnen/scion-workbench/issues/588)
* **workbench:** disable change detection during navigation to prevent inconsistent layout rendering ([68ecca7](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/68ecca76b421e23ff8fffcd3cf0b5ca573b4a852))


### Features

* **workbench/popup:** support returning result on focus loss ([ce5089e](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/ce5089e57ba48f53f17fede4ffe4fa72cf74a01b))
* **workbench/view:** enable translation of built-in context menu ([9bfdf74](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/9bfdf7497ab8557b060e88cdb2bb87b7de5a5e10))


### BREAKING CHANGES

* **workbench/popup:** The method `closeWithError` has been removed from the `Popup` handle. Instead, pass an `Error` object to the `close` method.

**Before migration:**
```ts
import {inject} from '@angular/core';
import {Popup} from '@scion/workbench';

inject(Popup).closeWithError('some error');
```

**After migration:**
```ts
import {inject} from '@angular/core';
import {Popup} from '@scion/workbench';

inject(Popup).close(new Error('some error'));
```
* **workbench/dialog:** enable updating dialog properties in an Angular effect ([7da2418](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/7da24185e8cc94db2f45a31a6d367c190c5f4104))
* **workbench/view:** enable updating view properties in an Angular effect ([a7d3594](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/a7d3594193c31715ac5fcb5da2d8015e803bb0aa))
* **workbench:** position document root as required by `@scion/toolkit` ([0d2f6c2](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/0d2f6c2229d6c75f8271795b6e399affaa43eef1))



2 changes: 1 addition & 1 deletion docs/site/changelog-workbench-client/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

### Bug Fixes

* **workbench-client:** position document root as required by @scion/toolkit ([007e9c3](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/007e9c396dff4c2dde11c62d810b5997c034eca2))
* **workbench-client:** position document root as required by `@scion/toolkit` ([007e9c3](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/007e9c396dff4c2dde11c62d810b5997c034eca2))



Expand Down
11 changes: 11 additions & 0 deletions docs/site/changelog-workbench/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@
## [Changelog][menu-changelog] > Workbench (@scion/workbench)


# [18.0.0-beta.7](https://github.com/SchweizerischeBundesbahnen/scion-workbench/compare/18.0.0-beta.6...18.0.0-beta.7) (2024-10-11)


### Bug Fixes

* **workbench/dialog:** enable updating dialog properties in an Angular effect ([7da2418](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/7da24185e8cc94db2f45a31a6d367c190c5f4104))
* **workbench/view:** enable updating view properties in an Angular effect ([a7d3594](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/a7d3594193c31715ac5fcb5da2d8015e803bb0aa))
* **workbench:** position document root as required by `@scion/toolkit` ([0d2f6c2](https://github.com/SchweizerischeBundesbahnen/scion-workbench/commit/0d2f6c2229d6c75f8271795b6e399affaa43eef1))



# [18.0.0-beta.6](https://github.com/SchweizerischeBundesbahnen/scion-workbench/compare/18.0.0-beta.5...18.0.0-beta.6) (2024-09-11)


Expand Down
2 changes: 1 addition & 1 deletion projects/scion/workbench/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scion/workbench",
"version": "18.0.0-beta.6",
"version": "18.0.0-beta.7",
"description": "SCION Workbench enables the creation of Angular web applications that require a flexible layout to arrange content side-by-side or stacked, all personalizable by the user via drag & drop.",
"license": "EPL-2.0",
"private": false,
Expand Down

0 comments on commit 41d12f4

Please sign in to comment.