edfcore 0.4.436 → 0.4.438
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 +37 -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.438";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,43 @@ 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.438
|
|
10
|
+
|
|
11
|
+
- **Added** tests for `--limit 0` and the blank line that belongs to the rows rather than to the
|
|
12
|
+
notice. A truncated listing has to say so, since a silently shortened one reads as a complete
|
|
13
|
+
one, so every capped command prints a notice naming what it withheld, separated from the rows
|
|
14
|
+
above it by a blank line.
|
|
15
|
+
- That blank line belongs to the rows. With `--limit 0` there are none, and emitting it anyway left
|
|
16
|
+
two blank lines and a notice hanging under the count, as though the rows had failed rather than
|
|
17
|
+
been asked for (fixed in 0.4.181). It is one ternary, and the only thing distinguishing it from a
|
|
18
|
+
stray newline nobody would defend is knowing what the blank line is for.
|
|
19
|
+
- `--limit 0` is not a contrived argument. It is what a script passes to ask "how many are there?"
|
|
20
|
+
without paying to print them, and what `--limit "$N"` becomes when `N` is empty. The count line
|
|
21
|
+
and the notice are then the whole of the useful output.
|
|
22
|
+
- The notice is also pinned to name what was withheld rather than what was shown, and to stay
|
|
23
|
+
absent when nothing was — across the events listing and the header's diagnostics, which cap the
|
|
24
|
+
same way through different formatters.
|
|
25
|
+
|
|
26
|
+
## 0.4.437
|
|
27
|
+
|
|
28
|
+
- **Added** a check that the throwaway probes stay runnable and cannot reach the suite, the
|
|
29
|
+
typecheck or a commit. `tests/scratch/` holds reproductions written while chasing a defect: they
|
|
30
|
+
assert whatever behaviour was current when they were written, which makes them useful for an
|
|
31
|
+
afternoon and poison afterwards, because a committed probe pins a defect as if it were a
|
|
32
|
+
decision.
|
|
33
|
+
- Four mechanisms keep that true, in four different files, and none was checked. `.gitignore` keeps
|
|
34
|
+
them out of a commit, which matters because `scripts/release.mjs` stages with `git add -A`. The
|
|
35
|
+
main vitest config excludes the directory so a leftover probe cannot join the run that gates a
|
|
36
|
+
tag. `tsconfig.json` excludes it for the same reason on the other half of `npm run check`, and
|
|
37
|
+
the vitest config's own comment says the two move together — only one of which is where anyone
|
|
38
|
+
would look. And the scratch config is what makes a probe runnable anyway, because vitest applies
|
|
39
|
+
`exclude` even to an explicit filename filter.
|
|
40
|
+
- The exemption is stated too: the scratch config deliberately does not load the offline trap, since
|
|
41
|
+
a probe reproducing a defect against a real server is a legitimate thing to write. That is an
|
|
42
|
+
absence, and an absence is what someone adds for consistency.
|
|
43
|
+
- The strongest check is the live one — nothing under `tests/scratch/` is tracked, asked of git
|
|
44
|
+
rather than of the ignore file, because that is the property and the rest is mechanism.
|
|
45
|
+
|
|
9
46
|
## 0.4.436
|
|
10
47
|
|
|
11
48
|
- **Added** tests that a real `AbortSignal` reaches `fetch` and a bare `{ aborted }` shim never
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED