Skip to content

Releases: n6g7/redux-saga-firebase

v0.15.0

20 Jan 21:36
bd6592d
Compare
Choose a tag to compare

Redux-Saga v1.0.0 support!

Updates

Additions

  • An error message is now logged to the console when an error arises in any synchronisation method and no failureActionCreator were given. (#156)

v0.14.1

07 Aug 18:38
bf536bd
Compare
Choose a tag to compare

Updates

  • babel was upgraded to v7.0.0-beta.56 and @babel/preset-stage-3 has been removed.
  • @babel/runtime is now a direct dependency to avoid conflicts with any user-installed version (see issue #130).

Additions

v0.14.0

16 Jun 20:19
4996502
Compare
Choose a tag to compare

Redux-Saga v1.0.0-beta support!

This release includes several breaking changes.

Updates

  • (breaking) The library is now transpiled using babel v7. The outputed files are very close to what v6 generated and no bug was detected during testing, however this is still considered a potentially breaking change. Thanks, @sarovin! πŸŽ‰
  • (breaking) Redux-saga has been moved from a regular dependency to a peer dependency. This will ensure we use the client's redux-saga installation and enable support for support for redux-saga v1.0.0-beta.
  • database.channel(path, event, buffer) now accepts an optional third argument, buffer, which defaults to buffers.none(). Thanks @ryansully! πŸŽ‰
  • firestore.channel(pathOrRef, type, buffer) now accepts an optional third argument, buffer, which defaults to buffers.none(). Thanks @ryansully! πŸŽ‰

Additions

v0.13.0

03 Jun 16:08
279331b
Compare
Choose a tag to compare

Additions

v0.12.0

19 Feb 22:00
Compare
Choose a tag to compare

Changes

  • The constructor new ReduxSagaFirebase(firebaseApp) now only accepts a firebase app. There is no need to pass a firebase.firestore() object anymore, as RSF now uses the built-in firestore instance (and, BTW, it's a bad idea to use firebase.firestore()).

v0.11.0

06 Feb 23:25
Compare
Choose a tag to compare

Updates

v0.10.0

21 Jan 13:19
Compare
Choose a tag to compare

Updates

v0.9.0

06 Jan 19:19
Compare
Choose a tag to compare

Additions

v0.8.0

01 Jan 16:53
Compare
Choose a tag to compare

Updates

v0.7.1

20 Nov 20:43
Compare
Choose a tag to compare

Fixes

  • Fixed a bug where the functions.call method was failing to detect the project id automatically in some cases. Thanks @juanialt! πŸŽ‰