Skip to content

Commit 01642aa

Browse files
Merge pull request #1654 from NativeScript/release-7.1.0
release: cut the 7.1.0 release
2 parents 431d003 + c7be0e1 commit 01642aa

File tree

17 files changed

+146
-150
lines changed

17 files changed

+146
-150
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name="7.1.0"></a>
2+
# [7.1.0](https://github.com/NativeScript/nativescript-angular/compare/7.0.3...7.1.0) (2018-12-07)
3+
4+
5+
### Features
6+
7+
* Angular 7.1 support
8+
19
<a name="7.0.3"></a>
210
## [7.0.3](https://github.com/NativeScript/nativescript-angular/compare/7.0.2...7.0.3) (2018-12-05)
311

Diff for: e2e/modal-navigation-ng/package.json

+20-32
Original file line numberDiff line numberDiff line change
@@ -13,52 +13,40 @@
1313
}
1414
},
1515
"dependencies": {
16-
"@angular/animations": "~7.0.0",
17-
"@angular/common": "~7.0.0",
18-
"@angular/compiler": "~7.0.0",
19-
"@angular/core": "~7.0.0",
20-
"@angular/forms": "~7.0.0",
21-
"@angular/http": "~7.0.0",
22-
"@angular/platform-browser": "~7.0.0",
23-
"@angular/platform-browser-dynamic": "~7.0.0",
24-
"@angular/router": "~7.0.0",
16+
"@angular/animations": "~7.1.0",
17+
"@angular/common": "~7.1.0",
18+
"@angular/compiler": "~7.1.0",
19+
"@angular/core": "~7.1.0",
20+
"@angular/forms": "~7.1.0",
21+
"@angular/http": "~7.1.0",
22+
"@angular/platform-browser": "~7.1.0",
23+
"@angular/platform-browser-dynamic": "~7.1.0",
24+
"@angular/router": "~7.1.0",
2525
"nativescript-angular": "file:../../nativescript-angular",
2626
"nativescript-theme-core": "~1.0.4",
2727
"reflect-metadata": "~0.1.8",
2828
"rxjs": "~6.3.3",
2929
"tns-core-modules": "next",
30-
"zone.js": "~0.8.2"
30+
"zone.js": "^0.8.4"
3131
},
3232
"devDependencies": {
33-
"@ngtools/webpack": "~7.0.0",
34-
"@angular/compiler-cli": "~7.0.0",
33+
"@angular/compiler-cli": "~7.1.0",
34+
"@ngtools/webpack": "~7.1.0",
3535
"@types/chai": "^4.0.2",
36-
"@types/mocha": "^2.2.41",
37-
"@types/node": "^7.0.5",
36+
"@types/mocha": "^5.2.5",
37+
"@types/node": "^10.12.12",
3838
"babel-traverse": "6.26.0",
3939
"babel-types": "6.26.0",
4040
"babylon": "6.18.0",
41-
"clean-webpack-plugin": "~0.1.19",
42-
"copy-webpack-plugin": "~4.5.1",
43-
"css-loader": "~0.28.11",
44-
"extract-text-webpack-plugin": "~3.0.2",
41+
"chai": "^4.2.0",
4542
"lazy": "1.0.11",
4643
"mocha": "^5.2.0",
47-
"mocha-junit-reporter": "~1.17.0",
48-
"mocha-multi": "~1.0.0",
44+
"mocha-junit-reporter": "^1.18.0",
45+
"mocha-multi": "^1.0.1",
4946
"nativescript-dev-appium": "next",
50-
"nativescript-dev-typescript": "next",
51-
"nativescript-dev-webpack": "^0.13.0",
52-
"nativescript-worker-loader": "~0.9.0",
53-
"raw-loader": "~0.5.1",
54-
"resolve-url-loader": "~2.3.0",
55-
"typescript": "~3.1.1",
56-
"uglifyjs-webpack-plugin": "~1.2.5",
57-
"webpack": "~4.6.0",
58-
"webpack-bundle-analyzer": "~2.13.0",
59-
"webpack-cli": "~2.1.3",
60-
"webpack-sources": "~1.1.0",
61-
"@angular-devkit/core": "~0.7.0-beta.1"
47+
"nativescript-dev-typescript": "~0.7.8",
48+
"nativescript-dev-webpack": "next",
49+
"typescript": "~3.1.1"
6250
},
6351
"scripts": {
6452
"e2e": "tsc -p e2e && mocha --opts ../config/mocha.opts --recursive e2e --appiumCapsLocation ../config/appium.capabilities.json",

Diff for: e2e/nested-router-tab-view/app/login/login.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, ViewContainerRef } from "@angular/core";
22
import { ModalDialogService, ModalDialogOptions } from "nativescript-angular/directives/dialogs";
33
import { RouterExtensions } from "nativescript-angular/router";
44
import { EventData } from "tns-core-modules/data/observable";
5-
import { confirm } from "ui/dialogs";
5+
import { confirm } from "tns-core-modules/ui/dialogs";
66

