Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

First draft of changelog #561

Merged
merged 8 commits into from
Mar 4, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions changelog.txt
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!)
Copy link

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.

feature - improved test unit coverage, particularly around auth (thanks @jamesstalmage!)
Copy link

Choose a reason for hiding this comment

The 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
Copy link

Choose a reason for hiding this comment

The 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!)
Copy link

Choose a reason for hiding this comment

The 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!)
Copy link

Choose a reason for hiding this comment

The 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
Copy link

Choose a reason for hiding this comment

The 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!)