web-specs 2.64.0 → 2.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -2
- package/index.json +80 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,8 @@ cross-references, WebIDL, quality, etc.
|
|
|
18
18
|
- [`shortTitle`](#shorttitle)
|
|
19
19
|
- [`categories`](#categories)
|
|
20
20
|
- [`standing`](#standing)
|
|
21
|
+
- [`obsoletedBy`](#obsoletedby)
|
|
22
|
+
- [`formerNames`](#formernames)
|
|
21
23
|
- [`series`](#series)
|
|
22
24
|
- [`series.shortname`](#seriesshortname)
|
|
23
25
|
- [`series.currentSpecification`](#seriescurrentspecification)
|
|
@@ -206,6 +208,30 @@ or `"discontinued"`. Value is always `"good"` for specs in the `browser-specs`
|
|
|
206
208
|
package.
|
|
207
209
|
|
|
208
210
|
|
|
211
|
+
### `obsoletedBy`
|
|
212
|
+
|
|
213
|
+
An array that contains the list of shortnames of specs that replace or otherwise
|
|
214
|
+
obsolete the contents of a discontinued spec.
|
|
215
|
+
|
|
216
|
+
The `obsoletedBy` property is only set when `standing` is `"discontinued"`,
|
|
217
|
+
provided that there are indeed specs that replace the contents of the spec.
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### `formerNames`
|
|
221
|
+
|
|
222
|
+
An array that contains the list of shortnames that were used to identify the
|
|
223
|
+
spec in the past. The property is not meant to provide an exhaustive list of all
|
|
224
|
+
the shortnames that a spec ever had, but just a list of the shortnames that the
|
|
225
|
+
spec used to have *in browser-specs*.
|
|
226
|
+
|
|
227
|
+
By definition, shortnames listed in `formerNames` properties are not *current*
|
|
228
|
+
shortnames. They can be used in projects that consume the list of specs to track
|
|
229
|
+
a specification over time.
|
|
230
|
+
|
|
231
|
+
The `formerNames` property is only set for specs that used to be known under a
|
|
232
|
+
different `shortname` in browser-specs.
|
|
233
|
+
|
|
234
|
+
|
|
209
235
|
### `series`
|
|
210
236
|
|
|
211
237
|
An object that describes the series that the spec is part of. A series includes
|
|
@@ -350,7 +376,7 @@ abandoned.
|
|
|
350
376
|
An array that lists shortnames of known forks of the spec in the list.
|
|
351
377
|
|
|
352
378
|
The `forks` property is only set when there exists at least one fork of the
|
|
353
|
-
spec in the list,
|
|
379
|
+
spec in the list, in other words when there is an entry in the list that has a
|
|
354
380
|
[`forkOf`](#forkof) property set to the spec's shortname.
|
|
355
381
|
|
|
356
382
|
|
|
@@ -461,7 +487,7 @@ Alternate URLs should only be used to ease mapping between external sources and
|
|
|
461
487
|
specs in `browser-specs`. The canonical URL in [`nightly.url`](#nightlyurl)
|
|
462
488
|
should be preferred to reference a spec otherwise.
|
|
463
489
|
|
|
464
|
-
Alternate URLs are only set when needed,
|
|
490
|
+
Alternate URLs are only set when needed, in other words when an alternate URL is
|
|
465
491
|
effectively in use in some external source and when the external source cannot
|
|
466
492
|
easily be updated to use the canonical URL. In particular, the list is not meant
|
|
467
493
|
to be exhaustive.
|
package/index.json
CHANGED
|
@@ -1521,6 +1521,7 @@
|
|
|
1521
1521
|
"fetch"
|
|
1522
1522
|
],
|
|
1523
1523
|
"excludePaths": [
|
|
1524
|
+
"fetch/fetch-later",
|
|
1524
1525
|
"fetch/metadata",
|
|
1525
1526
|
"fetch/private-network-access"
|
|
1526
1527
|
]
|
|
@@ -5187,6 +5188,43 @@
|
|
|
5187
5188
|
],
|
|
5188
5189
|
"standing": "good"
|
|
5189
5190
|
},
|
|
5191
|
+
{
|
|
5192
|
+
"url": "https://tc39.es/proposal-resizablearraybuffer/",
|
|
5193
|
+
"seriesComposition": "full",
|
|
5194
|
+
"shortname": "tc39-resizablearraybuffer",
|
|
5195
|
+
"series": {
|
|
5196
|
+
"shortname": "tc39-resizablearraybuffer",
|
|
5197
|
+
"currentSpecification": "tc39-resizablearraybuffer",
|
|
5198
|
+
"title": "Resizable ArrayBuffer and growable SharedArrayBuffer",
|
|
5199
|
+
"shortTitle": "Resizable ArrayBuffer and growable SharedArrayBuffer",
|
|
5200
|
+
"nightlyUrl": "https://tc39.es/proposal-resizablearraybuffer/"
|
|
5201
|
+
},
|
|
5202
|
+
"title": "Resizable ArrayBuffer and growable SharedArrayBuffer",
|
|
5203
|
+
"standing": "discontinued",
|
|
5204
|
+
"obsoletedBy": [
|
|
5205
|
+
"ecmascript"
|
|
5206
|
+
],
|
|
5207
|
+
"organization": "Ecma International",
|
|
5208
|
+
"groups": [
|
|
5209
|
+
{
|
|
5210
|
+
"name": "TC39",
|
|
5211
|
+
"url": "https://tc39.es/"
|
|
5212
|
+
}
|
|
5213
|
+
],
|
|
5214
|
+
"nightly": {
|
|
5215
|
+
"url": "https://tc39.es/proposal-resizablearraybuffer/",
|
|
5216
|
+
"status": "Editor's Draft",
|
|
5217
|
+
"alternateUrls": [],
|
|
5218
|
+
"repository": "https://github.com/tc39/proposal-resizablearraybuffer",
|
|
5219
|
+
"sourcePath": "spec.html",
|
|
5220
|
+
"filename": "index.html"
|
|
5221
|
+
},
|
|
5222
|
+
"source": "spec",
|
|
5223
|
+
"shortTitle": "Resizable ArrayBuffer and growable SharedArrayBuffer",
|
|
5224
|
+
"categories": [
|
|
5225
|
+
"browser"
|
|
5226
|
+
]
|
|
5227
|
+
},
|
|
5190
5228
|
{
|
|
5191
5229
|
"url": "https://tc39.es/proposal-set-methods/",
|
|
5192
5230
|
"seriesComposition": "full",
|
|
@@ -6180,10 +6218,15 @@
|
|
|
6180
6218
|
"series": {
|
|
6181
6219
|
"shortname": "close-watcher",
|
|
6182
6220
|
"currentSpecification": "close-watcher",
|
|
6183
|
-
"title": "Close
|
|
6184
|
-
"shortTitle": "Close
|
|
6221
|
+
"title": "Close Watcher API",
|
|
6222
|
+
"shortTitle": "Close Watcher API",
|
|
6185
6223
|
"nightlyUrl": "https://wicg.github.io/close-watcher/"
|
|
6186
6224
|
},
|
|
6225
|
+
"title": "Close Watcher API",
|
|
6226
|
+
"standing": "discontinued",
|
|
6227
|
+
"obsoletedBy": [
|
|
6228
|
+
"html"
|
|
6229
|
+
],
|
|
6187
6230
|
"organization": "W3C",
|
|
6188
6231
|
"groups": [
|
|
6189
6232
|
{
|
|
@@ -6199,13 +6242,11 @@
|
|
|
6199
6242
|
"sourcePath": "spec.html",
|
|
6200
6243
|
"filename": "index.html"
|
|
6201
6244
|
},
|
|
6202
|
-
"title": "Close signals and close watchers are moving to the HTML Standard!",
|
|
6203
6245
|
"source": "spec",
|
|
6204
|
-
"shortTitle": "Close
|
|
6246
|
+
"shortTitle": "Close Watcher API",
|
|
6205
6247
|
"categories": [
|
|
6206
6248
|
"browser"
|
|
6207
6249
|
],
|
|
6208
|
-
"standing": "good",
|
|
6209
6250
|
"tests": {
|
|
6210
6251
|
"repository": "https://github.com/web-platform-tests/wpt",
|
|
6211
6252
|
"testPaths": [
|
|
@@ -9634,6 +9675,40 @@
|
|
|
9634
9675
|
],
|
|
9635
9676
|
"standing": "good"
|
|
9636
9677
|
},
|
|
9678
|
+
{
|
|
9679
|
+
"url": "https://www.rfc-editor.org/rfc/rfc8297",
|
|
9680
|
+
"seriesComposition": "full",
|
|
9681
|
+
"shortname": "rfc8297",
|
|
9682
|
+
"series": {
|
|
9683
|
+
"shortname": "rfc8297",
|
|
9684
|
+
"currentSpecification": "rfc8297",
|
|
9685
|
+
"title": "An HTTP Status Code for Indicating Hints",
|
|
9686
|
+
"shortTitle": "An HTTP Status Code for Indicating Hints",
|
|
9687
|
+
"nightlyUrl": "https://httpwg.org/specs/rfc8297.html"
|
|
9688
|
+
},
|
|
9689
|
+
"organization": "IETF",
|
|
9690
|
+
"groups": [
|
|
9691
|
+
{
|
|
9692
|
+
"name": "HTTP Working Group",
|
|
9693
|
+
"url": "https://datatracker.ietf.org/wg/httpbis/"
|
|
9694
|
+
}
|
|
9695
|
+
],
|
|
9696
|
+
"nightly": {
|
|
9697
|
+
"url": "https://httpwg.org/specs/rfc8297.html",
|
|
9698
|
+
"status": "Experimental",
|
|
9699
|
+
"alternateUrls": [],
|
|
9700
|
+
"repository": "https://github.com/httpwg/httpwg.github.io",
|
|
9701
|
+
"sourcePath": "specs/rfc8297.xml",
|
|
9702
|
+
"filename": "rfc8297.html"
|
|
9703
|
+
},
|
|
9704
|
+
"title": "An HTTP Status Code for Indicating Hints",
|
|
9705
|
+
"source": "specref",
|
|
9706
|
+
"shortTitle": "An HTTP Status Code for Indicating Hints",
|
|
9707
|
+
"categories": [
|
|
9708
|
+
"browser"
|
|
9709
|
+
],
|
|
9710
|
+
"standing": "good"
|
|
9711
|
+
},
|
|
9637
9712
|
{
|
|
9638
9713
|
"url": "https://www.rfc-editor.org/rfc/rfc8470",
|
|
9639
9714
|
"seriesComposition": "full",
|