@takazudo/zudo-doc 5.5.0 → 5.5.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 +10 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to `@takazudo/zudo-doc` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on Keep a Changelog, and release notes are generated from the changelog MDX pages.
|
|
6
6
|
|
|
7
|
+
## [5.5.1] - 2026-08-15
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- Bumped the `@takazudo/zfb` family (`zfb`, `zfb-runtime`, `zfb-md-wasm`, `zfb-adapter-cloudflare`) from 2.5.0 to 2.5.1 across the root, `@takazudo/zudo-doc`, and the `create-zudo-doc` scaffold pin. This is a bugfix-only patch that settles the autolink-literal regressions introduced when 2.5.0 flipped `gfm.autolinkLiteral` on by default: a link is now unwrapped only when it genuinely is an autolink literal (the shape is matched on the visible text rather than the URL alone, case-folded), nested autolinks inside a link label or author-written MDX JSX are dropped rather than emitted as an `<a>` inside an `<a>`, and footnote bodies are spared. `[https://example.com](https://example.com)` therefore no longer produces invalid nested-anchor HTML — [Takazudo/zudo-front-builder#2388](https://github.com/Takazudo/zudo-front-builder/issues/2388), reported from this project during the 5.5.0 release, is fixed upstream. The same release also makes CJK-friendly emphasis, hard breaks, math constructs, and `markdown.gfm` itself apply consistently at the secondary parse sites (transcluded files, re-parsed directive bodies, and the HTML path), so those constructs no longer behave differently depending on where in a document they appear. (68aa94c5)
|
|
12
|
+
|
|
13
|
+
### Other Changes
|
|
14
|
+
|
|
15
|
+
- Raised the `@takazudo/zudo-doc-history-server` peer floor in `@takazudo/zudo-doc` from `^5.4.0` to `^5.5.0`, the routine post-publish catch-up now that 5.5.0 is live on npm. The floor trails the in-flight release by one version permanently and by design. (68aa94c5)
|
|
16
|
+
|
|
7
17
|
## [5.5.0] - 2026-08-14
|
|
8
18
|
|
|
9
19
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takazudo/zudo-doc",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "zudo-doc framework primitives layer that sits on top of zfb's engine — sidebar, theme, TOC, breadcrumb, layouts, head injection, View Transitions, SSR-skip wrappers (per ADR-003).",
|
|
6
6
|
"license": "MIT",
|
|
@@ -610,10 +610,10 @@
|
|
|
610
610
|
],
|
|
611
611
|
"peerDependencies": {
|
|
612
612
|
"@takazudo/zdtp": "^0.4.10",
|
|
613
|
-
"@takazudo/zfb": "^2.5.
|
|
614
|
-
"@takazudo/zfb-md-wasm": "^2.5.
|
|
615
|
-
"@takazudo/zfb-runtime": "^2.5.
|
|
616
|
-
"@takazudo/zudo-doc-history-server": "^5.
|
|
613
|
+
"@takazudo/zfb": "^2.5.1",
|
|
614
|
+
"@takazudo/zfb-md-wasm": "^2.5.1",
|
|
615
|
+
"@takazudo/zfb-runtime": "^2.5.1",
|
|
616
|
+
"@takazudo/zudo-doc-history-server": "^5.5.0",
|
|
617
617
|
"diff": "^8.0.0",
|
|
618
618
|
"katex": "^0.16.0",
|
|
619
619
|
"preact": "^10.29.1",
|
|
@@ -647,9 +647,9 @@
|
|
|
647
647
|
"tsx": "^4.21.0"
|
|
648
648
|
},
|
|
649
649
|
"devDependencies": {
|
|
650
|
-
"@takazudo/zfb": "2.5.
|
|
651
|
-
"@takazudo/zfb-md-wasm": "2.5.
|
|
652
|
-
"@takazudo/zfb-runtime": "2.5.
|
|
650
|
+
"@takazudo/zfb": "2.5.1",
|
|
651
|
+
"@takazudo/zfb-md-wasm": "2.5.1",
|
|
652
|
+
"@takazudo/zfb-runtime": "2.5.1",
|
|
653
653
|
"@types/fs-extra": "^11.0.4",
|
|
654
654
|
"@types/minimist": "^1.2.5",
|
|
655
655
|
"@types/node": "^25.3.5",
|
|
@@ -663,7 +663,7 @@
|
|
|
663
663
|
"typescript": "^5.0.0",
|
|
664
664
|
"vitest": "^4.1.0",
|
|
665
665
|
"zod": "^4.3.6",
|
|
666
|
-
"@takazudo/zudo-doc-history-server": "5.5.
|
|
666
|
+
"@takazudo/zudo-doc-history-server": "5.5.1"
|
|
667
667
|
},
|
|
668
668
|
"scripts": {
|
|
669
669
|
"build": "tsup && tsc -p tsconfig.build.json",
|