Skip to content

Commit da1b7d9

Browse files
Merge remote-tracking branch 'origin/main' into live
2 parents df84bc8 + a66f440 commit da1b7d9

8 files changed

Lines changed: 4759 additions & 202 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# This workflow checks if it's time to generate the next beta relnotes.
2+
# And if so, it generates the beta relnotes and opens a PR with them.
3+
4+
name: Generate beta relnotes
5+
6+
on:
7+
workflow_dispatch:
8+
schedule:
9+
# once a day
10+
- cron: '0 0 * * *'
11+
12+
permissions:
13+
contents: write
14+
pull-requests: write
15+
16+
jobs:
17+
generate:
18+
name: Generate the beta web platform release notes
19+
runs-on: ubuntu
20+
steps:
21+
- name: Checkout repo
22+
uses: actions/checkout@v2
23+
- name: Install dependencies
24+
id: install
25+
run: |
26+
cd scripts
27+
npm install
28+
- name: Run script
29+
id: generate
30+
# This might create a new file, or not, depending on whether it's time
31+
# to generate the release notes.
32+
run: |
33+
cd scripts
34+
node web-platform-release-notes.js
35+
- name: Commit the changes if any
36+
id: commit
37+
run: |
38+
git checkout -b web-platform-release-notes
39+
git config --local user.email "${{ github.actor }}@users.noreply.github.com"
40+
git config --local user.name "${{ github.actor }}"
41+
git add .
42+
git commit -m "New beta web platform release notes"
43+
git push origin web-platform-release-notes

microsoft-edge/toc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1709,6 +1709,11 @@
17091709
- name: Development tips for Microsoft Edge
17101710
href: web-platform/web-platform.md
17111711

1712+
- name: Release notes
1713+
items:
1714+
- name: Microsoft Edge 133
1715+
href: web-platform/release-notes/133.md
1716+
17121717
- name: Site compatibility-impacting changes coming to Microsoft Edge
17131718
href: web-platform/site-impacting-changes.md
17141719

microsoft-edge/web-platform/release-notes/133.md

Lines changed: 364 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
2+
---
3+
title: Microsoft Edge {{ data.nextBetaVersion }} web platform release notes ({% monthYear data.nextBetaReleaseDate %})
4+
description: Microsoft Edge {{ data.nextBetaVersion }} web platform release notes ({% monthYear data.nextBetaReleaseDate %})
5+
author: MSEdgeTeam
6+
ms.author: msedgedevrel
7+
ms.topic: conceptual
8+
ms.service: microsoft-edge
9+
ms.date:
10+
---
11+
# Microsoft Edge {{ data.nextBetaVersion }} web platform release notes ({% monthYear data.nextBetaReleaseDate %})
12+
13+
The following are the new web platform features and updates in Microsoft Edge {{ data.nextBetaVersion }}, which releases on {% monthDayYear data.nextBetaReleaseDate %}.
14+
15+
To stay up-to-date and get the latest web platform features, download an Insiders version of Microsoft Edge, such as Canary, Dev, or Beta; see [Become a Microsoft Edge Insider](https://aka.ms/microsoftedge).
16+
17+
18+
<!-- ====================================================================== -->
19+
## Edge DevTools
20+
21+
For Edge DevTools, see [What's New in Microsoft Edge DevTools](../../devtools-guide-chromium/whats-new/whats-new.md).
22+
23+
24+
<!-- ====================================================================== -->
25+
## WebView2
26+
27+
For WebView2, see [Release Notes for the WebView2 SDK](../../webview2/release-notes/index.md).
28+
29+
30+
<!-- ====================================================================== -->
31+
## Web platform features
32+
33+
34+
<!-- ------------------------------ -->
35+
#### Enabled features
36+
{% set features = data.csFeatures %}
37+
{% for feature in features["Enabled by default"] %}
38+
39+
<!-- ---------- -->
40+
###### {{ feature.name }}
41+
42+
{{ feature.summary | safe }}
43+
{% endfor %}
44+
45+
<!-- ------------------------------ -->
46+
#### Deprecated and removed features
47+
{% for feature in features["Deprecated"] %}
48+
49+
<!-- ---------- -->
50+
###### {{ feature.name }}
51+
52+
{{ feature.summary | safe }}
53+
{% endfor %}
54+
{% for feature in features["Removed"] %}
55+
56+
<!-- ---------- -->
57+
###### {{ feature.name }}
58+
59+
{{ feature.summary | safe }}
60+
{% endfor %}
61+
62+
63+
<!-- ====================================================================== -->
64+
## Origin trials
65+
66+
The following are new experimental APIs which you can try on your own live website for a limited time. To learn more about origin trials, see [Use origin trials in Microsoft Edge](../../origin-trials/index.md). To see the full list of available origin trials, see [Microsoft Edge Origin Trials](https://developer.microsoft.com/microsoft-edge/origin-trials/).
67+
68+
69+
<!-- ------------------------------ -->
70+
#### Microsoft Edge only origin trials
71+
{% for trial in data.edgeOTs %}
72+
73+
<!-- ---------- -->
74+
###### {{ trial.title }}
75+
76+
Expires on {{ trial.expiration }}.
77+
78+
{{ trial.description }}
79+
80+
* [Explainer]({{ trial.explainer }})
81+
* [Feedback]({{ trial.feedback }})
82+
* [Register]({{ trial.registration }})
83+
84+
{% endfor %}
85+
86+
<!-- ------------------------------ -->
87+
#### New Chromium origin trials
88+
{% for trial in data.chromeOTs %}
89+
90+
<!-- ---------- -->
91+
###### {{ trial.title }}
92+
93+
Expires on {{ trial.expiration }}.
94+
95+
{{ trial.description }}
96+
97+
* [Explainer]({{ trial.explainer }})
98+
* [Feedback]({{ trial.feedback }})
99+
* [Register]({{ trial.registration }})
100+
{% endfor %}
101+
102+
103+
<!-- ====================================================================== -->
104+
> [!NOTE]
105+
> Portions of this page are modifications based on work created and shared by Chromium.org and used according to terms described in the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0).

0 commit comments

Comments
 (0)