browser-specs 2.28.1 → 3.0.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 +34 -2
  2. package/index.json +106 -70
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -29,6 +29,8 @@ cross-references, WebIDL, quality, etc.
29
29
  - [`seriesComposition`](#seriescomposition)
30
30
  - [`seriesPrevious`](#seriesprevious)
31
31
  - [`seriesNext`](#seriesnext)
32
+ - [`forkOf`](#forkof)
33
+ - [`forks`](#forks)
32
34
  - [`organization`](#organization)
33
35
  - [`groups`](#groups)
34
36
  - [`release`](#release)
@@ -140,6 +142,13 @@ For WHATWG specs, this is the shortname that appears at the beginning of the URL
140
142
  (e.g. `compat` for `https://compat.spec.whatwg.org/`). For specs developed on
141
143
  GitHub, this is usually the name of repository that holds the spec.
142
144
 
145
+ When the spec is a fork (see [`forkOf`](#forkof)) of a base spec, its shortname
146
+ will start with the shortname of the base spec completed by `-fork-` and the
147
+ actual shortname of the fork spec. For instance, given an exception handling
148
+ fork of the WebAssembly spec for which the raw shortname would be
149
+ `exception-handling`, the actual spec shortname will be
150
+ `wasm-js-api-1-fork-exception-handling`.
151
+
143
152
  The `shortname` property is always set.
144
153
 
145
154
 
@@ -275,8 +284,9 @@ number.
275
284
 
276
285
  ### `seriesComposition`
277
286
 
278
- Whether the spec is a standalone spec, or whether it is a delta spec over the
279
- previous level or version in the series. Possible values are `full` or `delta`.
287
+ Whether the spec is a standalone spec, whether it is a delta spec over the
288
+ previous level or version in the series, or whether it is a temporary fork of
289
+ another spec. Possible values are `full`, `delta`, or `fork`.
280
290
 
281
291
  The `seriesComposition` property is always set.
282
292
 
@@ -296,6 +306,28 @@ The `shortname` of the next spec in the series.
296
306
  The `seriesNext` property is only set where there is a next level or version.
297
307
 
298
308
 
309
+ ### `forkOf`
310
+
311
+ The shortname of the spec that this spec is a fork of.
312
+
313
+ The `forkOf` property is only set when the spec is a fork of another one. The
314
+ [`seriesComposition`](#seriescomposition) property is always `"fork"` when the
315
+ `forkOf` property is set.
316
+
317
+ A forked specs is supposed to be temporary by nature. It will be removed from
318
+ the list as soon as it gets merged into the main spec, or as soon as it gets
319
+ abandoned.
320
+
321
+
322
+ ### `forks`
323
+
324
+ An array that lists shortnames of known forks of the spec in the list.
325
+
326
+ The `forks` property is only set when there exists at least one fork of the
327
+ spec in the list, meaning when there is an entry in the list that has a
328
+ [`forkOf`](#forkof) property set to the spec's shortname.
329
+
330
+
299
331
  ### `organization`
300
332
 
301
333
  The name of the standardization organization that owns the spec such as `W3C`,
package/index.json CHANGED
@@ -979,7 +979,6 @@
979
979
  "https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html",
980
980
  "https://html.spec.whatwg.org/multipage/comms.html",
981
981
  "https://html.spec.whatwg.org/multipage/server-sent-events.html",
982
- "https://html.spec.whatwg.org/multipage/web-sockets.html",
983
982
  "https://html.spec.whatwg.org/multipage/web-messaging.html",
984
983
  "https://html.spec.whatwg.org/multipage/workers.html",
985
984
  "https://html.spec.whatwg.org/multipage/worklets.html",
@@ -2735,37 +2734,6 @@
2735
2734
  "browser"
2736
2735
  ]
2737
2736
  },
2738
- {
2739
- "url": "https://w3c.github.io/mediacapture-transform/",
2740
- "seriesComposition": "full",
2741
- "shortname": "mediacapture-transform",
2742
- "series": {
2743
- "shortname": "mediacapture-transform",
2744
- "currentSpecification": "mediacapture-transform",
2745
- "title": "MediaStreamTrack Insertable Media Processing using Streams",
2746
- "shortTitle": "MediaStreamTrack Insertable Media Processing using Streams",
2747
- "nightlyUrl": "https://w3c.github.io/mediacapture-transform/"
2748
- },
2749
- "organization": "W3C",
2750
- "groups": [
2751
- {
2752
- "name": "Web Real-Time Communications Working Group",
2753
- "url": "https://www.w3.org/groups/wg/webrtc"
2754
- }
2755
- ],
2756
- "nightly": {
2757
- "url": "https://w3c.github.io/mediacapture-transform/",
2758
- "repository": "https://github.com/w3c/mediacapture-transform",
2759
- "sourcePath": "index.bs",
2760
- "filename": "index.html"
2761
- },
2762
- "title": "MediaStreamTrack Insertable Media Processing using Streams",
2763
- "source": "spec",
2764
- "shortTitle": "MediaStreamTrack Insertable Media Processing using Streams",
2765
- "categories": [
2766
- "browser"
2767
- ]
2768
- },
2769
2737
  {
2770
2738
  "url": "https://w3c.github.io/web-locks/",
2771
2739
  "seriesComposition": "full",
@@ -3007,6 +2975,40 @@
3007
2975
  ]
3008
2976
  }
3009
2977
  },
2978
+ {
2979
+ "url": "https://webassembly.github.io/exception-handling/js-api/",
2980
+ "seriesComposition": "fork",
2981
+ "shortname": "wasm-js-api-1-fork-exception-handling",
2982
+ "series": {
2983
+ "shortname": "wasm-js-api",
2984
+ "currentSpecification": "wasm-js-api-1",
2985
+ "title": "WebAssembly JavaScript Interface",
2986
+ "shortTitle": "WebAssembly JavaScript Interface",
2987
+ "releaseUrl": "https://www.w3.org/TR/wasm-js-api/",
2988
+ "nightlyUrl": "https://webassembly.github.io/spec/js-api/"
2989
+ },
2990
+ "seriesVersion": "1",
2991
+ "forkOf": "wasm-js-api-1",
2992
+ "organization": "W3C",
2993
+ "groups": [
2994
+ {
2995
+ "name": "WebAssembly Community Group",
2996
+ "url": "https://www.w3.org/community/webassembly/"
2997
+ }
2998
+ ],
2999
+ "nightly": {
3000
+ "url": "https://webassembly.github.io/exception-handling/js-api/",
3001
+ "repository": "https://github.com/WebAssembly/exception-handling",
3002
+ "sourcePath": "document/js-api/index.bs",
3003
+ "filename": "index.html"
3004
+ },
3005
+ "title": "WebAssembly JavaScript Interface: Exception Handling",
3006
+ "source": "spec",
3007
+ "shortTitle": "WebAssembly JavaScript Interface: Exception Handling",
3008
+ "categories": [
3009
+ "browser"
3010
+ ]
3011
+ },
3010
3012
  {
3011
3013
  "url": "https://webbluetoothcg.github.io/web-bluetooth/",
3012
3014
  "seriesComposition": "full",
@@ -3081,6 +3083,37 @@
3081
3083
  ]
3082
3084
  }
3083
3085
  },
3086
+ {
3087
+ "url": "https://websockets.spec.whatwg.org/",
3088
+ "seriesComposition": "full",
3089
+ "shortname": "websockets",
3090
+ "series": {
3091
+ "shortname": "websockets",
3092
+ "currentSpecification": "websockets",
3093
+ "title": "WebSockets Standard",
3094
+ "shortTitle": "WebSockets",
3095
+ "nightlyUrl": "https://websockets.spec.whatwg.org/"
3096
+ },
3097
+ "organization": "WHATWG",
3098
+ "groups": [
3099
+ {
3100
+ "name": "HTML Workstream",
3101
+ "url": "https://websockets.spec.whatwg.org/"
3102
+ }
3103
+ ],
3104
+ "nightly": {
3105
+ "url": "https://websockets.spec.whatwg.org/",
3106
+ "repository": "https://github.com/whatwg/websockets",
3107
+ "sourcePath": "index.bs",
3108
+ "filename": "index.html"
3109
+ },
3110
+ "title": "WebSockets Standard",
3111
+ "source": "specref",
3112
+ "shortTitle": "WebSockets",
3113
+ "categories": [
3114
+ "browser"
3115
+ ]
3116
+ },
3084
3117
  {
3085
3118
  "url": "https://wicg.github.io/app-history/",
3086
3119
  "seriesComposition": "full",
@@ -13861,6 +13894,42 @@
13861
13894
  ]
13862
13895
  }
13863
13896
  },
13897
+ {
13898
+ "url": "https://www.w3.org/TR/mediacapture-transform/",
13899
+ "seriesComposition": "full",
13900
+ "shortname": "mediacapture-transform",
13901
+ "series": {
13902
+ "shortname": "mediacapture-transform",
13903
+ "currentSpecification": "mediacapture-transform",
13904
+ "title": "MediaStreamTrack Insertable Media Processing using Streams",
13905
+ "shortTitle": "MediaStreamTrack Insertable Media Processing using Streams",
13906
+ "releaseUrl": "https://www.w3.org/TR/mediacapture-transform/",
13907
+ "nightlyUrl": "https://w3c.github.io/mediacapture-transform/"
13908
+ },
13909
+ "organization": "W3C",
13910
+ "groups": [
13911
+ {
13912
+ "name": "Web Real-Time Communications Working Group",
13913
+ "url": "https://www.w3.org/groups/wg/webrtc"
13914
+ }
13915
+ ],
13916
+ "release": {
13917
+ "url": "https://www.w3.org/TR/mediacapture-transform/",
13918
+ "filename": "Overview.html"
13919
+ },
13920
+ "nightly": {
13921
+ "url": "https://w3c.github.io/mediacapture-transform/",
13922
+ "repository": "https://github.com/w3c/mediacapture-transform",
13923
+ "sourcePath": "index.bs",
13924
+ "filename": "index.html"
13925
+ },
13926
+ "title": "MediaStreamTrack Insertable Media Processing using Streams",
13927
+ "source": "w3c",
13928
+ "shortTitle": "MediaStreamTrack Insertable Media Processing using Streams",
13929
+ "categories": [
13930
+ "browser"
13931
+ ]
13932
+ },
13864
13933
  {
13865
13934
  "url": "https://www.w3.org/TR/mediaqueries-4/",
13866
13935
  "seriesComposition": "full",
@@ -15035,42 +15104,6 @@
15035
15104
  ]
15036
15105
  }
15037
15106
  },
15038
- {
15039
- "url": "https://www.w3.org/TR/RangeRequest/",
15040
- "seriesComposition": "full",
15041
- "shortname": "RangeRequest",
15042
- "series": {
15043
- "shortname": "RangeRequest",
15044
- "currentSpecification": "RangeRequest",
15045
- "title": "Incremental Font Transfer via Range Request",
15046
- "shortTitle": "Incremental Font Transfer via Range Request",
15047
- "releaseUrl": "https://www.w3.org/TR/RangeRequest/",
15048
- "nightlyUrl": "https://w3c.github.io/IFT/RangeRequest.html"
15049
- },
15050
- "nightly": {
15051
- "url": "https://w3c.github.io/IFT/RangeRequest.html",
15052
- "sourcePath": "RangeRequest.html",
15053
- "repository": "https://github.com/w3c/IFT",
15054
- "filename": "RangeRequest.html"
15055
- },
15056
- "organization": "W3C",
15057
- "groups": [
15058
- {
15059
- "name": "Web Fonts Working Group",
15060
- "url": "https://www.w3.org/Fonts/WG/"
15061
- }
15062
- ],
15063
- "release": {
15064
- "url": "https://www.w3.org/TR/RangeRequest/",
15065
- "filename": "Overview.html"
15066
- },
15067
- "title": "Incremental Font Transfer via Range Request",
15068
- "source": "w3c",
15069
- "shortTitle": "Incremental Font Transfer via Range Request",
15070
- "categories": [
15071
- "browser"
15072
- ]
15073
- },
15074
15107
  {
15075
15108
  "url": "https://www.w3.org/TR/referrer-policy/",
15076
15109
  "seriesComposition": "full",
@@ -16571,6 +16604,7 @@
16571
16604
  "nightlyUrl": "https://w3c.github.io/aria/"
16572
16605
  },
16573
16606
  "seriesVersion": "1.2",
16607
+ "title": "Accessible Rich Internet Applications (WAI-ARIA)",
16574
16608
  "organization": "W3C",
16575
16609
  "groups": [
16576
16610
  {
@@ -16588,9 +16622,8 @@
16588
16622
  "sourcePath": "index.html",
16589
16623
  "filename": "index.html"
16590
16624
  },
16591
- "title": "Accessible Rich Internet Applications (WAI-ARIA) 1.2",
16592
16625
  "source": "w3c",
16593
- "shortTitle": "WAI-ARIA 1.2",
16626
+ "shortTitle": "WAI-ARIA",
16594
16627
  "categories": [
16595
16628
  "browser"
16596
16629
  ],
@@ -16657,6 +16690,9 @@
16657
16690
  "nightlyUrl": "https://webassembly.github.io/spec/js-api/"
16658
16691
  },
16659
16692
  "seriesVersion": "1",
16693
+ "forks": [
16694
+ "wasm-js-api-1-fork-exception-handling"
16695
+ ],
16660
16696
  "organization": "W3C",
16661
16697
  "groups": [
16662
16698
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-specs",
3
- "version": "2.28.1",
3
+ "version": "3.0.0",
4
4
  "description": "Curated list of technical Web specifications that are directly implemented or that will be implemented by Web browsers.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,4 +14,4 @@
14
14
  "index.json"
15
15
  ],
16
16
  "main": "index.json"
17
- }
17
+ }