browser-specs 3.75.0 → 4.1.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 +138 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ cross-references, WebIDL, quality, etc.
|
|
|
11
11
|
## Table of Contents
|
|
12
12
|
|
|
13
13
|
- [Installation and usage](#installation-and-usage)
|
|
14
|
+
- [Upgrading](#upgrading)
|
|
14
15
|
<!-- COMMON-TOC: start -->
|
|
15
16
|
- [Spec object](#spec-object)
|
|
16
17
|
- [`url`](#url)
|
|
@@ -80,6 +81,15 @@ or retrieve the list from the [`web-specs@latest` branch](https://github.com/w3c
|
|
|
80
81
|
and filter the resulting list to only preserve specs that have `"browser"` in
|
|
81
82
|
their `categories` property.
|
|
82
83
|
|
|
84
|
+
## Upgrading
|
|
85
|
+
|
|
86
|
+
The only breaking change in version `4.x` is that some spec entries may not
|
|
87
|
+
have a `nightly` property. This happens for specs that are not public. An
|
|
88
|
+
example of a non public spec is an ISO standard. In such cases, the `url`
|
|
89
|
+
property targets the public page that describes the spec on the standardization
|
|
90
|
+
organization's web site. To upgrade from version `3.x` to version `4.x`, make
|
|
91
|
+
sure that your code can handle specs without a `nightly` property.
|
|
92
|
+
|
|
83
93
|
<!-- COMMON-BODY: start -->
|
|
84
94
|
## Spec object
|
|
85
95
|
|
|
@@ -135,7 +145,10 @@ Each specification in the list comes with the following properties:
|
|
|
135
145
|
|
|
136
146
|
The versioned (but not dated) URL for the spec. For W3C specs published as
|
|
137
147
|
TR documents, this is the TR URL. For WHATWG specs, this is the URL of the
|
|
138
|
-
living standard.
|
|
148
|
+
living standard. For specs developed by an organization that does not provide
|
|
149
|
+
a public version of the spec such as ISO, this is the URL of the page that
|
|
150
|
+
describes the spec on the organization's web site. In other cases, this is the
|
|
151
|
+
URL of the latest Editor's Draft.
|
|
139
152
|
|
|
140
153
|
The URL should be relatively stable but may still change over time. See
|
|
141
154
|
[Spec identifiers](#spec-identifiers) for details.
|
|
@@ -329,7 +342,8 @@ for all specifications in the CSS Fonts series.
|
|
|
329
342
|
For specs that are not part of a series of specs, this matches the
|
|
330
343
|
[`nightly.url`](#nightlyurl) property.
|
|
331
344
|
|
|
332
|
-
The `nightlyUrl` property is always set
|
|
345
|
+
The `nightlyUrl` property is always set when the [`nightly`](#nightly) property
|
|
346
|
+
is set.
|
|
333
347
|
|
|
334
348
|
|
|
335
349
|
### `seriesVersion`
|
|
@@ -456,7 +470,9 @@ The `pages` property is only set for specs identified as multipage specs.
|
|
|
456
470
|
An object that represents the latest Editor's Draft of the spec, or the living
|
|
457
471
|
standard when the concept of Editor's Draft does not exist.
|
|
458
472
|
|
|
459
|
-
The `nightly` property is always set
|
|
473
|
+
The `nightly` property is always set unless the spec does not have a public
|
|
474
|
+
version available through a URL. For instance, ISO specs are not publicly
|
|
475
|
+
available.
|
|
460
476
|
|
|
461
477
|
|
|
462
478
|
#### `nightly.url`
|
package/index.json
CHANGED
|
@@ -363,40 +363,6 @@
|
|
|
363
363
|
],
|
|
364
364
|
"standing": "good"
|
|
365
365
|
},
|
|
366
|
-
{
|
|
367
|
-
"url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-digest-headers",
|
|
368
|
-
"seriesComposition": "full",
|
|
369
|
-
"shortname": "digest-headers",
|
|
370
|
-
"series": {
|
|
371
|
-
"shortname": "digest-headers",
|
|
372
|
-
"currentSpecification": "digest-headers",
|
|
373
|
-
"title": "Digest Fields",
|
|
374
|
-
"shortTitle": "Digest Fields",
|
|
375
|
-
"nightlyUrl": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html"
|
|
376
|
-
},
|
|
377
|
-
"organization": "IETF",
|
|
378
|
-
"groups": [
|
|
379
|
-
{
|
|
380
|
-
"name": "HTTP Working Group",
|
|
381
|
-
"url": "https://datatracker.ietf.org/wg/httpbis/"
|
|
382
|
-
}
|
|
383
|
-
],
|
|
384
|
-
"nightly": {
|
|
385
|
-
"url": "https://httpwg.org/http-extensions/draft-ietf-httpbis-digest-headers.html",
|
|
386
|
-
"status": "Editor's Draft",
|
|
387
|
-
"alternateUrls": [],
|
|
388
|
-
"repository": "https://github.com/httpwg/http-extensions",
|
|
389
|
-
"sourcePath": "draft-ietf-httpbis-digest-headers.md",
|
|
390
|
-
"filename": "draft-ietf-httpbis-digest-headers.html"
|
|
391
|
-
},
|
|
392
|
-
"title": "Digest Fields",
|
|
393
|
-
"source": "ietf",
|
|
394
|
-
"shortTitle": "Digest Fields",
|
|
395
|
-
"categories": [
|
|
396
|
-
"browser"
|
|
397
|
-
],
|
|
398
|
-
"standing": "good"
|
|
399
|
-
},
|
|
400
366
|
{
|
|
401
367
|
"url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis",
|
|
402
368
|
"seriesComposition": "full",
|
|
@@ -5908,6 +5874,9 @@
|
|
|
5908
5874
|
"seriesVersion": "2",
|
|
5909
5875
|
"forkOf": "wasm-core-2",
|
|
5910
5876
|
"title": "WebAssembly Core: Garbage Collection",
|
|
5877
|
+
"formerNames": [
|
|
5878
|
+
"wasm-core-1-fork-gc"
|
|
5879
|
+
],
|
|
5911
5880
|
"organization": "W3C",
|
|
5912
5881
|
"groups": [
|
|
5913
5882
|
{
|
|
@@ -6152,6 +6121,43 @@
|
|
|
6152
6121
|
],
|
|
6153
6122
|
"standing": "good"
|
|
6154
6123
|
},
|
|
6124
|
+
{
|
|
6125
|
+
"url": "https://webassembly.github.io/threads/js-api/",
|
|
6126
|
+
"seriesComposition": "fork",
|
|
6127
|
+
"shortname": "wasm-js-api-2-fork-threads",
|
|
6128
|
+
"series": {
|
|
6129
|
+
"shortname": "wasm-js-api",
|
|
6130
|
+
"currentSpecification": "wasm-js-api-2",
|
|
6131
|
+
"title": "WebAssembly JavaScript Interface",
|
|
6132
|
+
"shortTitle": "WebAssembly JavaScript Interface",
|
|
6133
|
+
"releaseUrl": "https://www.w3.org/TR/wasm-js-api/",
|
|
6134
|
+
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
6135
|
+
},
|
|
6136
|
+
"seriesVersion": "2",
|
|
6137
|
+
"forkOf": "wasm-js-api-2",
|
|
6138
|
+
"title": "WebAssembly JavaScript Interface: Threading",
|
|
6139
|
+
"organization": "W3C",
|
|
6140
|
+
"groups": [
|
|
6141
|
+
{
|
|
6142
|
+
"name": "WebAssembly Community Group",
|
|
6143
|
+
"url": "https://www.w3.org/community/webassembly/"
|
|
6144
|
+
}
|
|
6145
|
+
],
|
|
6146
|
+
"nightly": {
|
|
6147
|
+
"url": "https://webassembly.github.io/threads/js-api/",
|
|
6148
|
+
"status": "Editor's Draft",
|
|
6149
|
+
"alternateUrls": [],
|
|
6150
|
+
"repository": "https://github.com/WebAssembly/threads",
|
|
6151
|
+
"sourcePath": "document/js-api/index.bs",
|
|
6152
|
+
"filename": "index.html"
|
|
6153
|
+
},
|
|
6154
|
+
"source": "spec",
|
|
6155
|
+
"shortTitle": "WebAssembly JavaScript Interface: Threading",
|
|
6156
|
+
"categories": [
|
|
6157
|
+
"browser"
|
|
6158
|
+
],
|
|
6159
|
+
"standing": "good"
|
|
6160
|
+
},
|
|
6155
6161
|
{
|
|
6156
6162
|
"url": "https://webbluetoothcg.github.io/web-bluetooth/",
|
|
6157
6163
|
"seriesComposition": "full",
|
|
@@ -9149,6 +9155,56 @@
|
|
|
9149
9155
|
],
|
|
9150
9156
|
"standing": "good"
|
|
9151
9157
|
},
|
|
9158
|
+
{
|
|
9159
|
+
"url": "https://www.iso.org/standard/85253.html",
|
|
9160
|
+
"seriesComposition": "full",
|
|
9161
|
+
"shortname": "iso18181-2",
|
|
9162
|
+
"series": {
|
|
9163
|
+
"shortname": "iso18181-2",
|
|
9164
|
+
"currentSpecification": "iso18181-2",
|
|
9165
|
+
"title": "Information technology — JPEG XL image coding system — Part 2: File format",
|
|
9166
|
+
"shortTitle": "JPEG XL: File Format"
|
|
9167
|
+
},
|
|
9168
|
+
"shortTitle": "JPEG XL: File Format",
|
|
9169
|
+
"organization": "ISO/IEC",
|
|
9170
|
+
"groups": [
|
|
9171
|
+
{
|
|
9172
|
+
"name": "ISO/IEC JTC 1/SC 29",
|
|
9173
|
+
"url": "https://www.iso.org/committee/45316.html"
|
|
9174
|
+
}
|
|
9175
|
+
],
|
|
9176
|
+
"title": "Information technology — JPEG XL image coding system — Part 2: File format",
|
|
9177
|
+
"source": "specref",
|
|
9178
|
+
"categories": [
|
|
9179
|
+
"browser"
|
|
9180
|
+
],
|
|
9181
|
+
"standing": "good"
|
|
9182
|
+
},
|
|
9183
|
+
{
|
|
9184
|
+
"url": "https://www.iso.org/standard/87621.html",
|
|
9185
|
+
"seriesComposition": "full",
|
|
9186
|
+
"shortname": "iso14496-22",
|
|
9187
|
+
"series": {
|
|
9188
|
+
"shortname": "iso14496-22",
|
|
9189
|
+
"currentSpecification": "iso14496-22",
|
|
9190
|
+
"title": "Information technology — Coding of audio-visual objects — Part 22: Open Font Format",
|
|
9191
|
+
"shortTitle": "Open Font Format"
|
|
9192
|
+
},
|
|
9193
|
+
"shortTitle": "Open Font Format",
|
|
9194
|
+
"organization": "ISO/IEC",
|
|
9195
|
+
"groups": [
|
|
9196
|
+
{
|
|
9197
|
+
"name": "ISO/IEC JTC 1/SC 29",
|
|
9198
|
+
"url": "https://www.iso.org/committee/45316.html"
|
|
9199
|
+
}
|
|
9200
|
+
],
|
|
9201
|
+
"title": "Information technology — Coding of audio-visual objects — Part 22: Open Font Format",
|
|
9202
|
+
"source": "specref",
|
|
9203
|
+
"categories": [
|
|
9204
|
+
"browser"
|
|
9205
|
+
],
|
|
9206
|
+
"standing": "good"
|
|
9207
|
+
},
|
|
9152
9208
|
{
|
|
9153
9209
|
"url": "https://www.rfc-editor.org/rfc/rfc2397",
|
|
9154
9210
|
"seriesComposition": "full",
|
|
@@ -10091,6 +10147,46 @@
|
|
|
10091
10147
|
],
|
|
10092
10148
|
"standing": "good"
|
|
10093
10149
|
},
|
|
10150
|
+
{
|
|
10151
|
+
"url": "https://www.rfc-editor.org/rfc/rfc9530",
|
|
10152
|
+
"seriesComposition": "full",
|
|
10153
|
+
"shortname": "rfc9530",
|
|
10154
|
+
"series": {
|
|
10155
|
+
"shortname": "rfc9530",
|
|
10156
|
+
"currentSpecification": "rfc9530",
|
|
10157
|
+
"title": "Digest Fields",
|
|
10158
|
+
"shortTitle": "Digest Fields",
|
|
10159
|
+
"nightlyUrl": "https://httpwg.org/specs/rfc9530.html"
|
|
10160
|
+
},
|
|
10161
|
+
"formerNames": [
|
|
10162
|
+
"digest-headers"
|
|
10163
|
+
],
|
|
10164
|
+
"organization": "IETF",
|
|
10165
|
+
"groups": [
|
|
10166
|
+
{
|
|
10167
|
+
"name": "HTTP Working Group",
|
|
10168
|
+
"url": "https://datatracker.ietf.org/wg/httpbis/"
|
|
10169
|
+
}
|
|
10170
|
+
],
|
|
10171
|
+
"nightly": {
|
|
10172
|
+
"url": "https://httpwg.org/specs/rfc9530.html",
|
|
10173
|
+
"status": "Proposed Standard",
|
|
10174
|
+
"alternateUrls": [
|
|
10175
|
+
"https://datatracker.ietf.org/doc/html/rfc9530",
|
|
10176
|
+
"https://tools.ietf.org/html/rfc9530"
|
|
10177
|
+
],
|
|
10178
|
+
"repository": "https://github.com/httpwg/httpwg.github.io",
|
|
10179
|
+
"sourcePath": "specs/rfc9530.xml",
|
|
10180
|
+
"filename": "rfc9530.html"
|
|
10181
|
+
},
|
|
10182
|
+
"title": "Digest Fields",
|
|
10183
|
+
"source": "ietf",
|
|
10184
|
+
"shortTitle": "Digest Fields",
|
|
10185
|
+
"categories": [
|
|
10186
|
+
"browser"
|
|
10187
|
+
],
|
|
10188
|
+
"standing": "good"
|
|
10189
|
+
},
|
|
10094
10190
|
{
|
|
10095
10191
|
"url": "https://www.w3.org/Consortium/Process/",
|
|
10096
10192
|
"seriesComposition": "full",
|
|
@@ -15510,6 +15606,9 @@
|
|
|
15510
15606
|
"nightlyUrl": "https://drafts.csswg.org/css-viewport/"
|
|
15511
15607
|
},
|
|
15512
15608
|
"seriesVersion": "1",
|
|
15609
|
+
"formerNames": [
|
|
15610
|
+
"css-viewport"
|
|
15611
|
+
],
|
|
15513
15612
|
"organization": "W3C",
|
|
15514
15613
|
"groups": [
|
|
15515
15614
|
{
|
|
@@ -21105,7 +21204,7 @@
|
|
|
21105
21204
|
],
|
|
21106
21205
|
"release": {
|
|
21107
21206
|
"url": "https://www.w3.org/TR/wasm-core-2/",
|
|
21108
|
-
"status": "
|
|
21207
|
+
"status": "Working Draft",
|
|
21109
21208
|
"filename": "Overview.html"
|
|
21110
21209
|
},
|
|
21111
21210
|
"title": "WebAssembly Core Specification",
|
|
@@ -21133,7 +21232,8 @@
|
|
|
21133
21232
|
"wasm-js-api-2-fork-content-security-policy",
|
|
21134
21233
|
"wasm-js-api-2-fork-exception-handling",
|
|
21135
21234
|
"wasm-js-api-2-fork-js-promise-integration",
|
|
21136
|
-
"wasm-js-api-2-fork-js-types"
|
|
21235
|
+
"wasm-js-api-2-fork-js-types",
|
|
21236
|
+
"wasm-js-api-2-fork-threads"
|
|
21137
21237
|
],
|
|
21138
21238
|
"organization": "W3C",
|
|
21139
21239
|
"groups": [
|
|
@@ -21144,7 +21244,7 @@
|
|
|
21144
21244
|
],
|
|
21145
21245
|
"release": {
|
|
21146
21246
|
"url": "https://www.w3.org/TR/wasm-js-api-2/",
|
|
21147
|
-
"status": "
|
|
21247
|
+
"status": "Working Draft",
|
|
21148
21248
|
"filename": "Overview.html"
|
|
21149
21249
|
},
|
|
21150
21250
|
"nightly": {
|
|
@@ -21191,7 +21291,7 @@
|
|
|
21191
21291
|
],
|
|
21192
21292
|
"release": {
|
|
21193
21293
|
"url": "https://www.w3.org/TR/wasm-web-api-2/",
|
|
21194
|
-
"status": "
|
|
21294
|
+
"status": "Working Draft",
|
|
21195
21295
|
"filename": "Overview.html"
|
|
21196
21296
|
},
|
|
21197
21297
|
"nightly": {
|
package/package.json
CHANGED