@heroiclands/package-build 22.3.1 → 22.4.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,70 @@
1
1
  # @heroiclands/package-build
2
2
 
3
+ ## 22.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 37d874d: Adds `package-build changelog check`, which lints a pending changeset or a
8
+ `CHANGELOG.md` release section for the marks a pull-request description
9
+ leaves behind — a commit hash, an issue reference, a code fence, a
10
+ "Verified" paragraph, a byte or test count, an over-long or nested bullet,
11
+ a stray heading, or simply too many bullets or lines for one entry — and
12
+ refuses to let one merge. The shipped `pre-commit` hook runs it on a staged
13
+ changeset automatically.
14
+ - 0007964: **A module that embeds HârnMaster 3 items resolves them from a release that
15
+ stores their shortcodes under the system's own flags.** The actor pass reads
16
+ an item's `(type, shortcode)` address from `system.shortcode` where a system's
17
+ data model declares one, and otherwise from that system's own flag namespace —
18
+ never another system's, so a catalogue extracted for one system resolves
19
+ against its own handles only.
20
+
21
+ ## 22.4.0
22
+
23
+ ### Minor Changes
24
+
25
+ - 0dec39f: **A package site is its homepage and its pages.** The `type: homepage` note is
26
+ published at `/<package>/` itself — it is written as the mount's `_index.md`,
27
+ and `[[homepage-root|…]]` resolves there — and every other note is one page at
28
+ `/<package>/<type>-<shortcode>/`. Nothing is generated between them: no section
29
+ directory, no listing of a type, no tag page. An index of what a package
30
+ publishes is a `doc` note carrying a content table, authored and linked like
31
+ any other page.
32
+
33
+ **What a consumer changes**
34
+
35
+ - Delete `site.sections`, `site.landing`, `site.backfillSections` and
36
+ `site.list` from `package-build.config.yaml`; each is refused by name with a
37
+ message saying an index is a `doc` note.
38
+ - Delete the `landing:` block from the homepage note; it is refused. The
39
+ homepage is a page with a body, and its links are markdown links in that
40
+ body.
41
+ - Delete any root redirect the repository authors itself: `site-root` writes
42
+ `_headers` only — the `noindex` rules, with no `Cache-Control` on the root —
43
+ and removes a `_redirects` left beside the site.
44
+
45
+ **What stops answering**
46
+
47
+ - `/<package>/<section>/` for every declared section, `/<package>/tags/` and
48
+ every tag page, and `/<package>/homepage-root/`. The generated Hugo
49
+ configuration disables the `section`, `taxonomy`, `term` and `RSS` kinds on
50
+ every site.
51
+
52
+ **API**
53
+
54
+ - `HOMEPAGE_DESTINATION` names the homepage's file; `homepageDestination`,
55
+ `writeSectionLandings`, `sectionFrontmatter`, `pluralTitle`, `landingPath`,
56
+ `redirects`, `HOMEPAGE_ADDRESS_KEYS` and `hasAnyTag` are gone; `headers()`
57
+ takes no package.
58
+ `homepageAddresses` takes the body alone, `hugoConfig` and
59
+ `generateHugoConfig` take no `hasTags`, and `buildSite` reports none.
60
+
61
+ ### Patch Changes
62
+
63
+ - 6270453: **`content-build docs item-fields`.** The note written under the content tree
64
+ carries a blank line between the frontmatter and the H1, so the page passes a
65
+ consumer's `lint:format` and `lint:item-fields` guards as written, rather than
66
+ leaving the two in permanent disagreement over one file.
67
+
3
68
  ## 22.3.1
4
69
 
5
70
  ### Patch Changes