Skip to content

Commit 4d8d410

Browse files
authored
WebView2 Release Notes for Oct. 2025 Prerelease SDK (#3593)
1 parent be09181 commit 4d8d410

File tree

2 files changed

+118
-2
lines changed

2 files changed

+118
-2
lines changed

microsoft-edge/webview2/release-notes/archive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: msedgedevrel
66
ms.topic: conceptual
77
ms.service: microsoft-edge
88
ms.subservice: devtools
9-
ms.date: 10/08/2025
9+
ms.date: 10/07/2025
1010
---
1111
# Archived Release Notes for the WebView2 SDK
1212

microsoft-edge/webview2/release-notes/index.md

Lines changed: 117 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: msedgedevrel
66
ms.topic: conceptual
77
ms.service: microsoft-edge
88
ms.subservice: webview
9-
ms.date: 10/06/2025
9+
ms.date: 10/07/2025
1010
---
1111
# Release Notes for the WebView2 SDK
1212

@@ -65,6 +65,122 @@ This Release SDK includes the following bug fixes.
6565
<!-- end of Oct 2025 Release SDK -->
6666

6767

68+
<!-- Oct 2025 Prerelease SDK -->
69+
<!-- ====================================================================== -->
70+
## 1.0.3590-prerelease
71+
72+
Release Date: October 7, 2025
73+
74+
[NuGet package for WebView2 SDK 1.0.3590-prerelease](https://www.nuget.org/packages/Microsoft.Web.WebView2/1.0.3590-prerelease)
75+
76+
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.
77+
78+
79+
<!-- ------------------------------ -->
80+
#### Experimental APIs
81+
82+
The following APIs are in Phase 1: Experimental in Prerelease, and have been added in this Prerelease SDK.
83+
84+
85+
<!-- ---------- -->
86+
###### Sensitivity label support
87+
88+
A new Sensitivity Info API in WebView2 enables applications to access sensitivity label information communicated by webpages through the [Page Interaction Restriction Manager](https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/PageInteractionRestrictionManager/explainer.md). This feature helps host applications detect and respond to sensitive content.
89+
90+
Key capabilities:
91+
92+
* **Configure Page Interaction Restriction Manager availability** - Configure a list of URL filters for the Page Interaction Restriction Manager. After the list has been configured, the Page Interaction Restriction Manager becomes available on pages in the allow list. These pages can send sensitivity labels to the platform via the API.
93+
94+
* **Sensitivity Info exposure** - `CoreWebView2` now exposes a `SensitivityInfo` property and a `SensitivityInfoChanged` event, allowing applications to listen for updates to sensitivity label information.
95+
96+
Sensitivity label support is initially available on Win32 only. Support for .NET and WinRT is planned for a future release.
97+
98+
##### [.NET/C#](#tab/dotnetcsharp)
99+
100+
Pending.
101+
102+
##### [WinRT/C#](#tab/winrtcsharp)
103+
104+
Pending.
105+
106+
##### [Win32/C++](#tab/win32cpp)
107+
108+
<!-- CoreWebView2 -->
109+
* [ICoreWebView2Experimental32](/microsoft-edge/webview2/reference/win32/icorewebview2experimental32?view=webview2-1.0.3590-prerelease&preserve-view=true)
110+
* [ICoreWebView2Experimental32::add_SensitivityInfoChanged](/microsoft-edge/webview2/reference/win32/icorewebview2experimental32?view=webview2-1.0.3590-prerelease&preserve-view=true#add_sensitivityinfochanged)
111+
* [ICoreWebView2Experimental32::get_SensitivityInfo](/microsoft-edge/webview2/reference/win32/icorewebview2experimental32?view=webview2-1.0.3590-prerelease&preserve-view=true#get_sensitivityinfo)
112+
* [ICoreWebView2Experimental32::remove_SensitivityInfoChanged](/microsoft-edge/webview2/reference/win32/icorewebview2experimental32?view=webview2-1.0.3590-prerelease&preserve-view=true#remove_sensitivityinfochanged)
113+
114+
<!-- CoreWebView2MipSensitivityLabel -->
115+
* [ICoreWebView2ExperimentalMipSensitivityLabel](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalmipsensitivitylabel?view=webview2-1.0.3590-prerelease&preserve-view=true)
116+
* [ICoreWebView2ExperimentalMipSensitivityLabel::get_LabelId](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalmipsensitivitylabel?view=webview2-1.0.3590-prerelease&preserve-view=true#get_labelid)
117+
* [ICoreWebView2ExperimentalMipSensitivityLabel::get_OrganizationId](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalmipsensitivitylabel?view=webview2-1.0.3590-prerelease&preserve-view=true#get_organizationid)
118+
119+
<!-- CoreWebView2Profile -->
120+
* [ICoreWebView2ExperimentalProfile14](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalprofile14?view=webview2-1.0.3590-prerelease&preserve-view=true)
121+
* [ICoreWebView2ExperimentalProfile14::SetPageInteractionRestrictionManagerAllowList](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalprofile14?view=webview2-1.0.3590-prerelease&preserve-view=true#setpageinteractionrestrictionmanagerallowlist)
122+
123+
<!-- CoreWebView2SensitivityInfo -->
124+
* [ICoreWebView2ExperimentalSensitivityInfo](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivityinfo?view=webview2-1.0.3590-prerelease&preserve-view=true)
125+
* [ICoreWebView2ExperimentalSensitivityInfo::get_SensitivityLabels](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivityinfo?view=webview2-1.0.3590-prerelease&preserve-view=true#get_sensitivitylabels)
126+
* [ICoreWebView2ExperimentalSensitivityInfo::get_SensitivityLabelsState](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivityinfo?view=webview2-1.0.3590-prerelease&preserve-view=true#get_sensitivitylabelsstate)
127+
128+
<!-- CoreWebView2SensitivityInfoChangedEventHandler -->
129+
* [ICoreWebView2ExperimentalSensitivityInfoChangedEventHandler](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivityinfochangedeventhandler?view=webview2-1.0.3590-prerelease&preserve-view=true)<!-- win32-only -->
130+
131+
<!-- CoreWebView2SensitivityLabel -->
132+
* [ICoreWebView2ExperimentalSensitivityLabel](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivitylabel?view=webview2-1.0.3590-prerelease&preserve-view=true)
133+
* [ICoreWebView2ExperimentalSensitivityLabel::get_LabelKind](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivitylabel?view=webview2-1.0.3590-prerelease&preserve-view=true#get_labelkind)
134+
135+
<!-- CoreWebView2SensitivityLabelCollectionView -->
136+
* [ICoreWebView2ExperimentalSensitivityLabelCollectionView](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivitylabelcollectionview?view=webview2-1.0.3590-prerelease&preserve-view=true)<!-- win32-only -->
137+
* [ICoreWebView2ExperimentalSensitivityLabelCollectionView::get_Count](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivitylabelcollectionview?view=webview2-1.0.3590-prerelease&preserve-view=true#get_count)
138+
* [ICoreWebView2ExperimentalSensitivityLabelCollectionView::GetValueAtIndex](/microsoft-edge/webview2/reference/win32/icorewebview2experimentalsensitivitylabelcollectionview?view=webview2-1.0.3590-prerelease&preserve-view=true#getvalueatindex)
139+
140+
<!-- enums -->
141+
<!-- CoreWebView2SensitivityLabelKind -->
142+
* [COREWEBVIEW2_SENSITIVITY_LABEL_KIND Enum](/microsoft-edge/webview2/reference/win32/webview2-idl?view=webview2-1.0.3590-prerelease&preserve-view=true#corewebview2_sensitivity_label_kind)
143+
* `COREWEBVIEW2_SENSITIVITY_LABEL_KIND_MIP`
144+
145+
<!-- CoreWebView2SensitivityLabelState -->
146+
* [COREWEBVIEW2_SENSITIVITY_LABELS_STATE Enum](/microsoft-edge/webview2/reference/win32/webview2-idl?view=webview2-1.0.3590-prerelease&preserve-view=true#corewebview2_sensitivity_labels_state)
147+
* `COREWEBVIEW2_SENSITIVITY_LABELS_STATE_AVAILABLE`
148+
* `COREWEBVIEW2_SENSITIVITY_LABELS_STATE_NOT_APPLICABLE`
149+
* `COREWEBVIEW2_SENSITIVITY_LABELS_STATE_PENDING`
150+
151+
---
152+
153+
154+
<!-- ------------------------------ -->
155+
#### Promotions
156+
157+
No APIs have been promoted from Phase 1: Experimental in Prerelease, to Phase 2: Stable in Prerelease, in this Prerelease SDK.
158+
159+
160+
<!-- ------------------------------ -->
161+
#### Bug fixes
162+
163+
This Prerelease SDK includes the following bug fixes.
164+
165+
166+
<!-- ---------- -->
167+
###### Runtime-only
168+
169+
* Fixed a dangling pointer in file system access permission context.
170+
* Fixed the UI hanging during drag-and-drop in WinUI3.
171+
* Fixed local network access triggering a permission alert pop-up window.
172+
* Resolved an issue where an extra region was appearing in the accessibility tree.
173+
* Fixed an issue where downloads in the default browser frame didn't work.
174+
175+
176+
<!-- ---------- -->
177+
###### SDK-only
178+
179+
* Fixed a BinSkim error for `WebView2Loader.dll`.
180+
181+
<!-- end of Oct 2025 Prerelease SDK -->
182+
183+
68184
<!-- Sep 2025 Release SDK -->
69185
<!-- ====================================================================== -->
70186
## 1.0.3485.44

0 commit comments

Comments
 (0)