web-specs 2.64.1 → 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 +74 -0
- 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
|
@@ -5188,6 +5188,43 @@
|
|
|
5188
5188
|
],
|
|
5189
5189
|
"standing": "good"
|
|
5190
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
|
+
},
|
|
5191
5228
|
{
|
|
5192
5229
|
"url": "https://tc39.es/proposal-set-methods/",
|
|
5193
5230
|
"seriesComposition": "full",
|
|
@@ -6187,6 +6224,9 @@
|
|
|
6187
6224
|
},
|
|
6188
6225
|
"title": "Close Watcher API",
|
|
6189
6226
|
"standing": "discontinued",
|
|
6227
|
+
"obsoletedBy": [
|
|
6228
|
+
"html"
|
|
6229
|
+
],
|
|
6190
6230
|
"organization": "W3C",
|
|
6191
6231
|
"groups": [
|
|
6192
6232
|
{
|
|
@@ -9635,6 +9675,40 @@
|
|
|
9635
9675
|
],
|
|
9636
9676
|
"standing": "good"
|
|
9637
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
|
+
},
|
|
9638
9712
|
{
|
|
9639
9713
|
"url": "https://www.rfc-editor.org/rfc/rfc8470",
|
|
9640
9714
|
"seriesComposition": "full",
|