Upgrade build toolchain: Hugo 0.156.0, Go 1.25, PaperMod Jan 2026#127
Merged
Upgrade build toolchain: Hugo 0.156.0, Go 1.25, PaperMod Jan 2026#127
Conversation
…ve deprecated server script
Full dependency refresh after 12 months dormancy:
- Hugo 0.143.1 → 0.156.0, Go 1.22 → 1.25, PaperMod Feb 2025 → Jan 2026
- Dockerfile: pin Alpine 3.23, fix archive naming (linux-amd64), fix tar.gz typo
- GitHub Actions: bump checkout@v6, upload-artifact@v6, download-artifact@v7
- Fix CSS syntax error in minimalistic-blog-items-list.css (stray = char)
- Fix font format declarations: format('woff') → format('woff2') for woff2 files
- Fix deprecated minify config: keepConditionalComments → keepSpecialComments
- Remove deprecated kind front matter from about page
- Inline gist content to replace deprecated gist shortcode
- Drop cover.html override in favor of upstream (adds lazy loading, figcaption)
- Align single.html override with upstream indentation (keep hooks)
- Remove dead code: Mailchimp partial, heapanalyticsid config
Created with Claude Code under the supervision of Serhii Vasylenko
Remove the Beehiiv email subscription form from blog posts:
- Remove 9 inline {{< email-subscription >}} shortcode usages from posts
- Remove post-content-end hook that injected the form after every post
- Delete shortcode, component partial, CSS, and hook files
- Drop single.html override (only existed for the now-empty hooks)
- Remove EmailSubscribeForm config param from dev/prod configs
- Remove EmailSubscribeForm front matter from about and cv pages
- Update CLAUDE.md shortcode reference table
Created with Claude Code under the supervision of Serhii Vasylenko
Use TARGETARCH in Dockerfile to download the correct Hugo binary per platform. Build for both linux/amd64 (CI) and linux/arm64 (macOS dev). CI workflow now uses docker/build-push-action with QEMU for cross-arch. Local builds are 2.6x faster (native ARM vs Rosetta emulation). Created with Claude Code under the supervision of Serhii Vasylenko
This was referenced Feb 19, 2026
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.
Summary
Full dependency refresh after ~12 months of dormancy. Eliminates all EOL software from the build chain.
Bug fixes included
minimalistic-blog-items-list.css(stray=character)format('woff')→format('woff2')for all 8 font-face declarationskeepConditionalComments→keepSpecialCommentskindfront matter from about pagegistshortcode with inline code blockTemplate changes
cover.htmloverride — upstream PaperMod now has lazy loading, global resources fallback, semantic<figcaption>single.htmloverride (upstream still lacks hook support), aligned indentation with upstreamDead code removed
heapanalyticsidfrom production configTest plan
docker compose buildsucceeds with Hugo 0.156.0 / Go 1.25Verification
Created with Claude Code under the supervision of Serhii Vasylenko