web-specs 4.3.0 → 4.5.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.
Files changed (3) hide show
  1. package/README.md +18 -5
  2. package/index.json +224 -22
  3. 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
- const specs = require("web-specs");
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. Value always contains `"browser"` for
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"`. Value is always `"good"` for specs in the `browser-specs`
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": "Editor's Draft",
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": "good"
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": "Editor's Draft",
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": "good"
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": "Editor's Draft",
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": "good"
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/",
@@ -2093,6 +2105,40 @@
2093
2105
  ],
2094
2106
  "standing": "good"
2095
2107
  },
2108
+ {
2109
+ "url": "https://immersive-web.github.io/webxr-webgpu-binding/",
2110
+ "seriesComposition": "full",
2111
+ "shortname": "webxr-webgpu-binding",
2112
+ "series": {
2113
+ "shortname": "webxr-webgpu-binding",
2114
+ "currentSpecification": "webxr-webgpu-binding",
2115
+ "title": "WebXR/WebGPU Binding",
2116
+ "shortTitle": "WebXR/WebGPU Binding",
2117
+ "nightlyUrl": "https://immersive-web.github.io/webxr-webgpu-binding/"
2118
+ },
2119
+ "organization": "W3C",
2120
+ "groups": [
2121
+ {
2122
+ "name": "Immersive Web Working Group",
2123
+ "url": "https://www.w3.org/immersive-web/"
2124
+ }
2125
+ ],
2126
+ "nightly": {
2127
+ "url": "https://immersive-web.github.io/webxr-webgpu-binding/",
2128
+ "status": "Editor's Draft",
2129
+ "alternateUrls": [],
2130
+ "repository": "https://github.com/immersive-web/webxr-webgpu-binding",
2131
+ "sourcePath": "index.bs",
2132
+ "filename": "index.html"
2133
+ },
2134
+ "title": "WebXR/WebGPU Binding Module - Level 1",
2135
+ "source": "spec",
2136
+ "shortTitle": "WebXR/WebGPU Binding 1",
2137
+ "categories": [
2138
+ "browser"
2139
+ ],
2140
+ "standing": "good"
2141
+ },
2096
2142
  {
2097
2143
  "url": "https://infra.spec.whatwg.org/",
2098
2144
  "seriesComposition": "full",
@@ -9134,6 +9180,40 @@
9134
9180
  ],
9135
9181
  "standing": "good"
9136
9182
  },
9183
+ {
9184
+ "url": "https://wicg.github.io/cross-origin-storage/",
9185
+ "seriesComposition": "full",
9186
+ "shortname": "cross-origin-storage",
9187
+ "series": {
9188
+ "shortname": "cross-origin-storage",
9189
+ "currentSpecification": "cross-origin-storage",
9190
+ "title": "Cross-Origin Storage",
9191
+ "shortTitle": "Cross-Origin Storage",
9192
+ "nightlyUrl": "https://wicg.github.io/cross-origin-storage/"
9193
+ },
9194
+ "organization": "W3C",
9195
+ "groups": [
9196
+ {
9197
+ "name": "Web Platform Incubator Community Group",
9198
+ "url": "https://www.w3.org/community/wicg/"
9199
+ }
9200
+ ],
9201
+ "nightly": {
9202
+ "url": "https://wicg.github.io/cross-origin-storage/",
9203
+ "status": "Draft Community Group Report",
9204
+ "alternateUrls": [],
9205
+ "repository": "https://github.com/WICG/cross-origin-storage",
9206
+ "sourcePath": "index.bs",
9207
+ "filename": "index.html"
9208
+ },
9209
+ "title": "Cross-Origin Storage",
9210
+ "source": "spec",
9211
+ "shortTitle": "Cross-Origin Storage",
9212
+ "categories": [
9213
+ "browser"
9214
+ ],
9215
+ "standing": "good"
9216
+ },
9137
9217
  {
9138
9218
  "url": "https://wicg.github.io/csp-next/scripting-policy.html",
9139
9219
  "seriesComposition": "full",
@@ -14925,7 +15005,13 @@
14925
15005
  "categories": [
14926
15006
  "browser"
14927
15007
  ],
14928
- "standing": "good"
15008
+ "standing": "good",
15009
+ "tests": {
15010
+ "repository": "https://github.com/web-platform-tests/wpt",
15011
+ "testPaths": [
15012
+ "css/compositing"
15013
+ ]
15014
+ }
14929
15015
  },
