Skip to content

Commit edd4654

Browse files
committed
docs: next changelog
1 parent 9c1327e commit edd4654

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,48 @@ See the [Changesets](./.changeset) for the latest changes.
66

77
## [Unreleased]
88

9+
## [0.51.1] - 2025-01-01
10+
11+
### Fixed
12+
13+
Redesigned the recipe report to be more readable and easier to understand. We simplified the `JSX` and `Function`
14+
columns to be more concise.
15+
16+
**BEFORE**
17+
18+
```sh
19+
╔════════════════════════╤══════════════════════╤═════════╤═══════╤════════════╤═══════════════════╤══════════╗
20+
║ Recipe │ Variant Combinations │ Usage % │ JSX % │ Function % │ Most Used │ Found in
21+
╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢
22+
║ someRecipe (1 variant) │ 1 / 1 │ 100% │ 100% │ 0% │ size.small │ 1 file ║
23+
╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢
24+
║ button (4 variants) │ 7 / 9 │ 77.78% │ 63% │ 38% │ size.md, size.sm, │ 2 files ║
25+
║ │ │ │ │ │ state.focused, │ ║
26+
║ │ │ │ │ │ variant.danger, │ ║
27+
║ │ │ │ │ │ variant.primary │ ║
28+
╚════════════════════════╧══════════════════════╧═════════╧═══════╧════════════╧═══════════════════╧══════════╝
29+
```
30+
31+
**AFTER**
32+
33+
```sh
34+
╔════════════════════════╤════════════════╤═══════════════════╤═══════════════════╤══════════╤═══════════╗
35+
║ Recipe │ Variant values │ Usage % │ Most used │ Found in │ Used as ║
36+
╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢
37+
║ someRecipe (1 variant) │ 1 value │ 100% (1 value) │ size.small │ 1 file │ jsx: 100% ║
38+
║ │ │ │ │ │ fn: 0% ║
39+
╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢
40+
║ button (4 variants) │ 9 values │ 77.78% (7 values) │ size.md, size.sm, │ 2 files │ jsx: 63% ║
41+
║ │ │ │ state.focused, │ │ fn: 38% ║
42+
║ │ │ │ variant.danger, │ │ ║
43+
║ │ │ │ variant.primary │ │ ║
44+
╚════════════════════════╧════════════════╧═══════════════════╧═══════════════════╧══════════╧═══════════╝
45+
```
46+
47+
### Added
48+
49+
- Add support for `panda analyze --output <file>.json` to output the analysis results to a file.
50+
951
## [0.51.0] - 2024-12-31
1052

1153
**[BREAKING]**: Fix issue where Next.js build might fail intermittently due to version mismatch between internal

0 commit comments

Comments
 (0)