edfcore 0.4.431 → 0.4.432
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 +21 -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.432";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,27 @@ 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.432
|
|
10
|
+
|
|
11
|
+
- **Added** a check that every version is still signed, and of the four lines that make it so.
|
|
12
|
+
`scripts/release.mjs` ends a successful run by telling whoever cut it that the version "is on npm
|
|
13
|
+
with a provenance attestation". It prints that unconditionally, nothing verified the workflow
|
|
14
|
+
still signs anything, and nothing could notice if it stopped: npm accepts an unsigned publish
|
|
15
|
+
exactly as it accepts a signed one, and the only difference is a panel missing from a web page
|
|
16
|
+
nobody reloads.
|
|
17
|
+
- The attestation is not decoration here. AGENTS.md explains that the
|
|
18
|
+
`archive/pre-squash-2026-08-16` branch is load-bearing precisely because every version published
|
|
19
|
+
that day carries a signed attestation naming the commit it was built from — a whole branch is
|
|
20
|
+
kept alive so those Source Commit links keep resolving.
|
|
21
|
+
- Four things hold it together and each is a line a tidy-up removes without a thought:
|
|
22
|
+
`id-token: write`, where the signing key comes from and whose removal looks like tightening
|
|
23
|
+
permissions; `--provenance` on the publish step, which looks redundant next to `publishConfig`;
|
|
24
|
+
`--provenance` *not* in `publishConfig`, the opposite tidy-up, because there it would apply to a
|
|
25
|
+
publish from a laptop that has no OIDC token to sign with; and `registry-url` on `setup-node`,
|
|
26
|
+
without which the publish is unauthenticated and never gets far enough to sign anything.
|
|
27
|
+
- The reasons written beside them are checked too, since they are the only thing standing between
|
|
28
|
+
the next reader and the tidy-up.
|
|
29
|
+
|
|
9
30
|
## 0.4.431
|
|
10
31
|
|
|
11
32
|
- **Added** tests that a 16-bit channel labelled `Status` is not a BioSemi Status channel.
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED