edfcore 0.4.306 → 0.4.308

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.306";
112
+ export declare const VERSION = "0.4.308";
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.306';
82
+ export const VERSION = '0.4.308';
83
83
  //# sourceMappingURL=constants.js.map
package/docs/CHANGELOG.md CHANGED
@@ -6,6 +6,28 @@ 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.308
10
+
11
+ - **Added** the guard for what 0.4.307 fixed: a version another entry calls a hole has to say so in
12
+ its own entry. The list is derived rather than kept — an entry saying "0.4.287 through 0.4.292
13
+ were never released" declares six, and each of those six must carry the note itself.
14
+ - Nothing here knows what npm holds, because the suite is offline. Checking the changelog against
15
+ itself is the strongest form available, and it is the failure that actually happened: fourteen
16
+ entries written before their release failed, each reading like one that shipped, with the
17
+ correction sitting in a different entry the reader never reaches.
18
+
19
+ ## 0.4.307
20
+
21
+ - **Marked** the fourteen changelog entries for versions that were never released. Each of them —
22
+ 0.4.231 through 0.4.236, 0.4.241, 0.4.242, and 0.4.287 through 0.4.292 — was written before its
23
+ release failed, so the entry reads exactly like one that shipped. The correction lived in a
24
+ different entry further up, which a reader at `## 0.4.288` never sees: they get a normal-looking
25
+ changelog entry for a version `npm install edfcore@0.4.288` cannot fetch.
26
+ - The older holes already did this right. 0.2.29, 0.2.36, 0.2.59 and 0.4.176 each open by saying
27
+ "Never released" and naming the version that carried the work, which is the convention
28
+ `scripts/release.mjs` points at when it tells you to record a consumed number. These fourteen
29
+ now do the same, and say which version carried them.
30
+
9
31
  ## 0.4.306
10
32
 
11
33
  - **Built** the file `discontinuous.md` draws and read it. The page opens with a diagram — six
@@ -185,6 +207,8 @@ defect; those are called out below.
185
207
 
186
208
  ## 0.4.292
187
209
 
210
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
211
+
188
212
  - **Fixed** the tarball check added in 0.4.287, which broke the publish it was written to protect.
189
213
  It ran `npm pack --dry-run --json` without `--ignore-scripts`, so `npm pack` ran the pack
190
214
  lifecycle — and this package's `prepublishOnly` is `npm run check && npm run build`. The pack
@@ -201,6 +225,8 @@ defect; those are called out below.
201
225
 
202
226
  ## 0.4.291
203
227
 
228
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
229
+
204
230
  - **Extended** `verify:site` to the rendered head of every built page. `Base.astro` builds it once
205
231
  for all of them, which is exactly why a page that misses it misses it silently — nothing renders
206
232
  differently. Title, description, canonical and the two Open Graph tags are now required on all 27
@@ -214,6 +240,8 @@ defect; those are called out below.
214
240
 
215
241
  ## 0.4.290
216
242
 
243
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
244
+
217
245
  - **Added** `npm run verify:site`, which checks what the site build produced rather than that it
218
246
  produced something. `llms.txt`, `llms-full.txt`, the markdown twin of every page, `robots.txt`
219
247
  and `api.json` are generated from the collection and nothing looked at the output — and each
@@ -227,6 +255,8 @@ defect; those are called out below.
227
255
 
228
256
  ## 0.4.289
229
257
 
258
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
259
+
230
260
  - **Tested** `header/fields.ts` directly, the last source module no test imported. It is the sole
231
261
  owner of where each of the ten fixed fields lives and which diagnostic a field that fails its
232
262
  grammar deserves, and every function in it ran only as a step inside `parseHeader` — covered by
@@ -241,6 +271,8 @@ defect; those are called out below.
241
271
 
242
272
  ## 0.4.288
243
273
 
274
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
275
+
244
276
  - **Tested** `options.ts` directly for the first time. It is 66 lines of Layer 1 whose whole job is
245
277
  refusing bad input, and no test imported it — every path through it ran only as a side effect of
246
278
  some larger read. Its own docblock records two misdiagnoses that reached users from a `NaN`
@@ -257,6 +289,8 @@ defect; those are called out below.
257
289
 
