chore(deps): update dependency gohugoio/hugo to v0.124.1 #141

Merged
xoxys merged 1 commits from renovate/gohugoio-hugo-0.x into main 2024-03-20 21:18:11 +01:00
Member

This PR contains the following updates:

Package Update Change
gohugoio/hugo minor v0.122.0 -> v0.124.1

Release Notes

gohugoio/hugo (gohugoio/hugo)

v0.124.1

Compare Source

What's Changed

v0.124.0

Compare Source

The new feature in this release is a new segments configuration section and a new --renderSegments flag/config key. This release also updates to Go 1.22.1 that fixes a security issue in the template package that Hugo uses (CVE-2023-45289, see https://github.com/golang/go/issues/65697). We don't see how this could be exploited in Hugo, but we appreciate that Hugo users want to have a clean security report.

Bug fixes

Improvements

Dependency Updates

Documentation

Build Setup

v0.123.8

Compare Source

v0.123.7

Compare Source

What's Changed

v0.123.6

Compare Source

What's Changed

v0.123.5

Compare Source

What's Changed

v0.123.4

Compare Source

v0.123.3

Compare Source

Bug fixes

v0.123.2

Compare Source

What's Changed

v0.123.1

Compare Source

v0.123.0

Compare Source

The work title for the v0.123.0 release has been "the million pages release", introducing a new memory limit that allows for a streaming build, shifting large objects out of memory when not in use. This release is also a rewrite of the Hugo core, fixing lots of long-lived bugs and adding some other exciting improvements (see below). There are some breaking changes that have been announced for a long time. Most sites will not be affected by this, but we recommend that you test your site with the new Hugo version before you set it up to build to production. Many people have contributed to this release, but a special shoutout goes to @​bep and @​jmooring, but also to @​TiGR and @​McShelby for their help testing and reporting bugs.

A list of notable new features:

  • You can now set a upper memory limit (default 25% of system memory) via the OS environment variable HUGO_MEMORYLIMIT (in gigabytes) allowing for much larger data/page sets and/or running on lower specced PCs. This is backed by a partitioned LRU cache used throughout Hugo. A cache that gets dynamically resized in low memory situations, allowing Go's Garbage Collector to free the memory. Note that for regular sized Hugo sites, the performance should be about the same as before.
  • New dependency tracker for partial server rebuilds. This quickly calculates the delta given a changed resource (e.g. a content file, template, JS file etc.) and supports transitive relations.
  • A new document store. Previously, a little simplified, we split the document store (where we store pages and resources) in a tree per language. This worked pretty well, but the structure made some operations harder than they needed to be. We have now restructured it into one Radix tree for all languages. Internally the language is considered to be a dimension of that tree, and the tree can be viewed in all dimensions concurrently. This makes some operations re. language simpler (e.g. finding translations is just a slice range), but the idea is that it should also be relatively inexpensive to add more dimensions if needed (e.g. role). With this we also introduce a new logical page Path which we will used going forward to support other content data sources.
  • Add warnidf template function, see docs
  • Add the [params] concept to front matter, see docs
  • Add images.Dither filter, see docs

Bug fixes

Improvements

Dependency Updates

Documentation

Build Setup


Configuration

📅 Schedule: 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gohugoio/hugo](https://github.com/gohugoio/hugo) | minor | `v0.122.0` -> `v0.124.1` | --- ### Release Notes <details> <summary>gohugoio/hugo (gohugoio/hugo)</summary> ### [`v0.124.1`](https://github.com/gohugoio/hugo/releases/tag/v0.124.1) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.124.0...v0.124.1) #### What's Changed - Fix potential deadlock in Translations [`758a876`](https://github.com/gohugoio/hugo/commit/758a876f9) [@&#8203;bep](https://github.com/bep) [#&#8203;12129](https://github.com/gohugoio/hugo/issues/12129) - Fix rebuild when changing mixed case named templates [`19937a2`](https://github.com/gohugoio/hugo/commit/19937a20a) [@&#8203;bep](https://github.com/bep) [#&#8203;12165](https://github.com/gohugoio/hugo/issues/12165) - testing: Set usesFMA as true for riscv64 too [`c1ea22a`](https://github.com/gohugoio/hugo/commit/c1ea22a23) [@&#8203;anthonyfok](https://github.com/anthonyfok) - Fix regression for outputs defined in front matter for term pages [`0750a9e`](https://github.com/gohugoio/hugo/commit/0750a9ec9) [@&#8203;bep](https://github.com/bep) [#&#8203;12275](https://github.com/gohugoio/hugo/issues/12275) ### [`v0.124.0`](https://github.com/gohugoio/hugo/releases/tag/v0.124.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.8...v0.124.0) The new feature in this release is a new [segments](https://gohugo.io/getting-started/configuration/#configure-segments) configuration section and a new `--renderSegments` flag/config key. This release also updates to Go 1.22.1 that fixes a security issue in the template package that Hugo uses (CVE-2023-45289, see https://github.com/golang/go/issues/65697). We don't see how this could be exploited in Hugo, but we appreciate that Hugo users want to have a clean security report. #### Bug fixes - Fix .Parent when there are overlapping regular pages inbetween [`f1d7559`](https://github.com/gohugoio/hugo/commit/f1d755965) [@&#8203;bep](https://github.com/bep) [#&#8203;12263](https://github.com/gohugoio/hugo/issues/12263) - hugolib: Fix sitemap index with monolingual site [`3935faa`](https://github.com/gohugoio/hugo/commit/3935faa41) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12266](https://github.com/gohugoio/hugo/issues/12266) - all: Typo fixes [`78178d0`](https://github.com/gohugoio/hugo/commit/78178d0c2) [@&#8203;coliff](https://github.com/coliff) - Fix translationKey handling for term pages [`68d92ef`](https://github.com/gohugoio/hugo/commit/68d92ef9d) [@&#8203;bep](https://github.com/bep) [#&#8203;12261](https://github.com/gohugoio/hugo/issues/12261) - Fix intersect and similar for term entry page collections [`b40f3c7`](https://github.com/gohugoio/hugo/commit/b40f3c7df) [@&#8203;bep](https://github.com/bep) [#&#8203;12254](https://github.com/gohugoio/hugo/issues/12254) - Fix server rebuilds when adding sub sections especially on Windows [`07b2e53`](https://github.com/gohugoio/hugo/commit/07b2e535b) [@&#8203;bep](https://github.com/bep) [#&#8203;12230](https://github.com/gohugoio/hugo/issues/12230) - Fix panic when changing archetype files when servere is running [`9ca1de0`](https://github.com/gohugoio/hugo/commit/9ca1de09d) [@&#8203;bep](https://github.com/bep) [#&#8203;12195](https://github.com/gohugoio/hugo/issues/12195) - Fix front matter date location when value gets inherited from other dates [`9668759`](https://github.com/gohugoio/hugo/commit/9668759ad) [@&#8203;bep](https://github.com/bep) [#&#8203;12236](https://github.com/gohugoio/hugo/issues/12236) - Fix Name for nested resourced fetched in resources.ByName and similar [`9e9b1f1`](https://github.com/gohugoio/hugo/commit/9e9b1f110) [@&#8203;bep](https://github.com/bep) [#&#8203;12214](https://github.com/gohugoio/hugo/issues/12214) #### Improvements - Add segments config + --renderSegments flag [`1f1c62e`](https://github.com/gohugoio/hugo/commit/1f1c62e6c) [@&#8203;bep](https://github.com/bep) [#&#8203;10106](https://github.com/gohugoio/hugo/issues/10106) - hugolib: Remove Site.HomeAbsURL [`558f74f`](https://github.com/gohugoio/hugo/commit/558f74f00) [@&#8203;bep](https://github.com/bep) - hugolib: Deprecate site methods Author, Authors, and Social [`d4d49e0`](https://github.com/gohugoio/hugo/commit/d4d49e0f0) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12228](https://github.com/gohugoio/hugo/issues/12228) - Upgrade to Go 1.22.1 [`57206e7`](https://github.com/gohugoio/hugo/commit/57206e727) [@&#8203;bep](https://github.com/bep) [#&#8203;12250](https://github.com/gohugoio/hugo/issues/12250) - tpl/tplimpl: Modify figure shortcode to look for page resource [`48a0fea`](https://github.com/gohugoio/hugo/commit/48a0fea87) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12244](https://github.com/gohugoio/hugo/issues/12244) [#&#8203;12245](https://github.com/gohugoio/hugo/issues/12245) - common/hugo: Rename IsMultiHost and IsMultiLingual [`dc6a292`](https://github.com/gohugoio/hugo/commit/dc6a29213) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12232](https://github.com/gohugoio/hugo/issues/12232) - hugolib: Deprecate .Site.MultiLingual in favor of hugo.IsMultiLingual [`4f92f94`](https://github.com/gohugoio/hugo/commit/4f92f949e) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12224](https://github.com/gohugoio/hugo/issues/12224) - tpl/tplimpl: Remove deprecated method from sitemapindex.xml [`f038a51`](https://github.com/gohugoio/hugo/commit/f038a51b3) [@&#8203;jmooring](https://github.com/jmooring) #### Dependency Updates - deps: Upgrade github.com/gohugoio/hugo-goldmark-extensions/passthrough v0.1.0 => v0.2.0 [`ba03114`](https://github.com/gohugoio/hugo/commit/ba03114aa) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/evanw/esbuild from 0.20.1 to 0.20.2 [`b1f8676`](https://github.com/gohugoio/hugo/commit/b1f867634) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/tools from 0.18.0 to 0.19.0 [`b4bff61`](https://github.com/gohugoio/hugo/commit/b4bff6190) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/tdewolff/minify/v2 from 2.20.17 to 2.20.19 [`d2cebee`](https://github.com/gohugoio/hugo/commit/d2cebee27) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Upgrade github.com/alecthomas/chroma/v2 to v2.13.0 [`be914ff`](https://github.com/gohugoio/hugo/commit/be914ff34) [@&#8203;myitcv](https://github.com/myitcv) [#&#8203;11862](https://github.com/gohugoio/hugo/issues/11862) - build(deps): bump golang.org/x/mod from 0.15.0 to 0.16.0 [`e626750`](https://github.com/gohugoio/hugo/commit/e62675002) [@&#8203;dependabot](https://github.com/dependabot)\[bot] #### Documentation - docs: Regen CLI docs [`76ef3f4`](https://github.com/gohugoio/hugo/commit/76ef3f42f) [@&#8203;bep](https://github.com/bep) - docs: Regen docshelper [`0ccb6cd`](https://github.com/gohugoio/hugo/commit/0ccb6cdc0) [@&#8203;bep](https://github.com/bep) #### Build Setup - snap: Transition to from core20 to core22 [`d24ffdd`](https://github.com/gohugoio/hugo/commit/d24ffdde5) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12219](https://github.com/gohugoio/hugo/issues/12219) ### [`v0.123.8`](https://github.com/gohugoio/hugo/releases/tag/v0.123.8) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.7...v0.123.8) - docs: Fix hyphens and grammar in synopsis of command 'hugo server' [`ada3fce`](https://github.com/gohugoio/hugo/commit/ada3fceea) [@&#8203;deining](https://github.com/deining) - Fix resource name in resources.ByType [`a4b1747`](https://github.com/gohugoio/hugo/commit/a4b17470a) [@&#8203;bep](https://github.com/bep) [#&#8203;12190](https://github.com/gohugoio/hugo/issues/12190) - Fix global resource isn't published when using an uncommon code construct [`4d5e173`](https://github.com/gohugoio/hugo/commit/4d5e173cf) [@&#8203;bep](https://github.com/bep) [#&#8203;12190](https://github.com/gohugoio/hugo/issues/12190) - Fix section page resource not published if resource filename partially matches content file name [`4271b6b`](https://github.com/gohugoio/hugo/commit/4271b6be0) [@&#8203;bep](https://github.com/bep) [#&#8203;12198](https://github.com/gohugoio/hugo/issues/12198) - Fix taxonomy kind template lookup issue [`0567a3e`](https://github.com/gohugoio/hugo/commit/0567a3e6f) [@&#8203;bep](https://github.com/bep) [#&#8203;12193](https://github.com/gohugoio/hugo/issues/12193) - markup/goldmark: TOC: render strikethrough, emojis [`134e7d1`](https://github.com/gohugoio/hugo/commit/134e7d1d3) [@&#8203;lyind](https://github.com/lyind) [#&#8203;7169](https://github.com/gohugoio/hugo/issues/7169) [#&#8203;11783](https://github.com/gohugoio/hugo/issues/11783) [#&#8203;12022](https://github.com/gohugoio/hugo/issues/12022) - Add hugo.IsMultiHost [`1f48b71`](https://github.com/gohugoio/hugo/commit/1f48b717c) [@&#8203;razonyang](https://github.com/razonyang) - resources/images: Retain newlines with text overlays [`05e23bd`](https://github.com/gohugoio/hugo/commit/05e23bd55) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12206](https://github.com/gohugoio/hugo/issues/12206) - Don't auto-create empty sections for nested taxonomies [`7afac3f`](https://github.com/gohugoio/hugo/commit/7afac3f1a) [@&#8203;bep](https://github.com/bep) [#&#8203;12188](https://github.com/gohugoio/hugo/issues/12188) - tpl/tplimpl: Honor markdown attributes in embedded image render hook [`632ad74`](https://github.com/gohugoio/hugo/commit/632ad74fc) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12203](https://github.com/gohugoio/hugo/issues/12203) ### [`v0.123.7`](https://github.com/gohugoio/hugo/releases/tag/v0.123.7) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.6...v0.123.7) #### What's Changed - hugofs: Fix vertical mount merge issue [`2b2f2b7`](https://github.com/gohugoio/hugo/commit/2b2f2b75e) [@&#8203;bep](https://github.com/bep) [#&#8203;12175](https://github.com/gohugoio/hugo/issues/12175) - Fix and add integration test for the Bootstrap SCSS module for both Dart Sass and Libsass [`0d6e593`](https://github.com/gohugoio/hugo/commit/0d6e593ff) [@&#8203;bep](https://github.com/bep) [#&#8203;12178](https://github.com/gohugoio/hugo/issues/12178) - Fix resources.GetMatch, resources.Match, and resources.ByType to they don't normalize permalinks [`7023cf0`](https://github.com/gohugoio/hugo/commit/7023cf0f0) [@&#8203;bep](https://github.com/bep) [#&#8203;12182](https://github.com/gohugoio/hugo/issues/12182) - Make sure that sitemaps gets generated even if there is a content bundle with the same path [`9dfa9e7`](https://github.com/gohugoio/hugo/commit/9dfa9e70e) [@&#8203;bep](https://github.com/bep) [#&#8203;12183](https://github.com/gohugoio/hugo/issues/12183) - resources/page: Make Taxonomy.Get and Taxonomy.Count case-insensitive [`3f217fd`](https://github.com/gohugoio/hugo/commit/3f217fd66) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12177](https://github.com/gohugoio/hugo/issues/12177) ### [`v0.123.6`](https://github.com/gohugoio/hugo/releases/tag/v0.123.6) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.5...v0.123.6) #### What's Changed - Fix panic when cascading headless from site config to section that does not have an \_index.md file [`fce8d82`](https://github.com/gohugoio/hugo/commit/fce8d82b7) [@&#8203;bep](https://github.com/bep) [#&#8203;12172](https://github.com/gohugoio/hugo/issues/12172) - Fix assets vs data issue [`4a502f7`](https://github.com/gohugoio/hugo/commit/4a502f7eb) [@&#8203;bep](https://github.com/bep) [#&#8203;12133](https://github.com/gohugoio/hugo/issues/12133) - Fix draft for non-default content when content in default language does not exist [`be1dbba`](https://github.com/gohugoio/hugo/commit/be1dbba0f) [@&#8203;bep](https://github.com/bep) [#&#8203;12132](https://github.com/gohugoio/hugo/issues/12132) ### [`v0.123.5`](https://github.com/gohugoio/hugo/releases/tag/v0.123.5) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.4...v0.123.5) #### What's Changed - Fix .Page.Pages with similary named sections [`6a8b25e`](https://github.com/gohugoio/hugo/commit/6a8b25e29) [@&#8203;bep](https://github.com/bep) [#&#8203;12169](https://github.com/gohugoio/hugo/issues/12169) - Fix single mount rename panic [`a322282`](https://github.com/gohugoio/hugo/commit/a322282e7) [@&#8203;bep](https://github.com/bep) [#&#8203;12141](https://github.com/gohugoio/hugo/issues/12141) - Fix multihost processed image not copied to non-default content languages [`6bc0d74`](https://github.com/gohugoio/hugo/commit/6bc0d745a) [@&#8203;bep](https://github.com/bep) [#&#8203;12163](https://github.com/gohugoio/hugo/issues/12163) - build(deps): bump github.com/bep/overlayfs from 0.9.1 to 0.9.2 [`2186903`](https://github.com/gohugoio/hugo/commit/218690328) [@&#8203;dependabot](https://github.com/dependabot)\[bot] ### [`v0.123.4`](https://github.com/gohugoio/hugo/releases/tag/v0.123.4) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.3...v0.123.4) - Fix cascade-pattern-with-extension for cascade in site config [`1736ef7`](https://github.com/gohugoio/hugo/commit/1736ef745) [@&#8203;bep](https://github.com/bep) [#&#8203;12151](https://github.com/gohugoio/hugo/issues/12151) - Fix term template lookup when its backed by a content file [`f27e578`](https://github.com/gohugoio/hugo/commit/f27e57871) [@&#8203;bep](https://github.com/bep) [#&#8203;12146](https://github.com/gohugoio/hugo/issues/12146) - Fix panic for disableKinds page for content resources [`049dd1d`](https://github.com/gohugoio/hugo/commit/049dd1d7e) [@&#8203;bep](https://github.com/bep) [#&#8203;12144](https://github.com/gohugoio/hugo/issues/12144) - tocss: Fix the import resolving from absolute to relative assets paths [`189b723`](https://github.com/gohugoio/hugo/commit/189b72331) [@&#8203;bep](https://github.com/bep) [#&#8203;12137](https://github.com/gohugoio/hugo/issues/12137) - config/allconfig: Fix typo [`80e6934`](https://github.com/gohugoio/hugo/commit/80e69344d) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12134](https://github.com/gohugoio/hugo/issues/12134) - resource: Revert the normalization of Resource.Name [`d310595`](https://github.com/gohugoio/hugo/commit/d310595a2) [@&#8203;bep](https://github.com/bep) [#&#8203;12142](https://github.com/gohugoio/hugo/issues/12142) - build(deps): bump github.com/spf13/fsync from 0.10.0 to 0.10.1 [`d4be164`](https://github.com/gohugoio/hugo/commit/d4be1643a) [@&#8203;dependabot](https://github.com/dependabot)\[bot] ### [`v0.123.3`](https://github.com/gohugoio/hugo/releases/tag/v0.123.3) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.2...v0.123.3) #### Bug fixes - hugolib: Fix a .Page.GetPage from bundle case [`f521336`](https://github.com/gohugoio/hugo/commit/f521336c8) [@&#8203;bep](https://github.com/bep) [#&#8203;12120](https://github.com/gohugoio/hugo/issues/12120) - cache/dynacache: Reset ticker in case one cache eviction takes some time [`03b88c6`](https://github.com/gohugoio/hugo/commit/03b88c6dd) [@&#8203;bep](https://github.com/bep) [#&#8203;12129](https://github.com/gohugoio/hugo/issues/12129) - Speed up GetPage [`bf14d0c`](https://github.com/gohugoio/hugo/commit/bf14d0cb2) [@&#8203;bep](https://github.com/bep) - resources: Skip the image golden tests when running locally [`c4fe45f`](https://github.com/gohugoio/hugo/commit/c4fe45ff4) [@&#8203;bep](https://github.com/bep) [#&#8203;12119](https://github.com/gohugoio/hugo/issues/12119) - js: Support JSX and JSXImportSourceOptions [`554aa58`](https://github.com/gohugoio/hugo/commit/554aa58db) [@&#8203;baltpeter](https://github.com/baltpeter) [#&#8203;12118](https://github.com/gohugoio/hugo/issues/12118) - hugolib: Add capitalizeListTitles config option [`36bf3cb`](https://github.com/gohugoio/hugo/commit/36bf3cb98) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9793](https://github.com/gohugoio/hugo/issues/9793) [#&#8203;12115](https://github.com/gohugoio/hugo/issues/12115) ### [`v0.123.2`](https://github.com/gohugoio/hugo/releases/tag/v0.123.2) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.1...v0.123.2) #### What's Changed - Fix it so not all bundled resources are removed when one translation is drafted [`db3bb62`](https://github.com/gohugoio/hugo/commit/db3bb623d) [@&#8203;bep](https://github.com/bep) [#&#8203;12105](https://github.com/gohugoio/hugo/issues/12105) - commands/mod: Ignore invalid module path [`f5fd7ec`](https://github.com/gohugoio/hugo/commit/f5fd7ec8c) [@&#8203;razonyang](https://github.com/razonyang) - Fix regression on handling of overlapping file mounts [`16406d9`](https://github.com/gohugoio/hugo/commit/16406d9d7) [@&#8203;bep](https://github.com/bep) [#&#8203;12103](https://github.com/gohugoio/hugo/issues/12103) - Sitemap should not use list.xml [`e757849`](https://github.com/gohugoio/hugo/commit/e75784930) [@&#8203;bep](https://github.com/bep) [#&#8203;12101](https://github.com/gohugoio/hugo/issues/12101) - Fix rebuild when adding a bundle with space in name [`b8ab5c9`](https://github.com/gohugoio/hugo/commit/b8ab5c9be) [@&#8203;bep](https://github.com/bep) [#&#8203;12092](https://github.com/gohugoio/hugo/issues/12092) - Fix relative import issue in libsass/dart sass [`cf7023c`](https://github.com/gohugoio/hugo/commit/cf7023cb9) [@&#8203;bep](https://github.com/bep) [#&#8203;12094](https://github.com/gohugoio/hugo/issues/12094) - Fix relref regression with trailing slash [`fd0185a`](https://github.com/gohugoio/hugo/commit/fd0185a84) [@&#8203;bep](https://github.com/bep) [#&#8203;12096](https://github.com/gohugoio/hugo/issues/12096) ### [`v0.123.1`](https://github.com/gohugoio/hugo/releases/tag/v0.123.1) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.123.0...v0.123.1) - Fix server rebuilding of pages without default content language [`eceeb19`](https://github.com/gohugoio/hugo/commit/eceeb1975) [@&#8203;bep](https://github.com/bep) [#&#8203;12082](https://github.com/gohugoio/hugo/issues/12082) - Fix dart sass import regression [`621194a`](https://github.com/gohugoio/hugo/commit/621194a31) [@&#8203;bep](https://github.com/bep) [#&#8203;12072](https://github.com/gohugoio/hugo/issues/12072) - Fix robots.txt using the built-in template regression [`a118cb4`](https://github.com/gohugoio/hugo/commit/a118cb413) [@&#8203;bep](https://github.com/bep) [#&#8203;12071](https://github.com/gohugoio/hugo/issues/12071) - tpl/tplimpl: Resolve fragments in link render hook [`c9f7ebf`](https://github.com/gohugoio/hugo/commit/c9f7ebf00) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;12084](https://github.com/gohugoio/hugo/issues/12084) - Fall back to original name in Resources.GetMatch/Match [`48eec2a`](https://github.com/gohugoio/hugo/commit/48eec2a4e) [@&#8203;bep](https://github.com/bep) [#&#8203;12076](https://github.com/gohugoio/hugo/issues/12076) ### [`v0.123.0`](https://github.com/gohugoio/hugo/releases/tag/v0.123.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.122.0...v0.123.0) The work title for the `v0.123.0` release has been "the million pages release", introducing a new memory limit that allows for a streaming build, shifting large objects out of memory when not in use. This release is also a rewrite of the Hugo core, fixing lots of long-lived bugs and adding some other exciting improvements (see below). There are some [breaking changes](https://github.com/gohugoio/hugo/issues/11455) that have been announced for a long time. Most sites will not be affected by this, but we recommend that you test your site with the new Hugo version before you set it up to build to production. Many people have contributed to this release, but a special shoutout goes to [@&#8203;bep](https://github.com/bep) and [@&#8203;jmooring](https://github.com/jmooring), but also to [@&#8203;TiGR](https://github.com/TiGR) and [@&#8203;McShelby](https://github.com/McShelby) for their help testing and reporting bugs. A list of notable new features: - You can now set a upper memory limit (default 25% of system memory) via the OS environment variable `HUGO_MEMORYLIMIT` (in gigabytes) allowing for much larger data/page sets and/or running on lower specced PCs. This is backed by a partitioned LRU cache used throughout Hugo. A cache that gets dynamically resized in low memory situations, allowing [Go's Garbage Collector](https://tip.golang.org/doc/gc-guide) to free the memory. Note that for regular sized Hugo sites, the performance should be about the same as before. - New dependency tracker for partial server rebuilds. This quickly calculates the delta given a changed resource (e.g. a content file, template, JS file etc.) and supports transitive relations. - A new document store. Previously, a little simplified, we split the document store (where we store pages and resources) in a tree per language. This worked pretty well, but the structure made some operations harder than they needed to be. We have now restructured it into one Radix tree for all languages. Internally the language is considered to be a dimension of that tree, and the tree can be viewed in all dimensions concurrently. This makes some operations re. language simpler (e.g. finding translations is just a slice range), but the idea is that it should also be relatively inexpensive to add more dimensions if needed (e.g. [role](https://github.com/gohugoio/hugo/issues/5139)). With this we also introduce a new [logical page Path](https://gohugo.io/methods/page/path/) which we will used going forward to support other content data sources. - Add warnidf template function, see [docs](https://gohugo.io/functions/fmt/warnidf/) - Add the `[params]` concept to front matter, see [docs](https://gohugo.io/content-management/front-matter/#params) - Add images.Dither filter, see [docs](https://gohugo.io/functions/images/dither/) #### Bug fixes - Fix handling of build options for term pages [`5ada27b`](https://github.com/gohugoio/hugo/commit/5ada27bf6) [@&#8203;bep](https://github.com/bep) [#&#8203;12058](https://github.com/gohugoio/hugo/issues/12058) - Fix sample logic when adding content files in server [`afe5b6d`](https://github.com/gohugoio/hugo/commit/afe5b6d7d) [@&#8203;bep](https://github.com/bep) [#&#8203;12054](https://github.com/gohugoio/hugo/issues/12054) - all: Fix typos and some URLs [`168d375`](https://github.com/gohugoio/hugo/commit/168d37578) [@&#8203;coliff](https://github.com/coliff) - Fix handling of draft term pages [`fc6aabe`](https://github.com/gohugoio/hugo/commit/fc6aabe93) [@&#8203;bep](https://github.com/bep) [#&#8203;12055](https://github.com/gohugoio/hugo/issues/12055) - commands: Fix --clock with the list command [`4835f9e`](https://github.com/gohugoio/hugo/commit/4835f9e89) [@&#8203;bep](https://github.com/bep) [#&#8203;11888](https://github.com/gohugoio/hugo/issues/11888) - Fix server panic on i18n file change [`9679443`](https://github.com/gohugoio/hugo/commit/9679443c1) [@&#8203;bep](https://github.com/bep) [#&#8203;12048](https://github.com/gohugoio/hugo/issues/12048) - Fix rebuild regression on non-default content language edits [`68f67c9`](https://github.com/gohugoio/hugo/commit/68f67c9ae) [@&#8203;bep](https://github.com/bep) [#&#8203;12043](https://github.com/gohugoio/hugo/issues/12043) - Fix i18n rebuild regression [`f1491c9`](https://github.com/gohugoio/hugo/commit/f1491c900) [@&#8203;bep](https://github.com/bep) [#&#8203;12039](https://github.com/gohugoio/hugo/issues/12039) - Fix rebuild with resources.Concat [`639073e`](https://github.com/gohugoio/hugo/commit/639073e4f) [@&#8203;bep](https://github.com/bep) [#&#8203;12017](https://github.com/gohugoio/hugo/issues/12017) - all: Fix typos [`0672b5c`](https://github.com/gohugoio/hugo/commit/0672b5c76) [@&#8203;coliff](https://github.com/coliff) - resources/page: Fix typo [`e309f82`](https://github.com/gohugoio/hugo/commit/e309f82ef) [@&#8203;rosano](https://github.com/rosano) - Fix taxonomy term with backing file regression [`caba6ba`](https://github.com/gohugoio/hugo/commit/caba6ba6e) [@&#8203;bep](https://github.com/bep) [#&#8203;12020](https://github.com/gohugoio/hugo/issues/12020) - Fix rebuild of changed bundled content files [`a65622a`](https://github.com/gohugoio/hugo/commit/a65622a13) [@&#8203;bep](https://github.com/bep) [#&#8203;12000](https://github.com/gohugoio/hugo/issues/12000) - Fix site.Taxonomies for taxonomies with space in name [`146aedd`](https://github.com/gohugoio/hugo/commit/146aedd7a) [@&#8203;bep](https://github.com/bep) [#&#8203;12001](https://github.com/gohugoio/hugo/issues/12001) - Misc resource fixes/improvements [`2873324`](https://github.com/gohugoio/hugo/commit/287332489) [@&#8203;bep](https://github.com/bep) [#&#8203;11974](https://github.com/gohugoio/hugo/issues/11974) - Fix disabled languages regression [`4174a78`](https://github.com/gohugoio/hugo/commit/4174a7866) [@&#8203;bep](https://github.com/bep) [#&#8203;11959](https://github.com/gohugoio/hugo/issues/11959) - tpl/data: Fix GetCSV deprecation message [`5dd06b4`](https://github.com/gohugoio/hugo/commit/5dd06b413) [@&#8203;jmooring](https://github.com/jmooring) - Fix failing test on Windows [`d8f0e30`](https://github.com/gohugoio/hugo/commit/d8f0e3071) [@&#8203;bep](https://github.com/bep) - deploy: Fix CloudFront invalidation with AWS SDK2 [`d8c2734`](https://github.com/gohugoio/hugo/commit/d8c273417) [@&#8203;bep](https://github.com/bep) - Fix build error [`34d63c8`](https://github.com/gohugoio/hugo/commit/34d63c8d1) [@&#8203;bep](https://github.com/bep) - Fix recent regression .Resources.Get for resources with spaces in filename [`80595bb`](https://github.com/gohugoio/hugo/commit/80595bbe3) [@&#8203;bep](https://github.com/bep) [#&#8203;11944](https://github.com/gohugoio/hugo/issues/11944) - hugofs/glob: Fix dropped test error [`ec22bb3`](https://github.com/gohugoio/hugo/commit/ec22bb31a) [@&#8203;alrs](https://github.com/alrs) #### Improvements - Handle rebuilds when resources passed to transform.Unmarshal etc. changes [`5dbc29d`](https://github.com/gohugoio/hugo/commit/5dbc29dc6) [@&#8203;bep](https://github.com/bep) [#&#8203;12065](https://github.com/gohugoio/hugo/issues/12065) - Don't use the same value in .Data.Term.Title as in .Title [`5bdda0b`](https://github.com/gohugoio/hugo/commit/5bdda0bdb) [@&#8203;bep](https://github.com/bep) [#&#8203;12041](https://github.com/gohugoio/hugo/issues/12041) - Let standard library handle charset parameter to MIME types [`43ea2cd`](https://github.com/gohugoio/hugo/commit/43ea2cd66) [@&#8203;datosh](https://github.com/datosh) [#&#8203;10734](https://github.com/gohugoio/hugo/issues/10734) - Add images.Dither filter [`21d9057`](https://github.com/gohugoio/hugo/commit/21d9057db) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;8598](https://github.com/gohugoio/hugo/issues/8598) - markup/goldmark: Improve TOC tests [`f4575e5`](https://github.com/gohugoio/hugo/commit/f4575e5f2) [@&#8203;jmooring](https://github.com/jmooring) - Move the duplicate page/resource filter [`0851c17`](https://github.com/gohugoio/hugo/commit/0851c175a) [@&#8203;bep](https://github.com/bep) [#&#8203;12013](https://github.com/gohugoio/hugo/issues/12013) - Upgrade to Go 1.22 [`9571246`](https://github.com/gohugoio/hugo/commit/9571246bc) [@&#8203;bep](https://github.com/bep) [#&#8203;12010](https://github.com/gohugoio/hugo/issues/12010) - Avoid impporting deploy from config when nodeploy tag is set [`0257eb5`](https://github.com/gohugoio/hugo/commit/0257eb50a) [@&#8203;bep](https://github.com/bep) [#&#8203;12009](https://github.com/gohugoio/hugo/issues/12009) - commands: Remove unused memstats flag [`bd0200d`](https://github.com/gohugoio/hugo/commit/bd0200da6) [@&#8203;bep](https://github.com/bep) - source: Remove unused Filesystem struct [`a80c302`](https://github.com/gohugoio/hugo/commit/a80c3021b) [@&#8203;bep](https://github.com/bep) - Filter dot files etc. in i18n [`9df7b29`](https://github.com/gohugoio/hugo/commit/9df7b295b) [@&#8203;bep](https://github.com/bep) [#&#8203;11993](https://github.com/gohugoio/hugo/issues/11993) - commands: Revert the recent changes that allowed profiling on server rebuilds [`c37bf19`](https://github.com/gohugoio/hugo/commit/c37bf19c8) [@&#8203;bep](https://github.com/bep) - Handle resource changes when the resources is already evicted from cache [`609d798`](https://github.com/gohugoio/hugo/commit/609d798e3) [@&#8203;bep](https://github.com/bep) [#&#8203;11988](https://github.com/gohugoio/hugo/issues/11988) [#&#8203;11973](https://github.com/gohugoio/hugo/issues/11973) [#&#8203;11988](https://github.com/gohugoio/hugo/issues/11988) - all: Rename Unmormalized => Unnormalized [`53f2043`](https://github.com/gohugoio/hugo/commit/53f204310) [@&#8203;bep](https://github.com/bep) - hugolib: Formally deprecate .Page.NextPage .Page.PrevPage [`7f82461`](https://github.com/gohugoio/hugo/commit/7f8246140) [@&#8203;jmooring](https://github.com/jmooring) - hugio: Rename strigReadSeeker => stringReadSeeker [`b72f909`](https://github.com/gohugoio/hugo/commit/b72f90972) [@&#8203;bep](https://github.com/bep) - resources/page: Formally deprecate .Site.LastChange [`3a665dd`](https://github.com/gohugoio/hugo/commit/3a665ddbf) [@&#8203;jmooring](https://github.com/jmooring) - Preserve file/dir name case when loading data [`46575ba`](https://github.com/gohugoio/hugo/commit/46575baa0) [@&#8203;bep](https://github.com/bep) [#&#8203;11979](https://github.com/gohugoio/hugo/issues/11979) - Detect now invalid path patterns in cascade [`058f230`](https://github.com/gohugoio/hugo/commit/058f230a1) [@&#8203;bep](https://github.com/bep) [#&#8203;11977](https://github.com/gohugoio/hugo/issues/11977) - Handle build vs \_build in front matter [`a66480f`](https://github.com/gohugoio/hugo/commit/a66480f70) [@&#8203;bep](https://github.com/bep) [#&#8203;11970](https://github.com/gohugoio/hugo/issues/11970) - resources: Optimize reading resource Content when it's already a string [`e33a632`](https://github.com/gohugoio/hugo/commit/e33a63255) [@&#8203;bep](https://github.com/bep) - tpl/tplimpl: Update embedded instagram, twitter, and vimeo shortcodes [`d0788b9`](https://github.com/gohugoio/hugo/commit/d0788b96a) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;11971](https://github.com/gohugoio/hugo/issues/11971) - Add some more context to error [`034fbef`](https://github.com/gohugoio/hugo/commit/034fbef50) [@&#8203;bep](https://github.com/bep) [#&#8203;11970](https://github.com/gohugoio/hugo/issues/11970) - Improve nilpointer error message [`8d42a79`](https://github.com/gohugoio/hugo/commit/8d42a7942) [@&#8203;bep](https://github.com/bep) - hugolib: Adjust a test case [`f5ec75d`](https://github.com/gohugoio/hugo/commit/f5ec75db3) [@&#8203;bep](https://github.com/bep) - hugolib: Revert deprecation of .Page.Lang [`6cb3bda`](https://github.com/gohugoio/hugo/commit/6cb3bda3d) [@&#8203;jmooring](https://github.com/jmooring) - all: Deprecate .Page.Lang and .Page.File.Lang [`963cecc`](https://github.com/gohugoio/hugo/commit/963cecc12) [@&#8203;jmooring](https://github.com/jmooring) - config/security: Add SYSTEMDRIVE to OsEnv allowlist [`b6def61`](https://github.com/gohugoio/hugo/commit/b6def6172) [@&#8203;jmooring](https://github.com/jmooring) - hugolib: Add some more details to the "paginator not supported" error [`1891d5e`](https://github.com/gohugoio/hugo/commit/1891d5e6b) [@&#8203;bep](https://github.com/bep) [#&#8203;11949](https://github.com/gohugoio/hugo/issues/11949) - Run go mod tidy [`156f08d`](https://github.com/gohugoio/hugo/commit/156f08de3) [@&#8203;bep](https://github.com/bep) - Upgrade to deploy to use AWS SDK V2 [`a1c6498`](https://github.com/gohugoio/hugo/commit/a1c64989d) [@&#8203;frankywahl](https://github.com/frankywahl) - Improve error message when attempting to paginate from a single page template [`6c3b6ba`](https://github.com/gohugoio/hugo/commit/6c3b6ba3e) [@&#8203;bep](https://github.com/bep) [#&#8203;11953](https://github.com/gohugoio/hugo/issues/11953) - Filter out duplicate content resource files [`bd66d30`](https://github.com/gohugoio/hugo/commit/bd66d3029) [@&#8203;bep](https://github.com/bep) [#&#8203;11946](https://github.com/gohugoio/hugo/issues/11946) - output: Prevent setting Name directly in new output formats [`309d61b`](https://github.com/gohugoio/hugo/commit/309d61b22) [@&#8203;bep](https://github.com/bep) [#&#8203;11947](https://github.com/gohugoio/hugo/issues/11947) - Create default link and image render hooks [`5b7cb25`](https://github.com/gohugoio/hugo/commit/5b7cb258e) [@&#8203;bep](https://github.com/bep) [#&#8203;11933](https://github.com/gohugoio/hugo/issues/11933) - Emit a warning that can be turned off when overwriting built-in .Params values [`afee781`](https://github.com/gohugoio/hugo/commit/afee781f0) [@&#8203;bep](https://github.com/bep) [#&#8203;11941](https://github.com/gohugoio/hugo/issues/11941) - Add warnidf template function [`4e84f57`](https://github.com/gohugoio/hugo/commit/4e84f57ef) [@&#8203;bep](https://github.com/bep) [#&#8203;9189](https://github.com/gohugoio/hugo/issues/9189) - Add path, kind and lang to content front matter [`f31a6db`](https://github.com/gohugoio/hugo/commit/f31a6db79) [@&#8203;bep](https://github.com/bep) [#&#8203;11544](https://github.com/gohugoio/hugo/issues/11544) - all: Run gofumpt -l -w . [`a795acb`](https://github.com/gohugoio/hugo/commit/a795acbcd) [@&#8203;bep](https://github.com/bep) - testing: Simplify some integration tests [`982d951`](https://github.com/gohugoio/hugo/commit/982d9513e) [@&#8203;bep](https://github.com/bep) - Add the \[params] concept to front matter [`6dedb4e`](https://github.com/gohugoio/hugo/commit/6dedb4efc) [@&#8203;bep](https://github.com/bep) [#&#8203;11055](https://github.com/gohugoio/hugo/issues/11055) - tpl/data: Deprecate data.GetJSON and data.GetCSV [`292626e`](https://github.com/gohugoio/hugo/commit/292626e67) [@&#8203;bep](https://github.com/bep) - modules: Print required Hugo version for incompatible modules [`60d954c`](https://github.com/gohugoio/hugo/commit/60d954c78) [@&#8203;razonyang](https://github.com/razonyang) - hugolib: Remove unused test image [`63e0a92`](https://github.com/gohugoio/hugo/commit/63e0a9289) [@&#8203;bep](https://github.com/bep) - navigation: Improve menu cache [`ce7daa6`](https://github.com/gohugoio/hugo/commit/ce7daa615) [@&#8203;Kandulanaveennaidu](https://github.com/Kandulanaveennaidu) - testing: Rename integration_test.go to PACKAGE_integration_test.go [`2a03294`](https://github.com/gohugoio/hugo/commit/2a0329423) [@&#8203;bep](https://github.com/bep) - Port some integration tests to new test setup [`50dc327`](https://github.com/gohugoio/hugo/commit/50dc327d1) [@&#8203;bep](https://github.com/bep) - all: Rework page store, add a dynacache, improve partial rebuilds, and some general spring cleaning [`7285e74`](https://github.com/gohugoio/hugo/commit/7285e7409) [@&#8203;bep](https://github.com/bep) [#&#8203;11455](https://github.com/gohugoio/hugo/issues/11455) [#&#8203;11455](https://github.com/gohugoio/hugo/issues/11455) [#&#8203;11549](https://github.com/gohugoio/hugo/issues/11549) [#&#8203;10169](https://github.com/gohugoio/hugo/issues/10169) [#&#8203;10364](https://github.com/gohugoio/hugo/issues/10364) [#&#8203;10482](https://github.com/gohugoio/hugo/issues/10482) [#&#8203;10630](https://github.com/gohugoio/hugo/issues/10630) [#&#8203;10656](https://github.com/gohugoio/hugo/issues/10656) [#&#8203;10694](https://github.com/gohugoio/hugo/issues/10694) [#&#8203;10918](https://github.com/gohugoio/hugo/issues/10918) [#&#8203;11262](https://github.com/gohugoio/hugo/issues/11262) [#&#8203;11439](https://github.com/gohugoio/hugo/issues/11439) [#&#8203;11453](https://github.com/gohugoio/hugo/issues/11453) [#&#8203;11457](https://github.com/gohugoio/hugo/issues/11457) [#&#8203;11466](https://github.com/gohugoio/hugo/issues/11466) [#&#8203;11540](https://github.com/gohugoio/hugo/issues/11540) [#&#8203;11551](https://github.com/gohugoio/hugo/issues/11551) [#&#8203;11556](https://github.com/gohugoio/hugo/issues/11556) [#&#8203;11654](https://github.com/gohugoio/hugo/issues/11654) [#&#8203;11661](https://github.com/gohugoio/hugo/issues/11661) [#&#8203;11663](https://github.com/gohugoio/hugo/issues/11663) [#&#8203;11664](https://github.com/gohugoio/hugo/issues/11664) [#&#8203;11669](https://github.com/gohugoio/hugo/issues/11669) [#&#8203;11671](https://github.com/gohugoio/hugo/issues/11671) [#&#8203;11807](https://github.com/gohugoio/hugo/issues/11807) [#&#8203;11808](https://github.com/gohugoio/hugo/issues/11808) [#&#8203;11809](https://github.com/gohugoio/hugo/issues/11809) [#&#8203;11815](https://github.com/gohugoio/hugo/issues/11815) [#&#8203;11840](https://github.com/gohugoio/hugo/issues/11840) [#&#8203;11853](https://github.com/gohugoio/hugo/issues/11853) [#&#8203;11860](https://github.com/gohugoio/hugo/issues/11860) [#&#8203;11883](https://github.com/gohugoio/hugo/issues/11883) [#&#8203;11904](https://github.com/gohugoio/hugo/issues/11904) [#&#8203;7388](https://github.com/gohugoio/hugo/issues/7388) [#&#8203;7425](https://github.com/gohugoio/hugo/issues/7425) [#&#8203;7436](https://github.com/gohugoio/hugo/issues/7436) [#&#8203;7544](https://github.com/gohugoio/hugo/issues/7544) [#&#8203;7882](https://github.com/gohugoio/hugo/issues/7882) [#&#8203;7960](https://github.com/gohugoio/hugo/issues/7960) [#&#8203;8255](https://github.com/gohugoio/hugo/issues/8255) [#&#8203;8307](https://github.com/gohugoio/hugo/issues/8307) [#&#8203;8863](https://github.com/gohugoio/hugo/issues/8863) [#&#8203;8927](https://github.com/gohugoio/hugo/issues/8927) [#&#8203;9192](https://github.com/gohugoio/hugo/issues/9192) [#&#8203;9324](https://github.com/gohugoio/hugo/issues/9324) #### Dependency Updates - build(deps): bump github.com/tdewolff/minify/v2 from 2.20.16 to 2.20.17 [`f54ba6f`](https://github.com/gohugoio/hugo/commit/f54ba6f9e) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.20.0 to 0.20.1 [`4019b17`](https://github.com/gohugoio/hugo/commit/4019b177e) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/tools from 0.17.0 to 0.18.0 [`4a53fd5`](https://github.com/gohugoio/hugo/commit/4a53fd56b) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/net from 0.20.0 to 0.21.0 [`2d1681d`](https://github.com/gohugoio/hugo/commit/2d1681d91) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/mod from 0.14.0 to 0.15.0 [`301bafa`](https://github.com/gohugoio/hugo/commit/301bafabe) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/yuin/goldmark from 1.6.0 to 1.7.0 [`58d7f83`](https://github.com/gohugoio/hugo/commit/58d7f8339) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/getkin/kin-openapi from 0.122.0 to 0.123.0 [`54ad51e`](https://github.com/gohugoio/hugo/commit/54ad51e8a) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/tdewolff/minify/v2 from 2.20.13 to 2.20.16 [`bd1bcc0`](https://github.com/gohugoio/hugo/commit/bd1bcc0f9) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.19.12 to 0.20.0 [`b332f24`](https://github.com/gohugoio/hugo/commit/b332f243f) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Update gocloud.dev/aws [`d8e1e82`](https://github.com/gohugoio/hugo/commit/d8e1e8218) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/aws/aws-sdk-go from 1.48.6 to 1.50.7 [`4d98b0e`](https://github.com/gohugoio/hugo/commit/4d98b0ed6) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/image from 0.14.0 to 0.15.0 [`15b9976`](https://github.com/gohugoio/hugo/commit/15b9976b7) [@&#8203;dependabot](https://github.com/dependabot)\[bot] #### Documentation - docs: Regen docshelper [`60b176c`](https://github.com/gohugoio/hugo/commit/60b176cb5) [@&#8203;bep](https://github.com/bep) - docs: Regen CLI docs [`068ccde`](https://github.com/gohugoio/hugo/commit/068ccde4c) [@&#8203;bep](https://github.com/bep) - docs: Regenerate docshelper [`7cb447a`](https://github.com/gohugoio/hugo/commit/7cb447ab8) [@&#8203;bep](https://github.com/bep) - docs: Make null booleans falsy in the docs helper [`5161544`](https://github.com/gohugoio/hugo/commit/51615440b) [@&#8203;bep](https://github.com/bep) - docs: Regen docs helper [`7caa5b3`](https://github.com/gohugoio/hugo/commit/7caa5b3e5) [@&#8203;bep](https://github.com/bep) - docs: Prepare for new sub tree [`fc7de71`](https://github.com/gohugoio/hugo/commit/fc7de7136) [@&#8203;bep](https://github.com/bep) [#&#8203;11925](https://github.com/gohugoio/hugo/issues/11925) #### Build Setup - markup/goldmark: Update TOC test [`6f59d96`](https://github.com/gohugoio/hugo/commit/6f59d96bb) [@&#8203;jmooring](https://github.com/jmooring) </details> --- ### Configuration 📅 **Schedule**: 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 [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xOTguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
renovator force-pushed renovate/gohugoio-hugo-0.x from 77ec929897 to 260cf41bb3 2024-02-21 10:02:22 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.0 to chore(deps): update dependency gohugoio/hugo to v0.123.1 2024-02-21 10:02:22 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 260cf41bb3 to 64f678930a 2024-02-22 17:01:58 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.1 to chore(deps): update dependency gohugoio/hugo to v0.123.2 2024-02-22 17:01:59 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 64f678930a to 53e45cf407 2024-02-23 18:32:02 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.2 to chore(deps): update dependency gohugoio/hugo to v0.123.3 2024-02-23 18:32:02 +01:00
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.3 to chore(deps): update dependency gohugoio/hugo to v0.123.4 2024-02-26 18:01:54 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 53e45cf407 to 8d8afe1d51 2024-02-26 18:01:54 +01:00 Compare
renovator force-pushed renovate/gohugoio-hugo-0.x from 8d8afe1d51 to 4971f9ae71 2024-02-28 17:31:38 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.4 to chore(deps): update dependency gohugoio/hugo to v0.123.5 2024-02-28 17:31:40 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 4971f9ae71 to 6b69e48064 2024-02-28 20:01:39 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.5 to chore(deps): update dependency gohugoio/hugo to v0.123.6 2024-02-28 20:01:40 +01:00
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.6 to chore(deps): update dependency gohugoio/hugo to v0.123.7 2024-03-01 18:01:43 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 6b69e48064 to ebd288c23e 2024-03-01 18:01:44 +01:00 Compare
renovator force-pushed renovate/gohugoio-hugo-0.x from ebd288c23e to 27a655d6a1 2024-03-07 15:01:53 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.7 to chore(deps): update dependency gohugoio/hugo to v0.123.8 2024-03-07 15:01:53 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 27a655d6a1 to 770d54246a 2024-03-16 17:01:37 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.123.8 to chore(deps): update dependency gohugoio/hugo to v0.124.0 2024-03-16 17:01:38 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 770d54246a to b5e3b5f4cd 2024-03-20 13:01:43 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.124.0 to chore(deps): update dependency gohugoio/hugo to v0.124.1 2024-03-20 13:01:45 +01:00
xoxys merged commit c76012f772 into main 2024-03-20 21:18:11 +01:00
xoxys deleted branch renovate/gohugoio-hugo-0.x 2024-03-20 21:18:12 +01:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: container/hugo#141
No description provided.