docs: add Python/.NET release notes (#16514)
This commit is contained in:
parent
a9643352f1
commit
8170432fab
|
|
@ -4,6 +4,52 @@ title: "Release notes"
|
||||||
toc_max_heading_level: 2
|
toc_max_heading_level: 2
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Version 1.25
|
||||||
|
|
||||||
|
### New .runsettings file support
|
||||||
|
|
||||||
|
`Microsoft.Playwright.NUnit` and `Microsoft.Playwright.MSTest` will now consider the `.runsettings` file and passed settings via the CLI when running end-to-end tests. See in the [documentation](https://playwright.dev/dotnet/docs/test-runners) for a full list of supported settings.
|
||||||
|
|
||||||
|
The following does now work:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RunSettings>
|
||||||
|
<!-- Playwright -->
|
||||||
|
<Playwright>
|
||||||
|
<BrowserName>chromium</BrowserName>
|
||||||
|
<ExpectTimeout>5000</ExpectTimeout>
|
||||||
|
<LaunchOptions>
|
||||||
|
<Headless>true</Headless>
|
||||||
|
<Channel>msedge</Channel>
|
||||||
|
</LaunchOptions>
|
||||||
|
</Playwright>
|
||||||
|
<!-- General run configuration -->
|
||||||
|
<RunConfiguration>
|
||||||
|
<EnvironmentVariables>
|
||||||
|
<!-- For debugging selectors, it's recommend to set the following environment variable -->
|
||||||
|
<DEBUG>pw:api</DEBUG>
|
||||||
|
</EnvironmentVariables>
|
||||||
|
</RunConfiguration>
|
||||||
|
</RunSettings>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Announcements
|
||||||
|
|
||||||
|
* 🪦 This is the last release with macOS 10.15 support (deprecated as of 1.21).
|
||||||
|
* ⚠️ Ubuntu 18 is now deprecated and will not be supported as of Dec 2022.
|
||||||
|
|
||||||
|
### Browser Versions
|
||||||
|
|
||||||
|
* Chromium 105.0.5195.19
|
||||||
|
* Mozilla Firefox 103.0
|
||||||
|
* WebKit 16.0
|
||||||
|
|
||||||
|
This version was also tested against the following stable channels:
|
||||||
|
|
||||||
|
* Google Chrome 104
|
||||||
|
* Microsoft Edge 104
|
||||||
|
|
||||||
## Version 1.24
|
## Version 1.24
|
||||||
|
|
||||||
<div className="embed-youtube">
|
<div className="embed-youtube">
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,25 @@ title: "Release notes"
|
||||||
toc_max_heading_level: 2
|
toc_max_heading_level: 2
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Version 1.25
|
||||||
|
|
||||||
|
### Announcements
|
||||||
|
|
||||||
|
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright/python:v1.26.0-jammy`.
|
||||||
|
* 🪦 This is the last release with macOS 10.15 support (deprecated as of 1.21).
|
||||||
|
* ⚠️ Ubuntu 18 is now deprecated and will not be supported as of Dec 2022.
|
||||||
|
|
||||||
|
### Browser Versions
|
||||||
|
|
||||||
|
* Chromium 105.0.5195.19
|
||||||
|
* Mozilla Firefox 103.0
|
||||||
|
* WebKit 16.0
|
||||||
|
|
||||||
|
This version was also tested against the following stable channels:
|
||||||
|
|
||||||
|
* Google Chrome 104
|
||||||
|
* Microsoft Edge 104
|
||||||
|
|
||||||
## Version 1.24
|
## Version 1.24
|
||||||
|
|
||||||
<div className="embed-youtube">
|
<div className="embed-youtube">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue