Skip to content

Commit 37ba0b6

Browse files
committed
cherry-pick(#26411): docs: add release notes for js v1.37
1 parent 9a5172e commit 37ba0b6

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

β€Ždocs/src/release-notes-js.mdβ€Ž

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,64 @@ toc_max_heading_level: 2
66

77
import 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

Comments
Β (0)