Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 1a5f4f4

Browse files
authored
chore: update to 2.3.0 (#2942)
* chore: update to 2.3.0 * add 2.3.0 versions in package.json * update _data.json * update angular-in-memory-web-api
1 parent 9aececb commit 1a5f4f4

File tree

17 files changed

+77
-68
lines changed

17 files changed

+77
-68
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
- DBUS_SESSION_BUS_ADDRESS=/dev/null
1111
- DISPLAY=:99.0
1212
- CHROME_BIN=chromium-browser
13-
- LATEST_RELEASE=2.2.3
13+
- LATEST_RELEASE=2.3.0
1414
- TASK_FLAGS="--dgeni-log=warn"
1515
matrix:
1616
- TASK=lint

public/docs/_examples/_boilerplate/systemjs.config.web.build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
'@angular/forms/testing': 'ng:forms-builds/master/bundles/forms-testing.umd.js',
6161

6262
// other libraries
63-
'rxjs': 'npm:rxjs',
63+
'rxjs': 'npm:rxjs@5.0.0-rc.4',
6464
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
6565
'ts': 'npm:plugin-typescript@5.2.7/lib/plugin.js',
6666
'typescript': 'npm:typescript@2.0.10/lib/typescript.js',

public/docs/_examples/_boilerplate/systemjs.config.web.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
'@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',
4848

4949
// other libraries
50-
'rxjs': 'npm:rxjs',
50+
'rxjs': 'npm:rxjs@5.0.0-rc.4',
5151
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
5252
'ts': 'npm:plugin-typescript@5.2.7/lib/plugin.js',
5353
'typescript': 'npm:typescript@2.0.10/lib/typescript.js',
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
**/*.ngfactory.ts
2+
**/*.ngsummary.json
23
**/*.metadata.json
34
dist
45
!app/tsconfig.json
5-
!rollup-config.js
6+
!rollup-config.js

public/docs/_examples/homepage-hello-world/ts/index.1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<!-- Polyfills for older browsers -->
1212
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
1313

14-
<script src="https://unpkg.com/zone.js@0.6.25"></script>
14+
<script src="https://unpkg.com/zone.js@0.7.2"></script>
1515
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
1616
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
1717
<script src="https://unpkg.com/typescript@2.0.10/lib/typescript.js"></script>

public/docs/_examples/homepage-tabs/ts/index.1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- Polyfills for older browsers -->
1313
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
1414

15-
<script src="https://unpkg.com/zone.js@0.6.25"></script>
15+
<script src="https://unpkg.com/zone.js@0.7.2"></script>
1616
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
1717
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
1818
<script src="https://unpkg.com/typescript@2.0.10/lib/typescript.js"></script>

public/docs/_examples/homepage-todo/ts/index.1.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<!-- Polyfills for older browsers -->
1313
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
1414

15-
<script src="https://unpkg.com/zone.js@0.6.25"></script>
15+
<script src="https://unpkg.com/zone.js@0.7.2"></script>
1616
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
17-
<script src="https://unpkg.com/systemjs@0.19.27/dist/system.src.js"></script>
17+
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
1818
<script src="https://unpkg.com/typescript@2.0.10/lib/typescript.js"></script>
1919

2020
<!-- 2. Configure SystemJS -->

public/docs/_examples/package.json

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,23 @@
1111
"author": "",
1212
"license": "MIT",
1313
"dependencies": {
14-
"@angular/common": "~2.2.0",
15-
"@angular/compiler": "~2.2.0",
16-
"@angular/compiler-cli": "~2.2.0",
17-
"@angular/core": "~2.2.0",
18-
"@angular/forms": "~2.2.0",
19-
"@angular/http": "~2.2.0",
20-
"@angular/platform-browser": "~2.2.0",
21-
"@angular/platform-browser-dynamic": "~2.2.0",
22-
"@angular/platform-server": "~2.2.0",
23-
"@angular/router": "~3.2.0",
24-
"@angular/upgrade": "~2.2.0",
25-
26-
"angular-in-memory-web-api": "~0.1.16",
27-
14+
"@angular/common": "~2.3.0",
15+
"@angular/compiler": "~2.3.0",
16+
"@angular/compiler-cli": "~2.3.0",
17+
"@angular/core": "~2.3.0",
18+
"@angular/forms": "~2.3.0",
19+
"@angular/http": "~2.3.0",
20+
"@angular/platform-browser": "~2.3.0",
21+
"@angular/platform-browser-dynamic": "~2.3.0",
22+
"@angular/platform-server": "~2.3.0",
23+
"@angular/router": "~3.3.0",
24+
"@angular/upgrade": "~2.3.0",
25+
"angular-in-memory-web-api": "~0.1.17",
2826
"core-js": "^2.4.1",
2927
"reflect-metadata": "^0.1.8",
30-
"rollup": "^0.36.0",
31-
"rollup-plugin-node-resolve": "^2.0.0",
32-
"rollup-plugin-uglify": "^1.0.1",
33-
"rxjs": "5.0.0-beta.12",
28+
"rxjs": "5.0.0-rc.4",
3429
"systemjs": "0.19.39",
35-
"zone.js": "^0.6.25"
30+
"zone.js": "^0.7.2"
3631
},
3732
"devDependencies": {
3833
"@types/angular": "^1.5.16",
@@ -75,7 +70,10 @@
7570
"protractor": "4.0.9",
7671
"raw-loader": "^0.5.1",
7772
"rimraf": "^2.5.4",
73+
"rollup": "^0.36.0",
7874
"rollup-plugin-commonjs": "^4.1.0",
75+
"rollup-plugin-node-resolve": "^2.0.0",
76+
"rollup-plugin-uglify": "^1.0.1",
7977
"source-map-explorer": "^1.3.2",
8078
"style-loader": "^0.13.1",
8179
"ts-node": "^1.3.0",

public/docs/_examples/quickstart/js/package.1.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@
77
},
88
"license": "MIT",
99
"dependencies": {
10-
"@angular/common": "~2.2.0",
11-
"@angular/compiler": "~2.2.0",
12-
"@angular/core": "~2.2.0",
13-
"@angular/forms": "~2.2.0",
14-
"@angular/http": "~2.2.0",
15-
"@angular/platform-browser": "~2.2.0",
16-
"@angular/platform-browser-dynamic": "~2.2.0",
17-
"@angular/router": "~3.2.0",
18-
"@angular/upgrade": "~2.2.0",
10+
"@angular/common": "~2.3.0",
11+
"@angular/compiler": "~2.3.0",
12+
"@angular/core": "~2.3.0",
13+
"@angular/forms": "~2.3.0",
14+
"@angular/http": "~2.3.0",
15+
"@angular/platform-browser": "~2.3.0",
16+
"@angular/platform-browser-dynamic": "~2.3.0",
17+
"@angular/router": "~3.3.0",
18+
"@angular/upgrade": "~2.3.0",
1919

20-
"angular-in-memory-web-api": "~0.1.15",
20+
"angular-in-memory-web-api": "~0.1.16",
2121
"core-js": "^2.4.1",
2222
"reflect-metadata": "^0.1.8",
23-
"rxjs": "5.0.0-beta.12",
24-
"zone.js": "^0.6.25"
23+
"rxjs": "5.0.0-rc.4",
24+
"zone.js": "^0.7.2"
2525
},
2626
"devDependencies": {
2727
"concurrently": "^3.0.0",

public/docs/_examples/quickstart/ts/package.1.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
},
1010
"license": "MIT",
1111
"dependencies": {
12-
"@angular/common": "~2.2.0",
13-
"@angular/compiler": "~2.2.0",
14-
"@angular/core": "~2.2.0",
15-
"@angular/forms": "~2.2.0",
16-
"@angular/http": "~2.2.0",
17-
"@angular/platform-browser": "~2.2.0",
18-
"@angular/platform-browser-dynamic": "~2.2.0",
19-
"@angular/router": "~3.2.0",
20-
"@angular/upgrade": "~2.2.0",
12+
"@angular/common": "~2.3.0",
13+
"@angular/compiler": "~2.3.0",
14+
"@angular/core": "~2.3.0",
15+
"@angular/forms": "~2.3.0",
16+
"@angular/http": "~2.3.0",
17+
"@angular/platform-browser": "~2.3.0",
18+
"@angular/platform-browser-dynamic": "~2.3.0",
19+
"@angular/router": "~3.3.0",
20+
"@angular/upgrade": "~2.3.0",
2121

22-
"angular-in-memory-web-api": "~0.1.15",
22+
"angular-in-memory-web-api": "~0.1.16",
2323
"core-js": "^2.4.1",
2424
"reflect-metadata": "^0.1.8",
25-
"rxjs": "5.0.0-beta.12",
25+
"rxjs": "5.0.0-rc.4",
2626
"systemjs": "0.19.39",
27-
"zone.js": "^0.6.25"
27+
"zone.js": "^0.7.2"
2828
},
2929
"devDependencies": {
3030
"@types/core-js": "^0.9.34",
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
**/*.js
21
aot/**/*.ts
2+
**/*.ngfactory.ts
3+
**/*.ngsummary.json
4+
**/*.metadata.json
5+
**/*.js
6+
dist
7+
!app/tsconfig.json
38
!rollup-config.js
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
**/*.js
21
aot/**/*.ts
2+
**/*.ngfactory.ts
3+
**/*.ngsummary.json
4+
**/*.metadata.json
5+
**/*.js
6+
dist
7+
!app/tsconfig.json
38
!rollup-config.js

public/docs/_examples/upgrade-phonecat-3-final/ts/systemjs.config.1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',
2727

2828
// other libraries
29-
'rxjs': 'npm:rxjs',
29+
'rxjs': 'npm:rxjs',
3030
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
3131
// #docregion paths
3232
},

