chore(deps): update dependency gohugoio/hugo to v0.86.0 (#8)
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [gohugoio/hugo](https://github.com/gohugoio/hugo) | minor | `v0.85.0` -> `v0.86.0` |

---

### Release Notes

<details>
<summary>gohugoio/hugo</summary>

### [`v0.86.0`](https://github.com/gohugoio/hugo/releases/v0.86.0)

[Compare Source](https://github.com/gohugoio/hugo/compare/v0.85.0...v0.86.0)

This is release is a set of smaller fixes and improvements. Some of the more noteable:

You can now have a top level [cascade](https://gohugo.io/content-management/front-matter#front-matter-cascade) (or one per language, if needed) section in your site configuration (e.g. `config.toml`). This way you can control default front matter values from outside of the content files.

Hugo's [Menu system](https://gohugo.io/content-management/menus/) works good, but hasn't been particulary easy to set the active menu state for section pages without a menu defintion. We have had the option [Section Menu for Lazy Bloggers](https://gohugo.io/templates/menu-templates/#section-menu-for-lazy-bloggers). That helped for the common case, but we have now made it behave more sensible out of the box: `$page.HasMenuCurrent $sectionMenuEntry` will now always return true for any descendant of that section. To support this for menu defintions in the site config, we have added a new `pageRef` option on [MenuEntry](https://gohugo.io/variables/menus/#menu-entry-variables):

```toml
[[menus.main]]
pageRef = "blog"
### When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
url = "/blog"
```

Set `pageRef` to a value that [site.GetPage](https://gohugo.io/functions/getpage/) understands, and the menu entry will be correctly connected to the page.

This release represents **14 contributions by 2 contributors** to the main Hugo code base.
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:

-   53005+ [stars](https://github.com/gohugoio/hugo/stargazers)
-   431+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
-   370+ [themes](http://themes.gohugo.io/)

#### Enhancements

##### Other

-   Simplify "active menu" logic for section menus [d831d2fc](d831d2fce8) [@&#8203;bep](https://github.com/bep) [#&#8203;8776](https://github.com/gohugoio/hugo/issues/8776)
-   Make keepWhitespace = true default for HTML [c19f65f9](c19f65f956) [@&#8203;bep](https://github.com/bep) [#&#8203;8771](https://github.com/gohugoio/hugo/issues/8771)
-   Make FileMeta a struct [022c4795](022c479551) [@&#8203;bep](https://github.com/bep) [#&#8203;8749](https://github.com/gohugoio/hugo/issues/8749)
-   Add tabindex="0" to default <pre> wrapper [f27e5424](f27e542442) [@&#8203;rhymes](https://github.com/rhymes) [#&#8203;7194](https://github.com/gohugoio/hugo/issues/7194)
-   Rename/reorder the hook methods [80566481](805664818d) [@&#8203;bep](https://github.com/bep) [#&#8203;8755](https://github.com/gohugoio/hugo/issues/8755)
-   Support auto links in render hook [ee3d2bb1](ee3d2bb1d3) [@&#8203;bep](https://github.com/bep) [#&#8203;8755](https://github.com/gohugoio/hugo/issues/8755)
-   Adjust a test helper [eb2a5003](eb2a500367) [@&#8203;bep](https://github.com/bep)
-   Add config.cascade [5cb52c23](5cb52c2315) [@&#8203;bep](https://github.com/bep) [#&#8203;8741](https://github.com/gohugoio/hugo/issues/8741)
-   Regenerate image golden testdata [30eea391](30eea3915b) [@&#8203;bep](https://github.com/bep) [#&#8203;8729](https://github.com/gohugoio/hugo/issues/8729)

#### Fixes

##### Other

-   Fix panic on invalid config in "hugo mod get" and similar [351ed0f5](351ed0f569) [@&#8203;bep](https://github.com/bep) [#&#8203;8773](https://github.com/gohugoio/hugo/issues/8773)
-   Fix Params case handling for menu items defined in site config [634481ba](634481ba8c) [@&#8203;bep](https://github.com/bep) [#&#8203;8775](https://github.com/gohugoio/hugo/issues/8775)
-   Fix default values when loading from config dir [ae6cf93c](ae6cf93c84) [@&#8203;bep](https://github.com/bep) [#&#8203;8763](https://github.com/gohugoio/hugo/issues/8763)
-   Fix the deprecation error/warn log levels [a70da2b7](a70da2b74a) [@&#8203;bep](https://github.com/bep)
-   Fix transparency problem when converting 32-bit images to WebP [8f40f34c](8f40f34cd1) [@&#8203;bep](https://github.com/bep) [#&#8203;8729](https://github.com/gohugoio/hugo/issues/8729)

</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, check this box.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: docker/hugo#8
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
This commit is contained in:
Renovator Bot 2021-07-25 14:30:45 +02:00 committed by Robert Kaussow
parent 2374a6e19b
commit a1d9219c1c
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/hug
ARG BUILD_VERSION
# renovate: datasource=github-releases depName=gohugoio/hugo
ENV HUGO_VERSION="${BUILD_VERSION:-v0.85.0}"
ENV HUGO_VERSION="${BUILD_VERSION:-v0.86.0}"
ENV HUGO_ENV=production