v58.0.0
58.0.0 (2025-05-07)
Features
- Add disableStoreForQueries options to bypass store (8ab649c)
- Use
useCustomStorerather thanstore(eccc81e)
BREAKING CHANGES
- to pass a custom store from the app, we used to rely on
the booleanstoreoption. The naming is confusing, because we could
interpret it as completely disabling the redux store, which is not the
case, as the aim is to use either the cozy-client internal store, or the
application own store. It was also confusing in the code, as the store
variable is the store itself.
Thus, we rename the option inuseCustomStoreto better reflect the
intention.
If your application was using store: false in the cozy-client
instanciation, you should now use useCustomStore: true.