chore(deps): update dependency gohugoio/hugo to v0.97.3 #45

Merged
xoxys merged 1 commits from renovate/gohugoio-hugo-0.x into main 2022-04-22 21:25:55 +02:00
Member

This PR contains the following updates:

Package Update Change
gohugoio/hugo minor v0.95.0 -> v0.97.3

Release Notes

gohugoio/hugo

v0.97.3

Compare Source

The v0.97.x release has been an Easter riddle. The new --renderStaticToDisk flag required a consolidation of the file systems in Hugo, which introduced a bug. The fix for that bug introduced a new bug, and reverting the obvious pick of the two candidate commits ... did not resolve the issue.

OK, all good things are three, and now with proper tests to avoid this particular issue happening again.

v0.97.2

Compare Source

NOTE: We seem to have introduced an issue with /static synching of files in this release, so we recommend wait for thev0.97.3 and roll back to the v0.97.0 or earlier for now.

This release reverts one of the fixes from yesterday, which broke more than it fixed:

v0.97.1

Compare Source

NOTE: We seem to have introduced an issue with /static synching of files in this release, so we recommend wait for thev0.97.3 and roll back to the v0.97.0 or earlier for now.

This is a bug-fix release with a couple of important fixes. Note that the MediaType on image conversion bug isn't a regression, that bug has been there since we added the target format option to the image processing methods.

v0.97.0

Compare Source

This release comes with language-aware collation of text (for sorting, e.g. with ByTitle, ByLinkTitle and ByParam) (#​2180) and localized GroupBy*Date methods (#​9745 ).

The new text sorting algorithm means among other things that text with accents in them gets ordered the way you would expect. Before this release:

  • alpha
  • charlie
  • echo
  • sierra
  • zulu
  • émotion

With this release:

  • alpha
  • charlie
  • echo
  • émotion
  • sierra
  • zulu

This release also re-introduces the new server flag --renderStaticToDisk, which enables a new hybrid static filesystem for Hugo's development server. This is great for sites with lots of static content, as it greatly reduces memory consumption while still keeping the fast render times by writing dynamic content to memory (the definition of static content in Hugo is all files mounted in /static and all files in /content that's not content files or a member of a content bundle). With this update, there are now 3 filesystem options when starting the server:

  1. hugo server (default), renders to and serves all files from memory.
  2. hugo server --renderToDisk, renders to and serves all files from disk.
  3. hugo server --renderStaticToDisk (the new hybrid mode), renders to and serves static files from disk, dynamic files from memory.

One final improvement to mention would be the new key option in resources.GetRemote, which, is set, will be used as the cache key. The default behaviour is to calculate the key based on the URL and all the options. This means that you can now do:

{{ $cacheKey := print $url (now.Format "2006-01-02") }}
{{ $resource := resource.GetRemote $url (dict "key" $cacheKey) }}

This release represents 31 contributions by 6 contributors to the main Hugo code base. @​bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @​dependabot[bot], @​jmooring, and @​ifurther for their ongoing contributions. And thanks to @​digitalcraftsman for his ongoing work on keeping the themes site in pristine condition.

Many have also been busy writing and fixing the documentation in hugoDocs,
which has received 19 contributions by 11 contributors. A special thanks to @​jmooring, @​danielfdickinson, @​deining, and @​coliff for their work on the documentation site.

Hugo now has:

Changes

v0.96.0

Compare Source

