edfcore 0.4.192 → 0.4.194
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/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/docs/CHANGELOG.md +24 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -109,5 +109,5 @@ export declare const SIGNAL_FIELD_BLOCK_OFFSETS: {
|
|
|
109
109
|
readonly reserved: 224;
|
|
110
110
|
};
|
|
111
111
|
/** Published package version. Kept in sync with package.json by a test. */
|
|
112
|
-
export declare const VERSION = "0.4.
|
|
112
|
+
export declare const VERSION = "0.4.194";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ alone does not tell you whether you were affected.
|
|
|
6
6
|
edfcore is pre-1.0. Patch releases have carried behaviour changes where the old behaviour was a
|
|
7
7
|
defect; those are called out below.
|
|
8
8
|
|
|
9
|
+
## 0.4.194
|
|
10
|
+
|
|
11
|
+
- **Added** the missing `0.2.29` entry. Four numbers have been consumed by a release that failed
|
|
12
|
+
after bumping, and three say so in this file. 0.2.29 said nothing — while the 0.2.36 entry cites
|
|
13
|
+
it as the precedent for its own, and `scripts/release.mjs` tells the next person to record a skip
|
|
14
|
+
"the way 0.2.29, 0.2.36 and 0.2.59 are". Both pointed at the one that was not. Reconstructed from
|
|
15
|
+
7ea90ff, which carries the 0.2.28 → 0.2.29 bump alongside the lint fix that run died on.
|
|
16
|
+
|
|
17
|
+
## 0.4.193
|
|
18
|
+
|
|
19
|
+
- **Added** the guard for 0.4.191 and 0.4.192: both corpus sizes in `tests/README.md` are now
|
|
20
|
+
measured against the manifest and the `corpus/golden/` directory. Each had gone stale by more
|
|
21
|
+
than 30% because a file joined a set and the sentence describing it did not, and neither was
|
|
22
|
+
checkable by reading the sentence. The tolerance is 10%, so a hedged "~" survives a fixture
|
|
23
|
+
gaining bytes and fails when the set changes.
|
|
24
|
+
|
|
9
25
|
## 0.4.192
|
|
10
26
|
|
|
11
27
|
- **Corrected** the size of the committed parity fixtures, the other stale number in
|
|
@@ -4138,6 +4154,14 @@ against the published 0.2.27 tarball rather than assumed.
|
|
|
4138
4154
|
refusal for a file whose records really do exist and really are too big, so the guard is still
|
|
4139
4155
|
covered.
|
|
4140
4156
|
|
|
4157
|
+
## 0.2.29
|
|
4158
|
+
|
|
4159
|
+
Never released. The release run failed `npm run check` on two unused imports in
|
|
4160
|
+
`tests/io/hardening.test.ts` after bumping the version, which consumed the number before a tag was
|
|
4161
|
+
cut; the scan-buffer fix it was carrying shipped as 0.2.30 instead. Written down in 0.4.194 — it was
|
|
4162
|
+
the only consumed number with no entry of its own, while `0.2.36` above and the guidance in
|
|
4163
|
+
`scripts/release.mjs` both name it as one of the recorded ones.
|
|
4164
|
+
|
|
4141
4165
|
## 0.2.28
|
|
4142
4166
|
|
|
4143
4167
|
- **Fixed** `readAnnotations` answering on the header's axis for any record range that does not
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED