Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions .github/workflows/webplat-relnotes.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This workflow checks if it's time to generate the next beta relnotes.
# And if so, it generates the beta relnotes and opens a PR with them.
# And if so, it generates a draft and opens an issue to notify the team.

name: Generate beta relnotes

Expand Down Expand Up @@ -28,13 +28,17 @@ jobs:
- name: Generate release notes
run: |
cd scripts
node web-platform-release-notes.js
token=${{ secrets.GITHUB_TOKEN }} node web-platform-release-notes.js

- name: Commit changes
run: |
git checkout -b web-platform-release-notes
git config --local user.email "${{ github.actor }}@users.noreply.github.com"
git config --local user.name "${{ github.actor }}"
git add .
git commit -m "New beta web platform release notes"
git push origin web-platform-release-notes
if ! git diff --quiet; then
git config --local user.email "${{ github.actor }}@users.noreply.github.com"
git config --local user.name "${{ github.actor }}"
git checkout -b web-platform-release-notes
git add .
git commit -m "New beta web platform release notes"
git push origin web-platform-release-notes
else
echo "No changes to commit."
fi
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ Key compatibility limitations include the operating system and rendering in fram
<!-- ------------------------------ -->
#### Operating systems

All hosting modes are supported wherever WebView2 is supported; that is, Windows 10 and later, and certain Windows Server versions. Windows 7, 8 and 8.1 are no longer supported; Windows 7 and Windows 8 only support Windowed hosting, not Visual hosting.
All hosting modes are supported wherever WebView2 is supported.

See also:
* [Windows 7 and 8](../index.md#windows-7-and-8) in _Introduction to Microsoft Edge WebView2_.
* [Supported Windows versions](../index.md#supported-windows-versions) in _Introduction to Microsoft Edge WebView2_.


<!-- ------------------------------ -->
Expand All @@ -181,7 +181,6 @@ See also:
<!-- all links in article, except api ref docs -->

* [Overview of WebView2 APIs](./overview-features-apis.md)
* [Windows 7 and 8](../index.md#windows-7-and-8) in _Introduction to Microsoft Edge WebView2_.
<!-- omit:
* [Enhance UI with the Visual layer (Windows App SDK/WinUI 3)](https://learn.microsoft.com/windows/apps/windows-app-sdk/composition) - Windows App Development. -->

Expand Down
20 changes: 4 additions & 16 deletions microsoft-edge/webview2/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ Hybrid apps, in the middle of this spectrum, allow you to enjoy the best of both

The Windows operating systems that are supported by Webview2 are the same as those supported by Microsoft Edge.

For more information about other supported operating systems, see [Microsoft Edge supported Operating Systems](/deployedge/microsoft-edge-supported-operating-systems).


<!-- ------------------------------ -->
#### Windows Client
Expand All @@ -82,8 +84,10 @@ WebView2 apps can run on the following versions of Windows Client:
* Windows 10 Enterprise multi-session
* Windows 10 IoT Enterprise SAC
* Windows 10 IoT Enterprise 2019 LTSC
* Windows 10 IoT Enterprise 2021 LTSC
* Windows 11
* Windows 11 Enterprise multi-session
* Windows 11 IoT Enterprise 2024 LTSC

For details, see [Windows Client](/deployedge/microsoft-edge-supported-operating-systems#windows-client) in _Microsoft Edge supported Operating Systems_.

Expand All @@ -101,22 +105,6 @@ WebView2 apps can run on the following versions of Windows Server:
For details, see [Windows Server](/deployedge/microsoft-edge-supported-operating-systems#windows-server) in _Microsoft Edge supported Operating Systems_.


<!-- ------------------------------ -->
#### Windows 7 and 8

WebView2 Runtime version 109 is the final version that supports the following versions of Windows. WebView2 Runtime and SDK version 110.0.1519.0 and higher don't support these operating systems.

* Windows Server 2008 R2
* Windows Server 2012
* Windows Server 2012 R2
* Windows 7
* Windows 8/8.1

See also:
* [Microsoft Edge supported Operating Systems](/deployedge/microsoft-edge-supported-operating-systems) - WebView2 support for Windows 7 and Windows Server 2008 R2 have the same support timeline as Microsoft Edge.
* [Microsoft Edge and WebView2 ending support for Windows 7 and Windows 8/8.1](https://blogs.windows.com/msedgedev/2022/12/09/microsoft-edge-and-webview2-ending-support-for-windows-7-and-windows-8-8-1/)


<!-- ====================================================================== -->
## Supported programming environments and devices

Expand Down
2 changes: 1 addition & 1 deletion microsoft-edge/webview2/release-notes/archive.md
Original file line number Diff line number Diff line change
Expand Up @@ -8594,7 +8594,7 @@ This version of the WebView2 SDK requires Microsoft Edge version 80.0.314.0 or h
<!-- ------------------------------ -->
#### Changes

* Added support for Windows 7, Windows 8, and Windows 8.1. See [Windows 7 and 8](../index.md#windows-7-and-8) in _Introduction to Microsoft Edge WebView2_.
* Added support for Windows 7, Windows 8, and Windows 8.1. See [Supported Windows versions](../index.md#supported-windows-versions) in _Introduction to Microsoft Edge WebView2_.
* Added Visual Studio and Visual Studio Code debug support for WebView2. Now, debug your script in the WebView2 right from your IDE. See [How to debug when developing with WebView2 controls](../how-to/debug.md).
* Added `Native Object Injection` for the running script in WebView2 to access an IDispatch object from the Win32 component of the app and access the properties of the IDispatch object. See [AddRemoteObject](/microsoft-edge/webview2/reference/win32/iwebview2webview4?view=webview2-0.8.355&preserve-view=true#addremoteobject) ([#17](https://github.com/MicrosoftEdge/WebViewFeedback/issues/17)).
* Added `AcceleratorKeyPressed` event. See [add_AcceleratorKeyPressed](/microsoft-edge/webview2/reference/win32/iwebview2webview4?view=webview2-0.8.355&preserve-view=true#add_acceleratorkeypressed) ([#57](https://github.com/MicrosoftEdge/WebViewFeedback/issues/57)).
Expand Down
69 changes: 68 additions & 1 deletion scripts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"@octokit/auth-action": "^5.1.1",
"@octokit/request": "^9.2.1",
"glob": "^7.1.7",
"node-fetch": "3.2.10"
"node-fetch": "3.2.10",
"playwright": "^1.54.1"
}
}
Loading
Loading