From 7f1d93dd3f0fce40c4dd5c6c2c234eaa97298dc4 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 18 Sep 2023 17:38:35 -0700 Subject: [PATCH] docs: 1.38 release notes for language ports (#27167) --- docs/src/release-notes-csharp.md | 33 ++++++++++++++++++++++++++++++++ docs/src/release-notes-java.md | 33 ++++++++++++++++++++++++++++++++ docs/src/release-notes-python.md | 33 ++++++++++++++++++++++++++++++++ examples/todomvc/package.json | 2 +- 4 files changed, 100 insertions(+), 1 deletion(-) diff --git a/docs/src/release-notes-csharp.md b/docs/src/release-notes-csharp.md index 442ac04698290..14fa0a45cd473 100644 --- a/docs/src/release-notes-csharp.md +++ b/docs/src/release-notes-csharp.md @@ -4,6 +4,39 @@ title: "Release notes" toc_max_heading_level: 2 --- +## Version 1.38 + +### Trace Viewer Updates + +![Playwright Trace Viewer](https://github.com/microsoft/playwright/assets/746130/0c41e20d-c54b-4600-8ca8-1cbb6393ddef) + +1. Zoom into time range. +1. Network panel redesign. + +### New APIs + +- [`event: BrowserContext.webError`] +- [`method: Locator.pressSequentially`] + +### Deprecations + +* The following methods were deprecated: [`method: Page.type`], [`method: Frame.type`], + [`method: Locator.type`] and [`method: ElementHandle.type`]. + Please use [`method: Locator.fill`] instead which is much faster. Use + [`method: Locator.pressSequentially`] only if there is a special keyboard + handling on the page, and you need to press keys one-by-one. + +### Browser Versions + +* Chromium 117.0.5938.62 +* Mozilla Firefox 117.0 +* WebKit 17.0 + +This version was also tested against the following stable channels: + +* Google Chrome 116 +* Microsoft Edge 116 + ## Version 1.37 ### 📚 Debian 12 Bookworm Support diff --git a/docs/src/release-notes-java.md b/docs/src/release-notes-java.md index 43a7e9174f730..3a33effd6743a 100644 --- a/docs/src/release-notes-java.md +++ b/docs/src/release-notes-java.md @@ -4,6 +4,39 @@ title: "Release notes" toc_max_heading_level: 2 --- +## Version 1.38 + +### Trace Viewer Updates + +![Playwright Trace Viewer](https://github.com/microsoft/playwright/assets/746130/0c41e20d-c54b-4600-8ca8-1cbb6393ddef) + +1. Zoom into time range. +1. Network panel redesign. + +### New APIs + +- [`event: BrowserContext.webError`] +- [`method: Locator.pressSequentially`] + +### Deprecations + +* The following methods were deprecated: [`method: Page.type`], [`method: Frame.type`], + [`method: Locator.type`] and [`method: ElementHandle.type`]. + Please use [`method: Locator.fill`] instead which is much faster. Use + [`method: Locator.pressSequentially`] only if there is a special keyboard + handling on the page, and you need to press keys one-by-one. + +### Browser Versions + +* Chromium 117.0.5938.62 +* Mozilla Firefox 117.0 +* WebKit 17.0 + +This version was also tested against the following stable channels: + +* Google Chrome 116 +* Microsoft Edge 116 + ## Version 1.37 ### New APIs diff --git a/docs/src/release-notes-python.md b/docs/src/release-notes-python.md index a48e39b6cc164..c448c5271e530 100644 --- a/docs/src/release-notes-python.md +++ b/docs/src/release-notes-python.md @@ -4,6 +4,39 @@ title: "Release notes" toc_max_heading_level: 2 --- +## Version 1.38 + +### Trace Viewer Updates + +![Playwright Trace Viewer](https://github.com/microsoft/playwright/assets/746130/0c41e20d-c54b-4600-8ca8-1cbb6393ddef) + +1. Zoom into time range. +1. Network panel redesign. + +### New APIs + +- [`event: BrowserContext.webError`] +- [`method: Locator.pressSequentially`] + +### Deprecations + +* The following methods were deprecated: [`method: Page.type`], [`method: Frame.type`], + [`method: Locator.type`] and [`method: ElementHandle.type`]. + Please use [`method: Locator.fill`] instead which is much faster. Use + [`method: Locator.pressSequentially`] only if there is a special keyboard + handling on the page, and you need to press keys one-by-one. + +### Browser Versions + +* Chromium 117.0.5938.62 +* Mozilla Firefox 117.0 +* WebKit 17.0 + +This version was also tested against the following stable channels: + +* Google Chrome 116 +* Microsoft Edge 116 + ## Version 1.37 ### Highlights diff --git a/examples/todomvc/package.json b/examples/todomvc/package.json index 0946162fa79ce..1aa4392cb5095 100644 --- a/examples/todomvc/package.json +++ b/examples/todomvc/package.json @@ -11,6 +11,6 @@ "author": "", "license": "ISC", "devDependencies": { - "@playwright/test": "^1.27.0" + "@playwright/test": "^1.38.0" } }