redux-firestore

Redux bindings for Firestore

MIT License

Downloads
13.6K
Stars
575
Committers
27

Bot releases are visible (Hide)

redux-firestore - v0.1.0-beta

Published by prescottprue almost 7 years ago

  • feat(query): where support in queries (single Array or Array of Arrays)
  • feat(query): onSnapshot is now an alias of setListener instead of being its own function
  • fix(query): correctly dispatching LISTENER_ERROR action type on query listener errors
  • feat(query): query name within reducers includes where
  • feat(core): getFirestore added to get internal store.firestore instance - #13
  • feat(typings): getFirestore added to typscript typings
  • feat(docs): README updated with Query options
redux-firestore - v0.1.0-alpha.3

Published by prescottprue almost 7 years ago

  • feat(core): deleteRef method added for deleting documents
  • feat(core): delete method added (alias of deleteRef)
  • feat(reducers): orderedReducer always returns the results of LISTENER_RESPONSE - prevents bad data when using delete
redux-firestore - v0.1.0-alpha.2

Published by prescottprue almost 7 years ago

  • fix(query): querying for a single doc in a collection fails - #12
  • feat(reducer): requesting, requested, and timestamps reducers moved to under status namespace
  • feat(config): enhancerNamespace and helpersNamspace config options exposed
  • feat(core): Remaining Storage and Auth logic/constants removed
  • feat(build): remove prepublish npm script since it is deprecated in npm 5 (prepare takes its place)
  • feat(build): babel-plugin-lodash added to shrink build size since use-lodash-es does not support lodash/fp (used in reducers)
  • feat(build): include node v8 in travis builds (confirms tests pass for both node versions 6.11.1 and 8)
  • feat(build): sinon locked to 3.3.0 to prevent issue running tests (Error Class Object returned instead of a normal object)
redux-firestore - v0.1.0-alpha

Published by prescottprue about 7 years ago

  • feat(core): setListeners, unsetListeners for use in firestoreConnect within react-redux-firebase
  • feat(core): add, set, update, now correctly accept parameters (string and object) - #8