Skip to content

Releases: cozy/cozy-client

v60.7.0

09 Sep 06:14
Compare
Choose a tag to compare

60.7.0 (2025-09-09)

Features

v60.6.0

05 Sep 14:28
Compare
Choose a tag to compare

60.6.0 (2025-09-05)

Bug Fixes

  • Add options to DocumentCollection constructor (9f02fc5)

Features

  • Support shared drive for note creation and fetch (2a6a003)

v60.5.1

02 Sep 07:44
Compare
Choose a tag to compare

60.5.1 (2025-09-02)

Bug Fixes

  • Prevent infinite loop on replication refresh token (a4bb7e0)

v60.5.0

28 Aug 14:32
Compare
Choose a tag to compare

60.5.0 (2025-08-28)

Features

  • ContactModel: Add some helpers from Contacts app (1becaf9)

v60.4.0

28 Aug 13:43
Compare
Choose a tag to compare

60.4.0 (2025-08-28)

Features

  • Make startReplicationDebounce run immediatly at first call (17d6d0e)

v60.3.0

27 Aug 09:30
Compare
Choose a tag to compare

60.3.0 (2025-08-27)

Features

  • Add driveId parameter to file model methods (0b5d76c)

v60.2.0

25 Aug 09:05
Compare
Choose a tag to compare

60.2.0 (2025-08-25)

Features

  • Queue DataProxy requests when it is not ready (4b4c5fd)

v60.1.1

24 Jul 08:16
Compare
Choose a tag to compare

60.1.1 (2025-07-24)

Bug Fixes

  • Reference creation through hydratation (251008e)

v60.1.0

23 Jul 07:20
Compare
Choose a tag to compare

60.1.0 (2025-07-23)

Bug Fixes

  • Set sharingId in definition (ff80f30)

Features

  • Allow querying shared drives documents (6e228c8)
  • FileCollection uses proxy for shared drives (7628760)
  • Rename dsl method to sharingById (5454275)

v60.0.0

17 Jul 13:08
Compare
Choose a tag to compare

60.0.0 (2025-07-17)

Bug Fixes

  • Correctly fetch documents relationships (ff6e884)

Features

  • Do not hydrate doc if the relationship does not exist (d369a33)
  • Improve React performances by avoiding useless renders (13fafdf)
  • Remove makeNewDocument API method (678c1dd)

BREAKING CHANGES

  • the relationship hydration is made only if the
    relationship exists in the document, so the developer should not assume
    a document.relationshipName is always defined, anymore.
    As an alternative, it is possible to pass autoHydrate on
    cozy-client options to ease migration, e.g:
const newClient = new CozyClient({
  schema,
  autoHydrate: true
})

However, please not this has performance impact, as it forces
extra-check on store queries evaluation.

  • client.makeNewDocument no longer exists, please
    remove any code using it.

This method was not very useful and was relying on the full hydratation
of the schema relationships. This behaviour should be changed
eventually.