From b2e42c0b05365487e6110617fcbaf061f7a5cb6c Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Tue, 26 May 2026 10:49:25 -0700 Subject: [PATCH 01/13] templates --- .../webview2/release-notes/archive.md | 113 +++++++ .../webview2/release-notes/index.md | 289 +++++++++++------- 2 files changed, 288 insertions(+), 114 deletions(-) diff --git a/microsoft-edge/webview2/release-notes/archive.md b/microsoft-edge/webview2/release-notes/archive.md index 44f778a28a..0b2d5d5533 100644 --- a/microsoft-edge/webview2/release-notes/archive.md +++ b/microsoft-edge/webview2/release-notes/archive.md @@ -23,6 +23,119 @@ if change h2 headings pattern, enter work item: update links in announcements The following features and bug fixes are in the WebView2 Release SDK and Prerelease SDK, for SDKs over one year old. + +## Release SDK 1.0.3296.44, for Runtime 137 (Jun. 3, 2025) + +Release Date: Jun. 3, 2025 + +[NuGet package for WebView2 SDK 1.0.3296.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296.44) + +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 137.0.3296.44 or higher. + + + +#### Promotions to Phase 3 (Stable in Release) + +The following APIs have been promoted from Phase 2: Stable in Prerelease, to Phase 3: Stable in Release, and are now included in this Release SDK. + + + +###### Set default background color on WebView2 initialization (DefaultBackgroundColor API) + +The DefaultBackgroundColor API allows users to set the `DefaultBackgroundColor` property at initialization. This prevents a disruptive white flash during the WebView2 loading process. + +##### [.NET/C#](#tab/dotnetcsharp) + +* `CoreWebView2ControllerOptions` Class: + * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/dotnet/api/microsoft.web.webview2.core.corewebview2controlleroptions.defaultbackgroundcolor?view=webview2-dotnet-1.0.3296.44&preserve-view=true) + +##### [WinRT/C#](#tab/winrtcsharp) + +* `CoreWebView2ControllerOptions` Class: + * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2controlleroptions?view=webview2-winrt-1.0.3296.44&preserve-view=true#defaultbackgroundcolor) + +##### [Win32/C++](#tab/win32cpp) + +* [ICoreWebView2ControllerOptions3](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296.44&preserve-view=true) + * [ICoreWebView2ControllerOptions3::get_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296.44&preserve-view=true#get_defaultbackgroundcolor) + * [ICoreWebView2ControllerOptions3::put_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296.44&preserve-view=true#put_defaultbackgroundcolor) + +--- + + + +#### Bug fixes + + + +###### Runtime-only + +* Fixed the margins in the printed PDF. + + + + + +## Prerelease SDK 1.0.3296-prerelease, for Runtime 137 (May. 12, 2025) + +Release Date: May 12, 2025 + +[NuGet package for WebView2 SDK 1.0.3296-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296-prerelease) + +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 137.0.3296.0 or higher. + + + +#### Experimental APIs (Phase 1: Experimental in Prerelease) + +No Experimental APIs have been added in this Prerelease SDK. + + + +#### Promotions to Phase 2 (Stable in Prerelease) + +The following APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, and are included in this Prerelease SDK. + + + +###### Set default background color on WebView2 initialization (DefaultBackgroundColor API) + +The DefaultBackgroundColor API allows users to set the `DefaultBackgroundColor` property at initialization. This prevents a disruptive white flash during the WebView2 loading process. + +##### [.NET/C#](#tab/dotnetcsharp) + +* `CoreWebView2ControllerOptions` Class: + * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/dotnet/api/microsoft.web.webview2.core.corewebview2controlleroptions.defaultbackgroundcolor?view=webview2-dotnet-1.0.3296-prerelease&preserve-view=true) + +##### [WinRT/C#](#tab/winrtcsharp) + +* `CoreWebView2ControllerOptions` Class: + * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2controlleroptions?view=webview2-winrt-1.0.3296-prerelease&preserve-view=true#defaultbackgroundcolor) + +##### [Win32/C++](#tab/win32cpp) + +* [ICoreWebView2ControllerOptions3](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296-prerelease&preserve-view=true) + * [ICoreWebView2ControllerOptions3::get_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296-prerelease&preserve-view=true#get_defaultbackgroundcolor) + * [ICoreWebView2ControllerOptions3::put_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296-prerelease&preserve-view=true#put_defaultbackgroundcolor) + +--- + + + +#### Bug fixes + + + +###### Runtime-only + +* Fixed the **Find** bar no longer appearing after the window is shifted. +* Fixed a bug where the app wasn't able to cancel navigation to login pages via the `NavigationStarting` event. +* Fixed an issue where downloads from within the default browser frame didn't complete. ([Issue #5196](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5196)) +* Fixed an issue where the pipe name was incorrectly returned, leading to a crash in some UWP apps. + + + + ## Release SDK 1.0.3240.44, for Runtime 136 (May 5, 2025) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index adf21cf26a..9262727e82 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -6,7 +6,7 @@ ms.author: msedgedevrel ms.topic: article ms.service: microsoft-edge ms.subservice: webview -ms.date: 05/11/2026 +ms.date: 06/08/2026 --- # Release notes for the WebView2 SDK +## Prerelease SDK 1.0.nnnn-prerelease, for Runtime 150 (Mmm. dd, yyyy) + +Release Date: Mmm. dd, yyyy + +[NuGet package for WebView2 SDK 1.0.####-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.####-prerelease) + +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version ###.0.####.0 or higher. + + + +#### Breaking changes + + + + +###### heading + + + +#### General changes + + + + +###### heading + + + +#### Experimental APIs (Phase 1: Experimental in Prerelease) + +No Experimental APIs have been added in this Prerelease SDK. +The following APIs are in Phase 1: Experimental in Prerelease, and have been added in this Prerelease SDK. + + + +###### heading + +description + +##### [.NET/C#](#tab/dotnetcsharp) + +##### [WinRT/C#](#tab/winrtcsharp) + +##### [Win32/C++](#tab/win32cpp) + +--- + + + +#### Promotions to Phase 2 (Stable in Prerelease) + +No APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, in this Prerelease SDK. +The following APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, and are included in this Prerelease SDK. +The following APIs skipped Phase 1: Experimental in Prerelease, and have been directly added to Phase 2: Stable in Prerelease, and are included in this Prerelease SDK. + + + +###### heading + +description + +##### [.NET/C#](#tab/dotnetcsharp) + +##### [WinRT/C#](#tab/winrtcsharp) + +##### [Win32/C++](#tab/win32cpp) + +--- + + + +#### Bug fixes + +There are no bug fixes in this Prerelease SDK. +This Prerelease SDK includes the following bug fixes. + + + +###### Runtime and SDK + +* Fixed behavior. ([Issue #]()) + + + +###### Runtime-only + +* Fixed behavior. ([Issue #]()) + + + +###### SDK-only + +* Fixed behavior. ([Issue #]()) + + + + + +## Release SDK 1.0.nnnn.nn, for Runtime 149 (Mmm. dd, yyyy) + +Release Date: Mmm. dd, yyyy + +[NuGet package for WebView2 SDK 1.0.####.##](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.####.##) + +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version ###.0.####.## or higher. + + + +#### Breaking changes + + + + +###### heading + + + +#### General changes + + + + +###### heading + + + +#### Promotions to Phase 3 (Stable in Release) + +No additional APIs have been promoted from Phase 2: Stable in Prerelease, to Phase 3: Stable in Release, in this Release SDK. +The following APIs have been promoted from Phase 2: Stable in Prerelease, to Phase 3: Stable in Release, and are now included in this Release SDK. + + + +###### heading + +description + +##### [.NET/C#](#tab/dotnetcsharp) + +##### [WinRT/C#](#tab/winrtcsharp) + +##### [Win32/C++](#tab/win32cpp) + +--- + + + +#### Bug fixes + +There are no bug fixes in this Release SDK. +This Release SDK includes the following bug fixes. + + + +###### Runtime and SDK + +* Fixed behavior. ([Issue #]()) + + + +###### Runtime-only + +* Fixed behavior. ([Issue #]()) + + + +###### SDK-only + +* Fixed behavior. ([Issue #]()) + + + + ## Prerelease SDK 1.0.4015-prerelease, for Runtime 149 (May 11, 2026) @@ -2453,119 +2627,6 @@ The `CoreWebView2ControllerOptions` class now has an `AllowHostInputProcessing` - -## Release SDK 1.0.3296.44, for Runtime 137 (Jun. 3, 2025) - -Release Date: Jun. 3, 2025 - -[NuGet package for WebView2 SDK 1.0.3296.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296.44) - -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 137.0.3296.44 or higher. - - - -#### Promotions to Phase 3 (Stable in Release) - -The following APIs have been promoted from Phase 2: Stable in Prerelease, to Phase 3: Stable in Release, and are now included in this Release SDK. - - - -###### Set default background color on WebView2 initialization (DefaultBackgroundColor API) - -The DefaultBackgroundColor API allows users to set the `DefaultBackgroundColor` property at initialization. This prevents a disruptive white flash during the WebView2 loading process. - -##### [.NET/C#](#tab/dotnetcsharp) - -* `CoreWebView2ControllerOptions` Class: - * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/dotnet/api/microsoft.web.webview2.core.corewebview2controlleroptions.defaultbackgroundcolor?view=webview2-dotnet-1.0.3296.44&preserve-view=true) - -##### [WinRT/C#](#tab/winrtcsharp) - -* `CoreWebView2ControllerOptions` Class: - * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2controlleroptions?view=webview2-winrt-1.0.3296.44&preserve-view=true#defaultbackgroundcolor) - -##### [Win32/C++](#tab/win32cpp) - -* [ICoreWebView2ControllerOptions3](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296.44&preserve-view=true) - * [ICoreWebView2ControllerOptions3::get_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296.44&preserve-view=true#get_defaultbackgroundcolor) - * [ICoreWebView2ControllerOptions3::put_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296.44&preserve-view=true#put_defaultbackgroundcolor) - ---- - - - -#### Bug fixes - - - -###### Runtime-only - -* Fixed the margins in the printed PDF. - - - - - -## Prerelease SDK 1.0.3296-prerelease, for Runtime 137 (May. 12, 2025) - -Release Date: May 12, 2025 - -[NuGet package for WebView2 SDK 1.0.3296-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296-prerelease) - -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 137.0.3296.0 or higher. - - - -#### Experimental APIs (Phase 1: Experimental in Prerelease) - -No Experimental APIs have been added in this Prerelease SDK. - - - -#### Promotions to Phase 2 (Stable in Prerelease) - -The following APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, and are included in this Prerelease SDK. - - - -###### Set default background color on WebView2 initialization (DefaultBackgroundColor API) - -The DefaultBackgroundColor API allows users to set the `DefaultBackgroundColor` property at initialization. This prevents a disruptive white flash during the WebView2 loading process. - -##### [.NET/C#](#tab/dotnetcsharp) - -* `CoreWebView2ControllerOptions` Class: - * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/dotnet/api/microsoft.web.webview2.core.corewebview2controlleroptions.defaultbackgroundcolor?view=webview2-dotnet-1.0.3296-prerelease&preserve-view=true) - -##### [WinRT/C#](#tab/winrtcsharp) - -* `CoreWebView2ControllerOptions` Class: - * [CoreWebView2ControllerOptions.DefaultBackgroundColor Property](/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2controlleroptions?view=webview2-winrt-1.0.3296-prerelease&preserve-view=true#defaultbackgroundcolor) - -##### [Win32/C++](#tab/win32cpp) - -* [ICoreWebView2ControllerOptions3](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296-prerelease&preserve-view=true) - * [ICoreWebView2ControllerOptions3::get_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296-prerelease&preserve-view=true#get_defaultbackgroundcolor) - * [ICoreWebView2ControllerOptions3::put_DefaultBackgroundColor](/microsoft-edge/webview2/reference/win32/icorewebview2controlleroptions3?view=webview2-1.0.3296-prerelease&preserve-view=true#put_defaultbackgroundcolor) - ---- - - - -#### Bug fixes - - - -###### Runtime-only - -* Fixed the **Find** bar no longer appearing after the window is shifted. -* Fixed a bug where the app wasn't able to cancel navigation to login pages via the `NavigationStarting` event. -* Fixed an issue where downloads from within the default browser frame didn't complete. ([Issue #5196](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5196)) -* Fixed an issue where the pipe name was incorrectly returned, leading to a crash in some UWP apps. - - - - ## See also From a978cb10c4440d9d34cb6f75f24295caed0c235e Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Tue, 26 May 2026 10:50:41 -0700 Subject: [PATCH 02/13] date --- microsoft-edge/webview2/release-notes/archive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-edge/webview2/release-notes/archive.md b/microsoft-edge/webview2/release-notes/archive.md index 0b2d5d5533..65996874ff 100644 --- a/microsoft-edge/webview2/release-notes/archive.md +++ b/microsoft-edge/webview2/release-notes/archive.md @@ -6,7 +6,7 @@ ms.author: msedgedevrel ms.topic: article ms.service: microsoft-edge ms.subservice: devtools -ms.date: 05/11/2026 +ms.date: 06/08/2026 --- # Archived release notes for the WebView2 SDK -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 133)](../../devtools/whats-new/2025/02/devtools-133.md). diff --git a/microsoft-edge/web-platform/release-notes/134.md b/microsoft-edge/web-platform/release-notes/134.md index 7f999b98df..d5a82688dd 100644 --- a/microsoft-edge/web-platform/release-notes/134.md +++ b/microsoft-edge/web-platform/release-notes/134.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [Enabled features](#enabled-features) @@ -44,7 +44,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 134)](../../devtools/whats-new/2025/03/devtools-134.md). diff --git a/microsoft-edge/web-platform/release-notes/135.md b/microsoft-edge/web-platform/release-notes/135.md index 3422218b08..a2e01270e4 100644 --- a/microsoft-edge/web-platform/release-notes/135.md +++ b/microsoft-edge/web-platform/release-notes/135.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [CSS features](#css-features) @@ -58,7 +58,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 135)](../../devtools/whats-new/2025/04/devtools-135.md). diff --git a/microsoft-edge/web-platform/release-notes/136.md b/microsoft-edge/web-platform/release-notes/136.md index 96fb56f112..b7f3fe52b4 100644 --- a/microsoft-edge/web-platform/release-notes/136.md +++ b/microsoft-edge/web-platform/release-notes/136.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [CSS features](#css-features) @@ -55,7 +55,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 136)](../../devtools/whats-new/2025/05/devtools-136.md). diff --git a/microsoft-edge/web-platform/release-notes/137.md b/microsoft-edge/web-platform/release-notes/137.md index c5db63691b..281cf5e353 100644 --- a/microsoft-edge/web-platform/release-notes/137.md +++ b/microsoft-edge/web-platform/release-notes/137.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [CSS features](#css-features) @@ -51,7 +51,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 137)](../../devtools/whats-new/2025/06/devtools-137.md). @@ -59,7 +59,7 @@ See [What's new in DevTools (Microsoft Edge 137)](../../devtools/whats-new/2025/ ## WebView2 -See [Release SDK 1.0.3296.44, for Runtime 137 (Jun. 3, 2025)](../../webview2/release-notes/index.md#release-sdk-10329644-for-runtime-137-jun-3-2025) in _Release notes for the WebView2 SDK_. +See [Release SDK 1.0.3296.44, for Runtime 137 (Jun. 3, 2025)](../../webview2/release-notes/archive.md#release-sdk-10329644-for-runtime-137-jun-3-2025) in _Archived release notes for the WebView2 SDK_. diff --git a/microsoft-edge/web-platform/release-notes/138.md b/microsoft-edge/web-platform/release-notes/138.md index c4a1a8f39f..5ce5d077a4 100644 --- a/microsoft-edge/web-platform/release-notes/138.md +++ b/microsoft-edge/web-platform/release-notes/138.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [CSS features](#css-features) @@ -49,7 +49,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 138)](../../devtools/whats-new/2025/06/devtools-138.md). diff --git a/microsoft-edge/web-platform/release-notes/139.md b/microsoft-edge/web-platform/release-notes/139.md index 71530fdc71..19939f65d4 100644 --- a/microsoft-edge/web-platform/release-notes/139.md +++ b/microsoft-edge/web-platform/release-notes/139.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [CSS features](#css-features) @@ -52,7 +52,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 139)](../../devtools/whats-new/2025/08/devtools-139.md). diff --git a/microsoft-edge/web-platform/release-notes/140.md b/microsoft-edge/web-platform/release-notes/140.md index a4e4914ca4..f8312d53d3 100644 --- a/microsoft-edge/web-platform/release-notes/140.md +++ b/microsoft-edge/web-platform/release-notes/140.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [CSS features](#css-features) @@ -48,7 +48,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 140)](../../devtools/whats-new/2025/09/devtools-140.md). diff --git a/microsoft-edge/web-platform/release-notes/141.md b/microsoft-edge/web-platform/release-notes/141.md index 36bfde7573..afe3805bc3 100644 --- a/microsoft-edge/web-platform/release-notes/141.md +++ b/microsoft-edge/web-platform/release-notes/141.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [Web platform features](#web-platform-features) * [CSS features](#css-features) @@ -41,7 +41,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 141)](../../devtools/whats-new/2025/10/devtools-141.md). diff --git a/microsoft-edge/web-platform/release-notes/142.md b/microsoft-edge/web-platform/release-notes/142.md index 3924b49e8c..419dd9c7f9 100644 --- a/microsoft-edge/web-platform/release-notes/142.md +++ b/microsoft-edge/web-platform/release-notes/142.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [AccentColor and AccentColorText system colors](#accentcolor-and-accentcolortext-system-colors) @@ -47,7 +47,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 142)](../../devtools/whats-new/2025/10/devtools-142.md). diff --git a/microsoft-edge/web-platform/release-notes/143.md b/microsoft-edge/web-platform/release-notes/143.md index e2def4fd23..7fe375830d 100644 --- a/microsoft-edge/web-platform/release-notes/143.md +++ b/microsoft-edge/web-platform/release-notes/143.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [CSS anchored fallback container queries](#css-anchored-fallback-container-queries) @@ -52,7 +52,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 143)](../../devtools/whats-new/143.md). diff --git a/microsoft-edge/web-platform/release-notes/144.md b/microsoft-edge/web-platform/release-notes/144.md index 8a26b3bc59..bab5cf0768 100644 --- a/microsoft-edge/web-platform/release-notes/144.md +++ b/microsoft-edge/web-platform/release-notes/144.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [The `scrolled` feature for scroll-state container queries](#the-scrolled-feature-for-scroll-state-container-queries) @@ -57,7 +57,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 144)](../../devtools/whats-new/144.md). diff --git a/microsoft-edge/web-platform/release-notes/145.md b/microsoft-edge/web-platform/release-notes/145.md index def5b551f7..d56e70fd70 100644 --- a/microsoft-edge/web-platform/release-notes/145.md +++ b/microsoft-edge/web-platform/release-notes/145.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [Scroll-triggered animations](#scroll-triggered-animations) @@ -63,7 +63,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 145)](../../devtools/whats-new/145.md). diff --git a/microsoft-edge/web-platform/release-notes/146.md b/microsoft-edge/web-platform/release-notes/146.md index 9fe4d920d8..7f9c0f4fb6 100644 --- a/microsoft-edge/web-platform/release-notes/146.md +++ b/microsoft-edge/web-platform/release-notes/146.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [Scroll-triggered animations](#scroll-triggered-animations) @@ -52,7 +52,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 146)](../../devtools/whats-new/146.md). diff --git a/microsoft-edge/web-platform/release-notes/147.md b/microsoft-edge/web-platform/release-notes/147.md index 54b30da0b4..8d5593e104 100644 --- a/microsoft-edge/web-platform/release-notes/147.md +++ b/microsoft-edge/web-platform/release-notes/147.md @@ -19,7 +19,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [`border-shape`](#border-shape) @@ -74,7 +74,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 147)](../../devtools/whats-new/147.md). diff --git a/microsoft-edge/web-platform/release-notes/148.md b/microsoft-edge/web-platform/release-notes/148.md index 61b57d1dfa..cf0715ebaf 100644 --- a/microsoft-edge/web-platform/release-notes/148.md +++ b/microsoft-edge/web-platform/release-notes/148.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [CSS name-only container queries](#css-name-only-container-queries) @@ -63,7 +63,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in DevTools (Microsoft Edge 148)](../../devtools/whats-new/148.md). @@ -71,10 +71,7 @@ See [What's new in DevTools (Microsoft Edge 148)](../../devtools/whats-new/148.m ## WebView2 -See [Release notes for the WebView2 SDK](../../webview2/release-notes/index.md). - +See [Release SDK 1.0.3967.48, for Runtime 148 (May 11, 2026)](../../webview2/release-notes/index.md#release-sdk-10396748-for-runtime-148-may-11-2026) in _Release notes for the WebView2 SDK_. diff --git a/microsoft-edge/web-platform/release-notes/149.md b/microsoft-edge/web-platform/release-notes/149.md index 8ec1cc5925..b1841d245c 100644 --- a/microsoft-edge/web-platform/release-notes/149.md +++ b/microsoft-edge/web-platform/release-notes/149.md @@ -15,7 +15,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS features](#css-features) * [CSS gap decorations](#css-gap-decorations) @@ -42,7 +42,7 @@ To stay up-to-date and get the latest web platform features, download a preview -## Edge DevTools +## Microsoft Edge DevTools See [What's new in Microsoft Edge DevTools](../../devtools/whats-new/index.md). diff --git a/scripts/beta-release-notes-template.njk b/scripts/beta-release-notes-template.njk index e4b5101c2f..e907595977 100644 --- a/scripts/beta-release-notes-template.njk +++ b/scripts/beta-release-notes-template.njk @@ -20,7 +20,7 @@ To stay up-to-date and get the latest web platform features, download a preview **Detailed contents:** -* [Edge DevTools](#edge-devtools) +* [Microsoft Edge DevTools](#microsoft-edge-devtools) * [WebView2](#webview2) * [CSS/SVG/Web API features](#csssvgweb-api-features) {% for feature in data.csFeatures["Enabled by default"] %} @@ -36,7 +36,7 @@ To stay up-to-date and get the latest web platform features, download a preview * [Origin trials](#origin-trials) -## Edge DevTools +## Microsoft Edge DevTools See [What's new in Microsoft Edge DevTools](../../devtools/whats-new/index.md). ## View end-user docs about Microsoft Edge -Microsoft Edge Developer docs are at the present, Microsoft Learn website (learn.microsoft.com). Microsoft Edge end-user docs are at the following, other websites: - +The present website (learn.microsoft.com) is for developer documentation. For Microsoft Edge end-user docs, see: * [Microsoft Edge help & learning](https://support.microsoft.com/microsoft-edge) - support.microsoft.com. * [Do More with Edge](https://www.microsoft.com/edge/learning-center/) - Learning center at Microsoft.com. From dab0e8d93b2137309d5b46c873a216b7ba5a70ca Mon Sep 17 00:00:00 2001 From: vootlasaichandu Date: Wed, 3 Jun 2026 16:50:19 +0530 Subject: [PATCH 05/13] initial commits --- .../webview2/release-notes/index.md | 131 ++++-------------- 1 file changed, 26 insertions(+), 105 deletions(-) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index 9262727e82..6a6d064921 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -29,126 +29,72 @@ The following new features and bug fixes are in the WebView2 Release SDK and Pre -## Prerelease SDK 1.0.nnnn-prerelease, for Runtime 150 (Mmm. dd, yyyy) +## Prerelease SDK 1.0.4071-prerelease, for Runtime 150 (June. 08, 2026) -Release Date: Mmm. dd, yyyy +Release Date: June 08, 2026 -[NuGet package for WebView2 SDK 1.0.####-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.####-prerelease) +[NuGet package for WebView2 SDK 1.0.4071-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.4071-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version ###.0.####.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 150.0.4071.0 or higher - -#### Breaking changes - - - - -###### heading - - - -#### General changes - - - - -###### heading - #### Experimental APIs (Phase 1: Experimental in Prerelease) No Experimental APIs have been added in this Prerelease SDK. -The following APIs are in Phase 1: Experimental in Prerelease, and have been added in this Prerelease SDK. - - - -###### heading - -description - -##### [.NET/C#](#tab/dotnetcsharp) - -##### [WinRT/C#](#tab/winrtcsharp) - -##### [Win32/C++](#tab/win32cpp) - ---- - #### Promotions to Phase 2 (Stable in Prerelease) No APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, in this Prerelease SDK. -The following APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, and are included in this Prerelease SDK. -The following APIs skipped Phase 1: Experimental in Prerelease, and have been directly added to Phase 2: Stable in Prerelease, and are included in this Prerelease SDK. - - - -###### heading - -description - -##### [.NET/C#](#tab/dotnetcsharp) - -##### [WinRT/C#](#tab/winrtcsharp) - -##### [Win32/C++](#tab/win32cpp) ---- #### Bug fixes -There are no bug fixes in this Prerelease SDK. This Prerelease SDK includes the following bug fixes. + ###### Runtime and SDK -* Fixed behavior. ([Issue #]()) - +* Adds total-count histograms for WebView2 environment and controller creation attempts (SDK and Runtime) ###### Runtime-only -* Fixed behavior. ([Issue #]()) +* Map TERMINATION_STATUS_LAUNCH_FAILED_OS_POLICY to kLaunchFailed +* Failure reason classification updated to OOM for process killed to reclaim memory. +* Adding system memory snapshot at OOM detection time for analysis +* Fix the popup would be silently closed when the host expected it to remain open . +* Added trusted origin check during host object access +* Migrated deprecated base::Value APIs to modern base::DictValue API +* Fix print dialog pop option not selecting in CompositionControl .([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) +* Reduced redundant map lookups in WebView2 URL request manager for improved performance +* Eliminated unnecessary string allocations in WebView2 cookie layer for improved performance +* Fix window to Visual UIA tree ###### SDK-only -* Fixed behavior. ([Issue #]()) +* Fix container safety issues in WebView2 frame and listener code +* WinRT event subscription now keeps the projection wrapper alive until the handler is unsubscribed. -## Release SDK 1.0.nnnn.nn, for Runtime 149 (Mmm. dd, yyyy) - -Release Date: Mmm. dd, yyyy +## Release SDK 1.0.nnnn.nn, for Runtime 149 (june. 08, 2026) -[NuGet package for WebView2 SDK 1.0.####.##](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.####.##) +Release Date: June 08, 2026 -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version ###.0.####.## or higher. - - - -#### Breaking changes - - - - -###### heading - - - -#### General changes - +[NuGet package for WebView2 SDK 1.0.4022.49](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.4022.49) +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 149.0.4022.49 or higher. ###### heading @@ -158,46 +104,21 @@ For full API compatibility, this Release version of the WebView2 SDK requires We #### Promotions to Phase 3 (Stable in Release) No additional APIs have been promoted from Phase 2: Stable in Prerelease, to Phase 3: Stable in Release, in this Release SDK. -The following APIs have been promoted from Phase 2: Stable in Prerelease, to Phase 3: Stable in Release, and are now included in this Release SDK. - - - -###### heading - -description - -##### [.NET/C#](#tab/dotnetcsharp) - -##### [WinRT/C#](#tab/winrtcsharp) - -##### [Win32/C++](#tab/win32cpp) - ---- #### Bug fixes -There are no bug fixes in this Release SDK. This Release SDK includes the following bug fixes. - - -###### Runtime and SDK - -* Fixed behavior. ([Issue #]()) - - ###### Runtime-only -* Fixed behavior. ([Issue #]()) - - - -###### SDK-only +* Map TERMINATION_STATUS_LAUNCH_FAILED_OS_POLICY to kLaunchFailed. +* Failure reason classification updated to OOM for process killed to reclaim memory. +* Added trusted origin check during host object access. +* Fix print dialog pop option not selecting in CompositionControl.([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) -* Fixed behavior. ([Issue #]()) From 8fe7e20a792a5fb9ff4e2515b532f009483bfee8 Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 15:02:22 -0700 Subject: [PATCH 06/13] writer pass --- .../webview2/release-notes/archive.md | 226 +++++++++--------- .../release-notes/includes/templates.md | 4 +- .../webview2/release-notes/index.md | 96 ++++---- 3 files changed, 161 insertions(+), 165 deletions(-) diff --git a/microsoft-edge/webview2/release-notes/archive.md b/microsoft-edge/webview2/release-notes/archive.md index 65996874ff..cc8fa3f270 100644 --- a/microsoft-edge/webview2/release-notes/archive.md +++ b/microsoft-edge/webview2/release-notes/archive.md @@ -30,7 +30,7 @@ Release Date: Jun. 3, 2025 [NuGet package for WebView2 SDK 1.0.3296.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296.44) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 137.0.3296.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 137.0.3296.44 or later. @@ -82,7 +82,7 @@ Release Date: May 12, 2025 [NuGet package for WebView2 SDK 1.0.3296-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3296-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 137.0.3296.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 137.0.3296.0 or later. @@ -143,7 +143,7 @@ Release Date: May 5, 2025 [NuGet package for WebView2 SDK 1.0.3240.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3240.44) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 136.0.3240.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 136.0.3240.44 or later. @@ -204,7 +204,7 @@ Release Date: Apr. 7, 2025, Runtime 136 [NuGet package for WebView2 SDK 1.0.3230-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3230-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 136.0.3230.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 136.0.3230.0 or later. @@ -281,7 +281,7 @@ Release Date: Apr. 7, 2025, Runtime 135 [NuGet package for WebView2 SDK 1.0.3179.45](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3179.45) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 135.0.3179.45 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 135.0.3179.45 or later. @@ -312,7 +312,7 @@ Release Date: Mar. 10, 2025, Runtime 135 [NuGet package for WebView2 SDK 1.0.3171-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3171-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 135.0.3171.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 135.0.3171.0 or later. @@ -363,7 +363,7 @@ Release Date: Mar. 10, 2025, Runtime 134 [NuGet package for WebView2 SDK 1.0.3124.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3124.44) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 134.0.3124.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 134.0.3124.44 or later. @@ -393,7 +393,7 @@ Release Date: Feb. 10, 2025, Runtime 134 [NuGet package for WebView2 SDK 1.0.3116-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3116-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 134.0.3116.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 134.0.3116.0 or later. @@ -448,7 +448,7 @@ Release Date: Jan. 24, 2025 [NuGet package for WebView2 SDK 1.0.3079-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3079-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 134.0.3079.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 134.0.3079.0 or later. @@ -722,7 +722,7 @@ Release Date: Feb. 10, 2025, Runtime 133 [NuGet package for WebView2 SDK 1.0.3065.39](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3065.39) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 133.0.3065.39 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 133.0.3065.39 or later. @@ -751,7 +751,7 @@ Release Date: Jan. 20, 2025 [NuGet package for WebView2 SDK 1.0.2957.106](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2957.106) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 132.0.2957.106 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 132.0.2957.106 or later. @@ -827,7 +827,7 @@ Release Date: Nov. 18, 2024 [NuGet package for WebView2 SDK 1.0.2950-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2950-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 132.0.2950.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 132.0.2950.0 or later. @@ -870,7 +870,7 @@ Release Date: Nov. 18, 2024 [NuGet package for WebView2 SDK 1.0.2903.40](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2903.40) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 131.0.2903.40 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 131.0.2903.40 or later. @@ -977,7 +977,7 @@ Release Date: Oct. 21, 2024 [NuGet package for WebView2 SDK 1.0.2895-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2895-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 131.0.2895.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 131.0.2895.0 or later. @@ -1178,7 +1178,7 @@ Release Date: Oct. 21, 2024 [NuGet package for WebView2 SDK 1.0.2849.39](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2849.39) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 130.0.2849.39 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 130.0.2849.39 or later. @@ -1273,7 +1273,7 @@ Release Date: Sep. 23, 2024 [NuGet package for WebView2 SDK 1.0.2839-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2839-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 130.0.2839.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 130.0.2839.0 or later. @@ -1321,7 +1321,7 @@ Release Date: Sep. 23, 2024 [NuGet package for WebView2 SDK 1.0.2792.45](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2792.45) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 129.0.2792.45 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 129.0.2792.45 or later. @@ -1349,7 +1349,7 @@ Release Date: Aug. 26, 2024 [NuGet package for WebView2 SDK 1.0.2783-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2783-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 129.0.2783.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 129.0.2783.0 or later. @@ -1407,7 +1407,7 @@ Release Date: Aug. 26, 2024 [NuGet package for WebView2 SDK 1.0.2739.15](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2739.15) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 128.0.2739.15 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 128.0.2739.15 or later. @@ -1653,7 +1653,7 @@ Release Date: Aug. 7, 2024 [NuGet package for WebView2 SDK 1.0.2730-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2730-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 128.0.2730.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 128.0.2730.0 or later. @@ -1889,7 +1889,7 @@ Release Date: Aug. 13, 2024 [NuGet package for WebView2 SDK 1.0.2651.64](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2651.64) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 127.0.2651.64 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 127.0.2651.64 or later. @@ -2004,7 +2004,7 @@ Release Date: Jun. 19, 2024 [NuGet package for WebView2 SDK 1.0.2646-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2646-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 128.0.2646.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 128.0.2646.0 or later. @@ -2272,7 +2272,7 @@ Release Date: Jun. 19, 2024 [NuGet package for WebView2 SDK 1.0.2592.51](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2592.51) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 126.0.2592.51 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 126.0.2592.51 or later. @@ -2308,7 +2308,7 @@ Release Date: May 28, 2024 [NuGet package for WebView2 SDK 1.0.2584-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2584-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 126.0.2584.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 126.0.2584.0 or later. @@ -2362,7 +2362,7 @@ Release Date: May 28, 2024 [NuGet package for WebView2 SDK 1.0.2535.41](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2535.41) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 125.0.2535.41 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 125.0.2535.41 or later. @@ -2434,7 +2434,7 @@ Release Date: Apr. 22, 2024 [NuGet package for WebView2 SDK 1.0.2526-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2526-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 125.0.2526.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 125.0.2526.0 or later. @@ -2653,7 +2653,7 @@ Release Date: Apr. 22, 2024 [NuGet package for WebView2 SDK 1.0.2478.35](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2478.35) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 124.0.2478.35 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 124.0.2478.35 or later. @@ -2740,7 +2740,7 @@ Release Date: Mar. 25, 2024 [NuGet package for WebView2 SDK 1.0.2470-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2470-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires WebView2 Runtime version 124.0.2470.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires WebView2 Runtime version 124.0.2470.0 or later. @@ -2972,7 +2972,7 @@ Release Date: Mar. 25, 2024 [NuGet package for WebView2 SDK 1.0.2420.47](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2420.47) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 123.0.2420.47 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 123.0.2420.47 or later. @@ -3086,7 +3086,7 @@ Release Date: Feb. 26, 2024 [NuGet package for WebView2 SDK 1.0.2415-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2415-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 123.0.2415.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 123.0.2415.0 or later. @@ -3284,7 +3284,7 @@ Release Date: Feb. 26, 2024 [NuGet package for WebView2 SDK 1.0.2365.46](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2365.46) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 122.0.2365.46 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 122.0.2365.46 or later. @@ -3374,7 +3374,7 @@ Release Date: Jan. 30, 2024 [NuGet package for WebView2 SDK 1.0.2357-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2357-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 122.0.2357.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 122.0.2357.0 or later. @@ -3753,7 +3753,7 @@ Release Date: Feb. 5, 2024 [NuGet package for WebView2 SDK 1.0.2277.86](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2277.86) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 121.0.2277.86 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 121.0.2277.86 or later. @@ -3860,7 +3860,7 @@ Release Date: Dec. 11, 2023 [NuGet package for WebView2 SDK 1.0.2210.55](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2210.55) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 120.0.2210.55 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 120.0.2210.55 or later. @@ -4089,7 +4089,7 @@ Release Date: Nov. 6, 2023 [NuGet package for WebView2 SDK 1.0.2194-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2194-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 120.0.2194.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 120.0.2194.0 or later. @@ -4162,7 +4162,7 @@ Release Date: Oct. 18, 2023 [NuGet package for WebView2 SDK 1.0.2164-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2164-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 120.0.2164.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 120.0.2164.0 or later. @@ -4219,7 +4219,7 @@ Release Date: Nov. 6, 2023 [NuGet package for WebView2 SDK 1.0.2151.40](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2151.40) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 119.0.2151.40 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 119.0.2151.40 or later. @@ -4302,7 +4302,7 @@ Release Date: Sep. 20, 2023 [NuGet package for WebView2 SDK 1.0.2106-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2106-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 119.0.2106.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 119.0.2106.0 or later. @@ -4472,7 +4472,7 @@ Release Date: Oct. 16, 2023 [NuGet package for WebView2 SDK 1.0.2088.41](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2088.41) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 118.0.2088.41 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 118.0.2088.41 or later. @@ -4500,7 +4500,7 @@ Release Date: Aug. 30, 2023 [NuGet package for WebView2 SDK 1.0.2065-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2065-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 118.0.2065.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 118.0.2065.0 or later. @@ -4549,7 +4549,7 @@ Release Date: Sep. 18, 2023 [NuGet package for WebView2 SDK 1.0.2045.28](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.2045.28) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 117.0.2045.28 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 117.0.2045.28 or later. @@ -4577,7 +4577,7 @@ Release Date: Jul. 24, 2023 [NuGet package for WebView2 SDK 1.0.1988-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1988-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 117.0.1988.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 117.0.1988.0 or later. @@ -4794,7 +4794,7 @@ Release Date: Aug. 28, 2023 [NuGet package for WebView2 SDK 1.0.1938.49](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1938.49) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 116.0.1938.49 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 116.0.1938.49 or later. @@ -4824,7 +4824,7 @@ Release Date: Jun. 12, 2023 [NuGet package for WebView2 SDK 1.0.1905-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1905-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 116.0.1905.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 116.0.1905.0 or later. @@ -4968,7 +4968,7 @@ Release Date: Jul. 24, 2023 [NuGet package for WebView2 SDK 1.0.1901.177](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1901.177) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 115.0.1901.177 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 115.0.1901.177 or later. @@ -5037,7 +5037,7 @@ Release Date: May 8, 2023 [NuGet package for WebView2 SDK 1.0.1829-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1829-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 115.0.1829.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 115.0.1829.0 or later. @@ -5118,7 +5118,7 @@ Release Date: Jun. 5, 2023 [NuGet package for WebView2 SDK 1.0.1823.32](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1823.32) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 114.0.1823.32 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 114.0.1823.32 or later. @@ -5229,7 +5229,7 @@ Release Date: Apr. 10, 2023 [NuGet package for WebView2 SDK 1.0.1777-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1777-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 114.0.1777.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 114.0.1777.0 or later. @@ -5326,7 +5326,7 @@ Release Date: May 8, 2023 [NuGet package for WebView2 SDK 1.0.1774.30](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1774.30) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 113.0.1774.30 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 113.0.1774.30 or later. @@ -5420,7 +5420,7 @@ Release Date: Mar. 20, 2023 [NuGet package for WebView2 SDK 1.0.1724-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1724-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 113.0.1724.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 113.0.1724.0 or later. @@ -5778,7 +5778,7 @@ Release Date: Apr. 13, 2023 [NuGet package for WebView2 SDK 1.0.1722.45](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1722.45) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 112.0.1722.45 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 112.0.1722.45 or later. @@ -5845,7 +5845,7 @@ Release Date: Feb. 15, 2023 [NuGet package for WebView2 SDK 1.0.1671-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1671-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 112.0.1671.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 112.0.1671.0 or later. @@ -6050,7 +6050,7 @@ Release Date: Mar. 20, 2023 [NuGet package for WebView2 SDK 1.0.1661.34](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1661.34) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 111.0.1661.34 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 111.0.1661.34 or later. @@ -6276,7 +6276,7 @@ Release Date: Jan. 19, 2023 [NuGet package for WebView2 SDK 1.0.1619-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1619-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 111.0.1619.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 111.0.1619.0 or later. @@ -6459,7 +6459,7 @@ Release Date: Feb. 15, 2023 [NuGet package for WebView2 SDK 1.0.1587.40](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1587.40) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 110.0.1587.40 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 110.0.1587.40 or later. @@ -6508,7 +6508,7 @@ Release Date: Dec. 12, 2022 [NuGet package for WebView2 SDK 1.0.1549-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1549-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 110.0.1549.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 110.0.1549.0 or later. @@ -6669,7 +6669,7 @@ Release Date: Jan. 17, 2023 [NuGet package for WebView2 SDK 1.0.1518.46](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1518.46) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 109.0.1518.46 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 109.0.1518.46 or later. @@ -6762,7 +6762,7 @@ Release Date: Oct. 31, 2022 [NuGet package for WebView2 SDK 1.0.1466-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1466-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 109.0.1466.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 109.0.1466.0 or later. @@ -6880,7 +6880,7 @@ Release Date: Dec. 12, 2022 [NuGet package for WebView2 SDK 1.0.1462.37](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1462.37) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 108.0.1462.37 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 108.0.1462.37 or later. @@ -6898,7 +6898,7 @@ Release Date: Oct. 31, 2022 [NuGet package for WebView2 SDK 1.0.1418.22](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1418.22) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 107.0.1418.22 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 107.0.1418.22 or later. @@ -6916,7 +6916,7 @@ Release Date: Oct. 11, 2022 [NuGet package for WebView2 SDK 1.0.1414-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1414-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 107.0.1414.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 107.0.1414.0 or later. @@ -7037,7 +7037,7 @@ Release Date: Oct. 11, 2022 [NuGet package for WebView2 SDK 1.0.1370.28](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1370.28) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 106.0.1370.28 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 106.0.1370.28 or later. @@ -7080,7 +7080,7 @@ Release Date: Sep. 6, 2022 [NuGet package for WebView2 SDK 1.0.1369-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1369-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 106.0.1369.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 106.0.1369.0 or later. @@ -7137,7 +7137,7 @@ Release Date: Sep. 6, 2022 [NuGet package for WebView2 SDK 1.0.1343.22](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1343.22) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 105.0.1343.22 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 105.0.1343.22 or later. @@ -7155,7 +7155,7 @@ Release Date: Aug. 8, 2022 [NuGet package for WebView2 SDK 1.0.1340-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1340-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 105.0.1340.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 105.0.1340.0 or later. @@ -7242,7 +7242,7 @@ Release Date: Jul. 4, 2022 [NuGet package for WebView2 SDK 1.0.1305-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1305-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 105.0.1305.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 105.0.1305.0 or later. @@ -7302,7 +7302,7 @@ Release Date: Aug. 8, 2022 [NuGet package for WebView2 SDK 1.0.1293.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1293.44) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 104.0.1293.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 104.0.1293.44 or later. @@ -7340,7 +7340,7 @@ Release Date: Jul. 4, 2022 [NuGet package for WebView2 SDK 1.0.1264.42](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1264.42) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 103.0.1264.42 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 103.0.1264.42 or later. @@ -7375,7 +7375,7 @@ Release Date: May 9, 2022 [NuGet package for WebView2 SDK 1.0.1248-prelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1248-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 102.0.1248.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 102.0.1248.0 or later. @@ -7421,7 +7421,7 @@ Release Date: Jun. 14, 2022 [NuGet package for WebView2 SDK 1.0.1245.22](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1245.22) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 102.0.1245.22 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 102.0.1245.22 or later. There is no corresponding prerelease package. @@ -7484,7 +7484,7 @@ Release Date: Apr. 12, 2022 [NuGet package for WebView2 SDK 1.0.1222-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1222-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 102.0.1222.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 102.0.1222.0 or later. @@ -7539,7 +7539,7 @@ Release Date: May 9, 2022 [NuGet package for WebView2 SDK 1.0.1210.39](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1210.39) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 101.0.1210.39 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 101.0.1210.39 or later. @@ -7580,7 +7580,7 @@ Release Date: Mar. 10, 2022 [NuGet package for WebView2 SDK 1.0.1189-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1189-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 100.0.1189.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 100.0.1189.0 or later. @@ -7627,7 +7627,7 @@ Release Date: Apr. 12, 2022 [NuGet package for WebView2 SDK 1.0.1185.39](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1185.39) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 100.0.1185.39 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 100.0.1185.39 or later. @@ -7668,7 +7668,7 @@ Release Date: Feb. 6, 2022 [NuGet package for WebView2 SDK 1.0.1158-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1158-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 100.0.1158.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 100.0.1158.0 or later. @@ -7713,7 +7713,7 @@ Release Date: Mar. 10, 2022 [NuGet package for WebView2 SDK 1.0.1150.38](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1150.38) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 99.0.1150.38 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 99.0.1150.38 or later. @@ -7733,7 +7733,7 @@ Release Date: Jan. 13, 2022 [NuGet package for WebView2 SDK 1.0.1133-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1133-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 99.0.1133.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 99.0.1133.0 or later. @@ -7795,7 +7795,7 @@ Release Date: Feb. 6, 2022 [NuGet package for WebView2 SDK 1.0.1108.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1108.44) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 98.0.1108.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 98.0.1108.44 or later. @@ -7832,7 +7832,7 @@ Release Date: Nov. 29, 2021 [NuGet package for WebView2 SDK 1.0.1083-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1083-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 97.0.1083.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 97.0.1083.0 or later. @@ -7886,7 +7886,7 @@ Release Date: Jan. 13, 2022 [NuGet package for WebView2 SDK 1.0.1072.54](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1072.54) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 97.0.1072.54 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 97.0.1072.54 or later. @@ -7911,7 +7911,7 @@ Release Date: Oct. 29, 2021 [NuGet package for WebView2 SDK 1.0.1056-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1056-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 97.0.1056.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 97.0.1056.0 or later. @@ -7954,7 +7954,7 @@ Release Date: Nov. 29, 2021 [NuGet package for WebView2 SDK 1.0.1054.31](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1054.31) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 96.0.1054.31 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 96.0.1054.31 or later. @@ -7980,7 +7980,7 @@ Release Date: Oct. 25, 2021 [NuGet package for WebView2 SDK 1.0.1020.30](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1020.30) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 95.0.1020.30 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 95.0.1020.30 or later. @@ -8008,7 +8008,7 @@ Release Date: Sep. 20, 2021 [NuGet package for WebView2 SDK 1.0.1018-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1018-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 95.0.1018.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 95.0.1018.0 or later. @@ -8040,7 +8040,7 @@ Release Date: Sep. 14, 2021 [NuGet package for WebView2 SDK 1.0.1010-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.1010-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 95.0.1010.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 95.0.1010.0 or later. @@ -8118,7 +8118,7 @@ Release Date: Sep. 27, 2021 [NuGet package for WebView2 SDK 1.0.992.28](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.992.28) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 94.0.992.31 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 94.0.992.31 or later. @@ -8147,7 +8147,7 @@ Release Date: Sep. 8, 2021 [NuGet package for WebView2 SDK 1.0.961.33](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.961.33) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 93.0.961.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 93.0.961.44 or later. @@ -8183,7 +8183,7 @@ Release Date: Jul. 26, 2021 [NuGet package for WebView2 SDK 1.0.955-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.955-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 93.0.967.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 93.0.967.0 or later. @@ -8262,7 +8262,7 @@ Release Date: Jul. 26, 2021 [NuGet package for WebView2 SDK 1.0.902.49](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.902.49) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 92.0.902.49 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 92.0.902.49 or later. @@ -8300,7 +8300,7 @@ Release Date: Jun. 1, 2021 [NuGet package for WebView2 SDK 1.0.902-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.902-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 92.0.902.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 92.0.902.0 or later. @@ -8386,7 +8386,7 @@ Release Date: Apr. 26, 2021 [NuGet package for WebView2 SDK 1.0.865-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.865-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 91.0.865.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 91.0.865.0 or later. @@ -8460,7 +8460,7 @@ Release Date: May 31, 2021 [NuGet package for WebView2 SDK 1.0.864.35](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.864.35) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 91.0.864.35 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 91.0.864.35 or later. @@ -8505,7 +8505,7 @@ Release Date: Mar. 8, 2021 [NuGet package for WebView2 SDK 1.0.824-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.824-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 91.0.824.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires Microsoft Edge version 91.0.824.0 or later. @@ -8553,7 +8553,7 @@ Release Date: Apr. 21, 2021 [NuGet package for WebView2 SDK 1.0.818.41](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.818.41) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 90.0.818.41 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 90.0.818.41 or later. @@ -8574,7 +8574,7 @@ Release Date: Feb. 10, 2021 [NuGet package for WebView2 SDK 1.0.790-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.790-prerelease) -This Prerelease version of the WebView2 SDK requires Microsoft Edge version 86.0.616.0 or higher. +This Prerelease version of the WebView2 SDK requires Microsoft Edge version 86.0.616.0 or later. @@ -8662,7 +8662,7 @@ Release Date: Mar. 8, 2021 [NuGet package for WebView2 SDK 1.0.774.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.774.44) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 89.0.774.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 89.0.774.44 or later. @@ -8699,7 +8699,7 @@ Release Date: Dec. 8, 2020 [NuGet package for WebView2 SDK 1.0.721-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.721-prerelease) -This Prerelease version of the WebView2 SDK requires Microsoft Edge version 86.0.616.0 or higher. +This Prerelease version of the WebView2 SDK requires Microsoft Edge version 86.0.616.0 or later. @@ -8771,7 +8771,7 @@ Release Date: Jan. 25, 2021 [NuGet package for WebView2 SDK 1.0.705.50](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.705.50) -This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or higher. +This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or later. @@ -8795,7 +8795,7 @@ Release Date: Oct. 19, 2020 [NuGet package for WebView2 SDK 1.0.674-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.674-prerelease) -This Prerelease version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or higher. +This Prerelease version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or later. @@ -8835,7 +8835,7 @@ Release Date: Nov. 20, 2020 [NuGet package for WebView2 SDK 1.0.664.37](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.664.37) -This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or higher. +This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or later. @@ -8871,7 +8871,7 @@ Release Date: Oct. 19, 2020 [NuGet package for WebView2 SDK 1.0.622.22](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.622.22) -This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or higher. +This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or later. > [!IMPORTANT] > **Announcement**: Win32 C/C++ WebView2 is now Generally Available (GA). Starting this release, Release SDKs are forward-compatible. See [GA announcement blog post](https://blogs.windows.com/msedgedev/edge-webview2-general-availability). @@ -8890,7 +8890,7 @@ Release Date: Sep. 10, 2020 [NuGet package for WebView2 SDK 0.9.622.11](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.9.622.11) -This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or higher. +This Release version of the WebView2 SDK requires WebView2 Runtime version 86.0.616.0 or later. * > [!IMPORTANT] > **Announcement**: This SDK is the Release Candidate for WebView2 Win32 C/C++ GA. The GA version is expected to use the same API interface and functionality. @@ -8912,7 +8912,7 @@ Release Date: Jul. 20, 2020 [NuGet package for WebView2 SDK 0.9.579](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.9.579) -This Release version of the WebView2 SDK requires Microsoft Edge version 86.0.579.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 86.0.579.0 or later. @@ -8971,7 +8971,7 @@ Release Date: Jun. 8, 2020 [NuGet package for WebView2 SDK 0.9.538](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.9.538) -This Release version of the WebView2 SDK requires Microsoft Edge version 85.0.538.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 85.0.538.0 or later. @@ -9031,7 +9031,7 @@ Release Date: May 14, 2020 [NuGet package for WebView2 SDK 0.9.515-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.9.515-prerelease) -This Prerelease version of the WebView2 SDK requires Microsoft Edge version 84.0.515.0 or higher. +This Prerelease version of the WebView2 SDK requires Microsoft Edge version 84.0.515.0 or later. * > [!IMPORTANT] > **Announcement**: WebView2 now supports Windows Forms and WPF on .NET Framework 4.6.2 or later and .NET Core 3.0 or later in the **prerelease package**. @@ -9055,7 +9055,7 @@ Release Date: Apr. 20, 2020 [NuGet package for WebView2 SDK 0.9.488](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.9.488) -This Release version of the WebView2 SDK requires Microsoft Edge version 84.0.488.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 84.0.488.0 or later. * > [!IMPORTANT] > **Announcement**: Starting with the upcoming Microsoft Edge version 83, Evergreen WebView2 no longer targets the Stable browser channel. Instead, it targets another set of binaries, branded Evergreen WebView2 Runtime, that you can chain-install through an installer that the WebView2 team is currently developing. See [Distribute your app and the WebView2 Runtime](../concepts/distribution.md). @@ -9127,7 +9127,7 @@ Release Date: Feb. 24, 2020 [NuGet package for WebView2 SDK 0.9.430](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.9.430) -This Release version of the WebView2 SDK requires Microsoft Edge version 82.0.430.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 82.0.430.0 or later. The WebView2 SDK is the official Win32 C++ Beta version, which incorporates several feature requests from feedback. The WebView2 team tries to limit the number of releases with breaking changes. As general availability approaches, several major breaking changes are incorporated in the Beta release. @@ -9168,7 +9168,7 @@ Release Date: Dec. 9, 2019 [NuGet package for WebView2 SDK 0.8.355](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.8.355) -This Release version of the WebView2 SDK requires Microsoft Edge version 80.0.355.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 80.0.355.0 or later. * Released WebView2API Sample, a comprehensive guide of the WebView2 SDK. See [API Sample](https://github.com/MicrosoftEdge/WebView2Samples/tree/main/SampleApps/WebView2APISample). * Added IME support for all languages besides English ([#30](https://github.com/MicrosoftEdge/WebViewFeedback/issues/30)). @@ -9186,7 +9186,7 @@ Release Date: Oct. 28, 2019 [NuGet package for WebView2 SDK 0.8.314](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.8.314) -This Release version of the WebView2 SDK requires Microsoft Edge version 80.0.314.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 80.0.314.0 or later. @@ -9214,7 +9214,7 @@ Release Date: Sep. 10, 2019 [NuGet package for WebView2 SDK 0.8.270](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.8.270) -This Release version of the WebView2 SDK requires Microsoft Edge version 78.0.270.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 78.0.270.0 or later. @@ -9244,7 +9244,7 @@ Release Date: Jul. 29, 2019 [NuGet package for WebView2 SDK 0.8.230](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.8.230) -This Release version of the WebView2 SDK requires Microsoft Edge version 77.0.230.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 77.0.230.0 or later. @@ -9264,7 +9264,7 @@ Release Date: Jun. 17, 2019 [NuGet package for WebView2 SDK 0.8.190](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.8.190) -This Release version of the WebView2 SDK requires Microsoft Edge version 77.0.190.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 77.0.190.0 or later. * Added `get_AreDevToolsEnabled`/`put_AreDevToolsEnabled` to control if users can open DevTools ([Issue #16](https://github.com/MicrosoftEdge/WebViewFeedback/issues/16)). * Added `get_IsStatusBarEnabled`/`put_IsStatusBarEnabled` to control if the status bar is displayed ([Issue #19](https://github.com/MicrosoftEdge/WebViewFeedback/issues/19)). @@ -9286,7 +9286,7 @@ Release Date: May 6, 2019 [NuGet package for WebView2 SDK 0.8.149](https://www.nuget.org/packages/Microsoft.Web.WebView2/0.8.149) -This Release version of the WebView2 SDK requires Microsoft Edge version 76.0.149.0 or higher. +This Release version of the WebView2 SDK requires Microsoft Edge version 76.0.149.0 or later. Initial developer preview release. diff --git a/microsoft-edge/webview2/release-notes/includes/templates.md b/microsoft-edge/webview2/release-notes/includes/templates.md index f1290deca3..a507e56e2a 100644 --- a/microsoft-edge/webview2/release-notes/includes/templates.md +++ b/microsoft-edge/webview2/release-notes/includes/templates.md @@ -5,7 +5,7 @@ Release Date: Mmm. dd, yyyy [NuGet package for WebView2 SDK 1.0.####-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.####-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version ###.0.####.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version ###.0.####.0 or later. @@ -103,7 +103,7 @@ Release Date: Mmm. dd, yyyy [NuGet package for WebView2 SDK 1.0.####.##](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.####.##) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version ###.0.####.## or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version ###.0.####.## or later. diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index 6a6d064921..88b0836864 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -29,14 +29,13 @@ The following new features and bug fixes are in the WebView2 Release SDK and Pre -## Prerelease SDK 1.0.4071-prerelease, for Runtime 150 (June. 08, 2026) +## Prerelease SDK 1.0.4071-prerelease, for Runtime 150 (Jun. 8, 2026) -Release Date: June 08, 2026 +Release Date: Jun. 8, 2026 [NuGet package for WebView2 SDK 1.0.4071-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.4071-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 150.0.4071.0 or higher - +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 150.0.4071.0 or later. @@ -44,60 +43,57 @@ For full API compatibility, this Prerelease version of the WebView2 SDK requires No Experimental APIs have been added in this Prerelease SDK. + #### Promotions to Phase 2 (Stable in Prerelease) No APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, in this Prerelease SDK. - #### Bug fixes This Prerelease SDK includes the following bug fixes. - ###### Runtime and SDK * Adds total-count histograms for WebView2 environment and controller creation attempts (SDK and Runtime) + ###### Runtime-only -* Map TERMINATION_STATUS_LAUNCH_FAILED_OS_POLICY to kLaunchFailed -* Failure reason classification updated to OOM for process killed to reclaim memory. -* Adding system memory snapshot at OOM detection time for analysis -* Fix the popup would be silently closed when the host expected it to remain open . -* Added trusted origin check during host object access -* Migrated deprecated base::Value APIs to modern base::DictValue API -* Fix print dialog pop option not selecting in CompositionControl .([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) -* Reduced redundant map lookups in WebView2 URL request manager for improved performance -* Eliminated unnecessary string allocations in WebView2 cookie layer for improved performance -* Fix window to Visual UIA tree +* Mapped `TERMINATION_STATUS_LAUNCH_FAILED_OS_POLICY` to `kLaunchFailed`. +* Updated the failure reason classification to `OOM`, for a process that's been killed to reclaim memory. +* Added a system memory snapshot at out-of-memory (OOM) detection time for analysis. +* Fixed the silent closing of a popup, when the host expects the popup to remain open. +* Added trusted origin check during host object access. +* Migrated deprecated `base::Value` APIs to the modern `base::DictValue` API. +* Fixed the **Print** dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) +* Reduced redundant map lookups in WebView2 URL request manager, for improved performance. +* Eliminated unnecessary string allocations in WebView2 cookie layer, for improved performance. +* Fixed Window to Visual UIA tree. ###### SDK-only -* Fix container safety issues in WebView2 frame and listener code +* Fixed container safety issues in WebView2 frame and listener code. * WinRT event subscription now keeps the projection wrapper alive until the handler is unsubscribed. -## Release SDK 1.0.nnnn.nn, for Runtime 149 (june. 08, 2026) +## Release SDK 1.0.nnnn.nn, for Runtime 149 (Jun. 8, 2026) -Release Date: June 08, 2026 +Release Date: Jun. 8, 2026 [NuGet package for WebView2 SDK 1.0.4022.49](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.4022.49) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 149.0.4022.49 or higher. - - -###### heading +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 149.0.4022.49 or later. @@ -111,14 +107,14 @@ No additional APIs have been promoted from Phase 2: Stable in Prerelease, to Pha This Release SDK includes the following bug fixes. + ###### Runtime-only -* Map TERMINATION_STATUS_LAUNCH_FAILED_OS_POLICY to kLaunchFailed. -* Failure reason classification updated to OOM for process killed to reclaim memory. +* Mapped `TERMINATION_STATUS_LAUNCH_FAILED_OS_POLICY` to `kLaunchFailed`. +* Updated the failure reason classification to `OOM`, for a process that's been killed to reclaim memory. * Added trusted origin check during host object access. -* Fix print dialog pop option not selecting in CompositionControl.([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) - +* Fixed the **Print** dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) @@ -130,7 +126,7 @@ Release Date: May 11, 2026 [NuGet package for WebView2 SDK 1.0.4015-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.4015-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 149.0.4015.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 149.0.4015.0 or later. @@ -558,7 +554,7 @@ Release Date: May 11, 2026 [NuGet package for WebView2 SDK 1.0.3967.48](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3967.48) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 148.0.3967.48 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 148.0.3967.48 or later. @@ -588,7 +584,7 @@ Release Date: April 13, 2026 [NuGet package for WebView2 SDK 1.0.3965-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3965-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 148.0.3965.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 148.0.3965.0 or later. @@ -801,7 +797,7 @@ Release Date: Apr. 13, 2026 [NuGet package for WebView2 SDK 1.0.3912.50](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3912.50) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 147.0.3912.50 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 147.0.3912.50 or later. @@ -833,7 +829,7 @@ Release Date: Mar. 16, 2026 [NuGet package for WebView2 SDK 1.0.3908-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3908-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 147.0.3908.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 147.0.3908.0 or later. @@ -906,7 +902,7 @@ Release Date: Mar. 16, 2026 [NuGet package for WebView2 SDK 1.0.3856.49](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3856.49) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 146.0.3856.49 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 146.0.3856.49 or later. @@ -936,7 +932,7 @@ Release Date: Feb. 16, 2026 [NuGet package for WebView2 SDK 1.0.3848-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3848-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 146.0.3848.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 146.0.3848.0 or later. @@ -1121,7 +1117,7 @@ Release Date: Feb. 16, 2026 [NuGet package for WebView2 SDK 1.0.3800.47](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3800.47) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 145.0.3800.47 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 145.0.3800.47 or later. @@ -1155,7 +1151,7 @@ Release Date: Jan. 19, 2026 [NuGet package for WebView2 SDK 1.0.3796-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3796-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 145.0.3796.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 145.0.3796.0 or later. @@ -1240,7 +1236,7 @@ Release Date: Jan. 27, 2026 [NuGet package for WebView2 SDK 1.0.3719.77](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3719.77) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 144.0.3719.77 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 144.0.3719.77 or later. @@ -1318,7 +1314,7 @@ Release Date: Dec. 8, 2025 [NuGet package for WebView2 SDK 1.0.3712-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3712-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 144.0.3712.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 144.0.3712.0 or later. @@ -1448,7 +1444,7 @@ Release Date: Dec. 8, 2025 [NuGet package for WebView2 SDK 1.0.3650.58](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3650.58) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 143.0.3650.58 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 143.0.3650.58 or later. @@ -1474,7 +1470,7 @@ Release Date: Nov. 7, 2025 [NuGet package for WebView2 SDK 1.0.3650-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3650-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 143.0.3650.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 143.0.3650.0 or later. @@ -1511,7 +1507,7 @@ Release Date: Nov. 3, 2025 [NuGet package for WebView2 SDK 1.0.3595.46](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3595.46) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 142.0.3595.46 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 142.0.3595.46 or later. @@ -1541,7 +1537,7 @@ Release Date: Oct. 7, 2025 [NuGet package for WebView2 SDK 1.0.3590-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3590-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 142.0.3590.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 142.0.3590.0 or later. @@ -1653,7 +1649,7 @@ Release Date: Oct. 6, 2025 [NuGet package for WebView2 SDK 1.0.3537.50](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3537.50) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 141.0.3537.50 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 141.0.3537.50 or later. @@ -1689,7 +1685,7 @@ Release Date: Sep. 8, 2025 [NuGet package for WebView2 SDK 1.0.3530-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3530-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 141.0.3530.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 141.0.3530.0 or later. @@ -1735,7 +1731,7 @@ Release Date: Sep. 8, 2025 [NuGet package for WebView2 SDK 1.0.3485.44](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3485.44) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 140.0.3485.44 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 140.0.3485.44 or later. @@ -1769,7 +1765,7 @@ Release Date: Aug. 11, 2025 [NuGet package for WebView2 SDK 1.0.3477-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3477-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 140.0.3477.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 140.0.3477.0 or later. @@ -1807,7 +1803,7 @@ Release Date: Jul. 14, 2025 [NuGet package for WebView2 SDK 1.0.3415-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3415-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 140.0.3415.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 140.0.3415.0 or later. @@ -2308,7 +2304,7 @@ Release Date: Aug. 11, 2025 [NuGet package for WebView2 SDK 1.0.3405.78](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3405.78) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 139.0.3405.78 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 139.0.3405.78 or later. @@ -2441,7 +2437,7 @@ Release Date: Jul. 1, 2025 [NuGet package for WebView2 SDK 1.0.3351.48](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3351.48) -For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 138.0.3351.48 or higher. +For full API compatibility, this Release version of the WebView2 SDK requires WebView2 Runtime version 138.0.3351.48 or later. @@ -2493,7 +2489,7 @@ Release Date: Jun. 3, 2025 [NuGet package for WebView2 SDK 1.0.3344-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3344-prerelease) -For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 138.0.3344.0 or higher. +For full API compatibility, this Prerelease version of the WebView2 SDK requires the WebView2 Runtime that ships with Microsoft Edge version 138.0.3344.0 or later. From 2b9137c554b1b0868501036299fc129dba6dc91c Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 16:54:35 -0700 Subject: [PATCH 07/13] heading # --- microsoft-edge/webview2/release-notes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index 88b0836864..da9f61c481 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -87,7 +87,7 @@ This Prerelease SDK includes the following bug fixes. -## Release SDK 1.0.nnnn.nn, for Runtime 149 (Jun. 8, 2026) +## Release SDK 1.0.4022.49, for Runtime 149 (Jun. 8, 2026) Release Date: Jun. 8, 2026 From 0bb1c756d5bac4f272422cfd310954a9c5993a96 Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 16:55:40 -0700 Subject: [PATCH 08/13] the --- microsoft-edge/webview2/release-notes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index da9f61c481..72a176b700 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -74,7 +74,7 @@ This Prerelease SDK includes the following bug fixes. * Fixed the **Print** dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) * Reduced redundant map lookups in WebView2 URL request manager, for improved performance. * Eliminated unnecessary string allocations in WebView2 cookie layer, for improved performance. -* Fixed Window to Visual UIA tree. +* Fixed the Window to Visual UIA tree. From da02f00b374d540b41bc8460e681b4577f851dda Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 16:57:42 -0700 Subject: [PATCH 09/13] Window to Visual UI Automation (UIA) tree --- microsoft-edge/webview2/release-notes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index 72a176b700..b63d2cf765 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -74,7 +74,7 @@ This Prerelease SDK includes the following bug fixes. * Fixed the **Print** dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) * Reduced redundant map lookups in WebView2 URL request manager, for improved performance. * Eliminated unnecessary string allocations in WebView2 cookie layer, for improved performance. -* Fixed the Window to Visual UIA tree. +* Fixed the Window to Visual UI Automation (UIA) tree. From 1c2953a653552e4fe37c5aca02eb74c054b09251 Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 16:59:38 -0700 Subject: [PATCH 10/13] link specific wv2 relnotes --- microsoft-edge/web-platform/release-notes/149.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/microsoft-edge/web-platform/release-notes/149.md b/microsoft-edge/web-platform/release-notes/149.md index b1841d245c..071889ec86 100644 --- a/microsoft-edge/web-platform/release-notes/149.md +++ b/microsoft-edge/web-platform/release-notes/149.md @@ -53,9 +53,7 @@ See [What's new in DevTools (Microsoft Edge 149)](../../devtools/whats-new/149.m ## WebView2 -See [Release notes for the WebView2 SDK](../../webview2/release-notes/index.md). - From 1cdaa4eaddb63cf7bfc5adfd331244e843f76bbd Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:01:26 -0700 Subject: [PATCH 11/13] . --- microsoft-edge/webview2/release-notes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index b63d2cf765..0abdc0adb3 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -59,7 +59,7 @@ This Prerelease SDK includes the following bug fixes. ###### Runtime and SDK -* Adds total-count histograms for WebView2 environment and controller creation attempts (SDK and Runtime) +* Adds total-count histograms for WebView2 environment and controller creation attempts. From 128d4536ee27851815bce8a6282d2a1e6724d166 Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:05:49 -0700 Subject: [PATCH 12/13] Adds > Added --- microsoft-edge/webview2/release-notes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index 0abdc0adb3..80108cee3b 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -59,7 +59,7 @@ This Prerelease SDK includes the following bug fixes. ###### Runtime and SDK -* Adds total-count histograms for WebView2 environment and controller creation attempts. +* Added total-count histograms for WebView2 environment and controller creation attempts. From a804ee50b920f6cd28ab5547a53f6c4d8b3b695f Mon Sep 17 00:00:00 2001 From: Michael Hoffman <45407486+mikehoffms@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:46:06 -0700 Subject: [PATCH 13/13] Print dialog --- microsoft-edge/webview2/release-notes/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/microsoft-edge/webview2/release-notes/index.md b/microsoft-edge/webview2/release-notes/index.md index 80108cee3b..f4ee310d3b 100644 --- a/microsoft-edge/webview2/release-notes/index.md +++ b/microsoft-edge/webview2/release-notes/index.md @@ -71,7 +71,7 @@ This Prerelease SDK includes the following bug fixes. * Fixed the silent closing of a popup, when the host expects the popup to remain open. * Added trusted origin check during host object access. * Migrated deprecated `base::Value` APIs to the modern `base::DictValue` API. -* Fixed the **Print** dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) +* Fixed the **Print** dialog's dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) * Reduced redundant map lookups in WebView2 URL request manager, for improved performance. * Eliminated unnecessary string allocations in WebView2 cookie layer, for improved performance. * Fixed the Window to Visual UI Automation (UIA) tree. @@ -114,7 +114,7 @@ This Release SDK includes the following bug fixes. * Mapped `TERMINATION_STATUS_LAUNCH_FAILED_OS_POLICY` to `kLaunchFailed`. * Updated the failure reason classification to `OOM`, for a process that's been killed to reclaim memory. * Added trusted origin check during host object access. -* Fixed the **Print** dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195)) +* Fixed the **Print** dialog's dropdown lists not being selected in `WebView2CompositionControl`. ([Issue #5195](https://github.com/MicrosoftEdge/WebView2Feedback/issues/5195))