From 51f6c4843f964539ce5610ec0c3ecc3ae656b1e8 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Tue, 7 Jun 2016 10:23:42 -0400 Subject: [PATCH] chore(CHANGELOG): add steps for renaming the lifecycle and events beta 8 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b289e0d13..ee0510bb5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -158,6 +158,38 @@ All Ionic component events have been renamed to start with `ion`. This is to pre ) { ``` +4. Rename any uses of the lifecycle events, for example: + + ``` + onPageDidEnter() { + console.log("Entered page!"); + } + ``` + + becomes + + ``` + ionViewDidEnter() { + console.log("Entered page!"); + } + ``` + + The full list of lifecycle name changes is in the [section above](https://github.com/driftyco/ionic/blob/2.0/CHANGELOG.md#ionic-lifecycle-events-renamed). + +5. Rename any Ionic events, for example: + + ``` + + ``` + + becomes + + ``` + + ``` + + The full list of event name changes is in the [section above](https://github.com/driftyco/ionic/blob/2.0/CHANGELOG.md#ionic-component-events-renamed). + ### Bug Fixes * **build:** correct link in output.wp.scss file to old ionic directory. ([6113daf](https://github.com/driftyco/ionic/commit/6113daf))