Update: hexo-generator-feed/index to v4, hexo-fs to v5 - #60
Merged
Conversation
All three are Hexo 8-era releases (hexo-generator-feed 4 depends on hexo-util 4, hexo-generator-index 4 on hexo-pagination 3), so they sit on top of the Hexo 8 bump rather than in the earlier dependency batch. Diffed a clean build against a clean pre-bump build. Every HTML page is identical once the random prism code-block ids are normalised. Only two outputs change, both from hexo-generator-feed 4's rewritten generator: * `atom.xml` — reordered elements, and it now emits a feed-level `<rights>` plus a per-entry `<author>`. Parsed both with ElementTree: same 21 entries, same ids, same titles, all still carrying `<content>`. Strictly richer, nothing dropped. * `search.xml` — same 21 entries in a different order. Compared per-URL content hashes: identical set, identical content, order only. It is a search corpus, so order carries no meaning. Post listing order and pagination are unchanged. 43/43 tests pass and a headless render of /, /blog, /about, /projects, /research and a post is clean. katex stays on ^0.16 — see #55 for why 0.18 can't move until NexT's vendored KaTeX CSS does. Co-Authored-By: Claude <noreply@anthropic.com>
Aetf
force-pushed
the
chore/hexo-generators-4
branch
from
August 6, 2026 18:58
c30a46a to
cfd281b
Compare
Owner
Author
|
CI hasn't reported here yet — GitHub Actions is in a major outage ( Verified locally in the meantime, from a wiped |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces #59, which GitHub auto-closed and refuses to reopen because it was stacked on
chore/hexo-8and I deleted that branch during post-merge cleanup. Same commit, now rebased directly ontodevelop— and unlike #59 this one actually gets CI, sinceci-workflow.ymlonly triggers on PRs intodevelop.These are Hexo 8-era releases (
hexo-generator-feed4 depends onhexo-util4,hexo-generator-index4 onhexo-pagination3), which is why they waited for #56 rather than riding along with #55.Verification
Diffed a clean build against a clean pre-bump build. Every HTML page is identical once the random prism code-block ids are normalised. Only two outputs change, both from
hexo-generator-feed4's rewritten generator:atom.xml— elements reordered, plus a feed-level<rights>and a per-entry<author>:Parsed both with ElementTree — same 21 entries, same ids, same titles, all still carrying
<content>. Strictly richer, nothing dropped.search.xml— same 21 entries in a different order. Compared per-URL content hashes: identical URL set, identical content per URL, order only. It's a search corpus, so order carries no meaning.Post listing order and pagination are unchanged (
/blog/,/blog/page/2,/blog/page/3all match). Re-verified after the rebase from a wipednode_modules: cleannpm ci, clean build, 43/43 tests, and a headless render of/,/blog,/about,/projects,/researchand a post with zero page errors.Remaining
With this merged,
katexis the only outdated dependency left in the tree, and it's deliberately pinned — see #55 for why 0.18 can't move until NexT's vendored KaTeX CSS does. Renovate's #53 is the PR for it and is currently failing for exactly that reason.🤖 Generated with Claude Code