Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1472

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/chilly-rockets-bow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-eagles-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-houses-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-bananas-obey.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/lazy-roses-kick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-monkeys-notice.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/soft-islands-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-eagles-destroy.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/witty-dodos-peel.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/fuselage-hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/fuselage-hooks/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 6 additions & 0 deletions packages/fuselage-tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/fuselage-tokens/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
33 changes: 33 additions & 0 deletions packages/fuselage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]

## 0.59.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fuselage/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions packages/logo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.31.31

### Patch Changes

- Updated dependencies [[`4910d29`](https://github.com/RocketChat/fuselage/commit/4910d294defc1effc0b857f44138498a73013877)]:
- @rocket.chat/[email protected]

## 0.31.30

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/logo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rocket.chat/logo",
"version": "0.31.30",
"version": "0.31.31",
"description": "Rocket.Chat logo package",
"keywords": [
"rocketchat",
Expand Down
6 changes: 6 additions & 0 deletions packages/mp3-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion packages/mp3-encoder/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down