Skip to content

Commit d709717

Browse files
committed
chore: Ship v2.10.0 for Angular 10
1 parent 067f8f0 commit d709717

File tree

5 files changed

+46
-7
lines changed

5 files changed

+46
-7
lines changed

CHANGELOG.md

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

3+
##### `v2.10.0`
4+
5+
- chore: update to `Angular 10` and `TypeScript 3.9`
6+
- [https://update.angular.io/](https://update.angular.io/?v=9.1-10.2)
7+
- [https://v10.angular.io/guide/updating-to-version-10](https://v10.angular.io/guide/updating-to-version-10)
8+
- [TypeScript: Documentation - TypeScript 3.9](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-9.html)
9+
10+
11+
- test: deprecate `async()` in favour of `waitForAsync()`
12+
13+
###### dependencies update
14+
- update `@angular/animations` to `^10.2.4`
15+
- update `@angular/common` to `^10.2.4`
16+
- update `@angular/compiler` to `^10.2.4`
17+
- update `@angular/core` to `^10.2.4`
18+
- update `@angular/forms` to `^10.2.4`
19+
- update `@angular/localize` to `^10.2.4`
20+
- update `@angular/platform-browser` to `^10.2.4`
21+
- update `@angular/platform-browser-dynamic` to `^10.2.4`
22+
- update `@angular/router` to `^10.2.4`
23+
- update `tslib` to `^2.0.0`
24+
- update `@angular-devkit/build-angular` to `^0.1002.1`
25+
- update `@angular-devkit/build-ng-packagr` to `^0.1002.1`
26+
- update `@angular/cli` to `^10.2.1`
27+
- update `@angular/compiler-cli` to `^10.2.4`
28+
- update `@angular/language-service` to `^10.2.4`
29+
- update `codelyzer` to `^6.0.1`
30+
- update `jasmine-spec-reporter` to `~5.0.0`
31+
- update `karma` to `~5.0.0`
32+
- update `karma-chrome-launcher` to `~3.1.0`
33+
- update `karma-coverage-istanbul-reporter` to `~3.0.2`
34+
- update `karma-jasmine` to `~4.0.0`
35+
- update `karma-jasmine-html-reporter` to `^1.5.0`
36+
- update `ng-packagr` to `^10.1.0`
37+
- update `ngx-perfect-scrollbar` to `^10.1.0`
38+
- update `protractor` to `~7.0.0`
39+
- update `tslint` to `~6.1.0`
40+
- update `typescript` to `~3.9.7`
41+
342
##### `v2.9.6`
443
- fix: use type INavData instead of any
544
- chore(.github): add project checks workflows

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular-dev",
3-
"version": "2.9.6",
3+
"version": "2.10.0",
44
"license": "MIT",
55
"author": {
66
"name": "Łukasz Holeczek",

projects/coreui/angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "2.9.6",
3+
"version": "2.10.0",
44
"description": "CoreUI Angular Bootstrap 4 components",
55
"license": "MIT",
66
"homepage": "https://coreui.io/angular",

projects/coreui/angular/src/lib/header/app-header.component.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
22
import { RouterTestingModule } from '@angular/router/testing';
33

44
import { AppHeaderComponent } from './app-header.component';
5-
import { AsideToggleDirective, SidebarToggleDirective } from '../shared/layout/layout.directive';
5+
import { AsideToggleDirective, SidebarToggleDirective, HtmlAttributesDirective } from '../shared/layout/layout.directive';
66

7-
describe('AppAsideComponent', () => {
7+
describe('AppHeaderComponent', () => {
88
let component: AppHeaderComponent;
99
let fixture: ComponentFixture<AppHeaderComponent>;
1010

1111
beforeEach(waitForAsync(() => {
1212
TestBed.configureTestingModule({
1313
imports: [RouterTestingModule.withRoutes([])],
14-
declarations: [ AppHeaderComponent, SidebarToggleDirective, AsideToggleDirective ]
14+
declarations: [ AppHeaderComponent, SidebarToggleDirective, AsideToggleDirective, HtmlAttributesDirective ]
1515
})
1616
.compileComponents();
1717
}));

src/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<!--
3-
* CoreUI 2 for Angular 9 - test bed
4-
* @version v2.9.6
3+
* CoreUI 2 for Angular 10 - test bed
4+
* @version v2.10.0
55
* @link https://coreui.io/angular/
66
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
77
-->

0 commit comments

Comments
 (0)