14930
15016
  {
14931
15017
  "url": "https://www.w3.org/TR/compute-pressure/",
@@ -17499,8 +17585,8 @@
17499
17585
  "series": {
17500
17586
  "shortname": "css-gaps",
17501
17587
  "currentSpecification": "css-gaps-1",
17502
- "title": "CSS Gap Decorations Module",
17503
- "shortTitle": "CSS Gap Decorations",
17588
+ "title": "CSS Gaps",
17589
+ "shortTitle": "CSS Gaps",
17504
17590
  "releaseUrl": "https://www.w3.org/TR/css-gaps/",
17505
17591
  "nightlyUrl": "https://drafts.csswg.org/css-gaps/"
17506
17592
  },
@@ -17528,9 +17614,9 @@
17528
17614
  "sourcePath": "css-gaps-1/Overview.bs",
17529
17615
  "filename": "index.html"
17530
17616
  },
17531
- "title": "CSS Gap Decorations Module Level 1",
17617
+ "title": "CSS Gaps Module Level 1",
17532
17618
  "source": "w3c",
17533
- "shortTitle": "CSS Gap Decorations 1",
17619
+ "shortTitle": "CSS Gaps 1",
17534
17620
  "categories": [
17535
17621
  "browser"
17536
17622
  ],
@@ -18224,7 +18310,13 @@
18224
18310
  "categories": [
18225
18311
  "browser"
18226
18312
  ],
18227
- "standing": "good"
18313
+ "standing": "good",
18314
+ "tests": {
18315
+ "repository": "https://github.com/web-platform-tests/wpt",
18316
+ "testPaths": [
18317
+ "css/css-masking"
18318
+ ]
18319
+ }
18228
18320
  },
18229
18321
  {
18230
18322
  "url": "https://www.w3.org/TR/css-mixins-1/",
@@ -22521,7 +22613,13 @@
22521
22613
  "categories": [
22522
22614
  "browser"
22523
22615
  ],
22524
- "standing": "good"
22616
+ "standing": "good",
22617
+ "tests": {
22618
+ "repository": "https://github.com/web-platform-tests/wpt",
22619
+ "testPaths": [
22620
+ "css/fill-stroke"
22621
+ ]
22622
+ }
22525
22623
  },
22526
22624
  {
22527
22625
  "url": "https://www.w3.org/TR/filter-effects-1/",
@@ -22566,7 +22664,13 @@
22566
22664
  "categories": [
22567
22665
  "browser"
22568
22666
  ],
22569
- "standing": "good"
22667
+ "standing": "good",
22668
+ "tests": {
22669
+ "repository": "https://github.com/web-platform-tests/wpt",
22670
+ "testPaths": [
22671
+ "css/filter-effects"
22672
+ ]
22673
+ }
22570
22674
  },
22571
22675
  {
22572
22676
  "url": "https://www.w3.org/TR/fingerprinting-guidance/",
@@ -22828,7 +22932,13 @@
22828
22932
  "categories": [
22829
22933
  "browser"
22830
22934
  ],
22831
- "standing": "good"
22935
+ "standing": "good",
22936
+ "tests": {
22937
+ "repository": "https://github.com/web-platform-tests/wpt",
22938
+ "testPaths": [
22939
+ "css/geometry"
22940
+ ]
22941
+ }
22832
22942
  },
22833
22943
  {
22834
22944
  "url": "https://www.w3.org/TR/gpc/",
@@ -24805,7 +24915,13 @@
24805
24915
  "categories": [
24806
24916
  "browser"
24807
24917
  ],
24808
- "standing": "good"
24918
+ "standing": "good",
24919
+ "tests": {
24920
+ "repository": "https://github.com/web-platform-tests/wpt",
24921
+ "testPaths": [
24922
+ "css/motion"
24923
+ ]
24924
+ }
24809
24925
  },
24810
24926
  {
24811
24927
  "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/",
@@ -25922,13 +26038,15 @@
25922
26038
  ],
25923
26039
  "release": {
25924
26040
  "url": "https://www.w3.org/TR/pointerevents3/",
25925
- "status": "Candidate Recommendation Draft",
26041
+ "status": "Recommendation",
25926
26042
  "filename": "Overview.html"
25927
26043
  },
25928
26044
  "nightly": {
25929
- "url": "https://www.w3.org/TR/pointerevents3/",
26045
+ "url": "https://w3c.github.io/pointerevents/",
25930
26046
  "status": "Editor's Draft",
25931
26047
  "alternateUrls": [],
26048
+ "repository": "https://github.com/w3c/pointerevents",
26049
+ "sourcePath": "index.html",
25932
26050
  "filename": "index.html"
25933
26051
  },
25934
26052
  "title": "Pointer Events",
@@ -25937,7 +26055,13 @@
25937
26055
  "categories": [
25938
26056
  "browser"
25939
26057
  ],
25940
- "standing": "good"
26058
+ "standing": "good",
26059
+ "tests": {
26060
+ "repository": "https://github.com/web-platform-tests/wpt",
26061
+ "testPaths": [
26062
+ "pointerevents"
26063
+ ]
26064
+ }
25941
26065
  },
