From 7a064d09156497296788ba99fd4cec5e0947740f Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Mon, 12 Jun 2023 17:26:09 -0700 Subject: [PATCH] cherry-pick(#23670): docs: release notes for ports (#23671) This PR cherry-picks the following commits: - ea7e9822aa90f7fe83aa65ded29875a8464ae3b7 --- docs/src/release-notes-csharp.md | 23 +++++++++++++++++++++++ docs/src/release-notes-java.md | 23 +++++++++++++++++++++++ docs/src/release-notes-python.md | 23 +++++++++++++++++++++++ 3 files changed, 69 insertions(+) diff --git a/docs/src/release-notes-csharp.md b/docs/src/release-notes-csharp.md index ff4bfecc47522..7e157a2ed7c76 100644 --- a/docs/src/release-notes-csharp.md +++ b/docs/src/release-notes-csharp.md @@ -4,6 +4,29 @@ title: "Release notes" toc_max_heading_level: 2 --- +## Version 1.35 + +### Highlights + +* New option `maskColor` for methods [`method: Page.screenshot`] and [`method: Locator.screenshot`] to change default masking color. + +* New `uninstall` CLI command to uninstall browser binaries: + ```bash + $ pwsh bin/Debug/netX/playwright.ps1 uninstall # remove browsers installed by this installation + $ pwsh bin/Debug/netX/playwright.ps1 uninstall --all # remove all ever-install Playwright browsers + ``` + +### Browser Versions + +* Chromium 115.0.5790.13 +* Mozilla Firefox 113.0 +* WebKit 16.4 + +This version was also tested against the following stable channels: + +* Google Chrome 114 +* Microsoft Edge 114 + ## Version 1.34 ### Highlights diff --git a/docs/src/release-notes-java.md b/docs/src/release-notes-java.md index 872fa11d31e06..93887cb09d9d7 100644 --- a/docs/src/release-notes-java.md +++ b/docs/src/release-notes-java.md @@ -12,6 +12,29 @@ toc_max_heading_level: 2 import LiteYouTube from '@site/src/components/LiteYouTube'; +## Version 1.35 + +### Highlights + +* New option `maskColor` for methods [`method: Page.screenshot`] and [`method: Locator.screenshot`] to change default masking color. + +* New `uninstall` CLI command to uninstall browser binaries: + ```bash + $ mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="uninstall" # remove browsers installed by this installation + $ mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="uninstall --all" # remove all ever-install Playwright browsers + ``` + +### Browser Versions + +* Chromium 115.0.5790.13 +* Mozilla Firefox 113.0 +* WebKit 16.4 + +This version was also tested against the following stable channels: + +* Google Chrome 114 +* Microsoft Edge 114 + ## Version 1.34 ### Highlights diff --git a/docs/src/release-notes-python.md b/docs/src/release-notes-python.md index 25a8c588d1490..e9a9e34b13041 100644 --- a/docs/src/release-notes-python.md +++ b/docs/src/release-notes-python.md @@ -4,6 +4,29 @@ title: "Release notes" toc_max_heading_level: 2 --- +## Version 1.35 + +### Highlights + +* New option `maskColor` for methods [`method: Page.screenshot`] and [`method: Locator.screenshot`] to change default masking color. + +* New `uninstall` CLI command to uninstall browser binaries: + ```bash + $ playwright uninstall # remove browsers installed by this installation + $ playwright uninstall --all # remove all ever-install Playwright browsers + ``` + +### Browser Versions + +* Chromium 115.0.5790.13 +* Mozilla Firefox 113.0 +* WebKit 16.4 + +This version was also tested against the following stable channels: + +* Google Chrome 114 +* Microsoft Edge 114 + ## Version 1.34 ### Highlights