Skip to content

Commit 66747e3

Browse files
committed
feat(schemas/browsers): make releases an array
1 parent a82b379 commit 66747e3

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

schemas/browsers-schema.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ An optional string containing the name of the preview browser. For example, "Nig
6464

6565
### `releases`
6666

67-
The `releases` object contains data regarding the browsers' releases, using the version number as the index for each entry within. A release object contains the following properties:
67+
The `releases` array contains data regarding the browsers' releases, ordered by version. A release object contains the following properties:
68+
69+
- A mandatory `version` property indicating the version of the release.
6870

6971
- A mandatory `status` property indicating where in the lifetime cycle this release is in. It's an enum accepting these values:
7072

@@ -111,11 +113,11 @@ This structure is exported for consumers of `@mdn/browser-compat-data`:
111113

112114
```js
113115
import bcd from '@mdn/browser-compat-data';
114-
bcd.browsers.firefox.releases['1.5'].status; // "retired"
116+
bcd.browsers.firefox.releases.find((r) => r.version === '1.5').status; // "retired"
115117
```
116118

117119
```js
118120
const bcd = require('@mdn/browser-compat-data');
119-
bcd.browsers.firefox.releases['1.5'].status;
121+
bcd.browsers.firefox.releases.find((r) => r.version === '1.5').status;
120122
// "retired"
121123
```

schemas/browsers.schema.json

+8-4
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@
8181
"description": "Whether the browser supports extensions."
8282
},
8383
"releases": {
84-
"type": "object",
85-
"additionalProperties": { "$ref": "#/definitions/release_statement" },
84+
"type": "array",
85+
"items": { "$ref": "#/definitions/release_statement" },
8686
"description": "The known versions of this browser.",
87-
"tsType": "{ [version: string]: ReleaseStatement };"
87+
"tsType": "ReleaseStatement[]"
8888
}
8989
},
9090
"required": [
@@ -100,6 +100,10 @@
100100
"release_statement": {
101101
"type": "object",
102102
"properties": {
103+
"version": {
104+
"type": "string",
105+
"description": "The version of this release."
106+
},
103107
"release_date": {
104108
"type": "string",
105109
"format": "date",
@@ -126,7 +130,7 @@
126130
"description": "Version of the engine corresponding to the browser version."
127131
}
128132
},
129-
"required": ["status"],
133+
"required": ["version", "status"],
130134
"dependencies": {
131135
"engine": ["engine_version"]
132136
},

0 commit comments

Comments
 (0)