edfcore 0.4.239 → 0.4.243
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 +54 -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.243";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,60 @@ 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.243
|
|
10
|
+
|
|
11
|
+
- **Fixed** the layout-table check added in 0.4.241, which compared `tests/README.md` against the
|
|
12
|
+
filesystem and so required `tests/scratch/` to exist. That directory is gitignored — it holds
|
|
13
|
+
throwaway reproductions, and committing one would pin whatever behaviour was current when it was
|
|
14
|
+
written — so it is present on a machine that has chased a defect and absent from every fresh
|
|
15
|
+
clone, which is every CI runner. The check passed locally and failed on all three matrix jobs.
|
|
16
|
+
The table documents `scratch/` precisely *because* it can appear, so the rule is now: every
|
|
17
|
+
directory present has a row, and every row names a directory that is present or listed as
|
|
18
|
+
ignored in `.gitignore` — read from that file rather than named here.
|
|
19
|
+
|
|
20
|
+
**0.4.241 and 0.4.242 were never released**, for the same reason and in the same way as
|
|
21
|
+
0.4.231 through 0.4.236: tagged, and the publish run stopped at the failing check. Everything
|
|
22
|
+
they carried is in this release. Both incidents share one cause — a check that passes on the
|
|
23
|
+
machine cutting the tag and cannot pass on a runner — and this release was verified against it
|
|
24
|
+
directly, with `tests/scratch/` and `website/node_modules` both moved aside first.
|
|
25
|
+
|
|
26
|
+
## 0.4.242
|
|
27
|
+
|
|
28
|
+
- **Fixed** the link checker's own hand-written inventory, six releases after it was added to
|
|
29
|
+
catch exactly that. 0.4.236 listed the site's standalone routes — `/`, `/demo`, `/llms.txt` and
|
|
30
|
+
the rest — as a literal set, so deleting a route would have left the list vouching for it, and
|
|
31
|
+
the check meant to find dead links would have been the last thing claiming that one was alive.
|
|
32
|
+
Nothing about the site is written down there now: the pages come from the collection, the
|
|
33
|
+
standalone routes from the files under `pages/` and `public/`, and the redirects from
|
|
34
|
+
`astro.config.mjs`. A route is a path with the framework extension removed and nothing else, so
|
|
35
|
+
`llms.txt.ts` is `/llms.txt` — only the `.ts` comes off — and one assertion pins each shape the
|
|
36
|
+
derivation has to get right.
|
|
37
|
+
|
|
38
|
+
## 0.4.241
|
|
39
|
+
|
|
40
|
+
- **Added** checks on `tests/README.md`, which described this suite with nothing checking that it
|
|
41
|
+
still did. It is where the root README sends a contributor, and the fixture policy it states is
|
|
42
|
+
the only reason six binary files are committed to a repository that otherwise builds every
|
|
43
|
+
fixture in memory. Two of its claims were inventories — a table with one row per directory under
|
|
44
|
+
`tests/`, and a count of the files under `corpus/golden/` stated four times across the two
|
|
45
|
+
READMEs — and neither was derived, so a new directory would join the suite and not the table,
|
|
46
|
+
and the number justifying those committed binaries could drift the way the site's page count did
|
|
47
|
+
one release ago. Both are read from the tree now. The counts stay spelled out and are read
|
|
48
|
+
through a word list: `tests/README.md` is prose someone reads start to finish, unlike the
|
|
49
|
+
one-line parenthetical 0.4.238 turned into a numeral.
|
|
50
|
+
|
|
51
|
+
## 0.4.240
|
|
52
|
+
|
|
53
|
+
- **Extended** the link check added in 0.4.236 to the links that point back at this project by
|
|
54
|
+
absolute URL — nine of them, seven `github.com/.../blob/main/<path>` or `tree/main/<path>` and
|
|
55
|
+
two into `edfcore.vercel.app`. Those rot the same way a relative link does and are harder to
|
|
56
|
+
notice, because they look external and nobody thinks of them as the project's own. This
|
|
57
|
+
repository has already made the move that breaks them: the changelog was `CHANGELOG.md` until
|
|
58
|
+
v0.4.1 and `docs/CHANGELOG.md` after, which `scripts/release.mjs` still has to explain when it
|
|
59
|
+
tells you which spelling to use for which tag — and the README links to that file twice. A
|
|
60
|
+
`blob/main` path is now checked against the working tree, a `vercel.app` URL resolves as an
|
|
61
|
+
internal link, and the README's own `#roadmap` anchor is checked against its headings.
|
|
62
|
+
|
|
9
63
|
## 0.4.239
|
|
10
64
|
|
|
11
65
|
- **Added** the guard for what 0.4.237 fixed: no test may glob a TypeScript or `.astro` file out
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED