Skip to content

Commit 3a4dced

Browse files
chore(release): version packages
1 parent 0c307e2 commit 3a4dced

File tree

6 files changed

+31
-37
lines changed

6 files changed

+31
-37
lines changed

.changeset/daemon-auto-restart.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/error-warning-counts.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/profile-diff.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/profile-export.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/agent-react-devtools/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# agent-react-devtools
22

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- 0c307e2: Track and expose component error/warning counts
8+
9+
Components now track error and warning counts from the React DevTools protocol (`UPDATE_ERRORS_OR_WARNINGS` operations).
10+
11+
- New `errors` command lists components with non-zero error or warning counts
12+
- `get component` output includes error/warning counts when non-zero
13+
- Tree, search, and component output annotates affected components (e.g., `@c5 [fn] Form ⚠2 ✗1`)
14+
15+
- 65c391f: Add `profile diff <before.json> <after.json>` command
16+
17+
- Compares two profiling exports side by side
18+
- Shows regressed, improved, new, and removed components
19+
- Aggregates by display name, computes avg/max duration deltas
20+
- Configurable threshold filters noise from insignificant changes (default 5%, adjust with `--threshold`)
21+
- No daemon required - works purely on exported JSON files
22+
23+
- 5c5ace6: Add `profile export <file>` command
24+
25+
- Exports profiling session as a JSON file compatible with the React DevTools Profiler
26+
- Import the file in the browser extension's Profiler tab to visualize flame graphs, ranked charts, and commit timelines
27+
- Includes commit data, fiber durations, change descriptions, effect durations, and component snapshots
28+
29+
### Patch Changes
30+
31+
- 68bd0fc: Auto-restart daemon when CLI detects the binary has been rebuilt since the daemon started. Previously, rebuilding the package required manually stopping and restarting the daemon for changes to take effect.
32+
333
## 0.3.0
434

535
### Minor Changes

packages/agent-react-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-react-devtools",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "CLI tool for AI agents to inspect React component trees and profile performance",
55
"type": "module",
66
"bin": {

0 commit comments

Comments
 (0)