Skip to content

Commit b951169

Browse files
authored
Merge branch 'main' into michelle/red-89-update-docs-with-new-troubleshooting-cases
2 parents cf1cfec + 78c90e1 commit b951169

1 file changed

Lines changed: 26 additions & 2 deletions

File tree

detect/testing/playwright-reporter-changelog.mdx

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ description: Release history for the Checkly Playwright Reporter
55
rss: true
66
---
77

8-
For the latest updates, see the [npm package](https://www.npmjs.com/package/@checkly/playwright-reporter).
9-
108
View your test sessions at [app.checklyhq.com/test-sessions](https://app.checklyhq.com/test-sessions).
119

1210
Learn more about:
@@ -15,6 +13,32 @@ Learn more about:
1513

1614
## Full release history
1715

16+
<Update label="v1.4.0" tags={["February 2026"]}>
17+
**Added**
18+
19+
- **Secret scrubbing** - Automatically scrub sensitive values from reports and trace files. Configure via the new `scrubbing` option:
20+
- `envVars`: Array of environment variable names whose values should be scrubbed
21+
- `autoDetect`: Auto-detect secrets from env vars matching common patterns (SECRET, KEY, TOKEN, PASSWORD, CREDENTIAL, AUTH, PRIVATE, API)
22+
- `replacement`: Custom replacement string (default: `*********`)
23+
- Set `scrubbing: false` to disable scrubbing entirely
24+
25+
```typescript
26+
createChecklyReporter({
27+
scrubbing: {
28+
envVars: ['API_KEY', 'DB_PASSWORD'],
29+
autoDetect: true,
30+
replacement: '[REDACTED]'
31+
}
32+
})
33+
```
34+
35+
- **Improved network and console data** - Network requests now include detailed fields (domain, resource type, headers, timing, transfer/resource bytes). Console logs include location information. Resource types are automatically derived from Content-Type headers when not available.
36+
37+
**Changed**
38+
39+
- **Playwright 1.58 support** - Now tested against Playwright 1.58.0.
40+
</Update>
41+
1842
<Update label="v1.3.0" tags={["January 2026"]}>
1943
**Real-time test progress** - Shows test results as they run with status icons, error details, and summary. Similar to Playwright's `list` reporter. Disable with `showProgress: false` if using another reporter.
2044

0 commit comments

Comments
 (0)