Releases: prescottprue/redux-firestore
Releases · prescottprue/redux-firestore
v0.1.0-beta
- feat(query):
where
support in queries (single Array or Array of Arrays) - feat(query):
onSnapshot
is now an alias ofsetListener
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 internalstore.firestore
instance - #13 - feat(typings):
getFirestore
added to typscript typings - feat(docs): README updated with Query options
v0.1.0-alpha.3
- feat(core):
deleteRef
method added for deleting documents - feat(core):
delete
method added (alias ofdeleteRef
) - feat(reducers):
orderedReducer
always returns the results ofLISTENER_RESPONSE
- prevents bad data when usingdelete
v0.1.0-alpha.2
- fix(query): querying for a single doc in a collection fails - #12
- feat(reducer):
requesting
,requested
, andtimestamps
reducers moved to understatus
namespace - feat(config):
enhancerNamespace
andhelpersNamspace
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 sinceuse-lodash-es
does not supportlodash/fp
(used in reducers) - feat(build): include node v8 in travis builds (confirms tests pass for both node versions
6.11.1
and8
) - feat(build):
sinon
locked to3.3.0
to prevent issue running tests (Error Class Object returned instead of a normal object)
v0.1.0-alpha
- feat(core):
setListeners
,unsetListeners
for use infirestoreConnect
withinreact-redux-firebase
- feat(core):
add
,set
,update
, now correctly accept parameters (string and object) - #8