25942
26066
  {
25943
26067
  "url": "https://www.w3.org/TR/pointerevents4/",
@@ -27593,7 +27717,7 @@
27593
27717
  ],
27594
27718
  "release": {
27595
27719
  "url": "https://www.w3.org/TR/shacl12-node-expr/",
27596
- "status": "First Public Working Draft",
27720
+ "status": "Working Draft",
27597
27721
  "filename": "Overview.html"
27598
27722
  },
27599
27723
  "nightly": {
@@ -29663,6 +29787,84 @@
29663
29787
  "categories": [],
29664
29788
  "standing": "good"
29665
29789
  },
29790
+ {
29791
+ "url": "https://www.w3.org/TR/vc-di-quantum-resistant-1.0/",
29792
+ "seriesComposition": "full",
29793
+ "shortname": "vc-di-quantum-resistant-1.0",
29794
+ "series": {
29795
+ "shortname": "vc-di-quantum-resistant",
29796
+ "currentSpecification": "vc-di-quantum-resistant-1.0",
29797
+ "title": "Quantum-Resistant Cryptosuites v1.0",
29798
+ "shortTitle": "Quantum-Resistant Cryptosuites v1.0",
29799
+ "releaseUrl": "https://www.w3.org/TR/vc-di-quantum-resistant/",
29800
+ "nightlyUrl": "https://w3c.github.io/vc-di-quantum-resistant/"
29801
+ },
29802
+ "seriesVersion": "1.0",
29803
+ "organization": "W3C",
29804
+ "groups": [
29805
+ {
29806
+ "name": "Verifiable Credentials Working Group",
29807
+ "url": "https://www.w3.org/groups/wg/vc/"
29808
+ }
29809
+ ],
29810
+ "release": {
29811
+ "url": "https://www.w3.org/TR/vc-di-quantum-resistant-1.0/",
29812
+ "status": "First Public Working Draft",
29813
+ "filename": "Overview.html"
29814
+ },
29815
+ "nightly": {
29816
+ "url": "https://w3c.github.io/vc-di-quantum-resistant/",
29817
+ "status": "Editor's Draft",
29818
+ "alternateUrls": [],
29819
+ "repository": "https://github.com/w3c/vc-di-quantum-resistant",
29820
+ "sourcePath": "index.html",
29821
+ "filename": "index.html"
29822
+ },
29823
+ "title": "Quantum-Resistant Cryptosuites v1.0",
29824
+ "source": "w3c",
29825
+ "shortTitle": "Quantum-Resistant Cryptosuites v1.0",
29826
+ "categories": [],
29827
+ "standing": "good"
29828
+ },
29829
+ {
29830
+ "url": "https://www.w3.org/TR/vc-forgery-defense-1.0/",
29831
+ "seriesComposition": "full",
29832
+ "shortname": "vc-forgery-defense-1.0",
29833
+ "series": {
29834
+ "shortname": "vc-forgery-defense",
29835
+ "currentSpecification": "vc-forgery-defense-1.0",
29836
+ "title": "Verifiable Credential Forgery Defense",
29837
+ "shortTitle": "Verifiable Credential Forgery Defense",
29838
+ "releaseUrl": "https://www.w3.org/TR/vc-forgery-defense/",
29839
+ "nightlyUrl": "https://w3c.github.io/vc-forgery-defense/"
29840
+ },
29841
+ "seriesVersion": "1.0",
29842
+ "organization": "W3C",
29843
+ "groups": [
29844
+ {
29845
+ "name": "Verifiable Credentials Working Group",
29846
+ "url": "https://www.w3.org/groups/wg/vc/"
29847
+ }
29848
+ ],
29849
+ "release": {
29850
+ "url": "https://www.w3.org/TR/vc-forgery-defense-1.0/",
29851
+ "status": "First Public Working Draft",
29852
+ "filename": "Overview.html"
29853
+ },
29854
+ "nightly": {
29855
+ "url": "https://w3c.github.io/vc-forgery-defense/",
29856
+ "status": "Editor's Draft",
29857
+ "alternateUrls": [],
29858
+ "repository": "https://github.com/w3c/vc-forgery-defense",
29859
+ "sourcePath": "index.html",
29860
+ "filename": "index.html"
29861
+ },
29862
+ "title": "Verifiable Credential Forgery Defense v1.0",
29863
+ "source": "w3c",
29864
+ "shortTitle": "Verifiable Credential Forgery Defense v1.0",
29865
+ "categories": [],
29866
+ "standing": "good"
29867
+ },
29666
29868
  {
29667
29869
  "url": "https://www.w3.org/TR/vc-jose-cose/",
29668
29870
  "seriesComposition": "full",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-specs",
3
- "version": "4.3.0",
3
+ "version": "4.5.0",
4
4
  "description": "Curated list of technical Web specifications",
5
5
  "repository": {
6
6
  "type": "git",