-
Notifications
You must be signed in to change notification settings - Fork 628
First draft of changelog #561
Changes from 1 commit
a375daf
e79d3f8
f02bcd7
2f60baa
2f5dcc6
671569d
5fe36e5
c6b16be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
important - Read carefully! There are several breaking changes in this release. | ||
important - API is now official! Future 1.x versions will remain backwards compatible with the current API contract. | ||
important - We have a migration guide here: https://github.com/firebase/angularfire/releases/tag/v1.0.0 | ||
removed - `$firebase` has been removed; see migration guide for alternatives | ||
removed - `$inst() was removed; use `$ref()` to get to the Firebase ref | ||
changed - `$asArray()` has been replaced by calling the `$firebaseArray` service directly | ||
changed - `$asObject()` has been replaced by calling the `$firebaseObject` service directly | ||
changed - `$FirebaseArray` renamed to $firebaseArray` | ||
changed - `$FirebaseObject` renamed to `$firebaseObject` | ||
changed - `$extendFactory` has been renamed to `$extend` (e.g. `$firebaseObject.$extend(...)`) | ||
feature - enhanced performance of $bindTo (thanks @jamesstalmage!) | ||
feature - improved test unit coverage, particularly around auth (thanks @jamesstalmage!) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not a customer-facing change, so should not be in changelog. |
||
added - An error message is now displayed if one tries to sync to array-like data, since this is error-prone | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a warning, not an error message. |
||
fixed - Travis now runs e2e locally with Firefox (thanks @jamesstalmage!) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not a customer-facing change, so should not be in changelog. |
||
fixed - $value is now removed when data changes from a primitive to an object with child keys | ||
fixed - better test consistency with Jasmine/Travis, less timing issues (thanks @jamesstalmage!) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not a customer-facing change, so should not be in changelog. |
||
fixed - tests now work around new Jasmine version's breaking change to equality checks | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not a customer-facing change, so should not be in changelog. |
||
fixed - utils.scopeData no longer accidentally copies `$value` if valid child keys exist (thanks @jamesstalmage!) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All sentences should start with a capital letter and end with a period.