Skip to content

Commit 2d91a9b

Browse files
authored
fix(schema): remove "exclusive" browser status (mdn#27940)
1 parent 7511314 commit 2d91a9b

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

schemas/browsers-schema.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ The `releases` object contains data regarding the browsers' releases, using the
6969
- A mandatory `status` property indicating where in the lifetime cycle this release is in. It's an enum accepting these values:
7070
- `retired`: This release is no longer supported (EOL). For NodeJS and Deno, every minor/patch release aside from the latest within the major release is considered "retired".
7171
- `current`: This release is the official latest release.
72-
- `exclusive`: This is an exclusive release (for example on a flagship device), not generally available.
7372
- `beta`: This release will the next official release.
7473
- `nightly`: This release is the current alpha / experimental release (like Firefox Nightly, Chrome Canary).
7574
- `esr`: This release is an Extended Support Release or Long Term Support release.

schemas/browsers.schema.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,7 @@
2222

2323
"browser_status": {
2424
"type": "string",
25-
"enum": [
26-
"retired",
27-
"current",
28-
"exclusive",
29-
"beta",
30-
"nightly",
31-
"esr",
32-
"planned"
33-
]
25+
"enum": ["retired", "current", "beta", "nightly", "esr", "planned"]
3426
},
3527

3628
"browsers": {

0 commit comments

Comments
 (0)