web-specs 3.86.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 +17 -2
- package/index.json +430 -187
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,6 +81,19 @@ or retrieve the list from the [`web-specs@latest` branch](https://github.com/w3c
|
|
|
81
81
|
|
|
82
82
|
## Upgrading
|
|
83
83
|
|
|
84
|
+
### From version 3 to version 4
|
|
85
|
+
|
|
86
|
+
The only breaking change in version `4.x` is that, following the release of the
|
|
87
|
+
new RFC Editor site at the IETF, IETF spec entries no longer have a `filename`
|
|
88
|
+
property under `nightly`. Tests and documentation used to assume that the
|
|
89
|
+
`filename` property was always set. That is no longer the case. To upgrade from
|
|
90
|
+
version `3.x` to version `4.x`, make sure that your code can handle specs
|
|
91
|
+
without a `filename` property.
|
|
92
|
+
|
|
93
|
+
*Note:* the `organization` property of IETF spec entries is set to `"IETF"`.
|
|
94
|
+
|
|
95
|
+
### From version 2 to version 3
|
|
96
|
+
|
|
84
97
|
The only breaking change in version `3.x` is that some spec entries may not
|
|
85
98
|
have a `nightly` property. This happens for specs that are not public. An
|
|
86
99
|
example of a non public spec is an ISO standard. In such cases, the `url`
|
|
@@ -454,7 +467,8 @@ For instance, the filename for `https://www.w3.org/TR/presentation-api/` is
|
|
|
454
467
|
`https://www.w3.org/TR/presentation-api/Overview.html`. The filename may be
|
|
455
468
|
useful to distinguish links to self in a spec.
|
|
456
469
|
|
|
457
|
-
The `filename` property is always set
|
|
470
|
+
The `filename` property is always set, except for IETF specifications
|
|
471
|
+
([`organization`](#organization) is set to `"IETF"` for them).
|
|
458
472
|
|
|
459
473
|
|
|
460
474
|
#### `release.pages`
|
|
@@ -531,7 +545,8 @@ For instance, the filename for `https://w3c.github.io/presentation-api/` is
|
|
|
531
545
|
`https://w3c.github.io/presentation-api/index.html`. The filename may be
|
|
532
546
|
useful to distinguish links to self in a spec.
|
|
533
547
|
|
|
534
|
-
The `filename` property is always set
|
|
548
|
+
The `filename` property is always set, except for IETF specifications
|
|
549
|
+
([`organization`](#organization) is set to `"IETF"` for them).
|
|
535
550
|
|
|
536
551
|
|
|
537
552
|
#### `nightly.pages`
|