Setup
npm uninstall -g ember-cli
-- Remove old global ember-clinpm cache clean
-- Clear NPM cachebower cache clean
-- Clear Bower cachenpm install -g ember-cli@1.13.11
-- Install new global ember-cli
Project Update
rm -rf node_modules bower_components dist tmp
-- Delete temporary development folders.npm install --save-dev ember-cli@1.13.11
-- Update project'spackage.json
to use latest version.npm install
-- Reinstall NPM dependencies.bower install
-- Reinstall bower dependencies.ember init
-- This runs the new project blueprint on your projects directory. Please follow the prompts, and review all changes (tip: you can see a diff by pressing d). The most common source of upgrade pain is missing changes in this step.
The following changes are required if you are upgrading from the previous
version:
- Users
ember new
diff- changes to
tests/index.html
file. All tests are now in a separate file, diff. - default Ember.js version is now at
1.13.10
- default Ember Data version is now at
1.13.15
- Upgrade your project's ember-cli version - docs
- Addon Developers
- Core Contributors
- No changes required
Community Contributions
- #4838 Add
npm test
to Addon README @elwayman02 - #4756 Discard runCommand stdout/stderr unless we have a test failure @joliss
- #4753 Upgraded ember-cli-app-version to 1.0.0 @ember-cli
- #4235 Reintroduce comment regarding bodyParser on http-mock @joostdevries
- #4728 Revert "Do not pack ember-cli-build.js" @ember-cli
- #4846 Update ember-cli-htmlbars-inline-precompile dependency @joliss
- #4757 Remove last use of broccoli-writer in test suite @joliss
- #4765 Fix typo Brocolli → Broccoli @lancedikson
- #4770 Updates configstore @twokul
- #4774 Update ember-cli-shims to prevent errors on Ember < 1.13. @rwjblue
- #4772 Implement a destroyApp helper. @blimmer
- #4771 Make default generated tests pass. @blimmer
- #4854 command unit test syncing @kellyselden
- #4801 add a missing curved brackets @dukex
- #4799 Bump ember-cli-dependency-checker to v1.1.0 @quaertym
- #4792 Replace Esperanto With Babel @ember-cli
- #4783 bump viz @ember-cli
- #4788 include FS usage monitoring @ember-cli
- #4785 some safe runCommand removals @kellyselden
- #4781 Set
ember serve --host
default toundefined
. @buschtoens - #4796 tested needs null integrity value (since it always chan… @ember-cli
- #4880 consolidate test setup to not use fixtures, instead use mocking @kellyselden
- #4816 Allow OS to choose ephemeral port if --test-port=0 @williamsbdev
- #4815 Add Node.js 4.0 as valid platform version @szines
- #4839 addAddonsToProject for blueprints @elwayman02
- #4826 Update bower deps. @rwjblue
- #4844 fix failing tests @ember-cli
- #4836 Make config replace cache @ember-cli
- #4837 Add
Blueprint.prototype.filesPath
. @rwjblue - #4827 Update to broccoli-caching-writer 2.0.0 @joliss
- #4829 broccoli-plugin{description -> annotation} @ember-cli
- #4874 Add ability to specify a build path for running tests @trentmwillis
- #4863 remove duplicate in package.json @lazybensch
- #4849 cleanup whitespace in the commands @kellyselden
- #4857 Only exclude node_modules at root @joliss
- #4881 add unit tests for blueprint help printing @kellyselden
- #4913 adding addtional help tests @kellyselden
- #4946 Fix beforeEach/afterEach callbacks with moduleForAcceptance. @rwjblue
- #4954 Add smoke test for
moduleForAcceptance
@seanpdoyle - #4970 Upgrade testem to 0.9.8 @rzurad
- #4973 Lock down ember-router-generator@1.0.0 @ember-cli
- #4989 added my "Why is CI broken?" tool to the readme @ember-cli
- #5039 Add
UI.errorStream
@seanpdoyle - #5036 Remove native bundled dependencies @patocallaghan
- #5026 Add support for watchman 4 @jcope2013
- #5020 explicitly test node 5.0 @stefanpenner
Thank you to all who took the time to contribute!