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

chore: update to 2.3.0 #2942

Merged
merged 4 commits into from
Dec 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
- DISPLAY=:99.0
- CHROME_BIN=chromium-browser
- LATEST_RELEASE=2.2.3
- LATEST_RELEASE=2.3.0
- TASK_FLAGS="--dgeni-log=warn"
matrix:
- TASK=lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
'@angular/forms/testing': 'ng:forms-builds/master/bundles/forms-testing.umd.js',

// other libraries
'rxjs': 'npm:rxjs',
'rxjs': 'npm:rxjs@5.0.0-rc.4',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
'ts': 'npm:plugin-typescript@5.2.7/lib/plugin.js',
'typescript': 'npm:typescript@2.0.10/lib/typescript.js',
Expand Down
2 changes: 1 addition & 1 deletion public/docs/_examples/_boilerplate/systemjs.config.web.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
'@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',

// other libraries
'rxjs': 'npm:rxjs',
'rxjs': 'npm:rxjs@5.0.0-rc.4',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
'ts': 'npm:plugin-typescript@5.2.7/lib/plugin.js',
'typescript': 'npm:typescript@2.0.10/lib/typescript.js',
Expand Down
3 changes: 2 additions & 1 deletion public/docs/_examples/cb-aot-compiler/ts/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
**/*.ngfactory.ts
**/*.ngsummary.json
**/*.metadata.json
dist
!app/tsconfig.json
!rollup-config.js
!rollup-config.js
2 changes: 1 addition & 1 deletion public/docs/_examples/homepage-hello-world/ts/index.1.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<!-- Polyfills for older browsers -->
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>

<script src="https://unpkg.com/zone.js@0.6.25"></script>
<script src="https://unpkg.com/zone.js@0.7.2"></script>
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
<script src="https://unpkg.com/typescript@2.0.10/lib/typescript.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion public/docs/_examples/homepage-tabs/ts/index.1.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<!-- Polyfills for older browsers -->
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>

<script src="https://unpkg.com/zone.js@0.6.25"></script>
<script src="https://unpkg.com/zone.js@0.7.2"></script>
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
<script src="https://unpkg.com/typescript@2.0.10/lib/typescript.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions public/docs/_examples/homepage-todo/ts/index.1.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<!-- Polyfills for older browsers -->
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>

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

<!-- 2. Configure SystemJS -->
Expand Down
36 changes: 17 additions & 19 deletions public/docs/_examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,23 @@
"author": "",
"license": "MIT",
"dependencies": {
"@angular/common": "~2.2.0",
"@angular/compiler": "~2.2.0",
"@angular/compiler-cli": "~2.2.0",
"@angular/core": "~2.2.0",
"@angular/forms": "~2.2.0",
"@angular/http": "~2.2.0",
"@angular/platform-browser": "~2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0",
"@angular/platform-server": "~2.2.0",
"@angular/router": "~3.2.0",
"@angular/upgrade": "~2.2.0",

"angular-in-memory-web-api": "~0.1.16",

"@angular/common": "~2.3.0",
"@angular/compiler": "~2.3.0",
"@angular/compiler-cli": "~2.3.0",
"@angular/core": "~2.3.0",
"@angular/forms": "~2.3.0",
"@angular/http": "~2.3.0",
"@angular/platform-browser": "~2.3.0",
"@angular/platform-browser-dynamic": "~2.3.0",
"@angular/platform-server": "~2.3.0",
"@angular/router": "~3.3.0",
"@angular/upgrade": "~2.3.0",
"angular-in-memory-web-api": "~0.1.17",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rollup": "^0.36.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rxjs": "5.0.0-beta.12",
"rxjs": "5.0.0-rc.4",
"systemjs": "0.19.39",
"zone.js": "^0.6.25"
"zone.js": "^0.7.2"
},
"devDependencies": {
"@types/angular": "^1.5.16",
Expand Down Expand Up @@ -75,7 +70,10 @@
"protractor": "4.0.9",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"rollup": "^0.36.0",
"rollup-plugin-commonjs": "^4.1.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"source-map-explorer": "^1.3.2",
"style-loader": "^0.13.1",
"ts-node": "^1.3.0",
Expand Down
24 changes: 12 additions & 12 deletions public/docs/_examples/quickstart/js/package.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
},
"license": "MIT",
"dependencies": {
"@angular/common": "~2.2.0",
"@angular/compiler": "~2.2.0",
"@angular/core": "~2.2.0",
"@angular/forms": "~2.2.0",
"@angular/http": "~2.2.0",
"@angular/platform-browser": "~2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0",
"@angular/router": "~3.2.0",
"@angular/upgrade": "~2.2.0",
"@angular/common": "~2.3.0",
"@angular/compiler": "~2.3.0",
"@angular/core": "~2.3.0",
"@angular/forms": "~2.3.0",
"@angular/http": "~2.3.0",
"@angular/platform-browser": "~2.3.0",
"@angular/platform-browser-dynamic": "~2.3.0",
"@angular/router": "~3.3.0",
"@angular/upgrade": "~2.3.0",

"angular-in-memory-web-api": "~0.1.15",
"angular-in-memory-web-api": "~0.1.16",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.25"
"rxjs": "5.0.0-rc.4",
"zone.js": "^0.7.2"
},
"devDependencies": {
"concurrently": "^3.0.0",
Expand Down
24 changes: 12 additions & 12 deletions public/docs/_examples/quickstart/ts/package.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
},
"license": "MIT",
"dependencies": {
"@angular/common": "~2.2.0",
"@angular/compiler": "~2.2.0",
"@angular/core": "~2.2.0",
"@angular/forms": "~2.2.0",
"@angular/http": "~2.2.0",
"@angular/platform-browser": "~2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0",
"@angular/router": "~3.2.0",
"@angular/upgrade": "~2.2.0",
"@angular/common": "~2.3.0",
"@angular/compiler": "~2.3.0",
"@angular/core": "~2.3.0",
"@angular/forms": "~2.3.0",
"@angular/http": "~2.3.0",
"@angular/platform-browser": "~2.3.0",
"@angular/platform-browser-dynamic": "~2.3.0",
"@angular/router": "~3.3.0",
"@angular/upgrade": "~2.3.0",

"angular-in-memory-web-api": "~0.1.15",
"angular-in-memory-web-api": "~0.1.16",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"rxjs": "5.0.0-rc.4",
"systemjs": "0.19.39",
"zone.js": "^0.6.25"
"zone.js": "^0.7.2"
},
"devDependencies": {
"@types/core-js": "^0.9.34",
Expand Down
7 changes: 6 additions & 1 deletion public/docs/_examples/toh-6/ts/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
**/*.js
aot/**/*.ts
**/*.ngfactory.ts
**/*.ngsummary.json
**/*.metadata.json
**/*.js
dist
!app/tsconfig.json
!rollup-config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
**/*.js
aot/**/*.ts
**/*.ngfactory.ts
**/*.ngsummary.json
**/*.metadata.json
**/*.js
dist
!app/tsconfig.json
!rollup-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',

