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.
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/docs/CHANGELOG.md +17 -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.6.
|
|
112
|
+
export declare const VERSION = "0.6.57";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
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
package/src/constants.ts
CHANGED