@checkly/playwright-reporter 1.6.1 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ All notable changes to `@checkly/playwright-reporter` will be documented in this
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
+ ## 1.7.1 (2026-03-01)
8
+
9
+ ### Added
10
+
11
+ - **Reporter version tracking** - The reporter version is now embedded in every report, making it visible in the Checkly UI alongside your check results.
12
+
13
+ ## 1.7.0 (2026-02-27)
14
+
15
+ ### Added
16
+
17
+ - **Sensitive header scrubbing** - HTTP headers like `Authorization`, `Cookie`, `Set-Cookie`, `Proxy-Authorization`, `X-API-Key`, and `X-Auth-Token` are now automatically redacted from reports and traces when scrubbing is enabled — no configuration needed. This prevents tokens and session cookies from leaking through network request data, even if their values aren't registered as secrets. Disable with `scrubbing: { sensitiveHeaders: false }` or pass a custom list of header names to control which headers are redacted.
18
+
7
19
  ## 1.6.1 (2026-02-27)
8
20
 
9
21
  ### Fixed
package/dist/index.d.ts CHANGED
@@ -49,6 +49,7 @@ interface JSONReport extends Omit<JSONReport$1, 'config' | 'stats'> {
49
49
  systemMetrics: SystemMetrics;
50
50
  };
51
51
  _checkly?: {
52
+ reporterVersion?: string;
52
53
  sourceFiles?: Record<string, string>;
53
54
  };
54
55
  }
@@ -128,6 +129,12 @@ interface ScrubbingOptions {
128
129
  * Custom replacement string for scrubbed values.
129
130
  */
130
131
  replacement?: string;
132
+ /**
133
+ * HTTP header names whose values should always be redacted, regardless of secret matching.
134
+ * Defaults to well-known sensitive headers (Authorization, Cookie, Set-Cookie, etc.).
135
+ * Pass `false` to disable header-name-based scrubbing entirely.
136
+ */
137
+ sensitiveHeaders?: string[] | false;
131
138
  }
132
139
 
133
140
  /**