Vertical merging of content mounts. The main topic of this release is about file mounts (see #​9693). We have had a powerful and well defined merge strategy for the union filesystems for the Hugo Modules tree on the horizontal axis (left to right), but not so much for the vertical configuration within each module (e.g. multiple content mounts for the same language). It was @​jmooring who pointed out how useful this could be, and even provided this example where missing translations gets filled in from other language(s):

#------------------------------------------------------------------------------
### Content mounts
#------------------------------------------------------------------------------
### EN content
[[module.mounts]]
source = 'content/en'
target = 'content'
lang = 'en'
### DE content
[[module.mounts]]
source = 'content/de'
target = 'content'
lang = 'de'
### NL content
[[module.mounts]]
source = 'content/nl'
target = 'content'
lang = 'nl'

#------------------------------------------------------------------------------
### Fill in the missing translations
#------------------------------------------------------------------------------
### This fills in the gaps in DE content with EN content
[[module.mounts]]
source = 'content/en'
target = 'content'
lang = 'de'
### This fills in the gaps in NL content with EN content.
[[module.mounts]]
source = 'content/en'
target = 'content'
lang = 'nl'

Also, we have added some details to the .Err object you get when resources.GetRemote fails, which can be useful when debugging errrors (see #​9708). Not you can do something like:

{{ with $result := resources.GetRemote $url }}
  {{ with .Err }}
    {{ warnf "%s: %#v" .Error .Data}}
  {{ else }}
    {{ with .Content | unmarshal }}
      {{ warnf "%#v" . }}
    {{ end }}
  {{ end }}
{{ end }}

The .Data object above is a map and currently contains StatusCode, Status, Body, TransferEncoding, ContentLength, and ContentType.

This release represents 23 contributions by 8 contributors to the main Hugo code base.@​bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @​jmooring, @​dependabot[bot], and @​anthonyfok for their ongoing contributions.
And thanks to @​digitalcraftsman for his ongoing work on keeping the themes site in pristine condition.

Many have also been busy writing and fixing the documentation in hugoDocs,
which has received 5 contributions by 3 contributors.

Hugo now has:

Notes

Changes


Configuration

📅 Schedule: 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, click this checkbox.

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.95.0` -> `v0.97.3` | --- ### Release Notes <details> <summary>gohugoio/hugo</summary> ### [`v0.97.3`](https://github.com/gohugoio/hugo/releases/v0.97.3) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.97.2...v0.97.3) The `v0.97.x` release has been an Easter riddle. The new `--renderStaticToDisk` flag required a consolidation of the file systems in Hugo, which introduced a bug. The fix for that bug introduced a new bug, and reverting the obvious pick of the two candidate commits ... did not resolve the issue. OK, all good things are three, and now with proper tests to avoid this particular issue happening again. - Fix syncing of /static regression [`9b352f0`](https://github.com/gohugoio/hugo/commit/9b352f04) [@&#8203;bep](https://github.com/bep) [#&#8203;9794](https://github.com/gohugoio/hugo/issues/9794) [#&#8203;9788](https://github.com/gohugoio/hugo/issues/9788) - Revert "Revert "Fix PostProcess regression for hugo server"" [`e66e2e9`](https://github.com/gohugoio/hugo/commit/e66e2e9c) [@&#8203;bep](https://github.com/bep) [#&#8203;9794](https://github.com/gohugoio/hugo/issues/9794) ### [`v0.97.2`](https://github.com/gohugoio/hugo/releases/v0.97.2) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.97.1...v0.97.2) **NOTE:** We seem to have introduced an issue with /static synching of files in this release, so we recommend wait for the`v0.97.3` and roll back to the `v0.97.0` or earlier for now. This release reverts one of the fixes from yesterday, which broke more than it fixed: - Revert "Fix PostProcess regression for hugo server" [`6c35a1a`](https://github.com/gohugoio/hugo/commit/6c35a1a9) [@&#8203;bep](https://github.com/bep) ### [`v0.97.1`](https://github.com/gohugoio/hugo/releases/v0.97.1) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.97.0...v0.97.1) **NOTE:** We seem to have introduced an issue with /static synching of files in this release, so we recommend wait for the`v0.97.3` and roll back to the `v0.97.0` or earlier for now. This is a bug-fix release with a couple of important fixes. Note that the `MediaType` on image conversion bug isn't a regression, that bug has been there since we added the *target format* option to the image processing methods. - Fix PostProcess regression for hugo server [`4deb5c6`](https://github.com/gohugoio/hugo/commit/4deb5c60) [@&#8203;bep](https://github.com/bep) [#&#8203;9788](https://github.com/gohugoio/hugo/issues/9788) - Fix MediaType when reading images from cache [`397fce5`](https://github.com/gohugoio/hugo/commit/397fce56) [@&#8203;bep](https://github.com/bep) [#&#8203;8931](https://github.com/gohugoio/hugo/issues/8931) - Fix "Readdirnames with positive n not implemented" error with `--gc` in server mode [`0093eaa`](https://github.com/gohugoio/hugo/commit/0093eaa6) [@&#8203;bep](https://github.com/bep) [#&#8203;9783](https://github.com/gohugoio/hugo/issues/9783) ### [`v0.97.0`](https://github.com/gohugoio/hugo/releases/v0.97.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.96.0...v0.97.0) This release comes with language-aware collation of text (for sorting, e.g. with `ByTitle`, `ByLinkTitle` and `ByParam`) ([#&#8203;2180](https://github.com/gohugoio/hugo/issues/2180)) and localized `GroupBy*Date` methods ([#&#8203;9745](https://github.com/gohugoio/hugo/issues/9745) ). The new text sorting algorithm means among other things that text with accents in them gets ordered the way you would expect. Before this release: - alpha - charlie - echo - sierra - zulu - émotion With this release: - alpha - charlie - echo - émotion - sierra - zulu This release also re-introduces the new server flag `--renderStaticToDisk`, which enables a new **hybrid static filesystem** for Hugo's development server. This is great for sites with lots of static content, as it greatly reduces memory consumption while still keeping the fast render times by writing dynamic content to memory (the definition of static content in Hugo is all files mounted in `/static` and all files in `/content` that's not content files or a member of a content bundle). With this update, there are now 3 filesystem options when starting the server: 1. `hugo server` (default), renders to and serves all files from memory. 2. `hugo server --renderToDisk`, renders to and serves all files from disk. 3. `hugo server --renderStaticToDisk` (the new hybrid mode), renders to and serves static files from disk, dynamic files from memory. One final improvement to mention would be the new `key` option in `resources.GetRemote`, which, is set, will be used as the cache key. The default behaviour is to calculate the key based on the URL and all the options. This means that you can now do: {{ $cacheKey := print $url (now.Format "2006-01-02") }} {{ $resource := resource.GetRemote $url (dict "key" $cacheKey) }} This release represents **31 contributions by 6 contributors** to the main Hugo code base. [@&#8203;bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot), [@&#8203;jmooring](https://github.com/jmooring), and [@&#8203;ifurther](https://github.com/ifurther) for their ongoing contributions. And thanks to [@&#8203;digitalcraftsman](https://github.com/digitalcraftsman) for his ongoing work on keeping the themes site in pristine condition. Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), which has received **19 contributions by 11 contributors**. A special thanks to [@&#8203;jmooring](https://github.com/jmooring), [@&#8203;danielfdickinson](https://github.com/danielfdickinson), [@&#8203;deining](https://github.com/deining), and [@&#8203;coliff](https://github.com/coliff) for their work on the documentation site. Hugo now has: - 58259+ [stars](https://github.com/gohugoio/hugo/stargazers) - 429+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors) - 397+ [themes](http://themes.gohugo.io/) #### Changes - releaser: Reduce parallelism [`d80d5a1`](https://github.com/gohugoio/hugo/commit/d80d5a10) [@&#8203;bep](https://github.com/bep) - Revert "build(deps): bump gocloud.dev from 0.20.0 to 0.25.0" [`842262f`](https://github.com/gohugoio/hugo/commit/842262f6) [@&#8203;bep](https://github.com/bep) [#&#8203;9778](https://github.com/gohugoio/hugo/issues/9778) - resources: Add `key` to reources.GetRemote options map [`2dbdf38`](https://github.com/gohugoio/hugo/commit/2dbdf38a) [@&#8203;bep](https://github.com/bep) [#&#8203;9755](https://github.com/gohugoio/hugo/issues/9755) - build(deps): bump github.com/evanw/esbuild from 0.14.34 to 0.14.36 [`f8c4e16`](https://github.com/gohugoio/hugo/commit/f8c4e169) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - Make string sorting (e.g. ByTitle, ByLinkTitle and ByParam) language aware [`627eed1`](https://github.com/gohugoio/hugo/commit/627eed1d) [@&#8203;bep](https://github.com/bep) [#&#8203;2180](https://github.com/gohugoio/hugo/issues/2180) - Fix gosum checksum errors [`82ba634`](https://github.com/gohugoio/hugo/commit/82ba634e) [@&#8203;bep](https://github.com/bep) [#&#8203;9771](https://github.com/gohugoio/hugo/issues/9771) - build(deps): bump github.com/tdewolff/minify/v2 from 2.11.0 to 2.11.1 [`d417a6c`](https://github.com/gohugoio/hugo/commit/d417a6cf) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - compare: Add a string sort benchmark [`13dac7f`](https://github.com/gohugoio/hugo/commit/13dac7f3) [@&#8203;bep](https://github.com/bep) - Replace all usage of CopyOnWriteFs with OverlayFs [`30c2e54`](https://github.com/gohugoio/hugo/commit/30c2e54c) [@&#8203;bep](https://github.com/bep) [#&#8203;9761](https://github.com/gohugoio/hugo/issues/9761) - deps: Update github.com/tdewolff/minify/v2 v2.10.0 => v2.11.0 [`3117e58`](https://github.com/gohugoio/hugo/commit/3117e585) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9713](https://github.com/gohugoio/hugo/issues/9713) [#&#8203;9740](https://github.com/gohugoio/hugo/issues/9740) - docs: Regen CLI docs [`ffe3eb9`](https://github.com/gohugoio/hugo/commit/ffe3eb91) [@&#8203;bep](https://github.com/bep) - Rework the Destination filesystem to make --renderStaticToDisk work [`d070bdf`](https://github.com/gohugoio/hugo/commit/d070bdf1) [@&#8203;bep](https://github.com/bep) [#&#8203;9626](https://github.com/gohugoio/hugo/issues/9626) - Revert "Revert "Some minor adjustments to the new static filesystem logic"" [`b081939`](https://github.com/gohugoio/hugo/commit/b0819397) [@&#8203;bep](https://github.com/bep) - Revert "Revert "Allow rendering static files to disk and dynamic to memory in server mode"" [`0a56f2a`](https://github.com/gohugoio/hugo/commit/0a56f2af) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/evanw/esbuild from 0.14.31 to 0.14.34 [`9e360d3`](https://github.com/gohugoio/hugo/commit/9e360d38) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - modules/client: Vendor config directory if present [`a8c221d`](https://github.com/gohugoio/hugo/commit/a8c221d3) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9751](https://github.com/gohugoio/hugo/issues/9751) - resources: Create a common ResourceFinder interface [`e58a540`](https://github.com/gohugoio/hugo/commit/e58a5408) [@&#8203;bep](https://github.com/bep) [#&#8203;8653](https://github.com/gohugoio/hugo/issues/8653) - build(deps): bump gocloud.dev from 0.20.0 to 0.25.0 [`2016251`](https://github.com/gohugoio/hugo/commit/20162518) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/tools from 0.1.9 to 0.1.10 [`6b469cc`](https://github.com/gohugoio/hugo/commit/6b469cc8) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/magefile/mage from 1.12.1 to 1.13.0 [`080dcac`](https://github.com/gohugoio/hugo/commit/080dcac6) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/gobuffalo/flect from 0.2.4 to 0.2.5 [`072fc8c`](https://github.com/gohugoio/hugo/commit/072fc8cc) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - Localize all the GroupBy\*Date methods [`658e11e`](https://github.com/gohugoio/hugo/commit/658e11eb) [@&#8203;bep](https://github.com/bep) [#&#8203;9745](https://github.com/gohugoio/hugo/issues/9745) - build(deps): bump github.com/getkin/kin-openapi from 0.93.0 to 0.94.0 [`e0a882f`](https://github.com/gohugoio/hugo/commit/e0a882fd) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deploy: Set an MD5 attribute and use that if eTag not available [`d0657a4`](https://github.com/gohugoio/hugo/commit/d0657a43) [@&#8203;davidejones](https://github.com/davidejones) - build(deps): bump github.com/sanity-io/litter from 1.5.2 to 1.5.4 [`a6e2e38`](https://github.com/gohugoio/hugo/commit/a6e2e38b) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.14.25 to 0.14.31 [`510e179`](https://github.com/gohugoio/hugo/commit/510e1790) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/frankban/quicktest from 1.14.2 to 1.14.3 [`21484f9`](https://github.com/gohugoio/hugo/commit/21484f9e) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - Add environment as a new filter to \_cascade.target [`da00e77`](https://github.com/gohugoio/hugo/commit/da00e771) [@&#8203;CathrinePaulsen](https://github.com/CathrinePaulsen) [#&#8203;9612](https://github.com/gohugoio/hugo/issues/9612) - Merge branch 'release-0.96.0' [`ed9aa37`](https://github.com/gohugoio/hugo/commit/ed9aa374) [@&#8203;bep](https://github.com/bep) - Snap: Add {system,user}-gitconfig plugs to read gitconfig ([#&#8203;9619](https://github.com/gohugoio/hugo/issues/9619)) [`2a231b0`](https://github.com/gohugoio/hugo/commit/2a231b0b) [@&#8203;ifurther](https://github.com/ifurther) - releaser: Prepare repository for 0.97.0-DEV [`69c5900`](https://github.com/gohugoio/hugo/commit/69c59008) [@&#8203;bep](https://github.com/bep) ### [`v0.96.0`](https://github.com/gohugoio/hugo/releases/v0.96.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.95.0...v0.96.0) **Vertical merging of content mounts.** The main topic of this release is about file mounts (see [#&#8203;9693](https://github.com/gohugoio/hugo/issues/9693)). We have had a powerful and well defined merge strategy for the union filesystems for the Hugo Modules tree on the horizontal axis (left to right), but not so much for the vertical configuration within each module (e.g. multiple content mounts for the same language). It was [@&#8203;jmooring](https://github.com/jmooring) who [pointed out](https://discourse.gohugo.io/t/do-all-page-bundles-need-localized-copies-once-you-add-a-new-language/37225/12?u=bep) how useful this could be, and even provided this example where missing translations gets filled in from other language(s): ```toml #------------------------------------------------------------------------------ ### Content mounts #------------------------------------------------------------------------------ ### EN content [[module.mounts]] source = 'content/en' target = 'content' lang = 'en' ### DE content [[module.mounts]] source = 'content/de' target = 'content' lang = 'de' ### NL content [[module.mounts]] source = 'content/nl' target = 'content' lang = 'nl' #------------------------------------------------------------------------------ ### Fill in the missing translations #------------------------------------------------------------------------------ ### This fills in the gaps in DE content with EN content [[module.mounts]] source = 'content/en' target = 'content' lang = 'de' ### This fills in the gaps in NL content with EN content. [[module.mounts]] source = 'content/en' target = 'content' lang = 'nl' ``` Also, we have added some details to the `.Err` object you get when `resources.GetRemote` fails, which can be useful when debugging errrors (see [#&#8203;9708](https://github.com/gohugoio/hugo/issues/9708)). Not you can do something like: ```htmlbars {{ with $result := resources.GetRemote $url }} {{ with .Err }} {{ warnf "%s: %#v" .Error .Data}} {{ else }} {{ with .Content | unmarshal }} {{ warnf "%#v" . }} {{ end }} {{ end }} {{ end }} ``` The `.Data` object above is a `map` and currently contains `StatusCode`, `Status`, `Body`, `TransferEncoding`, `ContentLength`, and `ContentType`. This release represents **23 contributions by 8 contributors** to the main Hugo code base.[@&#8203;bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@&#8203;jmooring](https://github.com/jmooring), [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot), and [@&#8203;anthonyfok](https://github.com/anthonyfok) for their ongoing contributions. And thanks to [@&#8203;digitalcraftsman](https://github.com/digitalcraftsman) for his ongoing work on keeping the themes site in pristine condition. Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), which has received **5 contributions by 3 contributors**. Hugo now has: - 57897+ [stars](https://github.com/gohugoio/hugo/stargazers) - 429+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors) - 397+ [themes](http://themes.gohugo.io/) #### Notes - Deprecate .File.Extension [`9445968`](https://github.com/gohugoio/hugo/commit/94459680) [@&#8203;sara-meie](https://github.com/sara-meie) [#&#8203;9352](https://github.com/gohugoio/hugo/issues/9352) #### Changes - docs: Regen docshelper [`db1562e`](https://github.com/gohugoio/hugo/commit/db1562e1) [@&#8203;bep](https://github.com/bep) - docs: Regen CLI docs [`5b18e10`](https://github.com/gohugoio/hugo/commit/5b18e108) [@&#8203;bep](https://github.com/bep) - Deprecate .File.Extension [`9445968`](https://github.com/gohugoio/hugo/commit/94459680) [@&#8203;sara-meie](https://github.com/sara-meie) [#&#8203;9352](https://github.com/gohugoio/hugo/issues/9352) - resources: Add more details to .Err [`9202117`](https://github.com/gohugoio/hugo/commit/9202117b) [@&#8203;bep](https://github.com/bep) [#&#8203;9708](https://github.com/gohugoio/hugo/issues/9708) - commands: Change link protocol to https [`a6fa290`](https://github.com/gohugoio/hugo/commit/a6fa290f) [@&#8203;jmooring](https://github.com/jmooring) - build(deps): bump github.com/getkin/kin-openapi from 0.91.0 to 0.93.0 [`0bbc2fb`](https://github.com/gohugoio/hugo/commit/0bbc2fb5) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - tpl/crypto: Add optional encoding arg to hmac function [`94e8a90`](https://github.com/gohugoio/hugo/commit/94e8a907) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9709](https://github.com/gohugoio/hugo/issues/9709) - Fix typo [`a461e9d`](https://github.com/gohugoio/hugo/commit/a461e9d0) [@&#8203;panakour](https://github.com/panakour) - Fix some typos [`48c98a8`](https://github.com/gohugoio/hugo/commit/48c98a8d) [@&#8203;cuishuang](https://github.com/cuishuang) - Update CONTRIBUTING.md to use "go install" to install mage [`bbd455f`](https://github.com/gohugoio/hugo/commit/bbd455fe) [@&#8203;anthonyfok](https://github.com/anthonyfok) - Dockerfile: Make it build with Go 1.18 [`8309a2b`](https://github.com/gohugoio/hugo/commit/8309a2b1) [@&#8203;anthonyfok](https://github.com/anthonyfok) - snap: Make it build with Go 1.18 [`2b72310`](https://github.com/gohugoio/hugo/commit/2b723109) [@&#8203;anthonyfok](https://github.com/anthonyfok) - build(deps): bump github.com/yuin/goldmark from 1.4.10 to 1.4.11 [`13ff4de`](https://github.com/gohugoio/hugo/commit/13ff4ded) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/spf13/cobra from 1.3.0 to 1.4.0 [`c3289eb`](https://github.com/gohugoio/hugo/commit/c3289eb5) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - commands: Improve server startup to make tests less flaky [`9539069`](https://github.com/gohugoio/hugo/commit/9539069f) [@&#8203;bep](https://github.com/bep) - all: Use strings.Cut [`0e305d6`](https://github.com/gohugoio/hugo/commit/0e305d69) [@&#8203;bep](https://github.com/bep) [#&#8203;9687](https://github.com/gohugoio/hugo/issues/9687) - Support '-u=patch' in hugo mod get [`5adb81c`](https://github.com/gohugoio/hugo/commit/5adb81ce) [@&#8203;LukeDeWaal](https://github.com/LukeDeWaal) [#&#8203;9127](https://github.com/gohugoio/hugo/issues/9127) - Make sure file mounts higher up wins [`1c0e7c1`](https://github.com/gohugoio/hugo/commit/1c0e7c1a) [@&#8203;bep](https://github.com/bep) [#&#8203;9693](https://github.com/gohugoio/hugo/issues/9693) - resources/images: Require width and height for Crop, Fill, and Fit [`cad2d8c`](https://github.com/gohugoio/hugo/commit/cad2d8cc) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9696](https://github.com/gohugoio/hugo/issues/9696) - all: gofmt -w -r 'interface{} -> any' . [`b80853d`](https://github.com/gohugoio/hugo/commit/b80853de) [@&#8203;bep](https://github.com/bep) [#&#8203;9687](https://github.com/gohugoio/hugo/issues/9687) - dartsass: Enable deprecation, [@&#8203;warn](https://github.com/warn) and [@&#8203;debug](https://github.com/debug) logging [`423594e`](https://github.com/gohugoio/hugo/commit/423594e0) [@&#8203;bep](https://github.com/bep) [#&#8203;9683](https://github.com/gohugoio/hugo/issues/9683) - Use revision etc. from debug.BuildInfo [`64afb7c`](https://github.com/gohugoio/hugo/commit/64afb7ca) [@&#8203;bep](https://github.com/bep) [#&#8203;9680](https://github.com/gohugoio/hugo/issues/9680) - releaser: Prepare repository for 0.96.0-DEV [`004bec2`](https://github.com/gohugoio/hugo/commit/004bec2e) [@&#8203;bep](https://github.com/bep) </details> --- ### Configuration 📅 **Schedule**: 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, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.96.0 to chore(deps): update dependency gohugoio/hugo to v0.97.0 2022-04-14 12:02:21 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 7cd833f1a6 to bdcb812308 2022-04-14 12:02:22 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.97.0 to chore(deps): update dependency gohugoio/hugo to v0.97.1 2022-04-16 20:02:13 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from bdcb812308 to ea47af8a79 2022-04-16 20:02:14 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.97.1 to chore(deps): update dependency gohugoio/hugo to v0.97.2 2022-04-17 14:02:14 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from ea47af8a79 to 34a86c5921 2022-04-17 14:02:15 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.97.2 to chore(deps): update dependency gohugoio/hugo to v0.97.3 2022-04-18 21:02:15 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 34a86c5921 to af1d4b5a3d 2022-04-18 21:02:17 +02:00 Compare
xoxys merged commit b626862af4 into main 2022-04-22 21:25:55 +02:00
xoxys deleted branch renovate/gohugoio-hugo-0.x 2022-04-22 21:25:55 +02: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#45
No description provided.