Skip to content

Commit 2f3e1a8

Browse files
sis0k0Alexander Vakrilov
authored and
Alexander Vakrilov
committed
docs: add changelog for 5.0 (#1132)
1 parent 191f2a0 commit 2f3e1a8

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
<a name="5.0.0"></a>
2+
# [5.0.0](https://github.com/NativeScript/nativescript-angular/compare/5.0.0-rc.0...v5.0.0) (2017-12-20)
3+
4+
5+
### Features
6+
7+
* UI must be created before first render, drainMicroTasks when the first page is created.
8+
This removes the white screen displayed between the launch screen and the initial page view.
9+
Speeds up roughly 300ms startup times for iOS with Angular. ([#1103](https://github.com/NativeScript/nativescript-angular/pull/1103))
10+
11+
12+
* update to Angular 5 animations and add support for AnimationBuilder ([#1114](https://github.com/NativeScript/nativescript-angular/issues/1114)) ([191f2a0](https://github.com/NativeScript/nativescript-angular/commit/191f2a0))
13+
14+
### DEPRECATION
15+
16+
NSModuleFactoryLoader is no longer needed for {N} apps. ([192a3d0](https://github.com/NativeScript/nativescript-angular/commit/192a3d0))
17+
18+
19+
Before:
20+
21+
```
22+
// app.module.ts
23+
24+
@NgModule({
25+
providers: [
26+
{ provide: NgModuleFactoryLoader, useClass: NSModuleFactoryLoader }
27+
// ...
28+
],
29+
// ...
30+
})
31+
class AppModule { }
32+
```
33+
34+
After:
35+
36+
```
37+
// app.module.ts
38+
39+
@NgModule({
40+
providers: [
41+
// ...
42+
],
43+
// ...
44+
})
45+
class AppModule { }
46+
```
47+
148
<a name="5.0.0-rc.0"></a>
249
# [5.0.0-rc.0](https://github.com/NativeScript/nativescript-angular/compare/4.4.1...5.0.0-rc.0) (2017-11-06)
350

0 commit comments

Comments
 (0)