Skip to content

Releases: n6g7/redux-saga-firebase

v0.7.0

13 Nov 22:13
Compare
Choose a tag to compare

This release includes several breaking changes .

Updates

  • (breaking) *database.sync(path, options) now takes an option object as argument.
    The objects has three keys:
    • successActionCreator (required): an action creator to dispatch an action on success
    • failureActionCreator (optional): an action creator to dispatch an action on failure
    • transform (optional): this is used to transform the data received from the database before it is passed to the success action creator.
      Thanks, @BrunoGodefroy! 🎉
  • (breaking) *messaging.syncMessages(options) now takes an option object as argument (same as *database.sync(path, options)). Thanks, @BrunoGodefroy! 🎉
  • (breaking) *messaging.syncToken(options) now takes an option object as argument (same as *database.sync(path, options)). Thanks, @BrunoGodefroy! 🎉

Additions

v0.6.1

07 Oct 14:28
Compare
Choose a tag to compare

Additions

v0.6.0

06 Oct 20:07
Compare
Choose a tag to compare

Simpler messaging token management!

Additions

v0.5.0

10 Sep 12:23
Compare
Choose a tag to compare

Three new authentication features:

  • password reset
  • email verification
  • password update

Additions

v0.4.2

06 Sep 22:47
Compare
Choose a tag to compare

Fixes

  • Fixed a bug where the database.sync method wasn't closing the channel properly.

v0.4.0

03 Sep 11:25
Compare
Choose a tag to compare

Additions

v0.3.0

08 Jul 18:18
Compare
Choose a tag to compare

Updates

  • All database methods now take a pathOrRef argument instead of the previous path argument. This new argument can be either a string or a Firebase Database Reference. This is not a breaking change. Thanks, @ryansully! 🎉
  • All storage methods now take a pathOrRef argument instead of the previous path argument. This new argument can be either a string or a Firebase Storage Reference. This is not a breaking change. Thanks, @ryansully! 🎉

Additions

Notes

v0.2.0

13 Jun 19:34
Compare
Choose a tag to compare

Updates

Additions

Notes

  • Coverage increased to 💯% thanks to @ryansully! 🎉

v0.1.0

06 Jun 22:17
Compare
Choose a tag to compare
  • Distributed files are now compiled to es5 for compatibility with node.

v0.0.10

03 Jun 18:25
Compare
Choose a tag to compare
  • (fix) rsf.upload and rsf.uploadString weren't returning UploadTask object as documented. It is now the case.
  • Updated firebase dependency to v4