chore(deps): update dependency gohugoio/hugo to v0.101.0 #52

Merged
xoxys merged 1 commits from renovate/gohugoio-hugo-0.x into main 2022-06-20 21:31:49 +02:00
Member

This PR contains the following updates:

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

Release Notes

gohugoio/hugo

v0.101.0

Compare Source

Hugo v0.101.0 comes with GIF animation image processing, a new hl_inline option for code highlighting, a new :slugorfilename permalink keyword, we now respect the NO_COLOR OS env var, and more.

This release represents 35 contributions by 9 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 @​vanbroup for their ongoing contributions. Also a shoutout to @​CIAvash for his work on the Chroma highlighter.

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

Hugo now has:

Changes

v0.100.2

Compare Source

This release is mostly motivated by the fix for the panic experienced by people having blackfriday configured as defaultMarkdownHandler (#​9968). The Blackfriday support was removed in Hugo v0.100.0 after being deprecated with a warning for a long time.

v0.100.1

Compare Source

Fix panic with markdownify/RenderString with shortcode on Page with no content file 212d9e3 @​bep #​9959

v0.100.0

Compare Source

$page.RenderString (see #​6703) finally supports shortcodes, and shortcode improvements is the main theme in Hugo 0.100.0.

Indentation fixes for shortcode blocks: We now record the indentation before the opening shortcode tag when parsing the source. This allow us to fix a couple of annoying issues in Hugo:

  1. We have added a new .InnerIndent method to the shortcode context to prevent the highlight shortcode from including in the indentation as part of the code block. See #​4717.
  2. Hugo now preserves the indentation for shortcode blocks. See more below.

A shortcode block is when the shortcode is included as the first non-whitespace content on a line. Note that this does not touch shortcodes with inner content, where the user is in control of the indentation. See issue #​9946 for more information. An example, say that I have this in layouts/shortcodes/mylist.md:

* Culpa enim incididunt fugiat id dolore velit laboris veniam minim.
* Tempor ex nisi labore ad elit laborum ex ullamco aute labore eu occaecat. 
* Deserunt mollit aliqua est laboris et irure eu non. 
* Consectetur nulla minim non reprehenderit Lorem elit dolore quis.

And then use that shortcode in a content file:

* My List
  {{% mylist %}}

In earlier versions of Hugo the above would render as:

image

Now it renders as:

image

Note that in the example above we use the md file suffix for the shortcode. In this release we also added Markdown as a built-in output format in Hugo, defined as a plain text format, meaning you get more lenient parsing compared to HTML. Using this if your shortcode produces Markdown has fewer quirks. See #​9821.

Also noteworthy is the new template function resources.Copy which allows you to copy almost any Hugo Resource (the one exception is the Page), possibly most useful for renaming things:

{{ $resized := $image.Resize "400x400" |  resources.Copy "images/mynewname.jpg" } }}
<img src="{{ $resized.RelPermalink }}">

This release represents 32 contributions by 4 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], @​satotake, and @​moorereason for their ongoing contributions.

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

Hugo now has:

Notes

  • The methods on Page IsDescendant and IsAncestor now returns true for itself, which is obviously the correct behaviour. We have fixed this before, but reverted it because it broke some theme's logic. Looking back, that reversion was a mistake. If you want the old logic you can get that by doing somethiong ala {{ if or (eq $p1 $p2) ($p1.IsAncestor $p2) }}{{ end }} #​9925
  • We have removed Blackfriday as a Markdown option. It has been deprecated for a long time, its v1 version is not maintained anymore, and there are many known issues. Goldmark should be a mature replacement by now. #​9944

Changes

v0.99.1

Compare Source

Fix server regression for multihost sites (multiple languages with different baseURLs) 2f9eac4 @​bep #​9901

v0.99.0

Compare Source

The theme of this release is error handling – a topic grievously underrated in most development tools. You are often expected to Google this mysterious error and end up in some Stackoverflow thread telling you to use a specific Node version. Hugo has done an OK job in this department, but when I, @​bep, recently got stuck with a minify error I had no clue how to debug, I knew we had to take another look at this. There is a list of "error improvements below", but here is one visual example:

image

The two screenshots above is from the same template error in Hugo v0.98.0 (left) and the new v0.99.0 (right). This is a type error (method not found) in a partial included in a shortcode template. We did a decent job in v0.98.0, too, pointing at correct line in the partial. But the right version has the full stack, with absolute filename, line and column and some file context (highlighted lines) for all of the files involved in the error (Markdown file, shortcode and partial). Having these source file references to click on in the VS Code terminal is a real time saver, especially in Hugo projects with mulitiple file roots (themes, theme components).

A list of the most important "error improvements":

  • A new server error template (can be overridden in layouts/_server/error.html), always add the content file context if relevant, improve JS errors, Add file context (with position) to codeblock render blocks, add file context to errors in the publishing step (e.g. minify), and more. #​9892 #​9891 #​9893
  • Fix SIGINT handling (allowing to kill the server) after loading bad configuration #​9664
  • Improve SASS/SCSS errors (both Dart SASS and Libsass) #​9897
  • Fix line numbers in errors from PostCSS, add missing file context to "import not found" #​9895

Also worth mentioning is the new clock cli flag (#​8787 ) which allows you to "set the clock" and see how your site looks like ... in the future.

This release represents 24 contributions by 4 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], @​satotake, and @​nathannaveen for their ongoing contributions.

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

Hugo now has:

Notes

Changes

v0.98.0

Compare Source

