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@2.8.0
-- 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@2.8.0
-- 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.
Changelog
The following changes are required if you are upgrading from the previous
version:
- Users
ember new
diff- Upgrade your project's ember-cli version - docs
- Addon Developers
ember addon
diff- No changes required
- Core Contributors
- No changes required
Community Contributions
- #6050 Make app/addon readmes consistent @elwayman02
- #6005 [BUGFIX] Fixes broccoli errors when
tests
dir is not present @twokul - #5986 added transparent-proxy option to ember serve command @badazz91
- #6012 switch to a rollup subset of lodash and shave off 20 - 30%+ boot time @stefanpenner
- #6017 Allow
ember install addon_name --save
in addons. @xcambar - #6030 [ENHANCEMENT] Asset Sizes I moved the creation of asset sizes to an object. @kiwiupover
- #6052 Turn on strict mode for tests. @nathanhammond
- #6043 [BUGFIX beta] Test nested addon import @xcambar
- #6045 [Enhancement] Return raw asset-size as data instead of strings @kiwiupover
- #6072 Makes sure dependecies are loaded on demand @twokul
- #6092 Remove ember-qunit-notifications @trentmwillis
- #6094 Remove jQuery usage to read meta config. @rwjblue
- #6095 [INTERNAL] Remove unused 'es3Safe' option @ursm
- #6102 Refactor/cleanup/reduce slow tests @stefanpenner
- #6112 More specific docs for included hook @xcambar
- #6098 [BUGFIX beta] ServerWatcher disregards --watcher=* @stefanpenner
- #6166 changed --insecure-proxy to --secure-proxy in ember serve command @badazz91
Thank you to all who took the time to contribute!