Skip to content

Commit 0b84290

Browse files
committed
chore: ship v4.5.0-next.0 for Angular 16
1 parent 4392212 commit 0b84290

File tree

11 files changed

+2297
-1216
lines changed

11 files changed

+2297
-1216
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,51 @@
11
### [@coreui/angular](https://coreui.io/angular/) changelog
22

3+
#### `4.5.0-next.0`
4+
5+
- chore: dependencies update
6+
- `Angular 16`
7+
- `TypeScript ~4.9.3`
8+
- refactor(breadcrumb-router.service): router.events takeUntilDestroyed()
9+
- refactor(toaster): remove ComponentFactoryResolver
10+
11+
---
12+
313
#### `4.4.9`
414

515
- refactor: safe ?.unsubscribe() from subscriptions
616
- chore(dependencies): update
717

18+
---
19+
820
#### `4.4.8`
921

1022
- refactor(tabs): safe tabServiceSubscription?.unsubscribe()
1123
- chore(dependencies): update
1224

25+
---
26+
1327
#### `4.4.7`
1428

1529
- feat(form-check): add reverse prop
1630
- chore(dependencies): update
1731

32+
---
33+
1834
#### `4.4.1`
1935

2036
- fix(alert): typo in template
2137
- refactor(html-attr): cleanup
2238
- refactor(icon, icon-set): cleanup
2339

40+
---
41+
2442
#### `4.4.0`
2543

2644
- chore: dependencies update
2745
- chore(sidebar): minor cleanups
2846

47+
---
48+
2949
#### `4.4.0-next.1`
3050

3151
- feat: standalone components
@@ -40,6 +60,7 @@
4060
- `@coreui/angular-chartjs`
4161
- `@coreui/icons-angular`
4262
- chore: dependencies update
63+
4364
---
4465

4566
#### `4.3.16`

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
[npm-coreui-angular-badge-next]: https://img.shields.io/npm/v/@coreui/angular/next?style=flat-square&color=red
3636
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
3737
[npm-coreui-angular-download]: https://img.shields.io/npm/dm/@coreui/angular.svg?style=flat-square
38-
[angular-badge]: https://img.shields.io/badge/angular-^15.2.0-lightgrey.svg?style=flat-square&logo=angular
38+
[angular-badge]: https://img.shields.io/badge/angular-^16.0.0-lightgrey.svg?style=flat-square&logo=angular
3939

4040
## Table of contents
4141

@@ -59,7 +59,7 @@
5959
Before you begin, make sure your development environment includes `Node.js®` and `npm` package manager.
6060

6161
###### Node.js
62-
[**Angular 15**](https://angular.io/guide/what-is-angular) requires `Node.js` LTS version `^14.20` or `^16.13` or `^18.10`.
62+
[**Angular 16**](https://angular.io/guide/what-is-angular) requires `Node.js` LTS version `^16.14` or `^18.10`.
6363

6464
- To check your version, run `node -v` in a terminal/console window.
6565
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).

angular.json

+12
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
"options": {
4141
"main": "projects/coreui-angular/src/test.ts",
4242
"tsConfig": "projects/coreui-angular/tsconfig.spec.json",
43+
"polyfills": [
44+
"zone.js",
45+
"zone.js/testing"
46+
],
4347
"karmaConfig": "projects/coreui-angular/karma.conf.js"
4448
}
4549
},
@@ -85,6 +89,10 @@
8589
"options": {
8690
"main": "projects/coreui-angular-chartjs/src/test.ts",
8791
"tsConfig": "projects/coreui-angular-chartjs/tsconfig.spec.json",
92+
"polyfills": [
93+
"zone.js",
94+
"zone.js/testing"
95+
],
8896
"karmaConfig": "projects/coreui-angular-chartjs/karma.conf.js"
8997
}
9098
},
@@ -130,6 +138,10 @@
130138
"options": {
131139
"main": "projects/coreui-icons-angular/src/test.ts",
132140
"tsConfig": "projects/coreui-icons-angular/tsconfig.spec.json",
141+
"polyfills": [
142+
"zone.js",
143+
"zone.js/testing"
144+
],
133145
"karmaConfig": "projects/coreui-icons-angular/karma.conf.js"
134146
}
135147
},

0 commit comments

Comments
 (0)