Skip to content

Releases: prescottprue/redux-firestore

v0.1.0-beta

30 Oct 10:47
fba7d52
Compare
Choose a tag to compare
v0.1.0-beta Pre-release
Pre-release
  • 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

v0.1.0-alpha.3

29 Oct 09:35
077ca8b
Compare
Choose a tag to compare
v0.1.0-alpha.3 Pre-release
Pre-release
  • 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

v0.1.0-alpha.2

24 Oct 00:32
Compare
Choose a tag to compare
v0.1.0-alpha.2 Pre-release
Pre-release
  • 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)

v0.1.0-alpha

19 Oct 08:20
Compare
Choose a tag to compare
v0.1.0-alpha Pre-release
Pre-release
  • 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