Releases: FirebaseExtended/emberfire
Releases · FirebaseExtended/emberfire
v1.6.3
- Deleted model properties were not synchronizing.
v1.6.2
store.findAll
was populating record arrays in the background, this has been reverted to the original behaviour where the promise waits for the server response and populates the array immediately.
v1.6.1
updateRecord
was not fully compatible with Ember's disabled prototype extensions.- Remove Ember Data 2.1.0
initialize
deprecation warnings. - Allow passing of authentication settings such as
scope
andremember
when using Torii. - EmberFire can now be used as a nested addon.
v1.6.0
- Upgraded Firebase dependency to 2.x.x.
- Added
custom
andanonymous
login capability to thetorii
authentication adapter.
v1.5.0
- This release is compatible with Ember Data 1.13.0+.
- Embedded records will not work due to a bug in Ember Data versions below 1.13.6.
- Added integration with
torii
so you can easily use Firebase Authentication in your ember app.
v1.4.7
store.find
with queries now returns a realtime array.
v1.4.6
- Use
record.ref()
to get the Firebase reference for a particular record, including embedded records. - Embedded records, when calling
.save()
directly, will no longer write data at the root collection level in the db. - Embedded records, when calling
.destroyRecord()
directly, will correctly be removed on the server. - Embedded
belongsTo
records correctly serialize an id. - Embedded records clear their
isDirty
andisNew
state when saving directly or via the parent, fixingrecord.rollback()
. - Use
modelName
instead oftypeKey
to get rid of Ember Databeta.18
deprecation warnings.
v1.4.5
model.destroyRecord
was throwingundefined is not a function
when using EmberFire withoutember-cli
.
v1.4.4
- Now works with Ember Data
beta.15
snapshot changes. - Emptying
hasMany
relationship on server now properly empties the relationship locally. - Fixed
Path or pattern "EmberFire/**/*.js" did not match any files
error when using old Ember CLI versions. EmberFire now supports Ember CLI 0.1.3+.
v1.4.3
- Fixed an issue where
model.destroyRecord
was throwing an errorundefined is not a function
. - Installs Firebase dependency with version compatibility of
^2.1.0
. - Show the
Firebase
version in Ember Inspector's info panel.