Skip to content

Commit

Permalink
remove Angular 14 and Angular 15 support
Browse files Browse the repository at this point in the history
It turns out we get weird and incomprehensible
error messages in Angular 15 projects when using
the Angular 16 compatible smart table. So we just
make a hard cut here. Angular 15 will be end of life
in 9 months, anyway.
  • Loading branch information
uap-universe committed Aug 9, 2023
1 parent d6cc0ad commit c07e6b3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This document lists the changes introduced by this fork.

## Version 3.0.0

* Add Angular 16 support
* Upgrade to Angular 16
* Add proper typing to all settings
* Improve signatures of `valuePrepareFunction`, and `filterFunction`
* Add `valueStoreFunction` as counter-part of the `valuePrepareFunction`
Expand All @@ -22,6 +22,11 @@ This document lists the changes introduced by this fork.
* Remove deprecated settings
* Remove undocumented settings

**Note:** With Angular 16 several breaking changes were introduced, which forced us to also introduce breaking changes
plus we cannot guarantee anymore, that the software is working with Angular 15 and below. This is why we decided to
have a hard cut by introducing a new major release that is only compatible with Angular 16 onwards.
If you want to stick with Angular 14 or Angular 15, please use version 2.10.0.

## Version 2.10.0

* Add `sanitizer`, `hiddenWhen`, and `disabledWhen` to `CustomAction` settings
Expand Down
7 changes: 6 additions & 1 deletion projects/angular2-smart-table/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This document lists the changes introduced by this fork.

## Version 3.0.0

* Add Angular 16 support
* Upgrade to Angular 16
* Add proper typing to all settings
* Improve signatures of `valuePrepareFunction`, and `filterFunction`
* Add `valueStoreFunction` as counter-part of the `valuePrepareFunction`
Expand All @@ -22,6 +22,11 @@ This document lists the changes introduced by this fork.
* Remove deprecated settings
* Remove undocumented settings

**Note:** With Angular 16 several breaking changes were introduced, which forced us to also introduce breaking changes
plus we cannot guarantee anymore, that the software is working with Angular 15 and below. This is why we decided to
have a hard cut by introducing a new major release that is only compatible with Angular 16 onwards.
If you want to stick with Angular 14 or Angular 15, please use version 2.10.0.

## Version 2.10.0

* Add `sanitizer`, `hiddenWhen`, and `disabledWhen` to `CustomAction` settings
Expand Down
6 changes: 3 additions & 3 deletions projects/angular2-smart-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
},
"homepage": "https://github.com/dj-fiorex/angular2-smart-table#readme",
"peerDependencies": {
"@angular/core": "14 - 16",
"@angular/common": "14 - 16",
"@angular/forms": "14 - 16",
"@angular/core": "16",
"@angular/common": "16",
"@angular/forms": "16",
"lodash-es": "^4.17.21"
},
"dependencies": {
Expand Down

0 comments on commit c07e6b3

Please sign in to comment.