edfcore 0.6.56 → 0.6.57

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.6.56";
112
+ export declare const VERSION = "0.6.57";
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.6.56';
82
+ export const VERSION = '0.6.57';
83
83
  //# sourceMappingURL=constants.js.map
package/docs/CHANGELOG.md CHANGED
@@ -6,6 +6,23 @@ 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.6.57
10
+
11
+ - **Fixed** "the cache never sees a header", said on `large-files.md`, `api-sources.md` and
12
+ `data-sources.md` as the reason `cachedSource` aligns blocks on bytes rather than on records.
13
+ It wraps a `ByteSource`, so every read `openEdf` issues goes through it, the header's two
14
+ included. What it never does is PARSE one, which is what leaves it with no record size.
15
+ - `large-files.md` refuted itself twenty lines further down, in the paragraph that makes the
16
+ cache's best argument: "The first was already resident because the header read at open pulled
17
+ it in, so the reads that come with opening a file are not wasted." Both sentences sit on the
18
+ page a reader consults while choosing `blockBytes`.
19
+ - `types.ts`, beside the option, already carried the qualified version — "never sees a header to
20
+ learn a record size from". That is the shape of 0.6.48: the docblock keeps the qualifier and
21
+ the pages drop it.
22
+ - The new test measures it rather than quoting it. A 4 KiB block turns the header's two reads
23
+ into one underlying read, and reading the same bytes again costs nothing — which is only
24
+ possible if the cache saw them.
25
+
9
26
  ## 0.6.56
10
27
 
11
28
  - **Fixed** the onset guidance in `src/tal/annotations.ts`, which told a reader to compare on the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.6.56",
3
+ "version": "0.6.57",
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.6.56';
96
+ export const VERSION = '0.6.57';