Skip to content

Commit 6b1fe22

Browse files
committed
Ship: v2.7.0
1 parent e94ceae commit 6b1fe22

File tree

119 files changed

+4078
-9985
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+4078
-9985
lines changed

CHANGELOG.md

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

3+
##### `v2.7.0`
4+
- chore: upgrade to Angular 9 - see also:
5+
- `https://next.angular.io/guide/updating-to-version-9`
6+
- `https://update.angular.io/#8.0:9.0`
7+
- add missing `@Injectable` decorator to `SidebarNavHelper`
8+
- add a generic type to `ModuleWithProviders`
9+
- tsconfig.lib `enableIvy: false` for library backward compatibility
10+
- tsconfig.lib `annotateForClosureCompiler: false` and remove `tsickle` dependency
11+
- move `tslib` to `dependencies`
12+
- tsconfig.app: add files[]
13+
- test: deprecate TestBed.get() use TestBed.inject()
14+
- refactor(SidebarNavItem): add INavData items type
15+
16+
###### dependencies update
17+
- update `@angular/animations` to `^9.0.0-rc.0`
18+
- update `@angular/common` to `^9.0.0-rc.0`
19+
- update `@angular/compiler` to `^9.0.0-rc.0`
20+
- update `@angular/core` to `^9.0.0-rc.0`
21+
- update `@angular/forms` to `^9.0.0-rc.0`
22+
- update `@angular/platform-browser` to `^9.0.0-rc.0`
23+
- update `@angular/platform-browser-dynamic` to `^9.0.0-rc.0`
24+
- update `@angular/router` to `^9.0.0-rc.0`
25+
- update `@angular-devkit/build-angular` to `~0.900.0-rc.0`
26+
- update `@angular-devkit/build-ng-packagr` to `~0.900.0-rc.0`
27+
- update `@angular/cli` to `^9.0.0-rc.0`
28+
- update `@angular/compiler-cli` to `^9.0.0-rc.0`
29+
- update `@angular/language-service` to `^9.0.0-rc.0`
30+
- update `ng-packagr` to `^9.0.0-rc.1`
31+
- update `typescript` to `~3.6.4"
32+
- update `@types/node` to `^12.11.1`
33+
- update `codelyzer` to `^5.1.2`
34+
- update `@coreui/coreui` to `^2.1.16`
35+
- update `@types/jasmine` to `^3.4.5`
36+
337
##### `v2.6.3`
438
- refactor: change renderer.addClass to HostBinding
539
- test: add e2e test bed with some tests

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![@coreui coreui](https://img.shields.io/badge/@coreui%20-coreui-lightgrey.svg?style=flat-square)](https://github.com/coreui/coreui)
99
[![npm package][npm-coreui-badge]][npm-coreui]
1010
[![NPM downloads][npm-coreui-download]][npm-coreui]
11-
![angular](https://img.shields.io/badge/angular-^8.2.11-lightgrey.svg?style=flat-square)
11+
![angular](https://img.shields.io/badge/angular-^9.0.0%20rc.0-lightgrey.svg?style=flat-square)
1212

1313
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
1414
[npm-coreui-angular-badge]: https://img.shields.io/npm/v/@coreui/angular.png?style=flat-square

angular.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@
138138
},
139139
"configurations": {
140140
"production": {
141-
"project": "projects/coreui/angular/ng-package.prod.json"
142-
, "tsConfig": "projects/coreui/angular/tsconfig.lib.prod.json"
143-
}
141+
"project": "projects/coreui/angular/ng-package.prod.json",
142+
"tsConfig": "projects/coreui/angular/tsconfig.lib.prod.json"
143+
}
144144
}
145145
},
146146
"test": {
@@ -166,5 +166,8 @@
166166
}
167167
}
168168
},
169-
"defaultProject": "coreui"
170-
}
169+
"defaultProject": "coreui",
170+
"cli": {
171+
"analytics": false
172+
}
173+
}

0 commit comments

Comments
 (0)