This release is mostly some important upgrades of Hugo's core dependencies, but we have also added crypto.FNV32a template function, which produces 32-bit unsigned integer hashes from a string. We have already many hash functions, but none of them produces an integer, which can be useful, e.g.:

{{ $mystring := "Hugo" }}
{{ $colors := slice "orange" "blue" "green" "steel" "hotpink" }}
{{ $hash := (crypto.FNV32a $mystring) }}
{{ $i := mod $hash (len $colors) }}
{{ $color := index $colors $i }}

This release represents 29 contributions by 3 contributors to the main Hugo code base.

Hugo now has:

Notes

Changes


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, 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.97.3` -> `v0.101.0` | --- ### Release Notes <details> <summary>gohugoio/hugo</summary> ### [`v0.101.0`](https://github.com/gohugoio/hugo/releases/tag/v0.101.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.100.2...v0.101.0) Hugo `v0.101.0` comes with GIF animation [image processing](https://gohugo.io/content-management/image-processing/), a new `hl_inline` option for code highlighting, a new `:slugorfilename` permalink keyword, we now respect the [NO_COLOR](https://no-color.org/) OS env var, and more. This release represents **35 contributions by 9 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;vanbroup](https://github.com/vanbroup) for their ongoing contributions. Also a shoutout to [@&#8203;CIAvash](https://github.com/CIAvash) for his work on the Chroma highlighter. Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), which has received **3 contributions by 2 contributors**. Hugo now has: - 59557+ [stars](https://github.com/gohugoio/hugo/stargazers) - 428+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors) - 399+ [themes](http://themes.gohugo.io/) #### Changes - build: Update to Go 1.18.3 [`2c5943d`](https://github.com/gohugoio/hugo/commit/2c5943dd) [@&#8203;bep](https://github.com/bep) [#&#8203;9964](https://github.com/gohugoio/hugo/issues/9964) - docs: Regen docshelper [`0cb459a`](https://github.com/gohugoio/hugo/commit/0cb459a2) [@&#8203;bep](https://github.com/bep) - markup/highlight: Add hl_inline option [`d863dde`](https://github.com/gohugoio/hugo/commit/d863dde6) [@&#8203;bep](https://github.com/bep) [#&#8203;9442](https://github.com/gohugoio/hugo/issues/9442) [#&#8203;9635](https://github.com/gohugoio/hugo/issues/9635) [#&#8203;9638](https://github.com/gohugoio/hugo/issues/9638) - deps: Update github.com/alecthomas/chroma/v2 v2.1.0 => v2.2.0 [`580b214`](https://github.com/gohugoio/hugo/commit/580b214a) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/clbanning/mxj/v2 from 2.5.5 to 2.5.6 [`ddb9547`](https://github.com/gohugoio/hugo/commit/ddb95470) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.1 to 2.0.2 [`288b0fb`](https://github.com/gohugoio/hugo/commit/288b0fb1) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/tools from 0.1.10 to 0.1.11 [`3e13446`](https://github.com/gohugoio/hugo/commit/3e134463) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/tdewolff/minify/v2 from 2.11.5 to 2.11.10 [`7a9ce0e`](https://github.com/gohugoio/hugo/commit/7a9ce0ec) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.14.42 to 0.14.43 [`f2ba0cc`](https://github.com/gohugoio/hugo/commit/f2ba0cc8) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/getkin/kin-openapi from 0.94.0 to 0.97.0 [`62ceaab`](https://github.com/gohugoio/hugo/commit/62ceaabd) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Udpate to github.com/alecthomas/chroma/v2 [`35fa192`](https://github.com/gohugoio/hugo/commit/35fa1928) [@&#8203;bep](https://github.com/bep) [#&#8203;9932](https://github.com/gohugoio/hugo/issues/9932) [#&#8203;9931](https://github.com/gohugoio/hugo/issues/9931) - common: Add hugo.GoVersion [`09ac733`](https://github.com/gohugoio/hugo/commit/09ac7333) [@&#8203;khayyamsaleem](https://github.com/khayyamsaleem) [#&#8203;9849](https://github.com/gohugoio/hugo/issues/9849) - resources: Panic on Copy of Resource with .Err [`66da1b7`](https://github.com/gohugoio/hugo/commit/66da1b7b) [@&#8203;bep](https://github.com/bep) [#&#8203;10006](https://github.com/gohugoio/hugo/issues/10006) - resources/page: Add :slugorfilename attribute [`5a9ecb8`](https://github.com/gohugoio/hugo/commit/5a9ecb82) [@&#8203;dawidpotocki](https://github.com/dawidpotocki) [#&#8203;385](https://github.com/gohugoio/hugo/issues/385) - Respect NO_COLOR [`cbc35c4`](https://github.com/gohugoio/hugo/commit/cbc35c48) [@&#8203;bep](https://github.com/bep) [#&#8203;10004](https://github.com/gohugoio/hugo/issues/10004) - readme: Update dependency list [`44f3c07`](https://github.com/gohugoio/hugo/commit/44f3c079) [@&#8203;deining](https://github.com/deining) - Fix relURL with leading slash when baseURL includes a subdirectory [`a5a4422`](https://github.com/gohugoio/hugo/commit/a5a4422a) [@&#8203;bep](https://github.com/bep) [#&#8203;9994](https://github.com/gohugoio/hugo/issues/9994) - js: Resolve index.esm.js [`617e094`](https://github.com/gohugoio/hugo/commit/617e0944) [@&#8203;bep](https://github.com/bep) [#&#8203;8631](https://github.com/gohugoio/hugo/issues/8631) - Add animated GIF support [`cf12fa6`](https://github.com/gohugoio/hugo/commit/cf12fa61) [@&#8203;bep](https://github.com/bep) [#&#8203;5030](https://github.com/gohugoio/hugo/issues/5030) - resources: Add a Gif source file to golden tests [`2e1c817`](https://github.com/gohugoio/hugo/commit/2e1c8177) [@&#8203;bep](https://github.com/bep) - releaser: Prepare repository for 0.101.0-DEV [`4276075`](https://github.com/gohugoio/hugo/commit/4276075c) [@&#8203;bep](https://github.com/bep) - releaser: Bump versions for release of 0.100.2 [`d25cb29`](https://github.com/gohugoio/hugo/commit/d25cb294) [@&#8203;bep](https://github.com/bep) - releaser: Add release notes for 0.100.2 \[ci skip] [`8b9bdc4`](https://github.com/gohugoio/hugo/commit/8b9bdc40) [@&#8203;bep](https://github.com/bep) - Update CONTRIBUTING.md [`4e94d1d`](https://github.com/gohugoio/hugo/commit/4e94d1db) [@&#8203;bep](https://github.com/bep) - Fix raw TOML dates in where/eq [`0566bbf`](https://github.com/gohugoio/hugo/commit/0566bbf7) [@&#8203;bep](https://github.com/bep) [#&#8203;9979](https://github.com/gohugoio/hugo/issues/9979) - deps: Update to github.com/pelletier/go-toml/v2 v2.0.1 [`534e715`](https://github.com/gohugoio/hugo/commit/534e7155) [@&#8203;anthonyfok](https://github.com/anthonyfok) - tpl/path: Add path.BaseName function [`953f215`](https://github.com/gohugoio/hugo/commit/953f215f) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9973](https://github.com/gohugoio/hugo/issues/9973) - livereload: Use `X-Forwarded-Host` for Codespace [`8e2fd55`](https://github.com/gohugoio/hugo/commit/8e2fd559) [@&#8203;satotake](https://github.com/satotake) [#&#8203;9936](https://github.com/gohugoio/hugo/issues/9936) - helpers: Fix panic with invalid defaultMarkdownHandler [`311b800`](https://github.com/gohugoio/hugo/commit/311b8008) [@&#8203;bep](https://github.com/bep) [#&#8203;9968](https://github.com/gohugoio/hugo/issues/9968) - resources: Register MediaTypes before build [`c7d5f9f`](https://github.com/gohugoio/hugo/commit/c7d5f9f0) [@&#8203;vanbroup](https://github.com/vanbroup) [#&#8203;9971](https://github.com/gohugoio/hugo/issues/9971) - releaser: Prepare repository for 0.101.0-DEV [`bfebd8c`](https://github.com/gohugoio/hugo/commit/bfebd8c0) [@&#8203;bep](https://github.com/bep) - releaser: Bump versions for release of 0.100.1 [`0afb486`](https://github.com/gohugoio/hugo/commit/0afb4866) [@&#8203;bep](https://github.com/bep) - releaser: Add release notes for 0.100.1 \[ci skip] [`b1ec0c2`](https://github.com/gohugoio/hugo/commit/b1ec0c22) [@&#8203;bep](https://github.com/bep) - Fix panic with markdownify/RenderString with shortcode on Page with no content file [`212d9e3`](https://github.com/gohugoio/hugo/commit/212d9e30) [@&#8203;bep](https://github.com/bep) [#&#8203;9959](https://github.com/gohugoio/hugo/issues/9959) - releaser: Prepare repository for 0.101.0-DEV [`4daac65`](https://github.com/gohugoio/hugo/commit/4daac654) [@&#8203;bep](https://github.com/bep) ### [`v0.100.2`](https://github.com/gohugoio/hugo/releases/tag/v0.100.2) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.100.1...v0.100.2) This release is mostly motivated by the fix for the panic experienced by people having `blackfriday` configured as `defaultMarkdownHandler` ([#&#8203;9968](https://github.com/gohugoio/hugo/issues/9968)). The Blackfriday support was removed in Hugo v0.100.0 after being deprecated with a warning for a long time. - Fix raw TOML dates in where/eq [`0566bbf`](https://github.com/gohugoio/hugo/commit/0566bbf7) [@&#8203;bep](https://github.com/bep) [#&#8203;9979](https://github.com/gohugoio/hugo/issues/9979) - deps: Update to github.com/pelletier/go-toml/v2 v2.0.1 [`534e715`](https://github.com/gohugoio/hugo/commit/534e7155) [@&#8203;anthonyfok](https://github.com/anthonyfok) - tpl/path: Add path.BaseName function [`953f215`](https://github.com/gohugoio/hugo/commit/953f215f) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9973](https://github.com/gohugoio/hugo/issues/9973) - livereload: Use `X-Forwarded-Host` for Codespace [`8e2fd55`](https://github.com/gohugoio/hugo/commit/8e2fd559) [@&#8203;satotake](https://github.com/satotake) [#&#8203;9936](https://github.com/gohugoio/hugo/issues/9936) - helpers: Fix panic with invalid defaultMarkdownHandler [`311b800`](https://github.com/gohugoio/hugo/commit/311b8008) [@&#8203;bep](https://github.com/bep) [#&#8203;9968](https://github.com/gohugoio/hugo/issues/9968) - resources: Register MediaTypes before build [`c7d5f9f`](https://github.com/gohugoio/hugo/commit/c7d5f9f0) [@&#8203;vanbroup](https://github.com/vanbroup) [#&#8203;9971](https://github.com/gohugoio/hugo/issues/9971) ### [`v0.100.1`](https://github.com/gohugoio/hugo/releases/tag/v0.100.1) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.100.0...v0.100.1) Fix panic with markdownify/RenderString with shortcode on Page with no content file [`212d9e3`](https://github.com/gohugoio/hugo/commit/212d9e30) [@&#8203;bep](https://github.com/bep) [#&#8203;9959](https://github.com/gohugoio/hugo/issues/9959) ### [`v0.100.0`](https://github.com/gohugoio/hugo/releases/tag/v0.100.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.99.1...v0.100.0) `$page.RenderString` (see [#&#8203;6703](https://github.com/gohugoio/hugo/issues/6703)) finally supports shortcodes, and shortcode improvements is the main theme in Hugo 0.100.0. **Indentation fixes for shortcode blocks:** We now record the indentation before the opening shortcode tag when parsing the source. This allow us to fix a couple of annoying issues in Hugo: 1. We have added a new `.InnerIndent` method to the shortcode context to prevent the `highlight` shortcode from including in the indentation as part of the code block. See [#&#8203;4717](https://github.com/gohugoio/hugo/issues/4717). 2. Hugo now preserves the indentation for shortcode blocks. See more below. A shortcode block is when the shortcode is included as the first non-whitespace content on a line. Note that this does not touch shortcodes with inner content, where the user is in control of the indentation. See issue [#&#8203;9946](https://github.com/gohugoio/hugo/issues/9946) for more information. An example, say that I have this in `layouts/shortcodes/mylist.md`: ```md * Culpa enim incididunt fugiat id dolore velit laboris veniam minim. * Tempor ex nisi labore ad elit laborum ex ullamco aute labore eu occaecat. * Deserunt mollit aliqua est laboris et irure eu non. * Consectetur nulla minim non reprehenderit Lorem elit dolore quis. ``` And then use that shortcode in a content file: ```md * My List {{% mylist %}} ``` In earlier versions of Hugo the above would render as: <img width="582" alt="image" src="https://user-images.githubusercontent.com/394382/170958104-36a4673f-e51a-4b37-b0e8-6a0fda476929.png"> Now it renders as: <img width="604" alt="image" src="https://user-images.githubusercontent.com/394382/170957864-028d1e64-b383-4681-b844-f9075e04d8ff.png"> Note that in the example above we use the `md` file suffix for the shortcode. In this release we also added `Markdown` as a built-in output format in Hugo, defined as a plain text format, meaning you get more lenient parsing compared to HTML. Using this if your shortcode produces Markdown has fewer quirks. See [#&#8203;9821](https://github.com/gohugoio/hugo/issues/9821). Also noteworthy is the new template function [resources.Copy](https://gohugo.io/hugo-pipes/introduction/#copy-a-resource) which allows you to copy almost any Hugo `Resource` (the one exception is the `Page`), possibly most useful for renaming things: ```htmlbars {{ $resized := $image.Resize "400x400" | resources.Copy "images/mynewname.jpg" } }} <img src="{{ $resized.RelPermalink }}"> ``` This release represents **32 contributions by 4 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;satotake](https://github.com/satotake), and [@&#8203;moorereason](https://github.com/moorereason) for their ongoing contributions. Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), which has received **1 contributions by 1 contributors**. Hugo now has: - 59255+ [stars](https://github.com/gohugoio/hugo/stargazers) - 428+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors) - 399+ [themes](http://themes.gohugo.io/) #### Notes - The methods on Page `IsDescendant` and `IsAncestor` now returns true for itself, which is obviously the correct behaviour. We have fixed this before, but reverted it because it broke some theme's logic. Looking back, that reversion was a mistake. If you want the old logic you can get that by doing somethiong ala `{{ if or (eq $p1 $p2) ($p1.IsAncestor $p2) }}{{ end }}` [#&#8203;9925](https://github.com/gohugoio/hugo/issues/9925) - We have removed Blackfriday as a Markdown option. It has been deprecated for a long time, its v1 version is not maintained anymore, and there are many known issues. Goldmark should be a mature replacement by now. [#&#8203;9944](https://github.com/gohugoio/hugo/issues/9944) #### Changes - docs: Regen CLI docs [`3fcbee2`](https://github.com/gohugoio/hugo/commit/3fcbee26) [@&#8203;bep](https://github.com/bep) - docs: Regen docs helper [`db9d274`](https://github.com/gohugoio/hugo/commit/db9d2742) [@&#8203;bep](https://github.com/bep) - Fix indentation in highlight shortcode [`6f7bf3f`](https://github.com/gohugoio/hugo/commit/6f7bf3f2) [@&#8203;bep](https://github.com/bep) [#&#8203;4717](https://github.com/gohugoio/hugo/issues/4717) - Make .RenderString render shortcodes [`9e904d7`](https://github.com/gohugoio/hugo/commit/9e904d75) [@&#8203;bep](https://github.com/bep) [#&#8203;6703](https://github.com/gohugoio/hugo/issues/6703) - Improve shortcode indentation handling [`d2cfaed`](https://github.com/gohugoio/hugo/commit/d2cfaede) [@&#8203;bep](https://github.com/bep) [#&#8203;9946](https://github.com/gohugoio/hugo/issues/9946) - Add Markdown as an output format [`322d19a`](https://github.com/gohugoio/hugo/commit/322d19a8) [@&#8203;bep](https://github.com/bep) [#&#8203;9821](https://github.com/gohugoio/hugo/issues/9821) - build(deps): bump github.com/evanw/esbuild from 0.14.39 to 0.14.42 [`7cb484e`](https://github.com/gohugoio/hugo/commit/7cb484e1) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - Run go mod tidy [`0b395f0`](https://github.com/gohugoio/hugo/commit/0b395f0b) [@&#8203;bep](https://github.com/bep) - Add a shortcode benchmark [`c1a8307`](https://github.com/gohugoio/hugo/commit/c1a83076) [@&#8203;bep](https://github.com/bep) - Remove Blackfriday markdown engine [`0f8dc47`](https://github.com/gohugoio/hugo/commit/0f8dc470) [@&#8203;bep](https://github.com/bep) [#&#8203;9934](https://github.com/gohugoio/hugo/issues/9934) - Fix HasMenuCurrent and IsDescendant/IsAncestor when comparing to itself [`3b478f5`](https://github.com/gohugoio/hugo/commit/3b478f50) [@&#8203;bep](https://github.com/bep) [#&#8203;9846](https://github.com/gohugoio/hugo/issues/9846) - build(deps): bump github.com/sanity-io/litter from 1.5.4 to 1.5.5 [`f343b8e`](https://github.com/gohugoio/hugo/commit/f343b8eb) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Update to github.com/tdewolff/minify/v2 v2.11.5 [`60ede14`](https://github.com/gohugoio/hugo/commit/60ede146) [@&#8203;bep](https://github.com/bep) - Don't use the baseURL /path as part of the resource cache key [`dd9eaf1`](https://github.com/gohugoio/hugo/commit/dd9eaf19) [@&#8203;bep](https://github.com/bep) [#&#8203;9787](https://github.com/gohugoio/hugo/issues/9787) - postcss: Make the resource cache key more stable [`46a2ea6`](https://github.com/gohugoio/hugo/commit/46a2ea6d) [@&#8203;bep](https://github.com/bep) [#&#8203;9787](https://github.com/gohugoio/hugo/issues/9787) - commands: Fix case where languages cannot be configured [`653ab2c`](https://github.com/gohugoio/hugo/commit/653ab2cc) [@&#8203;bep](https://github.com/bep) - github: Set HUGO_BUILD_TAGS: extended when running tests [`52edea0`](https://github.com/gohugoio/hugo/commit/52edea0f) [@&#8203;bep](https://github.com/bep) [#&#8203;9935](https://github.com/gohugoio/hugo/issues/9935) - metrics: Fix divide by zero error [`6a5acd7`](https://github.com/gohugoio/hugo/commit/6a5acd75) [@&#8203;moorereason](https://github.com/moorereason) - Fix error message when PostCSS config file is not found [`805b215`](https://github.com/gohugoio/hugo/commit/805b2155) [@&#8203;bep](https://github.com/bep) [#&#8203;9927](https://github.com/gohugoio/hugo/issues/9927) - server: Skip watching dirs in ignoreFiles [`8ca7052`](https://github.com/gohugoio/hugo/commit/8ca70525) [@&#8203;bep](https://github.com/bep) [#&#8203;9838](https://github.com/gohugoio/hugo/issues/9838) - resources: Improve error message on .Resize etc. on SVGs [`bb232a3`](https://github.com/gohugoio/hugo/commit/bb232a35) [@&#8203;bep](https://github.com/bep) [#&#8203;9875](https://github.com/gohugoio/hugo/issues/9875) - Fix Plainify edge cases [`3854a6f`](https://github.com/gohugoio/hugo/commit/3854a6fa) [@&#8203;bep](https://github.com/bep) [#&#8203;9199](https://github.com/gohugoio/hugo/issues/9199) [#&#8203;9909](https://github.com/gohugoio/hugo/issues/9909) [#&#8203;9410](https://github.com/gohugoio/hugo/issues/9410) - Add resources.Copy [`cd0112a`](https://github.com/gohugoio/hugo/commit/cd0112a0) [@&#8203;bep](https://github.com/bep) [#&#8203;9313](https://github.com/gohugoio/hugo/issues/9313) - basefs: add `noBuildLock` flag [`6f7fbe0`](https://github.com/gohugoio/hugo/commit/6f7fbe03) [@&#8203;satotake](https://github.com/satotake) [#&#8203;9780](https://github.com/gohugoio/hugo/issues/9780) - import: Fix importing jekyll site [`2fc2e9c`](https://github.com/gohugoio/hugo/commit/2fc2e9c8) [@&#8203;satotake](https://github.com/satotake) [#&#8203;9817](https://github.com/gohugoio/hugo/issues/9817) - releaser: Prepare repository for 0.100.0-DEV [`e164834`](https://github.com/gohugoio/hugo/commit/e164834f) [@&#8203;bep](https://github.com/bep) - releaser: Bump versions for release of 0.99.1 [`d524067`](https://github.com/gohugoio/hugo/commit/d5240673) [@&#8203;bep](https://github.com/bep) - releaser: Add release notes for 0.99.1 \[ci skip] [`31ce89f`](https://github.com/gohugoio/hugo/commit/31ce89f7) [@&#8203;bep](https://github.com/bep) - releaser: Fix version replacement [`ee55fde`](https://github.com/gohugoio/hugo/commit/ee55fde5) [@&#8203;bep](https://github.com/bep) - server: Fix multihost crash [`2f9eac4`](https://github.com/gohugoio/hugo/commit/2f9eac48) [@&#8203;bep](https://github.com/bep) [#&#8203;9901](https://github.com/gohugoio/hugo/issues/9901) - Update stale.yml [`3a8189e`](https://github.com/gohugoio/hugo/commit/3a8189ee) [@&#8203;bep](https://github.com/bep) - common/hugo: Fix version logic [`7bc3401`](https://github.com/gohugoio/hugo/commit/7bc3401e) [@&#8203;bep](https://github.com/bep) ### [`v0.99.1`](https://github.com/gohugoio/hugo/releases/tag/v0.99.1) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.99.0...v0.99.1) Fix server regression for multihost sites (multiple languages with different baseURLs) [`2f9eac4`](https://github.com/gohugoio/hugo/commit/2f9eac48) [@&#8203;bep](https://github.com/bep) [#&#8203;9901](https://github.com/gohugoio/hugo/issues/9901) ### [`v0.99.0`](https://github.com/gohugoio/hugo/releases/tag/v0.99.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.98.0...v0.99.0) The theme of this release is **error handling** – a topic grievously underrated in most development tools. You are often expected to Google this mysterious error and end up in some Stackoverflow thread telling you to use a specific Node version. Hugo has done an OK job in this department, but when I, [@&#8203;bep](https://github.com/bep), recently got stuck with a minify error I had no clue how to debug, I knew we had to take another look at this. There is a list of "error improvements below", but here is one visual example: ![image](https://user-images.githubusercontent.com/394382/168581005-e22b20b6-d480-42f7-92ff-c07f034232cc.png) The two screenshots above is from the same template error in Hugo `v0.98.0` (left) and the new `v0.99.0` (right). This is a *type error* (method not found) in a partial included in a shortcode template. We did a decent job in `v0.98.0`, too, pointing at correct line in the partial. But the right version has the full stack, with absolute filename, line and column and some file context (highlighted lines) for all of the files involved in the error (Markdown file, shortcode and partial). Having these source file references to click on in the VS Code terminal is a real time saver, especially in Hugo projects with mulitiple file roots (themes, theme components). A list of the most important "error improvements": - A new server error template (can be overridden in `layouts/_server/error.html`), always add the content file context if relevant, improve JS errors, Add file context (with position) to codeblock render blocks, add file context to errors in the publishing step (e.g. minify), and more. [#&#8203;9892](https://github.com/gohugoio/hugo/issues/9892) [#&#8203;9891](https://github.com/gohugoio/hugo/issues/9891) [#&#8203;9893](https://github.com/gohugoio/hugo/issues/9893) - Fix SIGINT handling (allowing to kill the server) after loading bad configuration [#&#8203;9664](https://github.com/gohugoio/hugo/issues/9664) - Improve SASS/SCSS errors (both Dart SASS and Libsass) [#&#8203;9897](https://github.com/gohugoio/hugo/issues/9897) - Fix line numbers in errors from PostCSS, add missing file context to "import not found" [#&#8203;9895](https://github.com/gohugoio/hugo/issues/9895) Also worth mentioning is the new `clock` cli flag ([#&#8203;8787](https://github.com/gohugoio/hugo/issues/8787) ) which allows you to "set the clock" and see how your site looks like ... in the future. This release represents **24 contributions by 4 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;satotake](https://github.com/satotake), and [@&#8203;nathannaveen](https://github.com/nathannaveen) for their ongoing contributions. Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), which has received **3 contributions by 2 contributors**. Hugo now has: - 58934+ [stars](https://github.com/gohugoio/hugo/stargazers) - 428+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors) - 399+ [themes](http://themes.gohugo.io/) #### Notes - Hugo will now by default fail the build if an inline import cannot be resolved with `inlineImports=true` enabled for `resources.PostCSS`. See https://gohugo.io/hugo-pipes/postcss/#options #### Changes - server: Refresh the error template [`657d1a2`](https://github.com/gohugoio/hugo/commit/657d1a2d) [@&#8203;bep](https://github.com/bep) - server: Fix SIGINT handling after loading bad configuration [`87a22eb`](https://github.com/gohugoio/hugo/commit/87a22eb6) [@&#8203;bep](https://github.com/bep) [#&#8203;9664](https://github.com/gohugoio/hugo/issues/9664) - Improve SASS errors [`fc9f315`](https://github.com/gohugoio/hugo/commit/fc9f315d) [@&#8203;bep](https://github.com/bep) [#&#8203;9897](https://github.com/gohugoio/hugo/issues/9897) - postcss: Fix import error handling [`4b189d8`](https://github.com/gohugoio/hugo/commit/4b189d8f) [@&#8203;bep](https://github.com/bep) [#&#8203;9895](https://github.com/gohugoio/hugo/issues/9895) - build(deps): bump github.com/fsnotify/fsnotify from 1.5.3 to 1.5.4 [`c2fa0a3`](https://github.com/gohugoio/hugo/commit/c2fa0a33) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - common/herrors: Remove unused struct [`48ea24f`](https://github.com/gohugoio/hugo/commit/48ea24f8) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/evanw/esbuild from 0.14.38 to 0.14.39 [`9f56385`](https://github.com/gohugoio/hugo/commit/9f563856) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - errors: Misc improvements [`5c96bda`](https://github.com/gohugoio/hugo/commit/5c96bda7) [@&#8203;bep](https://github.com/bep) [#&#8203;9892](https://github.com/gohugoio/hugo/issues/9892) [#&#8203;9891](https://github.com/gohugoio/hugo/issues/9891) [#&#8203;9893](https://github.com/gohugoio/hugo/issues/9893) - server: Always rebuild the files involved in an error [`4a96df9`](https://github.com/gohugoio/hugo/commit/4a96df96) [@&#8203;bep](https://github.com/bep) [#&#8203;9884](https://github.com/gohugoio/hugo/issues/9884) - postcss: Fix line numbers in error messages [`e8537e6`](https://github.com/gohugoio/hugo/commit/e8537e6d) [@&#8203;bep](https://github.com/bep) [#&#8203;9880](https://github.com/gohugoio/hugo/issues/9880) - Update CONTRIBUTING.md [`2fbdee7`](https://github.com/gohugoio/hugo/commit/2fbdee72) [@&#8203;bep](https://github.com/bep) - js: Bump test dependency [`91fe1b6`](https://github.com/gohugoio/hugo/commit/91fe1b6c) [@&#8203;bep](https://github.com/bep) - deps: Update github.com/spf13/cast v1.4.1 => v1.5.0 [`7de6291`](https://github.com/gohugoio/hugo/commit/7de62912) [@&#8203;bep](https://github.com/bep) - hugolib: Check for nil in shouldRender [`9d7f166`](https://github.com/gohugoio/hugo/commit/9d7f1662) [@&#8203;bep](https://github.com/bep) - Revise the use of htime.Since/htime.Now [`51f08b0`](https://github.com/gohugoio/hugo/commit/51f08b0b) [@&#8203;bep](https://github.com/bep) [#&#8203;9868](https://github.com/gohugoio/hugo/issues/9868) - tpl/collections: Make sort stable [`860c51c`](https://github.com/gohugoio/hugo/commit/860c51c3) [@&#8203;bep](https://github.com/bep) [#&#8203;9865](https://github.com/gohugoio/hugo/issues/9865) - docs: Regen CLI docs [`855e586`](https://github.com/gohugoio/hugo/commit/855e5869) [@&#8203;bep](https://github.com/bep) - Use configured timeZone for the clock [`35c88a7`](https://github.com/gohugoio/hugo/commit/35c88a7f) [@&#8203;bep](https://github.com/bep) [#&#8203;8787](https://github.com/gohugoio/hugo/issues/8787) - Add `clock` cli flag [`e77ca3c`](https://github.com/gohugoio/hugo/commit/e77ca3c1) [@&#8203;satotake](https://github.com/satotake) [#&#8203;8787](https://github.com/gohugoio/hugo/issues/8787) - Improve error messages, esp. when the server is running [`f2946da`](https://github.com/gohugoio/hugo/commit/f2946da9) [@&#8203;bep](https://github.com/bep) [#&#8203;9852](https://github.com/gohugoio/hugo/issues/9852) [#&#8203;9857](https://github.com/gohugoio/hugo/issues/9857) [#&#8203;9863](https://github.com/gohugoio/hugo/issues/9863) - tpl: Improve godoc [`6eea32b`](https://github.com/gohugoio/hugo/commit/6eea32bd) [@&#8203;bep](https://github.com/bep) - github: Add permissions to test action [`a6d5458`](https://github.com/gohugoio/hugo/commit/a6d54585) [@&#8203;nathannaveen](https://github.com/nathannaveen) - tpl/crypto: Add example for FNV32a [`e5f2173`](https://github.com/gohugoio/hugo/commit/e5f21731) [@&#8203;bep](https://github.com/bep) - releaser: Prepare repository for 0.99.0-DEV [`89c1655`](https://github.com/gohugoio/hugo/commit/89c1655e) [@&#8203;bep](https://github.com/bep) ### [`v0.98.0`](https://github.com/gohugoio/hugo/releases/tag/v0.98.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.97.3...v0.98.0) This release is mostly some important upgrades of Hugo's core dependencies, but we have also added `crypto.FNV32a` template function, which produces 32-bit unsigned integer hashes from a string. We have already many hash functions, but none of them produces an integer, which can be useful, e.g.: ```htmlbars {{ $mystring := "Hugo" }} {{ $colors := slice "orange" "blue" "green" "steel" "hotpink" }} {{ $hash := (crypto.FNV32a $mystring) }} {{ $i := mod $hash (len $colors) }} {{ $color := index $colors $i }} ``` This release represents **29 contributions by 3 contributors** to the main Hugo code base. Hugo now has: - 58549+ [stars](https://github.com/gohugoio/hugo/stargazers) - 428+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors) - 399+ [themes](http://themes.gohugo.io/) #### Notes - Deprecate page.Author and page.Authors [`097fd58`](https://github.com/gohugoio/hugo/commit/097fd588) [@&#8203;bep](https://github.com/bep) #### Changes - docs: Regen docs helper [`a4fff57`](https://github.com/gohugoio/hugo/commit/a4fff575) [@&#8203;bep](https://github.com/bep) - Some godoc adjustments and image struct renames [`fa80fe3`](https://github.com/gohugoio/hugo/commit/fa80fe3c) [@&#8203;bep](https://github.com/bep) - tpl/crypto: Add FNV32a [`1104753`](https://github.com/gohugoio/hugo/commit/11047534) [@&#8203;bep](https://github.com/bep) - markup/goldmark: Fix attribute nilpointer [`d7b54a4`](https://github.com/gohugoio/hugo/commit/d7b54a4c) [@&#8203;bep](https://github.com/bep) [#&#8203;9819](https://github.com/gohugoio/hugo/issues/9819) - deps: Update to gocloud.dev v0.24.0 [`13ceef7`](https://github.com/gohugoio/hugo/commit/13ceef75) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/mitchellh/mapstructure from 1.4.3 to 1.5.0 [`942d0dd`](https://github.com/gohugoio/hugo/commit/942d0dd2) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Update github.com/yuin/goldmark v1.4.11 => v1.4.12 [`a022ca2`](https://github.com/gohugoio/hugo/commit/a022ca27) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9054](https://github.com/gohugoio/hugo/issues/9054) [#&#8203;9756](https://github.com/gohugoio/hugo/issues/9756) [#&#8203;9757](https://github.com/gohugoio/hugo/issues/9757) - build(deps): bump github.com/evanw/esbuild from 0.14.36 to 0.14.38 [`d56b339`](https://github.com/gohugoio/hugo/commit/d56b3395) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Update github.com/tdewolff/minify/v2 v2.11.1 => v2.11.2 [`55e28c2`](https://github.com/gohugoio/hugo/commit/55e28c23) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9820](https://github.com/gohugoio/hugo/issues/9820) - Some godoc adjustments [`9a888c2`](https://github.com/gohugoio/hugo/commit/9a888c24) [@&#8203;bep](https://github.com/bep) - tpl/lang: Handle nil values in lang.Merge [`05b45c3`](https://github.com/gohugoio/hugo/commit/05b45c35) [@&#8203;bep](https://github.com/bep) - resources/page: Mark some more interface methods as internal [`625be77`](https://github.com/gohugoio/hugo/commit/625be77e) [@&#8203;bep](https://github.com/bep) - Deprecate page.Author and page.Authors [`097fd58`](https://github.com/gohugoio/hugo/commit/097fd588) [@&#8203;bep](https://github.com/bep) - releaser: Prepare repository for 0.98.0-DEV [`41cc4e4`](https://github.com/gohugoio/hugo/commit/41cc4e4b) [@&#8203;bep](https://github.com/bep) - releaser: Bump versions for release of 0.97.3 [`078053a`](https://github.com/gohugoio/hugo/commit/078053a4) [@&#8203;bep](https://github.com/bep) - releaser: Add release notes for 0.97.3 \[ci skip] [`7d9f888`](https://github.com/gohugoio/hugo/commit/7d9f8880) [@&#8203;bep](https://github.com/bep) - 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) - releaser: Prepare repository for 0.98.0-DEV [`5de6f8a`](https://github.com/gohugoio/hugo/commit/5de6f8a0) [@&#8203;bep](https://github.com/bep) - releaser: Bump versions for release of 0.97.2 [`5099abe`](https://github.com/gohugoio/hugo/commit/5099abe6) [@&#8203;bep](https://github.com/bep) - releaser: Add release notes for 0.97.2 \[ci skip] [`99ec88d`](https://github.com/gohugoio/hugo/commit/99ec88d4) [@&#8203;bep](https://github.com/bep) - Revert "Fix PostProcess regression for hugo server" [`6c35a1a`](https://github.com/gohugoio/hugo/commit/6c35a1a9) [@&#8203;bep](https://github.com/bep) - releaser: Prepare repository for 0.98.0-DEV [`363bc90`](https://github.com/gohugoio/hugo/commit/363bc907) [@&#8203;bep](https://github.com/bep) - releaser: Bump versions for release of 0.97.1 [`04efcb2`](https://github.com/gohugoio/hugo/commit/04efcb2a) [@&#8203;bep](https://github.com/bep) - releaser: Add release notes for 0.97.1 \[ci skip] [`4560725`](https://github.com/gohugoio/hugo/commit/45607255) [@&#8203;bep](https://github.com/bep) - 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) - deps: Upgrade github.com/bep/overlayfs v0.4.0 => v0.5.0 [`0093eaa`](https://github.com/gohugoio/hugo/commit/0093eaa6) [@&#8203;bep](https://github.com/bep) [#&#8203;9783](https://github.com/gohugoio/hugo/issues/9783) - releaser: Prepare repository for 0.98.0-DEV [`d0f731c`](https://github.com/gohugoio/hugo/commit/d0f731c0) [@&#8203;bep](https://github.com/bep) </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, 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.98.0 to chore(deps): update dependency gohugoio/hugo to v0.99.0 2022-05-16 14:02:15 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 01f0038055 to 700db6270d 2022-05-16 14:02:16 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.99.0 to chore(deps): update dependency gohugoio/hugo to v0.99.1 2022-05-18 15:02:22 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 700db6270d to a31738045d 2022-05-18 15:02:23 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.99.1 to chore(deps): update dependency gohugoio/hugo to v0.100.0 2022-05-31 13:02:18 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from a31738045d to d31d0f8908 2022-05-31 13:02:19 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.100.0 to chore(deps): update dependency gohugoio/hugo to v0.100.1 2022-06-01 13:02:28 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from d31d0f8908 to b4f3c8eb10 2022-06-01 13:02:29 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.100.1 to chore(deps): update dependency gohugoio/hugo to v0.100.2 2022-06-08 15:03:09 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from b4f3c8eb10 to da8fa2681d 2022-06-08 15:03:10 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.100.2 to chore(deps): update dependency gohugoio/hugo to v0.101.0 2022-06-16 11:03:28 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from da8fa2681d to 1fe53dbdf2 2022-06-16 11:03:30 +02:00 Compare
xoxys merged commit b192ffef65 into main 2022-06-20 21:31:49 +02:00
xoxys deleted branch renovate/gohugoio-hugo-0.x 2022-06-20 21:31:49 +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#52
No description provided.