From b5fcba1bc64310eda79094cec63118cf986f6ad5 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 1 Jul 2022 14:45:57 +0000 Subject: [PATCH] chore(release): 69.0.0 [skip ci] # [69.0.0](https://github.com/cozy/cozy-ui/compare/v68.9.1...v69.0.0) (2022-07-01) ### Bug Fixes * **Typography:** Removed forced color ([1880d93](https://github.com/cozy/cozy-ui/commit/1880d93)) ### BREAKING CHANGES * **Typography:** Old deprecated texts components are removed : `Text`, `Title`, `MainTitle`, `SubTitle`, `Bold`, `Uppercase`, `Caption`, `ErrorMessage`, `NewSubTitle` from `/react/Text`. You now have to rely on `Typography` component. You can use a codemod for that : ``` $ yarn global add @cozy/codemods $ jscodeshift -t $(yarn global dir)/node_modules/@cozy/codemods/src/transforms/transform-typography.js src --parser babel --ignore-pattern=src/targets/ --extensions js,jsx ``` --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f0610b8d5..1d6acca74e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [69.0.0](https://github.com/cozy/cozy-ui/compare/v68.9.1...v69.0.0) (2022-07-01) + + +### Bug Fixes + +* **Typography:** Removed forced color ([1880d93](https://github.com/cozy/cozy-ui/commit/1880d93)) + + +### BREAKING CHANGES + +* **Typography:** Old deprecated texts components are removed : `Text`, `Title`, `MainTitle`, `SubTitle`, `Bold`, `Uppercase`, `Caption`, `ErrorMessage`, `NewSubTitle` from `/react/Text`. You now have to rely on `Typography` component. You can use a codemod for that : +``` +$ yarn global add @cozy/codemods +$ jscodeshift -t $(yarn global dir)/node_modules/@cozy/codemods/src/transforms/transform-typography.js src --parser babel --ignore-pattern=src/targets/ --extensions js,jsx +``` + ## [68.9.1](https://github.com/cozy/cozy-ui/compare/v68.9.0...v68.9.1) (2022-06-30)