You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on Keep a Changelog,
6
6
and this project adheres to Semantic Versioning.
7
7
8
+
## [1.0.16] - 2026-05-03
9
+
### Changed
10
+
- Captured Requests table column order is now **▶ | Status | Method | ● | Path**, so Status is right after the include toggle and Path expands to fill the remaining width.
11
+
- Replay hit count is now shown inside the Status badge as `200 (3)` instead of as a separate column, making the table more compact and clearer.
12
+
### Fixed
13
+
- Per-row match indicator (●) and hit count now update live during replay. The popup listens to `chrome.storage.session` changes for `replayStats`, so each captured replay hit immediately re-renders the row (previously the table only refreshed on `recordingUpdated`/`newApiCall` messages, which the replayer doesn't send).
14
+
8
15
## [1.0.15] - 2026-05-03
9
16
### Changed
10
17
- Removed the Replay stats panel (Matched / Unmatched / Recent unmatched). The per-row green ● match indicator on the API requests list is now the single source of truth.
<th class="text-left p-1" title="Include this request when replaying">▶</th>
41
-
<th class="text-left p-1" title="${isReplaying ? 'Green = matched at least once during replay; gray = not yet matched' : 'Match indicator is shown during replay'}">●</th>
40
+
<th class="text-left p-1" title="HTTP response status (color-coded). Click to edit. Number in parentheses = replay hits.">Status</th>
42
41
<th class="text-left p-1">Method</th>
42
+
<th class="text-left p-1" title="${isReplaying ? 'Green = matched at least once during replay; gray = not yet matched' : 'Match indicator is shown during replay'}">●</th>
43
43
<th class="text-left p-1">Path</th>
44
-
<th class="text-left p-1" title="HTTP response status (color-coded). Click to edit.">St</th>
45
-
<th class="text-left p-1" title="Replay hits for this recorded path">#</th>
0 commit comments