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

v1.0.0

Choose a tag to compare

@firebase-ops firebase-ops released this 04 Mar 18:44
· 246 commits to master since this release
  • Read carefully! There are several breaking changes in this release.
  • The API is now official! Future 1.x.x releases will remain backwards-compatible with the current API contract.
  • We have a migration guide here.
  • Upgraded Firebase dependency to 2.2.x.
  • Enhanced performance of $bindTo() (thanks @jamestalmage).
  • Added support for CommonJS (thanks @bendrucker).
  • $firebase has been removed; see the migration guide for alternatives.
  • $inst() was removed; use $ref() to get to the underlying Firebase reference.
  • The previously deprecated ability to pass in credentials to the user management methods of $firebaseAuth as individual arguments has been removed in favor of a single credentials argument.
  • The previously deprecated $sendPasswordResetEmail() method has been removed; use the equivalent $resetPassword() method instead.
  • $asArray() has been replaced by calling the $firebaseArray service directly.
  • $asObject() has been replaced by calling the $firebaseObject service directly.
  • $FirebaseArray renamed to $firebaseArray.
  • $FirebaseObject renamed to $firebaseObject.
  • $extendFactory() has been renamed to $extend() and has been simplified; see the migration guide for details.
  • A warning message is now displayed when trying to sync to array-like data, since this is error-prone.
  • Upgraded Angular dependency to 1.3.x and 1.4.x (Angular 1.2.x should still work but it is no longer officially supported).
  • $value is now removed when data changes from a primitive to an object with child keys (thanks @jamestalmage).