Skip to content

Releases: cozy/cozy-client

v53.1.1

29 Jan 09:51
Compare
Choose a tag to compare

53.1.1 (2025-01-29)

Bug Fixes

  • Do not read pouch adapter name at login (b21118e)
  • Links' onLogin should be awaited (8a63504)

v53.1.0

21 Jan 14:38
Compare
Choose a tag to compare

53.1.0 (2025-01-21)

Features

  • Add helpers for encrypted files (715b77a)

v53.0.0

21 Jan 09:58
Compare
Choose a tag to compare

53.0.0 (2025-01-21)

Features

  • models/sharing: Add verbs param to getSharingLink function (6a47793)
  • models/sharing: Rename getSharingLink to makeSharingLink (d1f9557)
  • permissionColl: Improve add method (b2d2c73)
  • PermissionColl: Normalize params between create (1d7a4a2)

BREAKING CHANGES

  • models/sharing: Rename getSharingLink to makeSharingLink.

This function creates or updates a share link.

  • PermissionColl: By default, the name of the attribute returned
    via createSharingLink is no longer email but code.
    You can either adapt your code accordingly or
    simply add the option { codes: 'email' } when calling createSharingLink.

v52.2.0

20 Jan 15:49
Compare
Choose a tag to compare

52.2.0 (2025-01-20)

Features

v52.1.1

15 Jan 16:31
Compare
Choose a tag to compare

52.1.1 (2025-01-15)

Bug Fixes

  • konnectors: Avoid creating multiple konnector folders (14ec6c4)

v52.1.0

06 Jan 15:13
Compare
Choose a tag to compare

52.1.0 (2025-01-06)

Features

  • Add new qualification helpers (44688e2)

v52.0.1

06 Jan 10:42
Compare
Choose a tag to compare

52.0.1 (2025-01-06)

Bug Fixes

  • models/paper: Change date format (d054820)

v52.0.0

20 Dec 17:16
Compare
Choose a tag to compare

52.0.0 (2024-12-20)

Features

  • Allow to enforce Stack link on request chain (6aac845)

BREAKING CHANGES

  • CozyLink's request methods now takes an additional
    options argument that can be used to enforce usage of Stack link.
    Although .request() is meant to be an internal API, if your code
    calls it, you'll want to introduce a new argument for options. This
    is also the case if you instanciate a new CozyLink with a handler
    argument for request

Before:

// Initialization
new CozyLink((operation, result = '', forward) => {
  return forward(operation, result + 'foo')
})

// Call
link.request(operation)

// Call with result and forward
link.request(operation, null, () => { /* do stuff */ })

After:

// Initialization
new CozyLink((operation, options, result = '', forward) => {
  return forward(operation, options, result + 'foo')
})

// Call
link.request(operation, options)

// Call with result and forward
link.request(operation, options, null, () => { /* do stuff */ })

v51.7.0

20 Dec 17:07
Compare
Choose a tag to compare

51.7.0 (2024-12-20)

Features

  • Add PerformanceApi to CozyClient (3e42ea4)
  • Add PerformanceApi to CozyClient's store (8da242d)
  • Add PerformanceApi to CozyPouchLink (247db09)
  • Add PerformanceApi to StackLink (9c4f3b1)

v51.6.1

16 Dec 08:49
Compare
Choose a tag to compare

51.6.1 (2024-12-16)

Note: Version bump only for package cozy-client