Skip to content

Releases: cozy/cozy-client

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

v51.6.0

10 Dec 16:14
Compare
Choose a tag to compare

51.6.0 (2024-12-10)

Features

  • Do not query /jobs/triggers with a partialFilter (bb380fa)

v51.5.0

10 Dec 08:22
Compare
Choose a tag to compare

51.5.0 (2024-12-10)

Bug Fixes

  • Fn hasQualifications was returning true for null / undefined values (0b7a40a)

Features

  • Add "none" translation in document themes (ac082de)

v51.4.0

29 Nov 14:52
Compare
Choose a tag to compare

51.4.0 (2024-11-29)

Features

  • Parallelize loadInstanceOptionsFromStacks queries (55dd291)

v51.3.1

28 Nov 09:35
Compare
Choose a tag to compare

51.3.1 (2024-11-28)

Note: Version bump only for package cozy-client

v51.3.0

21 Nov 09:55
Compare
Choose a tag to compare

51.3.0 (2024-11-21)

Features

  • Remove unused package @material-ui/core (8c2b582)

v51.2.0

21 Nov 09:16
Compare
Choose a tag to compare

51.2.0 (2024-11-21)

Features

  • Remove react-inspector from dependencies (fac50f1)
  • Update lerna from 4.0.0 to 8.1.9 (eb3e14f)

v51.1.0

19 Nov 14:32
Compare
Choose a tag to compare

51.1.0 (2024-11-19)

Features

  • Add legal_notice_url to InstanceData (12271e1)