public/docs/_examples/webpack/ts/package.webpack.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
},
1010
"license": "MIT",
1111
"dependencies": {
12-
"@angular/common": "~2.2.0",
13-
"@angular/compiler": "~2.2.0",
14-
"@angular/core": "~2.2.0",
15-
"@angular/forms": "~2.2.0",
16-
"@angular/http": "~2.2.0",
17-
"@angular/platform-browser": "~2.2.0",
18-
"@angular/platform-browser-dynamic": "~2.2.0",
19-
"@angular/router": "~3.2.0",
12+
"@angular/common": "~2.3.0",
13+
"@angular/compiler": "~2.3.0",
14+
"@angular/core": "~2.3.0",
15+
"@angular/forms": "~2.3.0",
16+
"@angular/http": "~2.3.0",
17+
"@angular/platform-browser": "~2.3.0",
18+
"@angular/platform-browser-dynamic": "~2.3.0",
19+
"@angular/router": "~3.3.0",
2020
"core-js": "^2.4.1",
21-
"rxjs": "5.0.0-beta.12",
22-
"zone.js": "^0.6.25"
21+
"rxjs": "5.0.0-rc.4",
22+
"zone.js": "^0.7.2"
2323
},
2424
"devDependencies": {
2525
"@types/node": "^6.0.45",

public/docs/js/latest/_data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"title": "Angular Docs",
55
"subtitle": "JavaScript",
66
"menuTitle": "Docs Home",
7-
"banner": "The latest Angular release is <b>2.2</b>. View the <a href='https://github.com/angular/angular/blob/master/CHANGELOG.md' target='_blank'>change log</a> to see enhancements, fixes, and breaking changes."
7+
"banner": "The latest Angular release is <b>2.3</b>. View the <a href='https://github.com/angular/angular/blob/master/CHANGELOG.md' target='_blank'>change log</a> to see enhancements, fixes, and breaking changes."
88
},
99