258
290
  ## 0.4.287
259
291
 
292
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
293
+
260
294
  - **Added** a check on what `npm publish` would actually send. `publint` runs in CI and checks the
261
295
  manifest is well formed; it says nothing about membership, and membership is where the claims
262
296
  are — `tests/README.md` promises "nothing under `tests/` ever ships", and the fixture policy
@@ -902,6 +936,8 @@ defect; those are called out below.
902
936
 
903
937
  ## 0.4.242
904
938
 
939
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.243`.
940
+
905
941
  - **Fixed** the link checker's own hand-written inventory, six releases after it was added to
906
942
  catch exactly that. 0.4.236 listed the site's standalone routes — `/`, `/demo`, `/llms.txt` and
907
943
  the rest — as a literal set, so deleting a route would have left the list vouching for it, and
@@ -914,6 +950,8 @@ defect; those are called out below.
914
950
 
915
951
  ## 0.4.241
916
952
 
953
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.243`.
954
+
917
955
  - **Added** checks on `tests/README.md`, which described this suite with nothing checking that it
918
956
  still did. It is where the root README sends a contributor, and the fixture policy it states is
919
957
  the only reason six binary files are committed to a repository that otherwise builds every
@@ -982,6 +1020,8 @@ defect; those are called out below.
982
1020
 
983
1021
  ## 0.4.236
984
1022
 
1023
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
1024
+
985
1025
  - **Added** a check that every internal link on the site points at something that exists. The
986
1026
  documentation pages carry over a hundred `/docs/...` and `#anchor` links between them and
987
1027
  nothing checked one: `astro check` validates types and content collections, not hrefs, and a
@@ -996,6 +1036,8 @@ defect; those are called out below.
996
1036
 
997
1037
  ## 0.4.235
998
1038
 
1039
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
1040
+
999
1041
  - **Added** documentation for the three selection types, taking the recorded undocumented list
1000
1042
  from eleven to eight. `StreamSelection`, `EnvelopeSelection` and `TriggerSelection` are what
1001
1043
  `streamRecords`, `readEnvelope` and `readTriggers` take, and every page showed an object literal
@@ -1010,6 +1052,8 @@ defect; those are called out below.
1010
1052
 
1011
1053
  ## 0.4.234
1012
1054
 
1055
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
1056
+
1013
1057
  - **Added** documentation for the three formatter options types, and took them off the recorded
1014
1058
  list of undocumented ones. `FormatHeaderOptions`, `FormatAnnotationsOptions` and
1015
1059
  `FormatReportOptions` are exported and every field of each was described somewhere in prose, but
@@ -1022,6 +1066,8 @@ defect; those are called out below.
1022
1066
 
1023
1067
  ## 0.4.233
1024
1068
 
1069
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
1070
+
1025
1071
  - **Changed** the packaging checks to run on every push instead of only at publish time.
1026
1072
  `publint --strict` and `@arethetypeswrong/cli` are the two things `npm run check` cannot do —
1027
1073
  they read the manifest against the files npm would actually pack, and resolve each subpath the
@@ -1034,6 +1080,8 @@ defect; those are called out below.
1034
1080
 
1035
1081
  ## 0.4.232
1036
1082
 
1083
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
1084
+
1037
1085
  - **Fixed** the site's version sweep reading only `.astro` files. `website/src/pages/` also holds
1038
1086
  seven `.ts` routes, and they emit prose exactly the way a component does: `llms.txt` is the map
1039
1087
  an agent is handed, `[...slug].md.ts` is the markdown twin of every documentation page, and
@@ -1046,6 +1094,8 @@ defect; those are called out below.
1046
1094
 
1047
1095
  ## 0.4.231
1048
1096
 
1097
+ > **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
1098
+
1049
1099
  - **Fixed** four documentation sweeps reading a narrower set of pages than the site publishes.
1050
1100
  `docs-coverage.test.ts`, `diagnostic-docs.test.ts` and `readme-status.test.ts` — the last of
1051
1101
  them twice — each wrote its own reader, three globbing `content/docs/*.md` and one calling
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.4.306",
3
+ "version": "0.4.308",
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.306';
96
+ export const VERSION = '0.4.308';