@tracelane/playwright 0.1.0-alpha.7 → 0.1.0-alpha.8

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.
Files changed (2) hide show
  1. package/README.md +19 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -10,6 +10,10 @@
10
10
  [![downloads](https://img.shields.io/npm/dw/@tracelane/playwright.svg)](https://www.npmjs.com/package/@tracelane/playwright)
11
11
  [![license](https://img.shields.io/npm/l/@tracelane/playwright.svg)](https://github.com/Cubenest/rrweb-stack/blob/main/LICENSE)
12
12
  [![CI](https://github.com/Cubenest/rrweb-stack/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Cubenest/rrweb-stack/actions/workflows/ci.yml)
13
+ [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/Cubenest/rrweb-stack/badge)](https://scorecard.dev/viewer/?uri=github.com/Cubenest/rrweb-stack)
14
+ [![types](https://img.shields.io/npm/types/@tracelane/playwright.svg)](https://www.npmjs.com/package/@tracelane/playwright)
15
+ [![node](https://img.shields.io/node/v/@tracelane/playwright.svg)](https://www.npmjs.com/package/@tracelane/playwright)
16
+ ![status: alpha](https://img.shields.io/badge/status-alpha-orange.svg)
13
17
 
14
18
  Docs: <https://tracelane.cubenest.in>
15
19
 
@@ -19,7 +23,7 @@ Docs: <https://tracelane.cubenest.in>
19
23
  npm install --save-dev @tracelane/playwright
20
24
  ```
21
25
 
22
- `@playwright/test` (>= 1.40) is a peer dependency — you already have it.
26
+ `@playwright/test` (>= 1.40) is a peer dependency — you already have it. Requires **Node >= 22**.
23
27
 
24
28
  ## Wire it (two edits)
25
29
 
@@ -112,4 +116,17 @@ It carries only advisory `{ signal?, evidence? }` rules — no secrets — so re
112
116
 
113
117
  ## License
114
118
 
115
- Apache-2.0. See [`NOTICE`](./NOTICE) for bundled third-party software (the rrweb fork + console plugin).
119
+ Apache-2.0. See [`NOTICE`](https://github.com/Cubenest/rrweb-stack/blob/main/packages/tracelane-playwright/NOTICE) for bundled third-party software (the rrweb fork + console plugin).
120
+
121
+ For the privacy/security posture of the capture (what is and isn't recorded, masking, and the advisory security-hygiene signals), see the [security notes](https://github.com/Cubenest/rrweb-stack/blob/main/docs/SECURITY-NOTES.md).
122
+
123
+ Full version history: [CHANGELOG](https://github.com/Cubenest/rrweb-stack/blob/main/packages/tracelane-playwright/CHANGELOG.md).
124
+
125
+ ## Related packages
126
+
127
+ Part of the [tracelane](https://github.com/Cubenest/rrweb-stack) stack:
128
+
129
+ - [`@tracelane/wdio`](https://github.com/Cubenest/rrweb-stack/blob/main/packages/tracelane-wdio/README.md) — the same recorder as a WebdriverIO reporter.
130
+ - [`@tracelane/cli`](https://github.com/Cubenest/rrweb-stack/blob/main/packages/tracelane-cli/README.md) — one command that wires the recorder into your WebdriverIO and Playwright suites.
131
+ - [`@tracelane/core`](https://github.com/Cubenest/rrweb-stack/blob/main/packages/tracelane-core/README.md) — the shared recorder engine.
132
+ - [`@tracelane/report`](https://github.com/Cubenest/rrweb-stack/blob/main/packages/tracelane-report/README.md) — the self-contained HTML report builder.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tracelane/playwright",
3
- "version": "0.1.0-alpha.7",
4
- "description": "Playwright reporter + auto-fixture that writes a self-contained replayable HTML report on test failure (rrweb + console + failed-network). No SaaS.",
3
+ "version": "0.1.0-alpha.8",
4
+ "description": "Playwright reporter + auto-fixture that writes a self-contained replayable HTML report on failed tests — or every test in `all` mode (rrweb + console + failed-network). No SaaS.",
5
5
  "keywords": [
6
6
  "tracelane",
7
7
  "playwright",
@@ -41,8 +41,8 @@
41
41
  "README.md"
42
42
  ],
43
43
  "dependencies": {
44
- "@tracelane/core": "0.1.0-alpha.16",
45
- "@tracelane/report": "0.1.0-alpha.19"
44
+ "@tracelane/core": "0.1.0-alpha.17",
45
+ "@tracelane/report": "0.1.0-alpha.20"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@playwright/test": ">=1.40.0"
@@ -51,7 +51,7 @@
51
51
  "@playwright/test": "^1.60.0",
52
52
  "esbuild": "^0.28.0",
53
53
  "tsx": "^4.19.0",
54
- "@cubenest/rrweb-core": "0.1.0-alpha.6"
54
+ "@cubenest/rrweb-core": "0.1.0-alpha.7"
55
55
  },
56
56
  "publishConfig": {
57
57
  "access": "public",