1010
"quickstart": {

public/docs/ts/latest/_data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"title": "Angular Docs",
55
"subtitle": "TypeScript",
66
"menuTitle": "Docs Home",
7-
"banner": "The latest Angular release is <b>2.2</b>. Learn about the latest <a href='guide/change-log.html' title='Documentation change log'>updates to the documentation</a>. View the <a href='https://github.com/angular/angular/blob/master/CHANGELOG.md' target='_blank' title='Angular Product Changes'>Angular change log</a> for enhancements, fixes, and breaking changes in Angular itself."
7+
"banner": "The latest Angular release is <b>2.3</b>. Learn about the latest <a href='guide/change-log.html' title='Documentation change log'>updates to the documentation</a>. View the <a href='https://github.com/angular/angular/blob/master/CHANGELOG.md' target='_blank' title='Angular Product Changes'>Angular change log</a> for enhancements, fixes, and breaking changes in Angular itself."
88
},
99

1010
"cli-quickstart": {

tools/plunker-builder/indexHtmlTranslator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var _rxData = [
5757
{
5858
pattern: 'script',
5959
from: 'node_modules/zone.js/dist/zone.js',
60-
to: 'https://unpkg.com/zone.js@0.6.25?main=browser'
60+
to: 'https://unpkg.com/zone.js@0.7.2?main=browser'
6161
},
6262
{
6363
pattern: 'script',
@@ -67,7 +67,7 @@ var _rxData = [
6767
{
6868
pattern: 'script',
6969
from: 'node_modules/rxjs/bundles/Rx.js',
70-
to: 'https://unpkg.com/rxjs@5.0.0-beta.12/bundles/Rx.js'
70+
to: 'https://unpkg.com/rxjs@5.0.0-rc.4/bundles/Rx.js'
7171
},
7272
{
7373
pattern: 'script',

0 commit comments

Comments
 (0)