Skip to content

Releases: FirebaseExtended/emberfire

v1.6.3

04 Dec 20:39
Compare
Choose a tag to compare
  • Deleted model properties were not synchronizing.

v1.6.2

30 Nov 23:29
Compare
Choose a tag to compare
  • 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

13 Nov 19:57
Compare
Choose a tag to compare
  • 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 and remember when using Torii.
  • EmberFire can now be used as a nested addon.

v1.6.0

06 Oct 23:25
Compare
Choose a tag to compare
  • Upgraded Firebase dependency to 2.x.x.
  • Added custom and anonymous login capability to the torii authentication adapter.

v1.5.0

28 Jul 23:51
Compare
Choose a tag to compare
  • 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

19 Jun 18:27
Compare
Choose a tag to compare
  • store.find with queries now returns a realtime array.

v1.4.6

17 Jun 17:18
Compare
Choose a tag to compare
  • 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 and isNew state when saving directly or via the parent, fixing record.rollback().
  • Use modelName instead of typeKey to get rid of Ember Data beta.18 deprecation warnings.

v1.4.5

21 May 20:14
Compare
Choose a tag to compare
  • model.destroyRecord was throwing undefined is not a function when using EmberFire without ember-cli.

v1.4.4

03 Apr 21:11
Compare
Choose a tag to compare
  • 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

20 Mar 16:46
Compare
Choose a tag to compare
  • Fixed an issue where model.destroyRecord was throwing an error undefined is not a function.
  • Installs Firebase dependency with version compatibility of ^2.1.0.
  • Show the Firebase version in Ember Inspector's info panel.