Skip to content

Commit 78dd3e4

Browse files
committed
Merge branch 'main' into fix-standard-track-exceptions
2 parents 24da1e7 + 23f97ea commit 78dd3e4

File tree

208 files changed

+5437
-1913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+5437
-1913
lines changed

.c8rc.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"all": true,
3-
"include": ["index.ts", "**/scripts/**", "**/test/**", "**/utils/**"],
43
"exclude": [
5-
"**/.nyc_output/**",
6-
"**/coverage/**",
7-
"**/node_modules/**",
8-
"**/**.test.ts"
4+
"eslint.config.js",
5+
"build/**",
6+
"coverage/**",
7+
"node_modules/**",
8+
"scripts/migrations/",
9+
"types/**",
10+
"**/**.test.js"
911
]
1012
}

.github/issue-regex-labeler.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,36 @@
11
data:api:
2-
- 'api\.'
2+
- 'api\\.'
33
- '\/docs\/Web\/API'
44
data:css:
5-
- 'css\.'
5+
- 'css\\.'
66
- '\/docs\/Web\/CSS'
77
data:html:
8-
- 'html\.'
8+
- 'html\\.'
99
- '\/docs\/Web\/HTML'
1010
data:http:
11-
- 'http\.'
11+
- 'http\\.'
1212
- '\/docs\/Web\/HTTP'
1313
data:js:
14-
- 'js\.'
14+
- 'js\\.'
1515
- '\/docs\/Web\/JavaScript'
1616
data:manifests:
17-
- 'manifests\.'
17+
- 'manifests\\.'
1818
- '\/docs\/Web\/Progressive_web_apps\/Manifest'
1919
data:mathml:
20-
- 'mathml\.'
20+
- 'mathml\\.'
2121
- '\/docs\/Web\/MathML'
22+
data:mediatypes:
23+
- 'mediatypes\\.'
24+
- '\/docs\/Web\/Media'
2225
data:svg:
23-
- 'svg\.'
26+
- 'svg\\.'
2427
- '\/docs\/Web\/SVG'
2528
data:wasm:
26-
- 'webassembly\.'
29+
- 'webassembly\\.'
2730
- '\/docs\/WebAssembly'
2831
data:webdriver:
29-
- 'webdriver\.'
32+
- 'webdriver\\.'
3033
- '\/docs\/Web\/WebDriver'
3134
data:webext:
32-
- 'webextensions\.'
35+
- 'webextensions\\.'
3336
- '\/docs\/Mozilla\/Add-ons'

.github/workflows/auto-merge.yml

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,15 @@ name: auto-merge
22

33
on:
44
pull_request_target:
5-
branches:
6-
- main
75

8-
# No GITHUB_TOKEN permissions, because we use GH_TOKEN instead.
9-
permissions: {}
6+
permissions:
7+
contents: read
108

119
jobs:
1210
auto-merge:
13-
runs-on: ubuntu-latest
14-
if: github.event.pull_request.user.login == 'dependabot[bot]'
15-
16-
steps:
17-
- name: Dependabot metadata
18-
id: dependabot-metadata
19-
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2.5.0
20-
with:
21-
github-token: ${{ secrets.GH_TOKEN }}
22-
23-
- name: Squash and merge
24-
25-
if: ${{ steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor' && !startsWith(steps.dependabot-metadata.outputs.previous-version, '0.') || steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' && !startsWith(steps.dependabot-metadata.outputs.previous-version, '0.0.') }}
26-
env:
27-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
28-
run: |
29-
gh pr review ${{ github.event.pull_request.html_url }} --approve
30-
gh pr merge ${{ github.event.pull_request.html_url }} --auto --squash
11+
if: github.repository_owner == 'mdn'
12+
uses: mdn/workflows/.github/workflows/auto-merge.yml@main
13+
with:
14+
auto-merge: true
15+
secrets:
16+
GH_TOKEN: ${{ secrets.AUTOMERGE_TOKEN }}

.github/workflows/system-file-changes.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- "!html/**.json"
1414
- "!http/**.json"
1515
- "!javascript/**.json"
16+
- "!lint/common/standard-track-exceptions.txt"
1617
- "!manifests/**.json"
1718
- "!mathml/**.json"
1819
- "!mediatypes/**.json"

RELEASE_NOTES.md

Lines changed: 201 additions & 0 deletions
Large diffs are not rendered by default.

api/Animation.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@
181181
"endpoint_inclusive_commitStyles": {
182182
"__compat": {
183183
"description": "`commitStyles()` automatically fills values",
184-
"mdn_url": "https://developer.mozilla.org/docs/Web/API/Animation/commitStyles",
185184
"spec_url": "https://drafts.csswg.org/web-animations-1/#dom-animation-commitstyles",
186185
"tags": [
187186
"web-features:web-animations"

api/AudioContext.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,37 @@
574574
}
575575
}
576576
},
577+
"playbackStats": {
578+
"__compat": {
579+
"spec_url": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-playbackstats",
580+
"support": {
581+
"chrome": {
582+
"version_added": "146"
583+
},
584+
"chrome_android": "mirror",
585+
"edge": "mirror",
586+
"firefox": {
587+
"version_added": false
588+
},
589+
"firefox_android": "mirror",
590+
"oculus": "mirror",
591+
"opera": "mirror",
592+
"opera_android": "mirror",
593+
"safari": {
594+
"version_added": false
595+
},
596+
"safari_ios": "mirror",
597+
"samsunginternet_android": "mirror",
598+
"webview_android": "mirror",
599+
"webview_ios": "mirror"
600+
},
601+
"status": {
602+
"experimental": true,
603+
"standard_track": true,
604+
"deprecated": false
605+
}
606+
}
607+
},
577608
"resume": {
578609
"__compat": {
579610
"mdn_url": "https://developer.mozilla.org/docs/Web/API/AudioContext/resume",

0 commit comments

Comments
 (0)