We now spport sub paths in layouts passed to Page.Render.
This release also fixes a performance regression introduced in Hugo v0.128.0. This should mostly be prominent in bigger sites. See this discussion for some background.
Notes
tpl/resources: Deprecate resources.PostProcess in favour of templates.Defer 29ed932@bep#15086
Changes
all: Rewrite deprecated constructs in tests 5a5f4a5@bep
tpl/tplimpl: Support sub paths in layouts passed to .Render d83ce27@bep#15056
The majority of the fixes in this release are security related (including the upstream fix in 93c8c7d (golang.org/x/image)). Thanks to @vnth4nhnt for finding the issues fixed in a00b5c7 and cf9c8f9 (I will do the CVE work on this later). There has been a uptick in security reports lately, which doesn't mean that Hugo has gotten less secure, this is mostly the work of the new and powerful AI tools using Hugo's restrictive security model as their baseline. Just take a look at Go's recent security issue list to see a demonstration of this.
What's Changed
build(deps): bump golang.org/x/image from 0.41.0 to 0.42.0 93c8c7d@dependabot[bot]
The main topic in this release is improvements to the AVIF image handling that we introduced in v0.162.0. See the docs for details, but:
We have turned down the default quality for AVIF to 60. Turns out, JPEG/WebP with quality 75 is comparable to AVIF with quality 60. You can now also set quality per image format in your project config (and also per image processed if needed).
We have added a hint to the AVIF with the same values as for WEBP. For lossy compression, the photo/picture hints (and the default) encodes with YUV420 chroma subsampling instead of YUV444, keeping 444 for text/icon/drawing. This greatly reduces the memory needed to encode these images.
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [hugo-extended](https://github.com/gohugoio/hugo) | tools | minor | `0.162.1` → `0.164.0` |
---
### Release Notes
<details>
<summary>gohugoio/hugo (hugo-extended)</summary>
### [`v0.164.0`](https://github.com/gohugoio/hugo/releases/tag/v0.164.0)
[Compare Source](https://github.com/gohugoio/hugo/compare/v0.163.3...v0.164.0)
Notable new features in this release are:
- The Chroma highlighter styles now introduces [dark/light pairs](https://gohugo.io/quick-reference/syntax-highlighting-styles/#modes). See also the new flags on the [hugo gen chromastyles](/commands/hugo_gen_chromastyles/) command.
- New template funcs [encoding.HexEncode](https://gohugo.io/functions/encoding/hexencode/), [encoding.HexDecode](https://gohugo.io/functions/encoding/hexdecode/), and [crypto.Hash](https://gohugo.io/functions/crypto/hash/).
- New [markup.rst.syntaxHighlight](https://gohugo.io/configuration/markup/#syntaxhighlight) option.
- We added Pandoc citation support.
- We now spport sub paths in layouts passed to [Page.Render](https://gohugo.io/methods/page/render/#article).
- This release also fixes a performance regression introduced in Hugo v0.128.0. This should mostly be prominent in bigger sites. See [this discussion](https://discourse.gohugo.io/t/hugo-building-slowly-from-release-0-128-0/57314/20) for some background.
#### Notes
- tpl/resources: Deprecate resources.PostProcess in favour of templates.Defer [`29ed932`](https://github.com/gohugoio/hugo/commit/29ed9325) [@​bep](https://github.com/bep) [#​15086](https://github.com/gohugoio/hugo/issues/15086)
#### Changes
- all: Rewrite deprecated constructs in tests [`5a5f4a5`](https://github.com/gohugoio/hugo/commit/5a5f4a54) [@​bep](https://github.com/bep)
- tpl/tplimpl: Support sub paths in layouts passed to .Render [`d83ce27`](https://github.com/gohugoio/hugo/commit/d83ce27a) [@​bep](https://github.com/bep) [#​15056](https://github.com/gohugoio/hugo/issues/15056)
- Add markup.rst.syntaxHighlight option [`c6acc24`](https://github.com/gohugoio/hugo/commit/c6acc246) [@​bep](https://github.com/bep) [#​5349](https://github.com/gohugoio/hugo/issues/5349)
- tpl/resources: Deprecate resources.PostProcess in favour of templates.Defer [`29ed932`](https://github.com/gohugoio/hugo/commit/29ed9325) [@​bep](https://github.com/bep) [#​15086](https://github.com/gohugoio/hugo/issues/15086)
- tpl/collections: Include key in IsSet unsupported-type warning [`671897a`](https://github.com/gohugoio/hugo/commit/671897ae) [@​bejaratommy](https://github.com/bejaratommy) [#​11794](https://github.com/gohugoio/hugo/issues/11794)
- create: Keep new content placeholders buildable [`499794d`](https://github.com/gohugoio/hugo/commit/499794d1) [@​sjh9714](https://github.com/sjh9714) [#​15078](https://github.com/gohugoio/hugo/issues/15078)
- hugio: Speedup hasBytesWriter [`65c8217`](https://github.com/gohugoio/hugo/commit/65c82178) [@​bep](https://github.com/bep)
- tpl/crypto: Add crypto.Hash [`dfb35dc`](https://github.com/gohugoio/hugo/commit/dfb35dcd) [@​bep](https://github.com/bep) [#​15072](https://github.com/gohugoio/hugo/issues/15072)
- Add encoding.HexDecode/Encode [`a5ec542`](https://github.com/gohugoio/hugo/commit/a5ec5423) [@​bep](https://github.com/bep) [#​15068](https://github.com/gohugoio/hugo/issues/15068) [#​15060](https://github.com/gohugoio/hugo/issues/15060)
- tpl/tplimpl: Make template name lookup case-insensitive [`e46d37a`](https://github.com/gohugoio/hugo/commit/e46d37a9) [@​jmooring](https://github.com/jmooring) [#​15057](https://github.com/gohugoio/hugo/issues/15057)
- hugolib: Return error from .Render when template not found [`fe06735`](https://github.com/gohugoio/hugo/commit/fe067352) [@​jmooring](https://github.com/jmooring) [#​15052](https://github.com/gohugoio/hugo/issues/15052)
- markup/pandoc: Add citation support [`128fb17`](https://github.com/gohugoio/hugo/commit/128fb17c) [@​jmooring](https://github.com/jmooring) [#​15062](https://github.com/gohugoio/hugo/issues/15062)
#### Dependency Updates
- build(deps): bump github.com/JohannesKaufmann/html-to-markdown/v2 [`921db7b`](https://github.com/gohugoio/hugo/commit/921db7b5) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump golang.org/x/tools from 0.45.0 to 0.47.0 [`786ce71`](https://github.com/gohugoio/hugo/commit/786ce71e) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump golang.org/x/image from 0.42.0 to 0.43.0 [`5ad2846`](https://github.com/gohugoio/hugo/commit/5ad28461) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump golang.org/x/net from 0.55.0 to 0.56.0 [`36ad9f5`](https://github.com/gohugoio/hugo/commit/36ad9f58) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump github.com/pelletier/go-toml/v2 from 2.4.2 to 2.4.3 [`7c0a0bc`](https://github.com/gohugoio/hugo/commit/7c0a0bc9) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump github.com/getkin/kin-openapi from 0.139.0 to 0.140.0 [`a879ebf`](https://github.com/gohugoio/hugo/commit/a879ebfa) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump golang.org/x/mod from 0.36.0 to 0.37.0 [`332d5ec`](https://github.com/gohugoio/hugo/commit/332d5ec8) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump github.com/pelletier/go-toml/v2 from 2.3.1 to 2.4.2 [`212cc11`](https://github.com/gohugoio/hugo/commit/212cc11a) [@​dependabot](https://github.com/dependabot)\[bot]
- deps: Upgrade github.com/evanw/esbuild v0.28.0 => v0.28.1 [`884439b`](https://github.com/gohugoio/hugo/commit/884439b9) [@​bep](https://github.com/bep) [#​15033](https://github.com/gohugoio/hugo/issues/15033)
- deps: Add Chroma dark/light mode support [`790a8aa`](https://github.com/gohugoio/hugo/commit/790a8aa4) [@​bep](https://github.com/bep) [#​15017](https://github.com/gohugoio/hugo/issues/15017)
### [`v0.163.3`](https://github.com/gohugoio/hugo/releases/tag/v0.163.3)
[Compare Source](https://github.com/gohugoio/hugo/compare/v0.163.2...v0.163.3)
#### What's Changed
- markup/highlight: Escape lang in default code block rendering [`ce1a7e0`](https://github.com/gohugoio/hugo/commit/ce1a7e0b) [@​bep](https://github.com/bep) thanks to [@​k0ngj1](https://github.com/k0ngj1) for reporting this issue.
- parser/pageparser: Preserve non-ASCII whitespace after e.g. summary divider [`70a9068`](https://github.com/gohugoio/hugo/commit/70a9068a) [@​bep](https://github.com/bep)
- resources: Support babel/postcss config variants [`9d66d51`](https://github.com/gohugoio/hugo/commit/9d66d513) [@​jmooring](https://github.com/jmooring) [#​15039](https://github.com/gohugoio/hugo/issues/15039) [#​15040](https://github.com/gohugoio/hugo/issues/15040) [#​15043](https://github.com/gohugoio/hugo/issues/15043)
- hugolib: Fix page/section name collision regression [`f013346`](https://github.com/gohugoio/hugo/commit/f0133466) [@​jmooring](https://github.com/jmooring) [#​15046](https://github.com/gohugoio/hugo/issues/15046)
### [`v0.163.2`](https://github.com/gohugoio/hugo/releases/tag/v0.163.2)
[Compare Source](https://github.com/gohugoio/hugo/compare/v0.163.1...v0.163.2)
#### What's Changed
- Continue resolving on ERR\_ACCESS\_DENIED in Node's resolver [`134674f`](https://github.com/gohugoio/hugo/commit/134674f0) [@​bep](https://github.com/bep) [#​15041](https://github.com/gohugoio/hugo/issues/15041)
- markup: Standardize behavior when external converters are missing [`147f605`](https://github.com/gohugoio/hugo/commit/147f605f) [@​jmooring](https://github.com/jmooring) [#​14222](https://github.com/gohugoio/hugo/issues/14222)
### [`v0.163.1`](https://github.com/gohugoio/hugo/releases/tag/v0.163.1)
[Compare Source](https://github.com/gohugoio/hugo/compare/v0.163.0...v0.163.1)
The majority of the fixes in this release are security related (including the upstream fix in [`93c8c7d`](https://github.com/gohugoio/hugo/commit/93c8c7d3) (golang.org/x/image)). Thanks to [@​vnth4nhnt](https://github.com/vnth4nhnt) for finding the issues fixed in [`a00b5c7`](https://github.com/gohugoio/hugo/commit/a00b5c72) and [`cf9c8f9`](https://github.com/gohugoio/hugo/commit/cf9c8f93) (I will do the CVE work on this later). There has been a uptick in security reports lately, which doesn't mean that Hugo has gotten less secure, this is mostly the work of the new and powerful AI tools using Hugo's restrictive [security model](https://gohugo.io/about/security/) as their baseline. Just take a look at Go's recent [security issue list](https://github.com/golang/go/issues?q=is%3Aissue%20label%3ASecurity) to see a demonstration of this.
#### What's Changed
- build(deps): bump golang.org/x/image from 0.41.0 to 0.42.0 [`93c8c7d`](https://github.com/gohugoio/hugo/commit/93c8c7d3) [@​dependabot](https://github.com/dependabot)\[bot]
- Fix multi --renderSegments merge behavior [`95e5e9f`](https://github.com/gohugoio/hugo/commit/95e5e9f4) [@​bep](https://github.com/bep) [#​15024](https://github.com/gohugoio/hugo/issues/15024)
- security: Normalize integer IPv4 host encodings in http.urls check [`a00b5c7`](https://github.com/gohugoio/hugo/commit/a00b5c72) [@​bep](https://github.com/bep)
- Drop symlinks in os.ReadDir, os.ReadFile, os.Stat and os.FileExists [`cf9c8f9`](https://github.com/gohugoio/hugo/commit/cf9c8f93) [@​bep](https://github.com/bep) [#​15019](https://github.com/gohugoio/hugo/issues/15019)
- commands: Fix convert command [`2602796`](https://github.com/gohugoio/hugo/commit/2602796c) [@​jmooring](https://github.com/jmooring) [#​15012](https://github.com/gohugoio/hugo/issues/15012)
### [`v0.163.0`](https://github.com/gohugoio/hugo/releases/tag/v0.163.0)
[Compare Source](https://github.com/gohugoio/hugo/compare/v0.162.1...v0.163.0)
The main topic in this release is improvements to the AVIF image handling that we introduced in `v0.162.0`. See [the docs](https://gohugo.io/configuration/imaging/#avif) for details, but:
- We have turned down the default `quality` for AVIF to 60. Turns out, JPEG/WebP with quality 75 is comparable to AVIF with quality 60. You can now also set quality per image format in your project config (and also per image processed if needed).
- We have added a `hint` to the AVIF with the same values as for `WEBP`. For `lossy` compression, the photo/picture hints (and the default) encodes with YUV420 chroma subsampling instead of YUV444, keeping 444 for text/icon/drawing. This greatly reduces the memory needed to encode these images.
#### Improvements
- resources/jsconfig: Remove deprecated baseUrl setting [`ff2903a`](https://github.com/gohugoio/hugo/commit/ff2903a9) [@​bep](https://github.com/bep) [#​14991](https://github.com/gohugoio/hugo/issues/14991) [#​14996](https://github.com/gohugoio/hugo/issues/14996)
- all: Adjust tests for deprecated link and image render hook settings [`ca68936`](https://github.com/gohugoio/hugo/commit/ca68936d) [@​jmooring](https://github.com/jmooring)
- all: Run go fix ./... [`781fabf`](https://github.com/gohugoio/hugo/commit/781fabf4) [@​bep](https://github.com/bep)
- pagesfromdata: Use relative path for content adapter template metrics [`1d018ef`](https://github.com/gohugoio/hugo/commit/1d018ef8) [@​anupamojha-eng](https://github.com/anupamojha-eng) [#​14999](https://github.com/gohugoio/hugo/issues/14999)
- ci: Re-add macos-latest to the test matrix [`121bc6c`](https://github.com/gohugoio/hugo/commit/121bc6ce) [@​bep](https://github.com/bep)
- images: Deprecate Imaging.Compression and move it down to webp and avif configs [`cf18b82`](https://github.com/gohugoio/hugo/commit/cf18b827) [@​bep](https://github.com/bep) [#​14998](https://github.com/gohugoio/hugo/issues/14998)
- Only support the latest Go version [`98ad9b3`](https://github.com/gohugoio/hugo/commit/98ad9b3c) [@​bep](https://github.com/bep) [#​14997](https://github.com/gohugoio/hugo/issues/14997)
- page: Add IsBranch and deprecate IsNode [`b89e7fe`](https://github.com/gohugoio/hugo/commit/b89e7fe6) [@​bep](https://github.com/bep) [#​11574](https://github.com/gohugoio/hugo/issues/11574)
- images: Force cache invalidation for AVIF target [`e8fefc8`](https://github.com/gohugoio/hugo/commit/e8fefc83) [@​bep](https://github.com/bep) [#​14990](https://github.com/gohugoio/hugo/issues/14990)
- images: Add a per-format AVIF hint setting [`a043d3e`](https://github.com/gohugoio/hugo/commit/a043d3ec) [@​bep](https://github.com/bep) [#​14992](https://github.com/gohugoio/hugo/issues/14992)
- images: Make AVIF chroma subsampling content-aware via the hint [`341f575`](https://github.com/gohugoio/hugo/commit/341f575d) [@​bep](https://github.com/bep) [#​14987](https://github.com/gohugoio/hugo/issues/14987)
- Cap AVIF lossy quality at 99 [`248241b`](https://github.com/gohugoio/hugo/commit/248241b6) [@​bep](https://github.com/bep) [#​14981](https://github.com/gohugoio/hugo/issues/14981)
- config: Deprecate the glogal imaging quality setting [`4e47d95`](https://github.com/gohugoio/hugo/commit/4e47d95d) [@​bep](https://github.com/bep) [#​14979](https://github.com/gohugoio/hugo/issues/14979)
- images: Make 60 the default quality for AVIF [`03b4b54`](https://github.com/gohugoio/hugo/commit/03b4b542) [@​bep](https://github.com/bep) [#​14979](https://github.com/gohugoio/hugo/issues/14979)
- livereload: Disconnect from websocket server on pageswap [`79be053`](https://github.com/gohugoio/hugo/commit/79be0532) [@​bep](https://github.com/bep) [#​14983](https://github.com/gohugoio/hugo/issues/14983)
- tpl/tplimpl/embedded: Prevent leading newline in sitemap template [`0f44046`](https://github.com/gohugoio/hugo/commit/0f440460) [@​bep](https://github.com/bep) [#​14977](https://github.com/gohugoio/hugo/issues/14977)
- images: Recover from memory alloc errors in WASM image processors [`4e17421`](https://github.com/gohugoio/hugo/commit/4e17421e) [@​bep](https://github.com/bep) [#​14985](https://github.com/gohugoio/hugo/issues/14985)
- images: Add quality setting per image format [`b01ecd4`](https://github.com/gohugoio/hugo/commit/b01ecd4c) [@​bep](https://github.com/bep) [#​14957](https://github.com/gohugoio/hugo/issues/14957)
- misc: Remove duplicate words in comments [`45c00b7`](https://github.com/gohugoio/hugo/commit/45c00b7c) [@​jmooring](https://github.com/jmooring) [#​14936](https://github.com/gohugoio/hugo/issues/14936) [#​14950](https://github.com/gohugoio/hugo/issues/14950) [#​14965](https://github.com/gohugoio/hugo/issues/14965)
- Add some PNG to AVIF golden test cases [`28d882a`](https://github.com/gohugoio/hugo/commit/28d882ab) [@​bep](https://github.com/bep)
#### Dependency Updates
- build(deps): bump github.com/bits-and-blooms/bitset [`0d29fc8`](https://github.com/gohugoio/hugo/commit/0d29fc81) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump github.com/tetratelabs/wazero [`bb57404`](https://github.com/gohugoio/hugo/commit/bb57404f) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump github.com/rogpeppe/go-internal from 1.14.1 to 1.15.0 [`7d1b1fb`](https://github.com/gohugoio/hugo/commit/7d1b1fb3) [@​dependabot](https://github.com/dependabot)\[bot]
- build(deps): bump github.com/getkin/kin-openapi from 0.138.0 to 0.139.0 [`77a1147`](https://github.com/gohugoio/hugo/commit/77a11470) [@​dependabot](https://github.com/dependabot)\[bot]
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- At any time (no schedule defined)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMjAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjI4Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
renovate-bot
changed title from chore(deps): update dependency hugo-extended to v0.163.0 to chore(deps): update dependency hugo-extended to v0.163.12026-06-15 03:16:41 +02:00
renovate-bot
changed title from chore(deps): update dependency hugo-extended to v0.163.1 to chore(deps): update dependency hugo-extended to v0.163.22026-06-19 03:16:51 +02:00
renovate-bot
changed title from chore(deps): update dependency hugo-extended to v0.163.2 to chore(deps): update dependency hugo-extended to v0.163.32026-06-22 03:17:16 +02:00
renovate-bot
changed title from chore(deps): update dependency hugo-extended to v0.163.3 to chore(deps): update dependency hugo-extended to v0.164.02026-07-10 03:17:52 +02:00
mxmehl
approved these changes 2026-07-29 12:58:35 +02:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
This PR contains the following updates:
0.162.1→0.164.0Release Notes
gohugoio/hugo (hugo-extended)
v0.164.0Compare Source
Notable new features in this release are:
Notes
29ed932@bep #15086Changes
5a5f4a5@bepd83ce27@bep #15056c6acc24@bep #534929ed932@bep #15086671897a@bejaratommy #11794499794d@sjh9714 #1507865c8217@bepdfb35dc@bep #15072a5ec542@bep #15068 #15060e46d37a@jmooring #15057fe06735@jmooring #15052128fb17@jmooring #15062Dependency Updates
921db7b@dependabot[bot]786ce71@dependabot[bot]5ad2846@dependabot[bot]36ad9f5@dependabot[bot]7c0a0bc@dependabot[bot]a879ebf@dependabot[bot]332d5ec@dependabot[bot]212cc11@dependabot[bot]884439b@bep #15033790a8aa@bep #15017v0.163.3Compare Source
What's Changed
ce1a7e0@bep thanks to @k0ngj1 for reporting this issue.70a9068@bep9d66d51@jmooring #15039 #15040 #15043f013346@jmooring #15046v0.163.2Compare Source
What's Changed
134674f@bep #15041147f605@jmooring #14222v0.163.1Compare Source
The majority of the fixes in this release are security related (including the upstream fix in
93c8c7d(golang.org/x/image)). Thanks to @vnth4nhnt for finding the issues fixed ina00b5c7andcf9c8f9(I will do the CVE work on this later). There has been a uptick in security reports lately, which doesn't mean that Hugo has gotten less secure, this is mostly the work of the new and powerful AI tools using Hugo's restrictive security model as their baseline. Just take a look at Go's recent security issue list to see a demonstration of this.What's Changed
93c8c7d@dependabot[bot]95e5e9f@bep #15024a00b5c7@bepcf9c8f9@bep #150192602796@jmooring #15012v0.163.0Compare Source
The main topic in this release is improvements to the AVIF image handling that we introduced in
v0.162.0. See the docs for details, but:qualityfor AVIF to 60. Turns out, JPEG/WebP with quality 75 is comparable to AVIF with quality 60. You can now also set quality per image format in your project config (and also per image processed if needed).hintto the AVIF with the same values as forWEBP. Forlossycompression, the photo/picture hints (and the default) encodes with YUV420 chroma subsampling instead of YUV444, keeping 444 for text/icon/drawing. This greatly reduces the memory needed to encode these images.Improvements
ff2903a@bep #14991 #14996ca68936@jmooring781fabf@bep1d018ef@anupamojha-eng #14999121bc6c@bepcf18b82@bep #1499898ad9b3@bep #14997b89e7fe@bep #11574e8fefc8@bep #14990a043d3e@bep #14992341f575@bep #14987248241b@bep #149814e47d95@bep #1497903b4b54@bep #1497979be053@bep #149830f44046@bep #149774e17421@bep #14985b01ecd4@bep #1495745c00b7@jmooring #14936 #14950 #1496528d882a@bepDependency Updates
0d29fc8@dependabot[bot]bb57404@dependabot[bot]7d1b1fb@dependabot[bot]77a1147@dependabot[bot]Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate.
adf83c7d73to876816c757chore(deps): update dependency hugo-extended to v0.163.0to chore(deps): update dependency hugo-extended to v0.163.1876816c757tod6a9d7d4c9chore(deps): update dependency hugo-extended to v0.163.1to chore(deps): update dependency hugo-extended to v0.163.2d6a9d7d4c9to53906ba4bbchore(deps): update dependency hugo-extended to v0.163.2to chore(deps): update dependency hugo-extended to v0.163.353906ba4bbto199382c078199382c078to67671979d7chore(deps): update dependency hugo-extended to v0.163.3to chore(deps): update dependency hugo-extended to v0.164.067671979d7tof635c8276b