Skip to content

fix(deps): update dependency cozy-client to v52

Renovate-Bot requested to merge renovate/cozy-client-52.x into dev

This MR contains the following updates:

Package Type Update Change
cozy-client dependencies major 49.1.1 -> 52.0.0

Release Notes

cozy/cozy-client

v52.0.0

Compare Source

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

Compare Source

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

51.6.1 (2024-12-16)

Note: Version bump only for package cozy-client

v51.6.1

Compare Source

Note: Version bump only for package cozy-client

v51.6.0

Compare Source

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

v51.5.0

Compare Source

Bug Fixes
  • Fn hasQualifications was returning true for null / undefined values (0b7a40a)
Features
  • Add "none" translation in document themes (ac082de)

v51.4.0

Compare Source

Features
  • Parallelize loadInstanceOptionsFromStacks queries (55dd291)

51.3.1 (2024-11-28)

Note: Version bump only for package cozy-client

v51.3.1

Compare Source

Note: Version bump only for package cozy-client

v51.3.0

Compare Source

Features

v51.2.0

Compare Source

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

v51.1.0

Compare Source

Features
  • Add legal_notice_url to InstanceData (12271e1)

51.0.1 (2024-11-15)

Bug Fixes
  • Add missing fields on CozyMetadata for io.cozy.files (2457269)

v51.0.1

Compare Source

Bug Fixes
  • Add missing fields on CozyMetadata for io.cozy.files (2457269)

v51.0.0

Compare Source

Features
BREAKING CHANGES
  • you no longer need cozy-ui as dep for cozy-client usage
  • you must change the import of devtools from import CozyDevtools from 'cozy-client/dist/devtools' to import CozyDevtools from 'cozy-devtools'

v50.4.0

Compare Source

Features
  • FileCollection: Add getAll(), and so Q(io.cozy.files).getByIds (8463cc4)

50.3.1 (2024-11-06)

Bug Fixes
  • Set correct type for limitBy() limit argument in DSL (658ec8c)

v50.3.1

Compare Source

Bug Fixes
  • Set correct type for limitBy() limit argument in DSL (658ec8c)

v50.2.0

Compare Source

Features

v50.1.0

Compare Source

Bug Fixes
Features

v50.0.0

Compare Source

Features
BREAKING CHANGES
  • useClientErrors has been removed. You must have cozy-ui >= 112.0.0 and import it from there import { useClientErrors } from 'cozy-ui/transpiled/react/hooks/useClientErrors'

v49.8.0

Compare Source

Features
  • Handle timeout errors for mango queries (aa1018a)

49.7.1 (2024-10-17)

Bug Fixes
  • mango: Order alphabetically object inside arrays based on 1st key (0e86883)

v49.7.1

Compare Source

Bug Fixes
  • mango: Order alphabetically object inside arrays based on 1st key (0e86883)

v49.6.0

Compare Source

Features
  • Adding missing attributes inside FileDocument (f623c80)

v49.4.0

Compare Source

Bug Fixes
  • RealTimeQueries: Unsubscribing from the good functions (dbeaed7)
Features
  • Spread attributes from JSON:API at document root (f9f0ffd)
  • Use JSON:API normalizer instead custom ones inside collection (d86616d)
  • Use normalization from exported modules instead static functions (259235d)

49.3.1 (2024-10-09)

Note: Version bump only for package cozy-client

v49.3.1

Compare Source

Note: Version bump only for package cozy-client

v49.3.0

Compare Source

Features
  • Add type for externalDataSource.creator (a3326b8)

v49.2.0

Compare Source

Features
  • Apply data enhancement to realtime results for specific doctypes (7984d6d)

49.1.1 (2024-10-04)

Bug Fixes
  • Revert some updates to file metadata types (b4c32a5)

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever MR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, click this checkbox.

This MR has been generated by Renovate Bot.

Merge request reports

Loading