77
import { AppModule } from "../app.module";
88

Diff for: e2e/nested-router-tab-view/app/modal-nested/modal-nested.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component } from "@angular/core";
2-
import { View, ShownModallyData } from "ui/core/view"
2+
import { View, ShownModallyData } from "tns-core-modules/ui/core/view"
33
import { ModalDialogParams } from "nativescript-angular/directives/dialogs";
44

55
@Component({

Diff for: e2e/nested-router-tab-view/app/modal-second/modal-second.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component } from "@angular/core";
22
import { ActivatedRoute } from "@angular/router";
3-
import { View, EventData } from "ui/core/view"
3+
import { View, EventData } from "tns-core-modules/ui/core/view"
44
import { RouterExtensions } from "nativescript-angular/router";
55

66
@Component({

Diff for: e2e/nested-router-tab-view/app/modal/modal.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { Component, ViewContainerRef } from "@angular/core";
22
import { ModalDialogParams, ModalDialogOptions, ModalDialogService } from "nativescript-angular/directives/dialogs";
33
import { RouterExtensions, PageRoute } from "nativescript-angular/router";
44
import { ActivatedRoute } from "@angular/router";
5-
import { View, ShownModallyData, EventData } from "ui/core/view"
6-
import { confirm } from "ui/dialogs";
5+
import { View, ShownModallyData } from "tns-core-modules/ui/core/view"
6+
import { confirm } from "tns-core-modules/ui/dialogs";
77
import { ModalRouterComponent } from "../modal/modal-router/modal-router.component";
88
import { NestedModalComponent } from "../modal-nested/modal-nested.component";
99

Diff for: e2e/nested-router-tab-view/app/tabs/tabs.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { ModalDialogService, ModalDialogOptions } from "nativescript-angular/dir
33
import { RouterExtensions } from "nativescript-angular/router";
44
import { EventData } from "tns-core-modules/data/observable";
55
import { ActivatedRoute } from "@angular/router";
6-
import { confirm } from "ui/dialogs";
7-
import { Page } from "ui/page";
6+
import { confirm } from "tns-core-modules/ui/dialogs";
7+
import { Page } from "tns-core-modules/ui/page";
88
import { AppModule } from "../app.module";
99

1010
@Component({

Diff for: e2e/nested-router-tab-view/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@
2525
"nativescript-angular": "file:../../nativescript-angular",
2626
"nativescript-theme-core": "~1.0.4",
2727
"reflect-metadata": "~0.1.8",
28-
"rxjs": "~6.0.0-rc.1",
28+
"rxjs": "~6.3.3",
2929
"tns-core-modules": "next",
30-
"zone.js": "~0.8.2"
30+
"zone.js": "^0.8.4"
3131
},
3232
"devDependencies": {
33-
"@angular/compiler-cli": "~6.1.0",
34-
"@ngtools/webpack": "~6.2.0",
33+
"@angular/compiler-cli": "~7.1.0",
34+
"@ngtools/webpack": "~7.1.0",
3535
"@types/chai": "^4.0.2",
36-
"@types/mocha": "^2.2.41",
37-
"@types/node": "^7.0.5",
36+
"@types/mocha": "^5.2.5",
37+
"@types/node": "^10.12.12",
3838
"babel-traverse": "6.26.0",
3939
"babel-types": "6.26.0",
4040
"babylon": "6.18.0",
@@ -46,7 +46,7 @@
4646
"nativescript-dev-appium": "next",
4747
"nativescript-dev-typescript": "~0.7.4",
4848
"nativescript-dev-webpack": "next",
49-
"typescript": "~2.7.2"
49+
"typescript": "~3.1.1"
5050
},
5151
"scripts": {
5252
"e2e": "tsc -p e2e && mocha --opts ../config/mocha.opts --recursive e2e --appiumCapsLocation ../config/appium.capabilities.json",

Diff for: e2e/renderer/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"id": "org.nativescript.renderer"
88
},
99
"dependencies": {
10-
"@angular/common": "~7.0.0",
11-
"@angular/compiler": "~7.0.0",
12-
"@angular/core": "~7.0.0",
13-
"@angular/forms": "~7.0.0",
14-
"@angular/http": "~7.0.0",
15-
"@angular/platform-browser": "~7.0.0",
16-
"@angular/platform-browser-dynamic": "~7.0.0",
17-
"@angular/router": "~7.0.0",
10+
"@angular/common": "~7.1.0",
11+
"@angular/compiler": "~7.1.0",
12+
"@angular/core": "~7.1.0",
13+
"@angular/forms": "~7.1.0",
14+
"@angular/http": "~7.1.0",
15+
"@angular/platform-browser": "~7.1.0",
16+
"@angular/platform-browser-dynamic": "~7.1.0",
17+
"@angular/router": "~7.1.0",
1818
"nativescript-angular": "file:../../nativescript-angular",
1919
"nativescript-intl": "^3.0.0",
2020
"reflect-metadata": "~0.1.8",
@@ -23,8 +23,8 @@
2323
"zone.js": "^0.8.4"
2424
},
2525
"devDependencies": {
26-
"@angular/compiler-cli": "~7.0.0",
27-
"@ngtools/webpack": "~7.0.0",
26+
"@angular/compiler-cli": "~7.1.0",
27+
"@ngtools/webpack": "~7.1.0",
2828
"@types/chai": "~4.1.3",
2929
"@types/mocha": "~5.2.1",
3030
"@types/node": "10.11.4",

Diff for: e2e/router-tab-view/package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@
1313
}
1414
},
1515
"dependencies": {
16-
"@angular/animations": "~7.0.0",
17-
"@angular/common": "~7.0.0",
18-
"@angular/compiler": "~7.0.0",
19-
"@angular/core": "~7.0.0",
20-
"@angular/forms": "~7.0.0",
21-
"@angular/http": "~7.0.0",
22-
"@angular/platform-browser": "~7.0.0",
23-
"@angular/platform-browser-dynamic": "~7.0.0",
24-
"@angular/router": "~7.0.0",
16+
"@angular/animations": "~7.1.0",
17+
"@angular/common": "~7.1.0",
18+
"@angular/compiler": "~7.1.0",
19+
"@angular/core": "~7.1.0",
20+
"@angular/forms": "~7.1.0",
21+
"@angular/http": "~7.1.0",
22+
"@angular/platform-browser": "~7.1.0",
23+
"@angular/platform-browser-dynamic": "~7.1.0",
24+
"@angular/router": "~7.1.0",
2525
"nativescript-angular": "file:../../nativescript-angular",
2626
"nativescript-theme-core": "~1.0.4",
2727
"reflect-metadata": "~0.1.8",
28-
"rxjs": "~6.0.0-rc.1",
28+
"rxjs": "~6.3.3",
2929
"tns-core-modules": "next",
30-
"zone.js": "~0.8.2"
30+
"zone.js": "^0.8.4"
3131
},
3232
"devDependencies": {
3333
"@types/chai": "^4.0.2",
34-
"@types/mocha": "^2.2.41",
35-
"@types/node": "^7.0.5",
34+
"@types/mocha": "^5.2.5",
35+
"@types/node": "^10.12.12",
3636
"babel-traverse": "6.26.0",
3737
"babel-types": "6.26.0",
3838
"babylon": "6.18.0",

Diff for: e2e/router/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,28 @@
77
"id": "org.nativescript.router"
88
},
99
"dependencies": {
10-
"@angular/animations": "~7.0.0",
11-
"@angular/common": "~7.0.0",
12-
"@angular/compiler": "~7.0.0",
13-
"@angular/core": "~7.0.0",
14-
"@angular/forms": "~7.0.0",
15-
"@angular/http": "~7.0.0",
16-
"@angular/platform-browser": "~7.0.0",
17-
"@angular/platform-browser-dynamic": "~7.0.0",
18-
"@angular/router": "~7.0.0",
10+
"@angular/animations": "~7.1.0",
11+
"@angular/common": "~7.1.0",
12+
"@angular/compiler": "~7.1.0",
13+
"@angular/core": "~7.1.0",
14+
"@angular/forms": "~7.1.0",
15+
"@angular/http": "~7.1.0",
16+
"@angular/platform-browser": "~7.1.0",
17+
"@angular/platform-browser-dynamic": "~7.1.0",
18+
"@angular/router": "~7.1.0",
1919
"nativescript-angular": "file:../../nativescript-angular",
2020
"nativescript-intl": "^3.0.0",
2121
"reflect-metadata": "~0.1.8",
2222
"rxjs": "~6.3.3",
2323
"tns-core-modules": "next",
24-
"zone.js": "^0.8.26"
24+
"zone.js": "^0.8.4"
2525
},
2626
"devDependencies": {
27-
"@ngtools/webpack": "~7.0.0",
28-
"@angular/compiler-cli": "~7.0.0",
27+
"@ngtools/webpack": "~7.1.0",
28+
"@angular/compiler-cli": "~7.1.0",
2929
"@types/chai": "^4.0.2",
30-
"@types/mocha": "^2.2.41",
31-
"@types/node": "^7.0.5",
30+
"@types/mocha": "^5.2.5",
31+
"@types/node": "^10.12.12",
3232
"babel-traverse": "6.25.0",
3333
"babel-types": "6.25.0",
3434
"babylon": "6.17.4",

Diff for: e2e/single-page/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@
1313
}
1414
},
1515
"dependencies": {
16-
"@angular/animations": "~7.0.0",
17-
"@angular/common": "~7.0.0",
18-
"@angular/compiler": "~7.0.0",
19-
"@angular/core": "~7.0.0",
20-
"@angular/forms": "~7.0.0",
21-
"@angular/http": "~7.0.0",
22-
"@angular/platform-browser": "~7.0.0",
23-
"@angular/platform-browser-dynamic": "~7.0.0",
24-
"@angular/router": "~7.0.0",
16+
"@angular/animations": "~7.1.0",
17+
"@angular/common": "~7.1.0",
18+
"@angular/compiler": "~7.1.0",
19+
"@angular/core": "~7.1.0",
20+
"@angular/forms": "~7.1.0",
21+
"@angular/http": "~7.1.0",
22+
"@angular/platform-browser": "~7.1.0",
23+
"@angular/platform-browser-dynamic": "~7.1.0",
24+
"@angular/router": "~7.1.0",
2525
"nativescript-angular": "file:../../nativescript-angular",
2626
"nativescript-intl": "^3.0.0",
2727
"reflect-metadata": "~0.1.8",
28-
"rxjs": "~6.0.0-rc.1",
28+
"rxjs": "~6.3.3",
2929
"tns-core-modules": "next",
3030
"zone.js": "^0.8.4"
3131
},
3232
"devDependencies": {
33-
"@angular/compiler-cli": "~7.0.0",
34-
"@ngtools/webpack": "~6.2.0-beta.3",
33+
"@angular/compiler-cli": "~7.1.0",
34+
"@ngtools/webpack": "~7.1.0",
3535
"@types/chai": "^4.0.2",
36-
"@types/mocha": "^2.2.41",
37-
"@types/node": "^7.0.5",
36+
"@types/mocha": "^5.2.5",
37+
"@types/node": "^10.12.12",
3838
"babel-traverse": "6.25.0",
3939
"babel-types": "6.25.0",
4040
"babylon": "6.17.4",

0 commit comments

Comments
 (0)