Skip to content

Commit

Permalink
release(components): v19.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k-genov authored and Marcarrian committed Nov 29, 2024
1 parent 787341a commit 1aea586
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 4 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG_COMPONENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# [19.0.0](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.1...components-19.0.0) (2024-11-29)


### Dependencies

* **components:** update `@scion/components` to Angular 19 ([0918769](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/0918769fa37a77e31cd3fe281e11578399ec437c))


### Performance Improvements

* **components/viewport:** avoid change detection cycle when scrolling the viewport ([402b408](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/402b408b91ba2b7feca76def5289499458d353e4))


### BREAKING CHANGES

* **components:** Updating `@scion/components` to Angular 19 introduced a breaking change.

To migrate:
- Update your application to Angular 19; for detailed migration instructions, refer to https://v19.angular.dev/update-guide;
* **components/viewport:** Changed viewport to emit scroll events outside the Angular zone.

To handle scroll events inside the Angular zone, e.g., if updating component bindings, manually synchronize with the Angular zone, as follows:

```ts
inject(NgZone).run(() => {
...
});
```


### Deprecations

* **components:** `SciDimensionModule`, `SciViewportModule`, `SciSashboxModule`, `SciSplitterModule` and `SciThrobberModule` have been deprecated. Import respective standalone components and directives instead. The modules will be removed in a future release.


## [18.1.1](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.0...components-18.1.1) (2024-10-28)


Expand Down
29 changes: 25 additions & 4 deletions CHANGELOG_COMPONENTS_LATEST.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
## [18.1.1](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.0...components-18.1.1) (2024-10-28)
# [19.0.0](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.1...components-19.0.0) (2024-11-29)


### Dependencies

* **components:** update `@scion/components` to Angular 19 ([0918769](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/0918769fa37a77e31cd3fe281e11578399ec437c))


### Performance Improvements

* **components/dimension:** avoid unnecessary change detection cycles ([948061e](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/948061e2382f48fb697b2f639875b1ddc167483c))
* **components/viewport:** avoid change detection cycle when scrolling the viewport ([402b408](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/402b408b91ba2b7feca76def5289499458d353e4))


### Dependencies
### BREAKING CHANGES

* **components:** Updating `@scion/components` to Angular 19 introduced a breaking change.

To migrate:
- Update your application to Angular 19; for detailed migration instructions, refer to https://v19.angular.dev/update-guide;
* **components/viewport:** Changed viewport to emit scroll events outside the Angular zone.

To handle scroll events inside the Angular zone, e.g., if updating component bindings, manually synchronize with the Angular zone, as follows:

```ts
inject(NgZone).run(() => {
...
});
```


* **components:** SCION Components requires `@scion/toolkit` version `1.6.0` or later.
### Deprecations

* **components:** `SciDimensionModule`, `SciViewportModule`, `SciSashboxModule`, `SciSplitterModule` and `SciThrobberModule` have been deprecated. Import respective standalone components and directives instead. The modules will be removed in a future release.


35 changes: 35 additions & 0 deletions docs/site/changelog-components/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,41 @@
## [Changelog][menu-changelog] > @scion/components


# [19.0.0](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.1...components-19.0.0) (2024-11-29)


### Dependencies

* **components:** update `@scion/components` to Angular 19 ([0918769](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/0918769fa37a77e31cd3fe281e11578399ec437c))


### Performance Improvements

* **components/viewport:** avoid change detection cycle when scrolling the viewport ([402b408](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/402b408b91ba2b7feca76def5289499458d353e4))


### BREAKING CHANGES

* **components:** Updating `@scion/components` to Angular 19 introduced a breaking change.

To migrate:
- Update your application to Angular 19; for detailed migration instructions, refer to https://v19.angular.dev/update-guide;
* **components/viewport:** Changed viewport to emit scroll events outside the Angular zone.

To handle scroll events inside the Angular zone, e.g., if updating component bindings, manually synchronize with the Angular zone, as follows:

```ts
inject(NgZone).run(() => {
...
});
```


### Deprecations

* **components:** `SciDimensionModule`, `SciViewportModule`, `SciSashboxModule`, `SciSplitterModule` and `SciThrobberModule` have been deprecated. Import respective standalone components and directives instead. The modules will be removed in a future release.


## [18.1.1](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.0...components-18.1.1) (2024-10-28)


Expand Down

0 comments on commit 1aea586

Please sign in to comment.