From 4e1ba54920eccddac04661e412f4b5082d9a57ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 2 Dec 2024 14:20:56 +0000 Subject: [PATCH] Version Packages --- .changeset/chilly-rockets-bow.md | 5 ---- .changeset/gentle-eagles-run.md | 5 ---- .changeset/happy-houses-listen.md | 5 ---- .changeset/hip-bananas-obey.md | 5 ---- .changeset/lazy-roses-kick.md | 7 ------ .changeset/ninety-monkeys-notice.md | 5 ---- .changeset/soft-islands-decide.md | 13 ----------- .changeset/stupid-eagles-destroy.md | 5 ---- .changeset/witty-dodos-peel.md | 6 ----- packages/fuselage-hooks/CHANGELOG.md | 6 +++++ packages/fuselage-hooks/package.json | 2 +- packages/fuselage-tokens/CHANGELOG.md | 6 +++++ packages/fuselage-tokens/package.json | 2 +- packages/fuselage/CHANGELOG.md | 33 +++++++++++++++++++++++++++ packages/fuselage/package.json | 2 +- packages/logo/CHANGELOG.md | 7 ++++++ packages/logo/package.json | 2 +- packages/mp3-encoder/CHANGELOG.md | 6 +++++ packages/mp3-encoder/package.json | 2 +- 19 files changed, 63 insertions(+), 61 deletions(-) delete mode 100644 .changeset/chilly-rockets-bow.md delete mode 100644 .changeset/gentle-eagles-run.md delete mode 100644 .changeset/happy-houses-listen.md delete mode 100644 .changeset/hip-bananas-obey.md delete mode 100644 .changeset/lazy-roses-kick.md delete mode 100644 .changeset/ninety-monkeys-notice.md delete mode 100644 .changeset/soft-islands-decide.md delete mode 100644 .changeset/stupid-eagles-destroy.md delete mode 100644 .changeset/witty-dodos-peel.md diff --git a/.changeset/chilly-rockets-bow.md b/.changeset/chilly-rockets-bow.md deleted file mode 100644 index b45864a643..0000000000 --- a/.changeset/chilly-rockets-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rocket.chat/fuselage': patch ---- - -Fixes a bug that adds an extra whitespace when concatenating class names with `appendClassName` diff --git a/.changeset/gentle-eagles-run.md b/.changeset/gentle-eagles-run.md deleted file mode 100644 index 442c559987..0000000000 --- a/.changeset/gentle-eagles-run.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rocket.chat/fuselage': patch ---- - -fix(fuselage): `Select` disabled opening with keyboard diff --git a/.changeset/happy-houses-listen.md b/.changeset/happy-houses-listen.md deleted file mode 100644 index 3d612ac44f..0000000000 --- a/.changeset/happy-houses-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@rocket.chat/fuselage": patch ---- - -Changes the `contextualbar` z-index to avoid UI glitches on pages where it needs to appear on top of the `Table` diff --git a/.changeset/hip-bananas-obey.md b/.changeset/hip-bananas-obey.md deleted file mode 100644 index 6db27fbf97..0000000000 --- a/.changeset/hip-bananas-obey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rocket.chat/fuselage': patch ---- - -fix(fuselage): `CodeSnippet` inheriting `code` css styles diff --git a/.changeset/lazy-roses-kick.md b/.changeset/lazy-roses-kick.md deleted file mode 100644 index 6bb43838e1..0000000000 --- a/.changeset/lazy-roses-kick.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@rocket.chat/fuselage': minor ---- - -Simplifies `Skeleton` - -It replaces the dependency on `Box` with `StylingBox` and implements a new background animation. diff --git a/.changeset/ninety-monkeys-notice.md b/.changeset/ninety-monkeys-notice.md deleted file mode 100644 index cfeea39054..0000000000 --- a/.changeset/ninety-monkeys-notice.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rocket.chat/mp3-encoder': patch ---- - -Suppressed assertions at the LAME encoding due to unknown `NaN` values diff --git a/.changeset/soft-islands-decide.md b/.changeset/soft-islands-decide.md deleted file mode 100644 index 22a87e4dcb..0000000000 --- a/.changeset/soft-islands-decide.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@rocket.chat/fuselage": minor ---- - -Simplifies `Accordion` and `AccordionItem` - -It removes an obsolete and not accessible toggle switch in `AccordionItem` and eases the internal usage of `Box` to -improve rendering performance. - -Additionally, it adds a new `StylingBox` component that can be used as a wrapper for components that accept styling -props but don't need the weight of the `Box` component prop handling internally. - -Also, it adds a new `cx` and `cxx` helpers to compose class names. diff --git a/.changeset/stupid-eagles-destroy.md b/.changeset/stupid-eagles-destroy.md deleted file mode 100644 index bff8b93b1d..0000000000 --- a/.changeset/stupid-eagles-destroy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@rocket.chat/fuselage-tokens": patch ---- - -fix(fuselage-tokens): incorrect color tokens on Button's success variant diff --git a/.changeset/witty-dodos-peel.md b/.changeset/witty-dodos-peel.md deleted file mode 100644 index 42e35dd2c0..0000000000 --- a/.changeset/witty-dodos-peel.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@rocket.chat/fuselage-hooks': minor -'@rocket.chat/fuselage': patch ---- - -Enables hooks' compatibility with React 18 diff --git a/packages/fuselage-hooks/CHANGELOG.md b/packages/fuselage-hooks/CHANGELOG.md index 6832154b84..15335d986f 100644 --- a/packages/fuselage-hooks/CHANGELOG.md +++ b/packages/fuselage-hooks/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.34.0 + +### Minor Changes + +- [#1483](https://github.com/RocketChat/fuselage/pull/1483) [`4910d29`](https://github.com/RocketChat/fuselage/commit/4910d294defc1effc0b857f44138498a73013877) Thanks [@tassoevan](https://github.com/tassoevan)! - Enables hooks' compatibility with React 18 + ## 0.33.1 ### Patch Changes diff --git a/packages/fuselage-hooks/package.json b/packages/fuselage-hooks/package.json index 2d11ffb050..728455e863 100644 --- a/packages/fuselage-hooks/package.json +++ b/packages/fuselage-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@rocket.chat/fuselage-hooks", - "version": "0.33.1", + "version": "0.34.0", "description": "React hooks for Fuselage, Rocket.Chat's design system and UI toolkit", "homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/", "author": { diff --git a/packages/fuselage-tokens/CHANGELOG.md b/packages/fuselage-tokens/CHANGELOG.md index 65b5ed4603..4c03683c02 100644 --- a/packages/fuselage-tokens/CHANGELOG.md +++ b/packages/fuselage-tokens/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.33.2 + +### Patch Changes + +- [#1471](https://github.com/RocketChat/fuselage/pull/1471) [`0b4e37a`](https://github.com/RocketChat/fuselage/commit/0b4e37aea8ca562d7cdf453824dd5c514ede349d) Thanks [@aleksandernsilva](https://github.com/aleksandernsilva)! - fix(fuselage-tokens): incorrect color tokens on Button's success variant + ## 0.33.1 ### Patch Changes diff --git a/packages/fuselage-tokens/package.json b/packages/fuselage-tokens/package.json index ea95ad1fe1..18671cdcb1 100644 --- a/packages/fuselage-tokens/package.json +++ b/packages/fuselage-tokens/package.json @@ -1,6 +1,6 @@ { "name": "@rocket.chat/fuselage-tokens", - "version": "0.33.1", + "version": "0.33.2", "description": "Design tokens for Fuselage, Rocket.Chat's design system", "homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/", "author": { diff --git a/packages/fuselage/CHANGELOG.md b/packages/fuselage/CHANGELOG.md index cfcc680a28..988eec382f 100644 --- a/packages/fuselage/CHANGELOG.md +++ b/packages/fuselage/CHANGELOG.md @@ -1,5 +1,38 @@ # Change Log +## 0.60.0 + +### Minor Changes + +- [#1475](https://github.com/RocketChat/fuselage/pull/1475) [`e86ad6f`](https://github.com/RocketChat/fuselage/commit/e86ad6fcb41454a3df41ee110f4dbc13e031fe71) Thanks [@tassoevan](https://github.com/tassoevan)! - Simplifies `Skeleton` + + It replaces the dependency on `Box` with `StylingBox` and implements a new background animation. + +- [#1470](https://github.com/RocketChat/fuselage/pull/1470) [`86fe018`](https://github.com/RocketChat/fuselage/commit/86fe018577b24adf3b7ff7c7631aed36b7caa466) Thanks [@tassoevan](https://github.com/tassoevan)! - Simplifies `Accordion` and `AccordionItem` + + It removes an obsolete and not accessible toggle switch in `AccordionItem` and eases the internal usage of `Box` to + improve rendering performance. + + Additionally, it adds a new `StylingBox` component that can be used as a wrapper for components that accept styling + props but don't need the weight of the `Box` component prop handling internally. + + Also, it adds a new `cx` and `cxx` helpers to compose class names. + +### Patch Changes + +- [#1474](https://github.com/RocketChat/fuselage/pull/1474) [`fd15f2b`](https://github.com/RocketChat/fuselage/commit/fd15f2bd7bc1fda6e8a34edc4fe5be974cb04210) Thanks [@tassoevan](https://github.com/tassoevan)! - Fixes a bug that adds an extra whitespace when concatenating class names with `appendClassName` + +- [#1487](https://github.com/RocketChat/fuselage/pull/1487) [`9e64011`](https://github.com/RocketChat/fuselage/commit/9e6401101b9bd8ef3b9685ecc7f8230dade8f472) Thanks [@juliajforesti](https://github.com/juliajforesti)! - fix(fuselage): `Select` disabled opening with keyboard + +- [#1428](https://github.com/RocketChat/fuselage/pull/1428) [`5cfac08`](https://github.com/RocketChat/fuselage/commit/5cfac085d329dd6d418e38d5692d5b668aa621b9) Thanks [@rique223](https://github.com/rique223)! - Changes the `contextualbar` z-index to avoid UI glitches on pages where it needs to appear on top of the `Table` + +- [#1490](https://github.com/RocketChat/fuselage/pull/1490) [`418dd23`](https://github.com/RocketChat/fuselage/commit/418dd2340e75010e4ba3f16a787d2ac8a0c333ab) Thanks [@dougfabris](https://github.com/dougfabris)! - fix(fuselage): `CodeSnippet` inheriting `code` css styles + +- [#1483](https://github.com/RocketChat/fuselage/pull/1483) [`4910d29`](https://github.com/RocketChat/fuselage/commit/4910d294defc1effc0b857f44138498a73013877) Thanks [@tassoevan](https://github.com/tassoevan)! - Enables hooks' compatibility with React 18 + +- Updated dependencies [[`0b4e37a`](https://github.com/RocketChat/fuselage/commit/0b4e37aea8ca562d7cdf453824dd5c514ede349d)]: + - @rocket.chat/fuselage-tokens@0.33.2 + ## 0.59.3 ### Patch Changes diff --git a/packages/fuselage/package.json b/packages/fuselage/package.json index ed13be04e3..10ca1be30f 100644 --- a/packages/fuselage/package.json +++ b/packages/fuselage/package.json @@ -1,6 +1,6 @@ { "name": "@rocket.chat/fuselage", - "version": "0.59.3", + "version": "0.60.0", "description": "Rocket.Chat's React Components Library", "author": { "name": "Rocket.Chat", diff --git a/packages/logo/CHANGELOG.md b/packages/logo/CHANGELOG.md index 85d6f1e39a..3a9097c502 100644 --- a/packages/logo/CHANGELOG.md +++ b/packages/logo/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.31.31 + +### Patch Changes + +- Updated dependencies [[`4910d29`](https://github.com/RocketChat/fuselage/commit/4910d294defc1effc0b857f44138498a73013877)]: + - @rocket.chat/fuselage-hooks@0.34.0 + ## 0.31.30 ### Patch Changes diff --git a/packages/logo/package.json b/packages/logo/package.json index 01d75dff48..9b09d5d469 100644 --- a/packages/logo/package.json +++ b/packages/logo/package.json @@ -1,6 +1,6 @@ { "name": "@rocket.chat/logo", - "version": "0.31.30", + "version": "0.31.31", "description": "Rocket.Chat logo package", "keywords": [ "rocketchat", diff --git a/packages/mp3-encoder/CHANGELOG.md b/packages/mp3-encoder/CHANGELOG.md index 162d41aabd..5270e938be 100644 --- a/packages/mp3-encoder/CHANGELOG.md +++ b/packages/mp3-encoder/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.31.26 + +### Patch Changes + +- [#1481](https://github.com/RocketChat/fuselage/pull/1481) [`8084488`](https://github.com/RocketChat/fuselage/commit/80844881787fb8c5679ac5bcd18e43ddc23a8673) Thanks [@tassoevan](https://github.com/tassoevan)! - Suppressed assertions at the LAME encoding due to unknown `NaN` values + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/mp3-encoder/package.json b/packages/mp3-encoder/package.json index 5fad6237e0..cb783695a1 100644 --- a/packages/mp3-encoder/package.json +++ b/packages/mp3-encoder/package.json @@ -1,6 +1,6 @@ { "name": "@rocket.chat/mp3-encoder", - "version": "0.31.25", + "version": "0.31.26", "description": "A LAME encoder to be used in web workers", "homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/", "author": {