edfcore 0.4.519 → 0.4.521
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 +38 -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.521";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,44 @@ 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.521
|
|
10
|
+
|
|
11
|
+
- **Added** the timeline-helper agreement checks to the offline suite, the second group in
|
|
12
|
+
`tests/corpus/whole-api.test.ts` that skips without the corpus. `contiguityOf`, `segmentAt` and
|
|
13
|
+
`gapAt` each answer a question the index already answers, and the way they fail is by
|
|
14
|
+
disagreeing with it: a time reported as inside a segment AND inside a gap, a gap count that does
|
|
15
|
+
not match the segments it separates, segments that skip a record or claim one twice.
|
|
16
|
+
- The zero-record-duration shape is why this group is worth running on built files as well as real
|
|
17
|
+
ones. Records then occupy no time, so every segment's half-open interval `[start, start)` is
|
|
18
|
+
empty and `segmentAt` returns `undefined` for every instant — the same answer the sample helpers
|
|
19
|
+
give for the same reason, and one that looks like a bug until you notice there is no time axis to
|
|
20
|
+
be on. The sleep-edfx hypnogram is a file of exactly that shape, and a fresh clone had none.
|
|
21
|
+
- Each gap is checked to name the two segments it lies between and to start and end exactly where
|
|
22
|
+
they do, in ticks: a gap derived independently of the pair it separates is how a boundary comes
|
|
23
|
+
to be reported twice with two different numbers.
|
|
24
|
+
- The last case asserts the shapes reach both branches — one file discontinuous, one contiguous,
|
|
25
|
+
one with a zero-width segment — so a green run is not one where every branch was skipped.
|
|
26
|
+
|
|
27
|
+
## 0.4.520
|
|
28
|
+
|
|
29
|
+
- **Added** the header-helper agreement checks to the offline suite. `tests/corpus/whole-api.test.ts`
|
|
30
|
+
runs essentially the whole barrel over six real files and asserts the results agree with each
|
|
31
|
+
other; its own docblock says why that is a class of its own — a function can be individually
|
|
32
|
+
correct and still disagree with its neighbour, and six releases of this project were exactly
|
|
33
|
+
that. All of it skips without `npm run corpus:fetch`, so a fresh clone had never run any of it.
|
|
34
|
+
- What the corpus contributes to those properties is not realness. None of them cares where the
|
|
35
|
+
bytes came from; what they need is AWKWARDNESS — a zero record duration, a duplicated channel
|
|
36
|
+
label, a file with no data signal at all, 24-bit samples, a signal with no usable scale. The new
|
|
37
|
+
`tests/support/awkward-files.ts` builds eight such shapes, each named after what makes it
|
|
38
|
+
awkward rather than after the corpus file it stands in for.
|
|
39
|
+
- The properties are the ones that can only fail as a disagreement: `matchSignals` returning a
|
|
40
|
+
different set of channels than `header.dataSignalIndices`, `physicalRangeOf` ordering bounds the
|
|
41
|
+
signal does not declare, `getSignal` answering where `findSignals` found two, the covered
|
|
42
|
+
duration exceeding the span, `summarizeDiagnostics` counting a severity the array does not carry.
|
|
43
|
+
- A final case asserts the shapes really are awkward — that one has no data signals, one has no
|
|
44
|
+
rate anywhere, one repeats a label, one is 24-bit, one has an unscalable signal. Without it the
|
|
45
|
+
run could pass on eight tidy files and prove nothing about the shapes it is named for.
|
|
46
|
+
|
|
9
47
|
## 0.4.519
|
|
10
48
|
|
|
11
49
|
- **Added** an offline check of the claim `api-helpers.md` makes for `streamRecords`: "a streamed
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED