Upgrading
In order to ensure a safe and easy upgrade please follow the following steps (from within your project directory):
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@0.1.7
-- 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@0.1.7
-- 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.
This release includes various bug fixes and replaces esnext with 6to5.
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
- Uninstall ember-cli-esnext. It has been replaced by ember-cli-6to5 which will be added to your project from the upgrade steps.
- Addon Developers
ember addon
diff- No changes required
- Core Contributors
- No changes required
Using 6to5.
The module transpile step is still es3 safe, if you are concern about using
6to5 you can remove it from package.json.
Community Contributions
- #2841 Add insecure-proxy option to
serve
command @matthewlehner - #2922 0.1.6 changelog @ember-cli
- #2927 Cleanup badges @knownasilya
- #2937 [BUGFIX] only include dependencies(not devDependencies) of included addons @jakecraige
- #2951 Fix for aliases for hyphenated options @marcioj
- #2952 Fixes validation of shorthand commandOptions @trabus
- #2960 Move from esnext to 6to5 @ember-cli
- #2964 [Bugfix] when developing an add-on, it’s jshint tests would be duplicate... @ember-cli
- #2965 Remove Hardcoded test-loader @chadhietala
- #2976 debug logging for add-ons + projects @ember-cli
Thank you to all who took the time to contribute!