web-specs 4.3.0 → 4.4.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 +18 -5
- package/index.json +105 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ npm install web-specs
|
|
|
72
72
|
You can then retrieve the list from your Node.js program:
|
|
73
73
|
|
|
74
74
|
```js
|
|
75
|
-
|
|
75
|
+
import specs from "web-specs" with { type: "json" };
|
|
76
76
|
console.log(JSON.stringify(specs, null, 2));
|
|
77
77
|
```
|
|
78
78
|
|
|
@@ -101,6 +101,21 @@ property targets the public page that describes the spec on the standardization
|
|
|
101
101
|
organization's web site. To upgrade from version `2.x` to version `3.x`, make
|
|
102
102
|
sure that your code can handle specs without a `nightly` property.
|
|
103
103
|
|
|
104
|
+
### From the `browser-specs` package
|
|
105
|
+
|
|
106
|
+
The `browser-specs` package, which contained the subset of specs that are in
|
|
107
|
+
good [standing](#standing) and that [target web browsers](#categories), is no
|
|
108
|
+
longer being published. You may obtain the same list from the `web-specs`
|
|
109
|
+
package by applying the following filtering logic:
|
|
110
|
+
|
|
111
|
+
```js
|
|
112
|
+
import webSpecs from "web-specs" with { type: "json" };
|
|
113
|
+
const browserSpecs = webSpecs.filter(spec =>
|
|
114
|
+
spec.categories?.includes('browser') &&
|
|
115
|
+
spec.standing === 'good'
|
|
116
|
+
);
|
|
117
|
+
```
|
|
118
|
+
|
|
104
119
|
<!-- COMMON-BODY: start -->
|
|
105
120
|
## Spec object
|
|
106
121
|
|
|
@@ -217,8 +232,7 @@ possible value so far is `"browser"`, which means that the spec targets web
|
|
|
217
232
|
browsers.
|
|
218
233
|
|
|
219
234
|
The `categories` property is always set. Value may be an empty array for some of
|
|
220
|
-
the specs in the `web-specs` package.
|
|
221
|
-
specs in the `browser-specs` package.
|
|
235
|
+
the specs in the `web-specs` package.
|
|
222
236
|
|
|
223
237
|
|
|
224
238
|
### `standing`
|
|
@@ -238,8 +252,7 @@ Specs whose status is "Discontinued Draft" typically have a standing set to
|
|
|
238
252
|
`"discontinued"`.
|
|
239
253
|
|
|
240
254
|
The `standing` property is always set. Value may either be `"good"`, `"pending"`
|
|
241
|
-
or `"discontinued"`.
|
|
242
|
-
package.
|
|
255
|
+
or `"discontinued"`.
|
|
243
256
|
|
|
244
257
|
|
|
245
258
|
### `obsoletedBy`
|
package/index.json
CHANGED
|
@@ -417,7 +417,7 @@
|
|
|
417
417
|
},
|
|
418
418
|
"nightly": {
|
|
419
419
|
"url": "https://www.ietf.org/archive/id/draft-cutler-httpbis-partitioned-cookies-01.html",
|
|
420
|
-
"status": "
|
|
420
|
+
"status": "Discontinued Draft",
|
|
421
421
|
"repository": "https://github.com/privacycg/CHIPS",
|
|
422
422
|
"sourcePath": "spec/draft-cutler-httpbis-partitioned-cookies.md",
|
|
423
423
|
"alternateUrls": [],
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
"categories": [
|
|
437
437
|
"browser"
|
|
438
438
|
],
|
|
439
|
-
"standing": "
|
|
439
|
+
"standing": "discontinued"
|
|
440
440
|
},
|
|
441
441
|
{
|
|
442
442
|
"url": "https://datatracker.ietf.org/doc/html/draft-davidben-http-client-hint-reliability",
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
},
|
|
452
452
|
"nightly": {
|
|
453
453
|
"url": "https://www.ietf.org/archive/id/draft-davidben-http-client-hint-reliability-03.html",
|
|
454
|
-
"status": "
|
|
454
|
+
"status": "Discontinued Draft",
|
|
455
455
|
"repository": "https://github.com/davidben/http-client-hint-reliability",
|
|
456
456
|
"sourcePath": "draft-davidben-http-client-hint-reliability.md",
|
|
457
457
|
"alternateUrls": [],
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
"categories": [
|
|
471
471
|
"browser"
|
|
472
472
|
],
|
|
473
|
-
"standing": "
|
|
473
|
+
"standing": "discontinued"
|
|
474
474
|
},
|
|
475
475
|
{
|
|
476
476
|
"url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpapi-idempotency-key-header/",
|
|
@@ -485,7 +485,7 @@
|
|
|
485
485
|
},
|
|
486
486
|
"nightly": {
|
|
487
487
|
"url": "https://www.ietf.org/archive/id/draft-ietf-httpapi-idempotency-key-header-07.html",
|
|
488
|
-
"status": "
|
|
488
|
+
"status": "Discontinued Draft",
|
|
489
489
|
"repository": "https://github.com/ietf-wg-httpapi/idempotency",
|
|
490
490
|
"sourcePath": "draft-ietf-httpapi-idempotency-key-header.md",
|
|
491
491
|
"alternateUrls": [],
|
|
@@ -504,7 +504,7 @@
|
|
|
504
504
|
"categories": [
|
|
505
505
|
"browser"
|
|
506
506
|
],
|
|
507
|
-
"standing": "
|
|
507
|
+
"standing": "discontinued"
|
|
508
508
|
},
|
|
509
509
|
{
|
|
510
510
|
"url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-layered-cookies/",
|
|
@@ -837,7 +837,13 @@
|
|
|
837
837
|
"categories": [
|
|
838
838
|
"browser"
|
|
839
839
|
],
|
|
840
|
-
"standing": "good"
|
|
840
|
+
"standing": "good",
|
|
841
|
+
"tests": {
|
|
842
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
843
|
+
"testPaths": [
|
|
844
|
+
"css/compositing"
|
|
845
|
+
]
|
|
846
|
+
}
|
|
841
847
|
},
|
|
842
848
|
{
|
|
843
849
|
"url": "https://drafts.csswg.org/css-color-6/",
|
|
@@ -1480,7 +1486,13 @@
|
|
|
1480
1486
|
"categories": [
|
|
1481
1487
|
"browser"
|
|
1482
1488
|
],
|
|
1483
|
-
"standing": "good"
|
|
1489
|
+
"standing": "good",
|
|
1490
|
+
"tests": {
|
|
1491
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
1492
|
+
"testPaths": [
|
|
1493
|
+
"css/filter-effects"
|
|
1494
|
+
]
|
|
1495
|
+
}
|
|
1484
1496
|
},
|
|
1485
1497
|
{
|
|
1486
1498
|
"url": "https://drafts.csswg.org/pointer-animations-1/",
|
|
@@ -14925,7 +14937,13 @@
|
|
|
14925
14937
|
"categories": [
|
|
14926
14938
|
"browser"
|
|
14927
14939
|
],
|
|
14928
|
-
"standing": "good"
|
|
14940
|
+
"standing": "good",
|
|
14941
|
+
"tests": {
|
|
14942
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
14943
|
+
"testPaths": [
|
|
14944
|
+
"css/compositing"
|
|
14945
|
+
]
|
|
14946
|
+
}
|
|
14929
14947
|
},
|
|
14930
14948
|
{
|
|
14931
14949
|
"url": "https://www.w3.org/TR/compute-pressure/",
|
|
@@ -17499,8 +17517,8 @@
|
|
|
17499
17517
|
"series": {
|
|
17500
17518
|
"shortname": "css-gaps",
|
|
17501
17519
|
"currentSpecification": "css-gaps-1",
|
|
17502
|
-
"title": "CSS
|
|
17503
|
-
"shortTitle": "CSS
|
|
17520
|
+
"title": "CSS Gaps",
|
|
17521
|
+
"shortTitle": "CSS Gaps",
|
|
17504
17522
|
"releaseUrl": "https://www.w3.org/TR/css-gaps/",
|
|
17505
17523
|
"nightlyUrl": "https://drafts.csswg.org/css-gaps/"
|
|
17506
17524
|
},
|
|
@@ -17528,9 +17546,9 @@
|
|
|
17528
17546
|
"sourcePath": "css-gaps-1/Overview.bs",
|
|
17529
17547
|
"filename": "index.html"
|
|
17530
17548
|
},
|
|
17531
|
-
"title": "CSS
|
|
17549
|
+
"title": "CSS Gaps Module Level 1",
|
|
17532
17550
|
"source": "w3c",
|
|
17533
|
-
"shortTitle": "CSS
|
|
17551
|
+
"shortTitle": "CSS Gaps 1",
|
|
17534
17552
|
"categories": [
|
|
17535
17553
|
"browser"
|
|
17536
17554
|
],
|
|
@@ -18224,7 +18242,13 @@
|
|
|
18224
18242
|
"categories": [
|
|
18225
18243
|
"browser"
|
|
18226
18244
|
],
|
|
18227
|
-
"standing": "good"
|
|
18245
|
+
"standing": "good",
|
|
18246
|
+
"tests": {
|
|
18247
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
18248
|
+
"testPaths": [
|
|
18249
|
+
"css/css-masking"
|
|
18250
|
+
]
|
|
18251
|
+
}
|
|
18228
18252
|
},
|
|
18229
18253
|
{
|
|
18230
18254
|
"url": "https://www.w3.org/TR/css-mixins-1/",
|
|
@@ -22521,7 +22545,13 @@
|
|
|
22521
22545
|
"categories": [
|
|
22522
22546
|
"browser"
|
|
22523
22547
|
],
|
|
22524
|
-
"standing": "good"
|
|
22548
|
+
"standing": "good",
|
|
22549
|
+
"tests": {
|
|
22550
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
22551
|
+
"testPaths": [
|
|
22552
|
+
"css/fill-stroke"
|
|
22553
|
+
]
|
|
22554
|
+
}
|
|
22525
22555
|
},
|
|
22526
22556
|
{
|
|
22527
22557
|
"url": "https://www.w3.org/TR/filter-effects-1/",
|
|
@@ -22566,7 +22596,13 @@
|
|
|
22566
22596
|
"categories": [
|
|
22567
22597
|
"browser"
|
|
22568
22598
|
],
|
|
22569
|
-
"standing": "good"
|
|
22599
|
+
"standing": "good",
|
|
22600
|
+
"tests": {
|
|
22601
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
22602
|
+
"testPaths": [
|
|
22603
|
+
"css/filter-effects"
|
|
22604
|
+
]
|
|
22605
|
+
}
|
|
22570
22606
|
},
|
|
22571
22607
|
{
|
|
22572
22608
|
"url": "https://www.w3.org/TR/fingerprinting-guidance/",
|
|
@@ -22828,7 +22864,13 @@
|
|
|
22828
22864
|
"categories": [
|
|
22829
22865
|
"browser"
|
|
22830
22866
|
],
|
|
22831
|
-
"standing": "good"
|
|
22867
|
+
"standing": "good",
|
|
22868
|
+
"tests": {
|
|
22869
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
22870
|
+
"testPaths": [
|
|
22871
|
+
"css/geometry"
|
|
22872
|
+
]
|
|
22873
|
+
}
|
|
22832
22874
|
},
|
|
22833
22875
|
{
|
|
22834
22876
|
"url": "https://www.w3.org/TR/gpc/",
|
|
@@ -24805,7 +24847,13 @@
|
|
|
24805
24847
|
"categories": [
|
|
24806
24848
|
"browser"
|
|
24807
24849
|
],
|
|
24808
|
-
"standing": "good"
|
|
24850
|
+
"standing": "good",
|
|
24851
|
+
"tests": {
|
|
24852
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
24853
|
+
"testPaths": [
|
|
24854
|
+
"css/motion"
|
|
24855
|
+
]
|
|
24856
|
+
}
|
|
24809
24857
|
},
|
|
24810
24858
|
{
|
|
24811
24859
|
"url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/",
|
|
@@ -29663,6 +29711,45 @@
|
|
|
29663
29711
|
"categories": [],
|
|
29664
29712
|
"standing": "good"
|
|
29665
29713
|
},
|
|
29714
|
+
{
|
|
29715
|
+
"url": "https://www.w3.org/TR/vc-di-quantum-resistant-1.0/",
|
|
29716
|
+
"seriesComposition": "full",
|
|
29717
|
+
"shortname": "vc-di-quantum-resistant-1.0",
|
|
29718
|
+
"series": {
|
|
29719
|
+
"shortname": "vc-di-quantum-resistant",
|
|
29720
|
+
"currentSpecification": "vc-di-quantum-resistant-1.0",
|
|
29721
|
+
"title": "Quantum-Resistant Cryptosuites v1.0",
|
|
29722
|
+
"shortTitle": "Quantum-Resistant Cryptosuites v1.0",
|
|
29723
|
+
"releaseUrl": "https://www.w3.org/TR/vc-di-quantum-resistant/",
|
|
29724
|
+
"nightlyUrl": "https://w3c.github.io/vc-di-quantum-resistant/"
|
|
29725
|
+
},
|
|
29726
|
+
"seriesVersion": "1.0",
|
|
29727
|
+
"organization": "W3C",
|
|
29728
|
+
"groups": [
|
|
29729
|
+
{
|
|
29730
|
+
"name": "Verifiable Credentials Working Group",
|
|
29731
|
+
"url": "https://www.w3.org/groups/wg/vc/"
|
|
29732
|
+
}
|
|
29733
|
+
],
|
|
29734
|
+
"release": {
|
|
29735
|
+
"url": "https://www.w3.org/TR/vc-di-quantum-resistant-1.0/",
|
|
29736
|
+
"status": "First Public Working Draft",
|
|
29737
|
+
"filename": "Overview.html"
|
|
29738
|
+
},
|
|
29739
|
+
"nightly": {
|
|
29740
|
+
"url": "https://w3c.github.io/vc-di-quantum-resistant/",
|
|
29741
|
+
"status": "Editor's Draft",
|
|
29742
|
+
"alternateUrls": [],
|
|
29743
|
+
"repository": "https://github.com/w3c/vc-di-quantum-resistant",
|
|
29744
|
+
"sourcePath": "index.html",
|
|
29745
|
+
"filename": "index.html"
|
|
29746
|
+
},
|
|
29747
|
+
"title": "Quantum-Resistant Cryptosuites v1.0",
|
|
29748
|
+
"source": "w3c",
|
|
29749
|
+
"shortTitle": "Quantum-Resistant Cryptosuites v1.0",
|
|
29750
|
+
"categories": [],
|
|
29751
|
+
"standing": "good"
|
|
29752
|
+
},
|
|
29666
29753
|
{
|
|
29667
29754
|
"url": "https://www.w3.org/TR/vc-jose-cose/",
|
|
29668
29755
|
"seriesComposition": "full",
|