edfcore 0.4.306 → 0.4.307
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 +40 -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.307";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@ 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.307
|
|
10
|
+
|
|
11
|
+
- **Marked** the fourteen changelog entries for versions that were never released. Each of them —
|
|
12
|
+
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
|
|
13
|
+
release failed, so the entry reads exactly like one that shipped. The correction lived in a
|
|
14
|
+
different entry further up, which a reader at `## 0.4.288` never sees: they get a normal-looking
|
|
15
|
+
changelog entry for a version `npm install edfcore@0.4.288` cannot fetch.
|
|
16
|
+
- The older holes already did this right. 0.2.29, 0.2.36, 0.2.59 and 0.4.176 each open by saying
|
|
17
|
+
"Never released" and naming the version that carried the work, which is the convention
|
|
18
|
+
`scripts/release.mjs` points at when it tells you to record a consumed number. These fourteen
|
|
19
|
+
now do the same, and say which version carried them.
|
|
20
|
+
|
|
9
21
|
## 0.4.306
|
|
10
22
|
|
|
11
23
|
- **Built** the file `discontinuous.md` draws and read it. The page opens with a diagram — six
|
|
@@ -185,6 +197,8 @@ defect; those are called out below.
|
|
|
185
197
|
|
|
186
198
|
## 0.4.292
|
|
187
199
|
|
|
200
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
|
|
201
|
+
|
|
188
202
|
- **Fixed** the tarball check added in 0.4.287, which broke the publish it was written to protect.
|
|
189
203
|
It ran `npm pack --dry-run --json` without `--ignore-scripts`, so `npm pack` ran the pack
|
|
190
204
|
lifecycle — and this package's `prepublishOnly` is `npm run check && npm run build`. The pack
|
|
@@ -201,6 +215,8 @@ defect; those are called out below.
|
|
|
201
215
|
|
|
202
216
|
## 0.4.291
|
|
203
217
|
|
|
218
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
|
|
219
|
+
|
|
204
220
|
- **Extended** `verify:site` to the rendered head of every built page. `Base.astro` builds it once
|
|
205
221
|
for all of them, which is exactly why a page that misses it misses it silently — nothing renders
|
|
206
222
|
differently. Title, description, canonical and the two Open Graph tags are now required on all 27
|
|
@@ -214,6 +230,8 @@ defect; those are called out below.
|
|
|
214
230
|
|
|
215
231
|
## 0.4.290
|
|
216
232
|
|
|
233
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
|
|
234
|
+
|
|
217
235
|
- **Added** `npm run verify:site`, which checks what the site build produced rather than that it
|
|
218
236
|
produced something. `llms.txt`, `llms-full.txt`, the markdown twin of every page, `robots.txt`
|
|
219
237
|
and `api.json` are generated from the collection and nothing looked at the output — and each
|
|
@@ -227,6 +245,8 @@ defect; those are called out below.
|
|
|
227
245
|
|
|
228
246
|
## 0.4.289
|
|
229
247
|
|
|
248
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
|
|
249
|
+
|
|
230
250
|
- **Tested** `header/fields.ts` directly, the last source module no test imported. It is the sole
|
|
231
251
|
owner of where each of the ten fixed fields lives and which diagnostic a field that fails its
|
|
232
252
|
grammar deserves, and every function in it ran only as a step inside `parseHeader` — covered by
|
|
@@ -241,6 +261,8 @@ defect; those are called out below.
|
|
|
241
261
|
|
|
242
262
|
## 0.4.288
|
|
243
263
|
|
|
264
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
|
|
265
|
+
|
|
244
266
|
- **Tested** `options.ts` directly for the first time. It is 66 lines of Layer 1 whose whole job is
|
|
245
267
|
refusing bad input, and no test imported it — every path through it ran only as a side effect of
|
|
246
268
|
some larger read. Its own docblock records two misdiagnoses that reached users from a `NaN`
|
|
@@ -257,6 +279,8 @@ defect; those are called out below.
|
|
|
257
279
|
|
|
258
280
|
## 0.4.287
|
|
259
281
|
|
|
282
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.293`.
|
|
283
|
+
|
|
260
284
|
- **Added** a check on what `npm publish` would actually send. `publint` runs in CI and checks the
|
|
261
285
|
manifest is well formed; it says nothing about membership, and membership is where the claims
|
|
262
286
|
are — `tests/README.md` promises "nothing under `tests/` ever ships", and the fixture policy
|
|
@@ -902,6 +926,8 @@ defect; those are called out below.
|
|
|
902
926
|
|
|
903
927
|
## 0.4.242
|
|
904
928
|
|
|
929
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.243`.
|
|
930
|
+
|
|
905
931
|
- **Fixed** the link checker's own hand-written inventory, six releases after it was added to
|
|
906
932
|
catch exactly that. 0.4.236 listed the site's standalone routes — `/`, `/demo`, `/llms.txt` and
|
|
907
933
|
the rest — as a literal set, so deleting a route would have left the list vouching for it, and
|
|
@@ -914,6 +940,8 @@ defect; those are called out below.
|
|
|
914
940
|
|
|
915
941
|
## 0.4.241
|
|
916
942
|
|
|
943
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.243`.
|
|
944
|
+
|
|
917
945
|
- **Added** checks on `tests/README.md`, which described this suite with nothing checking that it
|
|
918
946
|
still did. It is where the root README sends a contributor, and the fixture policy it states is
|
|
919
947
|
the only reason six binary files are committed to a repository that otherwise builds every
|
|
@@ -982,6 +1010,8 @@ defect; those are called out below.
|
|
|
982
1010
|
|
|
983
1011
|
## 0.4.236
|
|
984
1012
|
|
|
1013
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
|
|
1014
|
+
|
|
985
1015
|
- **Added** a check that every internal link on the site points at something that exists. The
|
|
986
1016
|
documentation pages carry over a hundred `/docs/...` and `#anchor` links between them and
|
|
987
1017
|
nothing checked one: `astro check` validates types and content collections, not hrefs, and a
|
|
@@ -996,6 +1026,8 @@ defect; those are called out below.
|
|
|
996
1026
|
|
|
997
1027
|
## 0.4.235
|
|
998
1028
|
|
|
1029
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
|
|
1030
|
+
|
|
999
1031
|
- **Added** documentation for the three selection types, taking the recorded undocumented list
|
|
1000
1032
|
from eleven to eight. `StreamSelection`, `EnvelopeSelection` and `TriggerSelection` are what
|
|
1001
1033
|
`streamRecords`, `readEnvelope` and `readTriggers` take, and every page showed an object literal
|
|
@@ -1010,6 +1042,8 @@ defect; those are called out below.
|
|
|
1010
1042
|
|
|
1011
1043
|
## 0.4.234
|
|
1012
1044
|
|
|
1045
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
|
|
1046
|
+
|
|
1013
1047
|
- **Added** documentation for the three formatter options types, and took them off the recorded
|
|
1014
1048
|
list of undocumented ones. `FormatHeaderOptions`, `FormatAnnotationsOptions` and
|
|
1015
1049
|
`FormatReportOptions` are exported and every field of each was described somewhere in prose, but
|
|
@@ -1022,6 +1056,8 @@ defect; those are called out below.
|
|
|
1022
1056
|
|
|
1023
1057
|
## 0.4.233
|
|
1024
1058
|
|
|
1059
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
|
|
1060
|
+
|
|
1025
1061
|
- **Changed** the packaging checks to run on every push instead of only at publish time.
|
|
1026
1062
|
`publint --strict` and `@arethetypeswrong/cli` are the two things `npm run check` cannot do —
|
|
1027
1063
|
they read the manifest against the files npm would actually pack, and resolve each subpath the
|
|
@@ -1034,6 +1070,8 @@ defect; those are called out below.
|
|
|
1034
1070
|
|
|
1035
1071
|
## 0.4.232
|
|
1036
1072
|
|
|
1073
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
|
|
1074
|
+
|
|
1037
1075
|
- **Fixed** the site's version sweep reading only `.astro` files. `website/src/pages/` also holds
|
|
1038
1076
|
seven `.ts` routes, and they emit prose exactly the way a component does: `llms.txt` is the map
|
|
1039
1077
|
an agent is handed, `[...slug].md.ts` is the markdown twin of every documentation page, and
|
|
@@ -1046,6 +1084,8 @@ defect; those are called out below.
|
|
|
1046
1084
|
|
|
1047
1085
|
## 0.4.231
|
|
1048
1086
|
|
|
1087
|
+
> **Never released.** This version was tagged and its publish run failed, so it is not on npm. Everything below shipped in `0.4.237`.
|
|
1088
|
+
|
|
1049
1089
|
- **Fixed** four documentation sweeps reading a narrower set of pages than the site publishes.
|
|
1050
1090
|
`docs-coverage.test.ts`, `diagnostic-docs.test.ts` and `readme-status.test.ts` — the last of
|
|
1051
1091
|
them twice — each wrote its own reader, three globbing `content/docs/*.md` and one calling
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED