Skip to content

Releases: cozy/cozy-client

v47.6.0

28 May 09:29
Compare
Choose a tag to compare

47.6.0 (2024-05-28)

Features

  • Add support for io.cozy.bills in models/paper (fe7ac2d)

v47.5.0

23 May 10:28
Compare
Choose a tag to compare

47.5.0 (2024-05-23)

Features

  • Qualification: Add tax certificate qualification (b60c68c)

v47.4.0

23 May 09:20
Compare
Choose a tag to compare

47.4.0 (2024-05-23)

Bug Fixes

  • useQuery: Add function type for definition prop (21fca5c)

Features

  • Add a collection to access files into a Nextcloud (332ce42)
  • nextcloud: Download a file (df1dc7f)

v47.3.0

23 May 07:33
Compare
Choose a tag to compare

47.3.0 (2024-05-23)

Features

  • Qualification: Change work & activity themes icon (89035ea)

v47.2.0

21 May 13:34
Compare
Choose a tag to compare

47.2.0 (2024-05-21)

Features

  • We make sure that the translation key matches to an alpha-2 code (c70466f)

v47.1.2

17 May 15:13
Compare
Choose a tag to compare

47.1.2 (2024-05-17)

Bug Fixes

  • models/document: Rename "stranger" locale (38a0f68)

v47.1.1

17 May 13:00
Compare
Choose a tag to compare

47.1.1 (2024-05-17)

Bug Fixes

  • models/paper: Translate country metadata only if valid (20be1ba)

v47.1.0

17 May 10:53
Compare
Choose a tag to compare

47.1.0 (2024-05-17)

Features

  • models/paper: Add translation of "country" metadata (1be7f48)

v47.0.0

17 May 08:42
Compare
Choose a tag to compare

47.0.0 (2024-05-17)

Features

  • countries: COUNTRIES_ISO has ISO codes only (8a76d13)
  • countries: The getEmojiByCountry return null (7ab15f2)
  • models: Move the "countries" file to a specific folder (ef87f93)
  • Move getEmojiByCountry to country model (f25874e)

BREAKING CHANGES

  • Please replace your import paths
    Before:
import { getEmojiByCountry } from "cozy-client/dist/models/document/emojiCountry"

After:

import { getEmojiByCountry } from "cozy-client/dist/models/country/countries"
  • countries: To manage the different translations
    of country names, it's best to extract the name attribute.
    If you're using the COUNTRIES_ISO constant
    to retrieve country names,
    please use the getAllCountryNames function now.
  • models: Please replace your import paths
    Before:
import { COUNTRIES_ISO, checkCountryCode } from "cozy-client/dist/models/countries"

After:

import { COUNTRIES_ISO, checkCountryCode } from "cozy-client/dist/models/country/countries"

For future needs (translation), it is preferable to move this file.

v46.11.0

15 May 12:17
Compare
Choose a tag to compare

46.11.0 (2024-05-15)

Features

  • Update getEmojiByCountry function (12ffdd2)