Releases: FirebaseExtended/angularfire
Releases · FirebaseExtended/angularfire
v2.3.0
- Added a new
$firebaseStorage
service to store and retrieve user-generated content like images, audio, and video.
v2.2.0
- Added a
requireEmailVerification
argument to the$requireSignIn()
router helper method to enforce email verification (thanks to @ericmorgan1). - Fixed a race condition which sometimes caused an error when the Database
Reference
bound to a$firebaseObject
instance was set tonull
(thanks to @ulion).
v2.1.0
v2.0.2
$firebaseAuth.$signOut()
now correctly returns aPromise
fulfilled when the underlying Firebase SDK has signed the user out.
v2.0.1
- Fixed issue which caused the promises returned from
$firebaseAuth
methods to not fire. - Improved error messages when improperly initializing an instance of the
$firebaseAuth
service.
v2.0.0
- See the migration guide for detailed instructions on how to upgrade.
- Upgraded the
firebase
dependency to3.x.x
. AngularFire will no longer work with Firebase2.x.x
. angular
andfirebase
are now listed as peer dependencies in thepackage.json
.- Several auth methods have been renamed and have had their method signatures changed. See the migration guide for the full details.
- The auth payload returned from the authentication methods has changed format. See the new Firebase Authentication guide for details.
- Fixed several bugs including incorrect error messages, unreported errors, and promises resolving earlier than they should have.
v1.2.0
- Added
$firebaseRefProvider
for injecting Firebase references. - Added
$firebaseAuthService
for simplified authentication.
v1.1.4
- Upgraded Angular dependency to support 1.5.x
v1.1.3
- Upgraded Firebase dependency to 2.x.x.
v1.1.2
- Fixed issued with
$firebaseArray.$loaded()
which caused it to resolve before updates from the server were populated to the array (thanks to @jamestalmage).