@@ -6,6 +6,64 @@ toc_max_heading_level: 2
66
77import LiteYouTube from '@site/src /components/LiteYouTube';
88
9+ ## Version 1.37
10+
11+ ### New ` npx playwright merge-reports ` tool
12+
13+ If you run tests on multiple shards, you can now merge all reports in a single HTML report (or any other report)
14+ using the new ` merge-reports ` CLI tool.
15+
16+ Using ` merge-reports ` tool requires the following steps:
17+
18+ 1 . Adding a new "blob" reporter to the config when running on CI:
19+
20+ ``` js title="playwright.config.ts"
21+ export default defineConfig ({
22+ testDir: ' ./tests' ,
23+ reporter: process .env .CI ? ' blob' : ' html' ,
24+ });
25+ ```
26+
27+ The "blob" reporter will produce ".zip" files that contain all the information
28+ about the test run.
29+
30+ 2 . Copying all "blob" reports in a single shared location and running ` npx playwright merge-reports ` :
31+
32+ ``` bash
33+ npx playwright merge-reports --reporter html ./all-blob-reports
34+ ```
35+
36+ Read more in [ our documentation] ( ./test-sharding.md ) .
37+
38+ ### π Debian 12 Bookworm Support
39+
40+ Playwright now supports Debian 12 Bookworm on both x86_64 and arm64 for Chromium, Firefox and WebKit.
41+ Let us know if you encounter any issues!
42+
43+ Linux support looks like this:
44+
45+ | | Ubuntu 20.04 | Ubuntu 22.04 | Debian 11 | Debian 12
46+ | :--- | :---: | :---: | :---: | :---: | :---: |
47+ | Chromium | β
| β
| β
| β
|
48+ | WebKit | β
| β
| β
| β
|
49+ | Firefox | β
| β
| β
| β
|
50+
51+ ### UI Mode Updates
52+
53+ - UI Mode now respects project dependencies. You can control which dependencies to respect by checking/unchecking them in a projects list.
54+ - Console logs from the test are now displayed in the Console tab.
55+
56+ ### Browser Versions
57+
58+ * Chromium 116.0.5845.82
59+ * Mozilla Firefox 115.0
60+ * WebKit 17.0
61+
62+ This version was also tested against the following stable channels:
63+
64+ * Google Chrome 115
65+ * Microsoft Edge 115
66+
967## Version 1.36
1068
1169ποΈ Summer maintenance release.
0 commit comments