edfcore 0.4.520 → 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.
@@ -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.520";
112
+ export declare const VERSION = "0.4.521";
113
113
  //# sourceMappingURL=constants.d.ts.map
package/dist/constants.js CHANGED
@@ -79,5 +79,5 @@ export const SIGNAL_FIELD_BLOCK_OFFSETS = {
79
79
  reserved: 224,
80
80
  };
81
81
  /** Published package version. Kept in sync with package.json by a test. */
82
- export const VERSION = '0.4.520';
82
+ export const VERSION = '0.4.521';
83
83
  //# sourceMappingURL=constants.js.map
package/docs/CHANGELOG.md CHANGED
@@ -6,6 +6,24 @@ 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
+
9
27
  ## 0.4.520
10
28
 
11
29
  - **Added** the header-helper agreement checks to the offline suite. `tests/corpus/whole-api.test.ts`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.4.520",
3
+ "version": "0.4.521",
4
4
  "description": "Modern, typed, zero-dependency reader for EDF, EDF+, BDF and BDF+ biosignal files. Works in browsers and Node with true random access.",
5
5
  "keywords": [
6
6
  "edf",
package/src/constants.ts CHANGED
@@ -93,4 +93,4 @@ export const SIGNAL_FIELD_BLOCK_OFFSETS = {
93
93
  } as const;
94
94
 
95
95
  /** Published package version. Kept in sync with package.json by a test. */
96
- export const VERSION = '0.4.520';
96
+ export const VERSION = '0.4.521';