8000 Release v58.0.0 · cozy/cozy-client · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

v58.0.0

Latest
Compare
Choose a tag to compare
@cozy-bot cozy-bot released this 07 May 12:43

58.0.0 (2025-05-07)

Features

  • Add disableStoreForQueries options to bypass store (8ab649c)
  • Use useCustomStore rather than store (eccc81e)

BREAKING CHANGES

  • to pass a custom store from the app, we used to rely on
    the boolean store option. 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 in useCustomStore to better reflect the
    intention.

If your application was using store: false in the cozy-client
instanciation, you should now use useCustomStore: true.

0