// other libraries
'rxjs': 'npm:rxjs',
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
// #docregion paths
},
Expand Down
20 changes: 10 additions & 10 deletions public/docs/_examples/webpack/ts/package.webpack.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
},
"license": "MIT",
"dependencies": {
"@angular/common": "~2.2.0",
"@angular/compiler": "~2.2.0",
"@angular/core": "~2.2.0",
"@angular/forms": "~2.2.0",
"@angular/http": "~2.2.0",
"@angular/platform-browser": "~2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0",
"@angular/router": "~3.2.0",
"@angular/common": "~2.3.0",
"@angular/compiler": "~2.3.0",
"@angular/core": "~2.3.0",
"@angular/forms": "~2.3.0",
"@angular/http": "~2.3.0",
"@angular/platform-browser": "~2.3.0",
"@angular/platform-browser-dynamic": "~2.3.0",
"@angular/router": "~3.3.0",
"core-js": "^2.4.1",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.25"
"rxjs": "5.0.0-rc.4",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@types/node": "^6.0.45",
Expand Down
2 changes: 1 addition & 1 deletion public/docs/js/latest/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Angular Docs",
"subtitle": "JavaScript",
"menuTitle": "Docs Home",
"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."
"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."
},

"quickstart": {
Expand Down
2 changes: 1 addition & 1 deletion public/docs/ts/latest/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Angular Docs",
"subtitle": "TypeScript",
"menuTitle": "Docs Home",
"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."
"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."
},

"cli-quickstart": {
Expand Down
4 changes: 2 additions & 2 deletions tools/plunker-builder/indexHtmlTranslator.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var _rxData = [
{
pattern: 'script',
from: 'node_modules/zone.js/dist/zone.js',
to: 'https://unpkg.com/zone.js@0.6.25?main=browser'
to: 'https://unpkg.com/zone.js@0.7.2?main=browser'
},
{
pattern: 'script',
Expand All @@ -67,7 +67,7 @@ var _rxData = [
{
pattern: 'script',
from: 'node_modules/rxjs/bundles/Rx.js',
to: 'https://unpkg.com/rxjs@5.0.0-beta.12/bundles/Rx.js'
to: 'https://unpkg.com/rxjs@5.0.0-rc.4/bundles/Rx.js'
},
{
pattern: 'script',
Expand Down