web-specs 2.79.0 → 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.
- package/README.md +19 -3
- package/index.json +70 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ cross-references, WebIDL, quality, etc.
|
|
|
10
10
|
## Table of Contents
|
|
11
11
|
|
|
12
12
|
- [Installation and usage](#installation-and-usage)
|
|
13
|
+
- [Upgrading](#upgrading)
|
|
13
14
|
<!-- COMMON-TOC: start -->
|
|
14
15
|
- [Spec object](#spec-object)
|
|
15
16
|
- [`url`](#url)
|
|
@@ -78,6 +79,15 @@ console.log(JSON.stringify(specs, null, 2));
|
|
|
78
79
|
Alternatively, you can fetch [`index.json`](https://w3c.github.io/browser-specs/index.json)
|
|
79
80
|
or retrieve the list from the [`web-specs@latest` branch](https://github.com/w3c/browser-specs/tree/web-specs%40latest).
|
|
80
81
|
|
|
82
|
+
## Upgrading
|
|
83
|
+
|
|
84
|
+
The only breaking change in version `3.x` is that some spec entries may not
|
|
85
|
+
have a `nightly` property. This happens for specs that are not public. An
|
|
86
|
+
example of a non public spec is an ISO standard. In such cases, the `url`
|
|
87
|
+
property targets the public page that describes the spec on the standardization
|
|
88
|
+
organization's web site. To upgrade from version `2.x` to version `3.x`, make
|
|
89
|
+
sure that your code can handle specs without a `nightly` property.
|
|
90
|
+
|
|
81
91
|
<!-- COMMON-BODY: start -->
|
|
82
92
|
## Spec object
|
|
83
93
|
|
|
@@ -133,7 +143,10 @@ Each specification in the list comes with the following properties:
|
|
|
133
143
|
|
|
134
144
|
The versioned (but not dated) URL for the spec. For W3C specs published as
|
|
135
145
|
TR documents, this is the TR URL. For WHATWG specs, this is the URL of the
|
|
136
|
-
living standard.
|
|
146
|
+
living standard. For specs developed by an organization that does not provide
|
|
147
|
+
a public version of the spec such as ISO, this is the URL of the page that
|
|
148
|
+
describes the spec on the organization's web site. In other cases, this is the
|
|
149
|
+
URL of the latest Editor's Draft.
|
|
137
150
|
|
|
138
151
|
The URL should be relatively stable but may still change over time. See
|
|
139
152
|
[Spec identifiers](#spec-identifiers) for details.
|
|
@@ -327,7 +340,8 @@ for all specifications in the CSS Fonts series.
|
|
|
327
340
|
For specs that are not part of a series of specs, this matches the
|
|
328
341
|
[`nightly.url`](#nightlyurl) property.
|
|
329
342
|
|
|
330
|
-
The `nightlyUrl` property is always set
|
|
343
|
+
The `nightlyUrl` property is always set when the [`nightly`](#nightly) property
|
|
344
|
+
is set.
|
|
331
345
|
|
|
332
346
|
|
|
333
347
|
### `seriesVersion`
|
|
@@ -454,7 +468,9 @@ The `pages` property is only set for specs identified as multipage specs.
|
|
|
454
468
|
An object that represents the latest Editor's Draft of the spec, or the living
|
|
455
469
|
standard when the concept of Editor's Draft does not exist.
|
|
456
470
|
|
|
457
|
-
The `nightly` property is always set
|
|
471
|
+
The `nightly` property is always set unless the spec does not have a public
|
|
472
|
+
version available through a URL. For instance, ISO specs are not publicly
|
|
473
|
+
available.
|
|
458
474
|
|
|
459
475
|
|
|
460
476
|
#### `nightly.url`
|
package/index.json
CHANGED
|
@@ -6683,6 +6683,9 @@
|
|
|
6683
6683
|
"seriesVersion": "2",
|
|
6684
6684
|
"forkOf": "wasm-core-2",
|
|
6685
6685
|
"title": "WebAssembly Core: Garbage Collection",
|
|
6686
|
+
"formerNames": [
|
|
6687
|
+
"wasm-core-1-fork-gc"
|
|
6688
|
+
],
|
|
6686
6689
|
"organization": "W3C",
|
|
6687
6690
|
"groups": [
|
|
6688
6691
|
{
|
|
@@ -6927,6 +6930,43 @@
|
|
|
6927
6930
|
],
|
|
6928
6931
|
"standing": "good"
|
|
6929
6932
|
},
|
|
6933
|
+
{
|
|
6934
|
+
"url": "https://webassembly.github.io/threads/js-api/",
|
|
6935
|
+
"seriesComposition": "fork",
|
|
6936
|
+
"shortname": "wasm-js-api-2-fork-threads",
|
|
6937
|
+
"series": {
|
|
6938
|
+
"shortname": "wasm-js-api",
|
|
6939
|
+
"currentSpecification": "wasm-js-api-2",
|
|
6940
|
+
"title": "WebAssembly JavaScript Interface",
|
|
6941
|
+
"shortTitle": "WebAssembly JavaScript Interface",
|
|
6942
|
+
"releaseUrl": "https://www.w3.org/TR/wasm-js-api/",
|
|
6943
|
+
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
6944
|
+
},
|
|
6945
|
+
"seriesVersion": "2",
|
|
6946
|
+
"forkOf": "wasm-js-api-2",
|
|
6947
|
+
"title": "WebAssembly JavaScript Interface: Threading",
|
|
6948
|
+
"organization": "W3C",
|
|
6949
|
+
"groups": [
|
|
6950
|
+
{
|
|
6951
|
+
"name": "WebAssembly Community Group",
|
|
6952
|
+
"url": "https://www.w3.org/community/webassembly/"
|
|
6953
|
+
}
|
|
6954
|
+
],
|
|
6955
|
+
"nightly": {
|
|
6956
|
+
"url": "https://webassembly.github.io/threads/js-api/",
|
|
6957
|
+
"status": "Editor's Draft",
|
|
6958
|
+
"alternateUrls": [],
|
|
6959
|
+
"repository": "https://github.com/WebAssembly/threads",
|
|
6960
|
+
"sourcePath": "document/js-api/index.bs",
|
|
6961
|
+
"filename": "index.html"
|
|
6962
|
+
},
|
|
6963
|
+
"source": "spec",
|
|
6964
|
+
"shortTitle": "WebAssembly JavaScript Interface: Threading",
|
|
6965
|
+
"categories": [
|
|
6966
|
+
"browser"
|
|
6967
|
+
],
|
|
6968
|
+
"standing": "good"
|
|
6969
|
+
},
|
|
6930
6970
|
{
|
|
6931
6971
|
"url": "https://webbluetoothcg.github.io/web-bluetooth/",
|
|
6932
6972
|
"seriesComposition": "full",
|
|
@@ -10101,6 +10141,31 @@
|
|
|
10101
10141
|
],
|
|
10102
10142
|
"standing": "good"
|
|
10103
10143
|
},
|
|
10144
|
+
{
|
|
10145
|
+
"url": "https://www.iso.org/standard/85253.html",
|
|
10146
|
+
"seriesComposition": "full",
|
|
10147
|
+
"shortname": "iso18181-2",
|
|
10148
|
+
"series": {
|
|
10149
|
+
"shortname": "iso18181-2",
|
|
10150
|
+
"currentSpecification": "iso18181-2",
|
|
10151
|
+
"title": "Information technology — JPEG XL image coding system — Part 2: File format",
|
|
10152
|
+
"shortTitle": "JPEG XL: File Format"
|
|
10153
|
+
},
|
|
10154
|
+
"shortTitle": "JPEG XL: File Format",
|
|
10155
|
+
"organization": "ISO/IEC",
|
|
10156
|
+
"groups": [
|
|
10157
|
+
{
|
|
10158
|
+
"name": "ISO/IEC JTC 1/SC 29",
|
|
10159
|
+
"url": "https://www.iso.org/committee/45316.html"
|
|
10160
|
+
}
|
|
10161
|
+
],
|
|
10162
|
+
"title": "Information technology — JPEG XL image coding system — Part 2: File format",
|
|
10163
|
+
"source": "specref",
|
|
10164
|
+
"categories": [
|
|
10165
|
+
"browser"
|
|
10166
|
+
],
|
|
10167
|
+
"standing": "good"
|
|
10168
|
+
},
|
|
10104
10169
|
{
|
|
10105
10170
|
"url": "https://www.rfc-editor.org/rfc/rfc2397",
|
|
10106
10171
|
"seriesComposition": "full",
|
|
@@ -16883,6 +16948,9 @@
|
|
|
16883
16948
|
"nightlyUrl": "https://drafts.csswg.org/css-viewport/"
|
|
16884
16949
|
},
|
|
16885
16950
|
"seriesVersion": "1",
|
|
16951
|
+
"formerNames": [
|
|
16952
|
+
"css-viewport"
|
|
16953
|
+
],
|
|
16886
16954
|
"organization": "W3C",
|
|
16887
16955
|
"groups": [
|
|
16888
16956
|
{
|
|
@@ -24040,7 +24108,8 @@
|
|
|
24040
24108
|
"wasm-js-api-2-fork-content-security-policy",
|
|
24041
24109
|
"wasm-js-api-2-fork-exception-handling",
|
|
24042
24110
|
"wasm-js-api-2-fork-js-promise-integration",
|
|
24043
|
-
"wasm-js-api-2-fork-js-types"
|
|
24111
|
+
"wasm-js-api-2-fork-js-types",
|
|
24112
|
+
"wasm-js-api-2-fork-threads"
|
|
24044
24113
|
],
|
|
24045
24114
|
"organization": "W3C",
|
|
24046
24115
|
"groups": [
|