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
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,11 @@ 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.14] - 2026-05-03
9
+
### Changed
10
+
- Replay status indicator moved above the Record/Replay tab buttons so the current state is visible regardless of the active tab.
11
+
- Per-request match indicator: each row in the API requests list now shows a green ● when it has been matched at least once during the current replay (gray when not yet matched, faded when not replaying). Matched rows are highlighted with a subtle green tint. Replaces the previous reliance on the global Matched/Unmatched stats which under-counted because of de-duplication by path.
12
+
8
13
## [1.0.13] - 2026-05-03
9
14
### Changed
10
15
- Replay stats now only count requests within the recording's URL filter (e.g. `/api`). Out-of-scope analytics calls (e.g. `/ingest/*`) no longer pollute Matched/Unmatched counters.
<th class="text-left p-1" title="Include this request when replaying">Replay</th>
24
+
<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>
21
25
<th class="text-left p-1">Method</th>
22
26
<th class="text-left p-1">Path</th>
23
27
<th class="text-left p-1">Status</th>
@@ -33,11 +37,23 @@ export function renderApiPaths(
0 commit comments