chore(deps): update dependency gohugoio/hugo to v0.111.3 - autoclosed #86

Closed
renovator wants to merge 1 commits from renovate/gohugoio-hugo-0-x into main
Member

This PR contains the following updates:

Package Update Change
gohugoio/hugo minor v0.105.0 -> v0.111.3

Release Notes

gohugoio/hugo

v0.111.3

Compare Source

Bug fixes

Improvements

Dependency Updates

Documentation

v0.111.2

Compare Source

Bug fixes

Documentation

Build Setup

v0.111.1

Compare Source

This fixes the "page" not defined issue in Hugo 0.111.0. eef23a7 @​bep #​10774

v0.111.0

Compare Source

Hugo 0.111.0 is the second Hugo release of the year. Note: There's already a patch release.

Notable news

Page Fragments

We added the new .Fragments method on Page as part of the Related Content feature refresh (below), but it's plenty useful on its own, and has been long sought after by Hugo users.

It has many uses: Build table of contents, check if a page fragment (heading identifier) exists on a page, check for duplicate heading identifiers, start table of contents from a specific heading identifier. See the Hugo Documentation for more information

We have reworked the Related Content API so it's now one method .Related that takes either a Page or an options map. We have also introduced a new type attribute on the index configuration with the new type fragments. See this for details, but to add some weight to the page titles in the Related Content configuration you can do this:

[related]
threshold    = 20
includeNewer = true
toLower      = false
[[related.indices]]
name        = "fragmentrefs"
type        = "fragments"
applyFilter = false
weight = 50

See the Hugo Documentation for more.

Global page func

Note: There was a bug in this release that made this new feature not working, so you need to upgrade to Hugo 0.111.1. We blame it on Go.

Hugo almost always passes a Page as the data context into the top level template (e.g. single.html) (the one exception is the multihost sitemap template). This means that you can access the current page with the . variable in the template.

But when you're deeply nested inside .Render, partial etc., accessing that Page object isn't always practical or possible.

For this reason, Hugo now provides a global page function that you can use to access the current page from anywhere in any template.

{{ page.Title }}

Notes

  • For the Goldmark markdown hander, we now split parse and render for Goldmark. This was motivated by the new fragments support in Related Content, but it has some other side effects: If you only need a page's table of contents, we now skip the rendering step, which makes it faster, but it also means that you can access the page .Fragments structure from everywhere, even in render hooks (271318a @​bep #​10750)
  • tpl/tplimpl: Remove the Google News internal template 66f94b4 @​jmooring
  • Only invoke a given cached partial once 4ef9baf @​bep #​4086 #​9588

Bug fixes

Improvements

Dependency Updates

Documentation

Build Setup

v0.110.0

Compare Source

Note

Bug fixes

Improvements

Dependency Updates

Documentation

Build Setup

v0.109.0

Compare Source

Hugo v0.109.0 is the last release of 2022 – and with that we're wishing all of you a very merry Christmas and a prosperous new year[^1].

Notable new features

Pass variables to SCSS/SASS

Hugo has had great SCSS/SASS support, but passing variables (e.g. theme colours from config) down to the transpiler has been much harder than it should.

In Hugo v0.109.0 we added a new vars option and you can finally just do:

{{ $vars := dict "color1" "blue" "color2" "green" "font_size" "24px" }}
{{ $opts := (dict "transpiler" "dartsass" "outputStyle" "compressed" "vars" $vars ) }}
{{ $r := resources.Get "scss/main.scss" | toCSS $opts }}

And then in the SCSS file:

@​use "hugo:vars" as v;

p {
    color: v.$color1;
    font-size: v.$font-size;
}

More examples here.

Hugo Module Workspaces

Workspace support was added in Go 1.18, and in this release Hugo finally gets solid support for it.

A common use case for a workspace is to simplify local development of a site with its theme modules.

A workspace can be configured in a *.work file and activated with the module.workspace setting, which for this use is commonly controlled via the HUGO_MODULE_WORKSPACE OS environment variable.

See the hugo.work file in the Hugo Docs repo for an example:

go 1.19

use .
use ../gohugoioTheme

Using the use directive, list all the modules you want to work on, pointing to its relative location. As in the example above, it's recommended to always include the main project (the ".") in the list.

With that you can start the Hugo server with that workspace enabled:

HUGO_MODULE_WORKSPACE=hugo.work hugo server --ignoreVendorPaths "**"

The --ignoreVendorPaths flag is added above to ignore any of the vendored dependencies inside _vendor. If you don't use vendoring, you don't need that flag. But now the server is set up watching the files and directories in the workspace and you can see your local edits reloaded.

Breadcrumbs

We have added a new .Ancestors method on Page that walks up the tree to the home page. With this, breadcrumbs templates can be greatly simplified:

<ol>
  <ul>
    {{- range .Ancestors.Reverse }}
      <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
    {{- end }}
    <li class="active" aria-current="page">
      <a href="{{ .Permalink }}">{{ .Title }}</a>
    </li>
  </ul>
</ol>
The path to /public now available in PostCSS

So you can do process.env.HUGO_PUBLISHDIR in your postcss.config.js to figure out where Hugo publishes
its files.

Note that the value will always be an absolute file path and will point to a directory on disk even when running hugo server in memory mode.

If you write to this folder from PostCSS when running the server, you could run the server with one of these flags:

hugo server --renderToDisk
hugo server --renderStaticToDisk

Note

Bug fixes

  • If you use the legacy libsass transpiler in toCSS and uses the cached build to avoid having the extended version installed on the CI server, you need to rebuild those assets and commit them to source control (e.g. with hugo --gc).
  • tpl/resources: Fix data race in ToCSS aa2c724 @​bep #​10542
  • tocss: Fix unquote case with double quotes 5d5f0a2 @​septs #​10555
  • resources/js: Fix some import discrepancies between Hugo and ESBuild b54de1b @​bep #​10527
  • parser/metadecoders: Fix spelling e0e63f3 @​lacamera

Improvements

Dependency Updates

Documentation

Build Setup

^1]: We're working on some bigger and even more exiting Hugo features that will be ready early next year. Stay tuned!

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

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

With Hugo `v0.108.0` you can render standalone Markdown images without a surrounding paragraph. Both the HTML- and CommonMark-specification defines image as an inline element. For Markdown, this has meant that if you put an image on its own (not *inlined* in another paragraph), it would be wrapped in `<p></p>` tags, even if you provide your own [Render Hook Template](https://gohugo.io/templates/render-hooks/).

Now you can get by this annoyance by setting `markup.goldmark.parser.wrapStandAloneImageWithinParagraph = false`

```toml
[markup]
  [markup.goldmark]
    [markup.goldmark.parser]
      wrapStandAloneImageWithinParagraph = false
      [markup.goldmark.parser.attribute]
        block = true
```

In the above we have also enabled attribute support for Markdown blocks to illustrate another nice side effect of this; it's now possible to use Markdown attributes (e.g. CSS classes) on standalone images:

```md
This is an inline image: ![Inline Image](/inline.jpg). Some more text.

![Block Image](/block.jpg)
{.blue}
```

The images in the above Markdown example would, given the hook template below, be rendered wrapped in a `figure` element with the `blue` CSS class applied in the latter example.

```handlebars
{{ if .IsBlock }}<figure class="{{ .Attributes.class }}"><img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" /></figure>
{{ else }}<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" />{{ end }}
```

Two new fields are added to the render context passed to image render hooks:

-   `IsBlock`: Returns true if this is a standalone image and the config option [markup.goldmark.parser.wrapStandAloneImageWithinParagraph](https://gohugo.io/getting-started/configuration-markup/#goldmark) is disabled.
-   `Ordinal`: Zero-based ordinal for all the images in the current document.

#### Bug fixes

-   common/hugio: Fix multiWriteCloser.Close [`5067775`](https://github.com/gohugoio/hugo/commit/5067775a) [@&#8203;bep](https://github.com/bep) [#&#8203;10505](https://github.com/gohugoio/hugo/issues/10505)
-   tpl/collections: Fix some index cases where the indices given is a slice and be more lenient with nil inputs [`d373774`](https://github.com/gohugoio/hugo/commit/d373774c) [@&#8203;bep](https://github.com/bep) [#&#8203;10489](https://github.com/gohugoio/hugo/issues/10489)

#### Improvements

-   Make the hugo env non verbose output slightly more verbose [`f97544a`](https://github.com/gohugoio/hugo/commit/f97544a8) [@&#8203;bep](https://github.com/bep)
-   Add dart-sass-embedded version info to hugo env -v [`d8efe08`](https://github.com/gohugoio/hugo/commit/d8efe085) [@&#8203;bep](https://github.com/bep)
-   tpl/embedded: Make Open Graph's series optional [`b82b547`](https://github.com/gohugoio/hugo/commit/b82b547a) [@&#8203;razonyang](https://github.com/razonyang)
-   dartsass: Add sourceMapIncludeSources option [`e93138d`](https://github.com/gohugoio/hugo/commit/e93138df) [@&#8203;bep](https://github.com/bep)
-   github: Update Dart Sass Embedded to 1.56.1 [`7d16c3c`](https://github.com/gohugoio/hugo/commit/7d16c3c0) [@&#8203;bep](https://github.com/bep)
-   markup/goldmark: Add removeSurroundingParagraph for Markdown images [`63126c6`](https://github.com/gohugoio/hugo/commit/63126c63) [@&#8203;bep](https://github.com/bep) [#&#8203;8362](https://github.com/gohugoio/hugo/issues/8362) [#&#8203;10492](https://github.com/gohugoio/hugo/issues/10492) [#&#8203;10494](https://github.com/gohugoio/hugo/issues/10494) [#&#8203;10501](https://github.com/gohugoio/hugo/issues/10501)
-   tpl/tplimpl: Allow alternate comment syntax [`0b976d2`](https://github.com/gohugoio/hugo/commit/0b976d2b) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10495](https://github.com/gohugoio/hugo/issues/10495)
-   resources: Increase timeout for http.Client [`a49e51f`](https://github.com/gohugoio/hugo/commit/a49e51fd) [@&#8203;dirtymew](https://github.com/dirtymew) [#&#8203;10478](https://github.com/gohugoio/hugo/issues/10478)
-   config/security: Add CI env var to whitelist [`dc44bca`](https://github.com/gohugoio/hugo/commit/dc44bca9) [@&#8203;septs](https://github.com/septs)
-   tpl: Use consistent delimiter spacing in examples [`b8d5c37`](https://github.com/gohugoio/hugo/commit/b8d5c378) [@&#8203;jmooring](https://github.com/jmooring)

#### Dependency Updates

-   deps: Upgrade github.com/bep/godartsass v0.15.0 => v0.16.0 [`f5b5b71`](https://github.com/gohugoio/hugo/commit/f5b5b71c) [@&#8203;bep](https://github.com/bep)
-   build(deps): bump github.com/getkin/kin-openapi from 0.109.0 to 0.110.0 [`50549c8`](https://github.com/gohugoio/hugo/commit/50549c86) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/evanw/esbuild from 0.15.16 to 0.15.18 [`535ea8c`](https://github.com/gohugoio/hugo/commit/535ea8cc) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump golang.org/x/text from 0.4.0 to 0.5.0 [`8bbec42`](https://github.com/gohugoio/hugo/commit/8bbec426) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/evanw/esbuild from 0.15.15 to 0.15.16 [`0bfa293`](https://github.com/gohugoio/hugo/commit/0bfa293d) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   deps: Upgrade github.com/bep/godartsass v0.14.0 => v0.15.0 [`83080df`](https://github.com/gohugoio/hugo/commit/83080df6) [@&#8203;bep](https://github.com/bep)

#### Documentation

-   docs: Add basic doc for wrapStandAloneImageWithinParagraph etc. [`de9c554`](https://github.com/gohugoio/hugo/commit/de9c5542) [@&#8203;bep](https://github.com/bep) [#&#8203;10492](https://github.com/gohugoio/hugo/issues/10492)
-   tpl: Misco GoDoc improvements [`7d5e3ab`](https://github.com/gohugoio/hugo/commit/7d5e3ab8) [@&#8203;bep](https://github.com/bep)
-   docs: Regen docs helper [`75f782a`](https://github.com/gohugoio/hugo/commit/75f782a5) [@&#8203;bep](https://github.com/bep)

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

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

This release is mostly interesting if you do code highlighting. We fixed a bottle neck which should show a significant performance boost for sites using code highlighting. Hugo's [gohugo.io](https://gohugo.io/) docs site builds ~20% faster. Also, Chroma, the highlighting library, is upgraded to [v2.4.0](https://github.com/alecthomas/chroma/releases/tag/v2.4.0) with new lexers and lots of improvements.

#### Bug fixes

-   hugo/parser: Fix shortcode boolean param parsing [`00fe7e0`](https://github.com/gohugoio/hugo/commit/00fe7e04) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10451](https://github.com/gohugoio/hugo/issues/10451)

#### Improvements

-   Add a cache for lexers.Get [`7855b47`](https://github.com/gohugoio/hugo/commit/7855b47f) [@&#8203;bep](https://github.com/bep)
-   markup/goldmark: Improve benchmark [`34d1150`](https://github.com/gohugoio/hugo/commit/34d1150d) [@&#8203;bep](https://github.com/bep)
-   commands: Create assets directory with new site [`85e2ac1`](https://github.com/gohugoio/hugo/commit/85e2ac1a) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10460](https://github.com/gohugoio/hugo/issues/10460)

#### Dependency Updates

-   build(deps): bump github.com/getkin/kin-openapi from 0.108.0 to 0.109.0 [`6a004b8`](https://github.com/gohugoio/hugo/commit/6a004b8d) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/evanw/esbuild from 0.15.14 to 0.15.15 [`0923622`](https://github.com/gohugoio/hugo/commit/09236224) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/frankban/quicktest from 1.14.3 to 1.14.4 [`7477672`](https://github.com/gohugoio/hugo/commit/74776726) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump golang.org/x/tools from 0.2.0 to 0.3.0 [`63f7f0f`](https://github.com/gohugoio/hugo/commit/63f7f0ff) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   deps: Upgrade github.com/alecthomas/chroma/v2 v2.4.0 [`bcb62d8`](https://github.com/gohugoio/hugo/commit/bcb62d89) [@&#8203;bep](https://github.com/bep)

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

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

#### Bug fixes

-   Fix taxonomy weight sort regression [`52ea07d`](https://github.com/gohugoio/hugo/commit/52ea07d2) [@&#8203;bep](https://github.com/bep) [#&#8203;10406](https://github.com/gohugoio/hugo/issues/10406)
-   tlp/resources: resources.Get returns nil when given empty string [`db945a6`](https://github.com/gohugoio/hugo/commit/db945a6e) [@&#8203;shifterbit](https://github.com/shifterbit)
-   tpl/internal: Sync go_templates [`f6ab955`](https://github.com/gohugoio/hugo/commit/f6ab9553) [@&#8203;bep](https://github.com/bep) [#&#8203;10411](https://github.com/gohugoio/hugo/issues/10411)

#### Dependency Updates

-   build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.4 to 2.0.6 [`bafb389`](https://github.com/gohugoio/hugo/commit/bafb389b) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/evanw/esbuild from 0.15.13 to 0.15.14 [`cdd83bf`](https://github.com/gohugoio/hugo/commit/cdd83bf3) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   deps: Update the libweb version string [`e00220a`](https://github.com/gohugoio/hugo/commit/e00220a0) [@&#8203;bep](https://github.com/bep)
-   deps: Upgrade github.com/bep/gowebp v0.1.0 => v0.2.0 [`a662dda`](https://github.com/gohugoio/hugo/commit/a662ddae) [@&#8203;bep](https://github.com/bep)
-   build(deps): bump github.com/yuin/goldmark from 1.5.2 to 1.5.3 [`fe08d35`](https://github.com/gohugoio/hugo/commit/fe08d35f) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/spf13/afero from 1.9.2 to 1.9.3 [`4b675dd`](https://github.com/gohugoio/hugo/commit/4b675ddd) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/getkin/kin-openapi from 0.107.0 to 0.108.0 [`24eaa29`](https://github.com/gohugoio/hugo/commit/24eaa290) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/clbanning/mxj/v2 from 2.5.6 to 2.5.7 [`58a98c7`](https://github.com/gohugoio/hugo/commit/58a98c77) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump golang.org/x/net from 0.1.0 to 0.2.0 [`900904f`](https://github.com/gohugoio/hugo/commit/900904fd) [@&#8203;dependabot](https://github.com/dependabot)\[bot]
-   build(deps): bump github.com/evanw/esbuild from 0.15.12 to 0.15.13 [`24eca0c`](https://github.com/gohugoio/hugo/commit/24eca0cb) [@&#8203;dependabot](https://github.com/dependabot)\[bot]

#### Documentation

-   docs: Regen CLI docs [`0a019a1`](https://github.com/gohugoio/hugo/commit/0a019a1a) [@&#8203;bep](https://github.com/bep)
-   docs: Regenerate docs helper [`9f7fb0a`](https://github.com/gohugoio/hugo/commit/9f7fb0a7) [@&#8203;bep](https://github.com/bep)
-   Add Go 1.16+ install method to README [`60e0e2c`](https://github.com/gohugoio/hugo/commit/60e0e2c1) [@&#8203;vgnh](https://github.com/vgnh)
-   readme: Update ToC [`13adf3e`](https://github.com/gohugoio/hugo/commit/13adf3e0) [@&#8203;vgnh](https://github.com/vgnh)

</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:eyJjcmVhdGVkSW5WZXIiOiIzNC42My4xIiwidXBkYXRlZEluVmVyIjoiMzQuMTYwLjAifQ==-->
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gohugoio/hugo](https://github.com/gohugoio/hugo) | minor | `v0.105.0` -> `v0.111.3` | --- ### Release Notes <details> <summary>gohugoio/hugo</summary> ### [`v0.111.3`](https://github.com/gohugoio/hugo/releases/tag/v0.111.3) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.111.2...v0.111.3) #### Bug fixes - Fix "unknown shortcode token" when calling shortcode within fenced code block [`e7148f3`](https://github.com/gohugoio/hugo/commit/e7148f33) [@&#8203;bep](https://github.com/bep) [#&#8203;10819](https://github.com/gohugoio/hugo/issues/10819) - Don't fail when calling Paginate with an empty pages.PagesGroup [`34a86e1`](https://github.com/gohugoio/hugo/commit/34a86e13) [@&#8203;bep](https://github.com/bep) [#&#8203;10802](https://github.com/gohugoio/hugo/issues/10802) - Improve error message for unclosed shortcode with inner content [`9818724`](https://github.com/gohugoio/hugo/commit/9818724b) [@&#8203;deining](https://github.com/deining) #### Improvements - tpl: Add hasSuffix alias [`d171d15`](https://github.com/gohugoio/hugo/commit/d171d154) [@&#8203;jfish2](https://github.com/jfish2) - Run gofmt -s on source files [`d55af2a`](https://github.com/gohugoio/hugo/commit/d55af2ab) [@&#8203;deining](https://github.com/deining) - tpl/math: Allow multi numbers in add, sub, mul, div, min and max [`84201e8`](https://github.com/gohugoio/hugo/commit/84201e8d) [@&#8203;septs](https://github.com/septs) - server: Replace golang.org/x/net/context with context [`0f01bd4`](https://github.com/gohugoio/hugo/commit/0f01bd46) [@&#8203;alexandear](https://github.com/alexandear) - watcher: use time.NewTicker to prevent leaks [`02ab77d`](https://github.com/gohugoio/hugo/commit/02ab77da) [@&#8203;alexandear](https://github.com/alexandear) - ensure we default to 10 correctly [`873be9f`](https://github.com/gohugoio/hugo/commit/873be9f9) [@&#8203;davidejones](https://github.com/davidejones) - switch transfers to workers [`bebb2b8`](https://github.com/gohugoio/hugo/commit/bebb2b8d) [@&#8203;davidejones](https://github.com/davidejones) - customize parallel transfer count [`e6f029b`](https://github.com/gohugoio/hugo/commit/e6f029bd) [@&#8203;davidejones](https://github.com/davidejones) - metadecoders: Add support for native org dates in frontmatter PR [#&#8203;7433](https://github.com/gohugoio/hugo/issues/7433) added support for Org timestamps for the DATE header. This PR widens the support with additional front matter headers LASTMOD, PUBLISHDATE and EXPIRYDATE. [`bdbfacb`](https://github.com/gohugoio/hugo/commit/bdbfacb8) [@&#8203;johannesengl](https://github.com/johannesengl) [#&#8203;8536](https://github.com/gohugoio/hugo/issues/8536) #### Dependency Updates - deps: Update go-org to v1.6.6 [`1c841ec`](https://github.com/gohugoio/hugo/commit/1c841ec9) [@&#8203;niklasfasching](https://github.com/niklasfasching) #### Documentation - docs: Improve examples of variadic math functions [`b6f44aa`](https://github.com/gohugoio/hugo/commit/b6f44aaf) [@&#8203;jmooring](https://github.com/jmooring) - readme: Update dependency list [`04b9811`](https://github.com/gohugoio/hugo/commit/04b98116) [@&#8203;deining](https://github.com/deining) ### [`v0.111.2`](https://github.com/gohugoio/hugo/releases/tag/v0.111.2) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.111.1...v0.111.2) #### Bug fixes - Fix .Fragments when called cross sites on uninitialized output format [`b83050c`](https://github.com/gohugoio/hugo/commit/b83050cb) [@&#8203;bep](https://github.com/bep) [#&#8203;10794](https://github.com/gohugoio/hugo/issues/10794) - Fix "context canceled" with partial [`3bbeb56`](https://github.com/gohugoio/hugo/commit/3bbeb568) [@&#8203;bep](https://github.com/bep) [#&#8203;10789](https://github.com/gohugoio/hugo/issues/10789) - cache: Fix --gc failure on Windows [`184a67a`](https://github.com/gohugoio/hugo/commit/184a67ac) [@&#8203;alexandear](https://github.com/alexandear) - snap: Fix dart-sass-embedded installation [`a950950`](https://github.com/gohugoio/hugo/commit/a950950f) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10783](https://github.com/gohugoio/hugo/issues/10783) - Allow page.TableOfContents on self in shortcode [`df5608f`](https://github.com/gohugoio/hugo/commit/df5608f8) [@&#8203;bep](https://github.com/bep) [#&#8203;10791](https://github.com/gohugoio/hugo/issues/10791) - Page context handling in i18n [`6c798eb`](https://github.com/gohugoio/hugo/commit/6c798eba) [@&#8203;bep](https://github.com/bep) [#&#8203;10782](https://github.com/gohugoio/hugo/issues/10782) - Work around --gc failure on Windows <= 10 [`ec1c97e`](https://github.com/gohugoio/hugo/commit/ec1c97e7) [@&#8203;bep](https://github.com/bep) [#&#8203;10781](https://github.com/gohugoio/hugo/issues/10781) - Correct typos in Go comments [`36ce3a4`](https://github.com/gohugoio/hugo/commit/36ce3a4a) [@&#8203;alexandear](https://github.com/alexandear) #### Documentation - tpl/partial: Consolidate GoDoc [`f56ce01`](https://github.com/gohugoio/hugo/commit/f56ce01a) [@&#8203;bep](https://github.com/bep) #### Build Setup - Update to Go 1.20.1 [`f10009e`](https://github.com/gohugoio/hugo/commit/f10009e7) [@&#8203;bep](https://github.com/bep) [#&#8203;10785](https://github.com/gohugoio/hugo/issues/10785) ### [`v0.111.1`](https://github.com/gohugoio/hugo/releases/tag/v0.111.1) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.111.0...v0.111.1) This fixes the "page" not defined issue in Hugo `0.111.0`. [`eef23a7`](https://github.com/gohugoio/hugo/commit/eef23a7f) [@&#8203;bep](https://github.com/bep) [#&#8203;10774](https://github.com/gohugoio/hugo/issues/10774) ### [`v0.111.0`](https://github.com/gohugoio/hugo/releases/tag/v0.111.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.110.0...v0.111.0) Hugo `0.111.0` is the second Hugo release of the year. **Note:** There's already a [patch release](https://github.com/gohugoio/hugo/releases/tag/v0.111.1). #### Notable news ##### Page Fragments We added the new `.Fragments` method on `Page` as part of the Related Content feature refresh (below), but it's plenty useful on its own, and has been long sought after by Hugo users. It has many uses: Build table of contents, check if a page fragment (heading identifier) exists on a page, check for duplicate heading identifiers, start table of contents from a specific heading identifier. See the [Hugo Documentation](https://gohugo.io/variables/page/#page-fragments) for more information ##### Indexing of Page Fragments in Related Content We have reworked the Related Content API so it's now one method `.Related` that takes either a `Page` or an options map. We have also introduced a new `type` attribute on the index configuration with the new type `fragments`. See [this](https://gohugo.io/content-management/related/#index-content-headings-in-related-content) for details, but to add some weight to the *page titles* in the Related Content configuration you can do this: ```toml [related] threshold = 20 includeNewer = true toLower = false [[related.indices]] name = "fragmentrefs" type = "fragments" applyFilter = false weight = 50 ``` See the [Hugo Documentation](https://gohugo.io/content-management/related/) for more. ##### Global page func **Note:** There was a bug in this release that made this new feature not working, so you need to upgrade to [Hugo 0.111.1](https://github.com/gohugoio/hugo/releases/tag/v0.111.0). We blame it on [Go](https://github.com/golang/go/issues/58823). Hugo almost always passes a `Page` as the data context into the top level template (e.g. `single.html`) (the one exception is the multihost sitemap template). This means that you can access the current page with the `.` variable in the template. But when you're deeply nested inside `.Render`, partial etc., accessing that `Page` object isn't always practical or possible. For this reason, Hugo now provides a global `page` function that you can use to access the current page from anywhere in any template. ```go-html-template {{ page.Title }} ``` #### Notes - For the Goldmark markdown hander, we now split parse and render for Goldmark. This was motivated by the new fragments support in Related Content, but it has some other side effects: If you only need a page's table of contents, we now skip the rendering step, which makes it faster, but it also means that you can access the page `.Fragments` structure from everywhere, even in render hooks ([`271318a`](https://github.com/gohugoio/hugo/commit/271318ad) [@&#8203;bep](https://github.com/bep) [#&#8203;10750](https://github.com/gohugoio/hugo/issues/10750)) - tpl/tplimpl: Remove the Google News internal template [`66f94b4`](https://github.com/gohugoio/hugo/commit/66f94b49) [@&#8203;jmooring](https://github.com/jmooring) - Only invoke a given cached partial once [`4ef9baf`](https://github.com/gohugoio/hugo/commit/4ef9baf5) [@&#8203;bep](https://github.com/bep) [#&#8203;4086](https://github.com/gohugoio/hugo/issues/4086) [#&#8203;9588](https://github.com/gohugoio/hugo/issues/9588) #### Bug fixes - strings: fix Truncate behavior for formatted html [`c0d15a2`](https://github.com/gohugoio/hugo/commit/c0d15a28) [@&#8203;khayyamsaleem](https://github.com/khayyamsaleem) [#&#8203;10399](https://github.com/gohugoio/hugo/issues/10399) - Fix shortcode error when closing without .Inner [`ae48507`](https://github.com/gohugoio/hugo/commit/ae48507d) [@&#8203;bep](https://github.com/bep) [#&#8203;10672](https://github.com/gohugoio/hugo/issues/10672) - create: Fix typo in error message [`2dad13c`](https://github.com/gohugoio/hugo/commit/2dad13c0) [@&#8203;aaronhooper](https://github.com/aaronhooper) - resource_transformers/tocss: Fixed hugo:vars casting [`a1a9c08`](https://github.com/gohugoio/hugo/commit/a1a9c08b) [@&#8203;acclassic](https://github.com/acclassic) [#&#8203;10632](https://github.com/gohugoio/hugo/issues/10632) - markup: Fix linenos codeblock hl option case regression [`73ece30`](https://github.com/gohugoio/hugo/commit/73ece30d) [@&#8203;khayyamsaleem](https://github.com/khayyamsaleem) [#&#8203;10682](https://github.com/gohugoio/hugo/issues/10682) - Fix slow HTML elements collector for the pre case [`f9fc0e0`](https://github.com/gohugoio/hugo/commit/f9fc0e04) [@&#8203;bep](https://github.com/bep) [#&#8203;10698](https://github.com/gohugoio/hugo/issues/10698) - commands: Fix server url rewrites (http status 200) [`1477d0b`](https://github.com/gohugoio/hugo/commit/1477d0ba) [@&#8203;bep](https://github.com/bep) [#&#8203;10668](https://github.com/gohugoio/hugo/issues/10668) - Fix description of collections.Uniq [`4ccc8cf`](https://github.com/gohugoio/hugo/commit/4ccc8cfb) [@&#8203;jmooring](https://github.com/jmooring) - Fix shortcode detection in RenderString [`1688583`](https://github.com/gohugoio/hugo/commit/16885833) [@&#8203;bep](https://github.com/bep) [#&#8203;10654](https://github.com/gohugoio/hugo/issues/10654) #### Improvements - Replace deprecated ioutil with io and os [`d453c12`](https://github.com/gohugoio/hugo/commit/d453c127) [@&#8203;alexandear](https://github.com/alexandear) - build: Bump build images [`60e6fa7`](https://github.com/gohugoio/hugo/commit/60e6fa79) [@&#8203;bep](https://github.com/bep) - build: Update Linux ARM build image [`7e51ba0`](https://github.com/gohugoio/hugo/commit/7e51ba03) [@&#8203;bep](https://github.com/bep) - tpl/tplimpl: Remove the Google News internal template [`66f94b4`](https://github.com/gohugoio/hugo/commit/66f94b49) [@&#8203;jmooring](https://github.com/jmooring) - tpl/strings: Adjust benchmark [`2a61910`](https://github.com/gohugoio/hugo/commit/2a61910e) [@&#8203;bep](https://github.com/bep) - tpl/strings: Add BenchmarkTruncate [`079d1b6`](https://github.com/gohugoio/hugo/commit/079d1b65) [@&#8203;bep](https://github.com/bep) - Misc ioutil deprecation adjustments [`a669467`](https://github.com/gohugoio/hugo/commit/a669467d) [@&#8203;bep](https://github.com/bep) [#&#8203;10732](https://github.com/gohugoio/hugo/issues/10732) - Remove unused temp directory [`e314410`](https://github.com/gohugoio/hugo/commit/e3144103) [@&#8203;alexandear](https://github.com/alexandear) - exif: Return the proper exposure time value in some special cases [`39cc3a2`](https://github.com/gohugoio/hugo/commit/39cc3a2a) [@&#8203;WaltCuller](https://github.com/WaltCuller) [#&#8203;10738](https://github.com/gohugoio/hugo/issues/10738) - Add a page template func [`ce524d0`](https://github.com/gohugoio/hugo/commit/ce524d0b) [@&#8203;bep](https://github.com/bep) [#&#8203;9339](https://github.com/gohugoio/hugo/issues/9339) - dartsass: Import CSS without extension at compile time [`2662faf`](https://github.com/gohugoio/hugo/commit/2662faf6) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10592](https://github.com/gohugoio/hugo/issues/10592) - Split parse and render for Goldmark [`271318a`](https://github.com/gohugoio/hugo/commit/271318ad) [@&#8203;bep](https://github.com/bep) [#&#8203;10750](https://github.com/gohugoio/hugo/issues/10750) - related: Add config option cardinalityThreshold [`e442a63`](https://github.com/gohugoio/hugo/commit/e442a63b) [@&#8203;bep](https://github.com/bep) [#&#8203;10744](https://github.com/gohugoio/hugo/issues/10744) - Throw an error when shortcode is expected to be closed [`7d78a49`](https://github.com/gohugoio/hugo/commit/7d78a498) [@&#8203;bep](https://github.com/bep) [#&#8203;10675](https://github.com/gohugoio/hugo/issues/10675) - Add some shortcode testcases [`0dbeac8`](https://github.com/gohugoio/hugo/commit/0dbeac80) [@&#8203;bep](https://github.com/bep) [#&#8203;10671](https://github.com/gohugoio/hugo/issues/10671) - sass: Remove some unused leftover code [`b99d073`](https://github.com/gohugoio/hugo/commit/b99d073c) [@&#8203;bep](https://github.com/bep) - resources/sass: Remove debug statements [`e965cb6`](https://github.com/gohugoio/hugo/commit/e965cb67) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10470](https://github.com/gohugoio/hugo/issues/10470) - page: Move the cache double check right after the lock [`586fea0`](https://github.com/gohugoio/hugo/commit/586fea0d) [@&#8203;bep](https://github.com/bep) - page: Add some concurrency to the building of the related page index [`fa2d7ad`](https://github.com/gohugoio/hugo/commit/fa2d7adf) [@&#8203;bep](https://github.com/bep) [#&#8203;10711](https://github.com/gohugoio/hugo/issues/10711) - related: Adjust benchmark [`4346987`](https://github.com/gohugoio/hugo/commit/4346987f) [@&#8203;bep](https://github.com/bep) - tocss: Simplify the hugo:vars type handling [`ecf3cd5`](https://github.com/gohugoio/hugo/commit/ecf3cd51) [@&#8203;bep](https://github.com/bep) [#&#8203;10632](https://github.com/gohugoio/hugo/issues/10632) - Adjust tests for GO 1.20 [`6abd15e`](https://github.com/gohugoio/hugo/commit/6abd15e7) [@&#8203;bep](https://github.com/bep) [#&#8203;10691](https://github.com/gohugoio/hugo/issues/10691) - tpl/internal: Sync Go template src to Go 1.20 [`094135f`](https://github.com/gohugoio/hugo/commit/094135ff) [@&#8203;bep](https://github.com/bep) [#&#8203;10691](https://github.com/gohugoio/hugo/issues/10691) - Add page fragments support to Related [`90da766`](https://github.com/gohugoio/hugo/commit/90da7664) [@&#8203;bep](https://github.com/bep) [#&#8203;10711](https://github.com/gohugoio/hugo/issues/10711) [#&#8203;9339](https://github.com/gohugoio/hugo/issues/9339) [#&#8203;10725](https://github.com/gohugoio/hugo/issues/10725) - related: Adjust benchmark [`0afec0a`](https://github.com/gohugoio/hugo/commit/0afec0a9) [@&#8203;bep](https://github.com/bep) - related: Add benchmark [`28540ed`](https://github.com/gohugoio/hugo/commit/28540ed1) [@&#8203;bep](https://github.com/bep) - tpl/collections: Improve error message in Index [`9af78d1`](https://github.com/gohugoio/hugo/commit/9af78d11) [@&#8203;bep](https://github.com/bep) - Make the HTML collector parsing more robust [`d33a7eb`](https://github.com/gohugoio/hugo/commit/d33a7ebc) [@&#8203;bep](https://github.com/bep) [#&#8203;10698](https://github.com/gohugoio/hugo/issues/10698) - tpl/strings: Add strings.ContainsNonSpace [`fce0890`](https://github.com/gohugoio/hugo/commit/fce08904) [@&#8203;bep](https://github.com/bep) - publisher: Add benchmark [`4f4a1c0`](https://github.com/gohugoio/hugo/commit/4f4a1c00) [@&#8203;bep](https://github.com/bep) - Update CONTRIBUTING.md [`e2cfc3d`](https://github.com/gohugoio/hugo/commit/e2cfc3d5) [@&#8203;bep](https://github.com/bep) - Only invoke a given cached partial once [`4ef9baf`](https://github.com/gohugoio/hugo/commit/4ef9baf5) [@&#8203;bep](https://github.com/bep) [#&#8203;4086](https://github.com/gohugoio/hugo/issues/4086) [#&#8203;9588](https://github.com/gohugoio/hugo/issues/9588) #### Dependency Updates - Revert "build(deps): bump gocloud.dev from 0.24.0 to 0.28.0 ([#&#8203;10610](https://github.com/gohugoio/hugo/issues/10610))" [`db9f74d`](https://github.com/gohugoio/hugo/commit/db9f74d2) [@&#8203;bep](https://github.com/bep) [#&#8203;10770](https://github.com/gohugoio/hugo/issues/10770) - build(deps): bump github.com/tdewolff/parse/v2 from 2.6.4 to 2.6.5 [`4d36b99`](https://github.com/gohugoio/hugo/commit/4d36b99a) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/mattn/go-isatty from 0.0.16 to 0.0.17 [`807237b`](https://github.com/gohugoio/hugo/commit/807237bc) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/image [`79b03b3`](https://github.com/gohugoio/hugo/commit/79b03b3f) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/net from 0.4.0 to 0.7.0 [`4bf91b9`](https://github.com/gohugoio/hugo/commit/4bf91b97) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - Revert "build(deps): bump github.com/getkin/kin-openapi from 0.110.0 to 0.114.0" [`2a364cc`](https://github.com/gohugoio/hugo/commit/2a364cca) [@&#8203;bep](https://github.com/bep) - deps: Upgrade github.com/yuin/goldmark v1.5.3 => v1.5.4 [`3fb2417`](https://github.com/gohugoio/hugo/commit/3fb2417c) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10661](https://github.com/gohugoio/hugo/issues/10661) - build(deps): bump github.com/getkin/kin-openapi from 0.110.0 to 0.114.0 [`87c78bd`](https://github.com/gohugoio/hugo/commit/87c78bd3) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Upgrade github.com/alecthomas/chroma v2.4.0 => v2.5.0 [`69c369e`](https://github.com/gohugoio/hugo/commit/69c369e1) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9890](https://github.com/gohugoio/hugo/issues/9890) [#&#8203;10692](https://github.com/gohugoio/hugo/issues/10692) - build(deps): bump github.com/kyokomi/emoji/v2 from 2.2.10 to 2.2.11 [`dd37163`](https://github.com/gohugoio/hugo/commit/dd37163f) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump gocloud.dev from 0.24.0 to 0.28.0 ([#&#8203;10610](https://github.com/gohugoio/hugo/issues/10610)) [`c3a59a7`](https://github.com/gohugoio/hugo/commit/c3a59a7d) [@&#8203;dependabot](https://github.com/dependabot)\[bot] [#&#8203;9778](https://github.com/gohugoio/hugo/issues/9778) #### Documentation - docs: Another fix related docs example [`d5601e8`](https://github.com/gohugoio/hugo/commit/d5601e83) [@&#8203;bep](https://github.com/bep) - docs: Fix related docs example [`cedd04d`](https://github.com/gohugoio/hugo/commit/cedd04db) [@&#8203;bep](https://github.com/bep) - cods: Regen docs helper [`a56b907`](https://github.com/gohugoio/hugo/commit/a56b9071) [@&#8203;bep](https://github.com/bep) - Move the Related doc counter to prevent a race [`5c317c5`](https://github.com/gohugoio/hugo/commit/5c317c55) [@&#8203;bep](https://github.com/bep) [#&#8203;10768](https://github.com/gohugoio/hugo/issues/10768) - Update README.md [`93ed6e4`](https://github.com/gohugoio/hugo/commit/93ed6e44) [@&#8203;bep](https://github.com/bep) #### Build Setup - build: Update to Go 1.20 [`4801e2e`](https://github.com/gohugoio/hugo/commit/4801e2e8) [@&#8203;bep](https://github.com/bep) [#&#8203;10691](https://github.com/gohugoio/hugo/issues/10691) - snap: Install dart-sass-embedded for 32-bit ARM (armhf) too [`76c6140`](https://github.com/gohugoio/hugo/commit/76c6140c) [@&#8203;anthonyfok](https://github.com/anthonyfok) - snap: Add read access for ~/.gitconfig.local and ~/.config/git/\* too [`d4482e8`](https://github.com/gohugoio/hugo/commit/d4482e8b) [@&#8203;anthonyfok](https://github.com/anthonyfok) [#&#8203;10337](https://github.com/gohugoio/hugo/issues/10337) ### [`v0.110.0`](https://github.com/gohugoio/hugo/releases/tag/v0.110.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.109.0...v0.110.0) #### Note - Make readFile return nil when file not found (note) [`3c51625`](https://github.com/gohugoio/hugo/commit/3c51625c) [@&#8203;bep](https://github.com/bep) [#&#8203;9620](https://github.com/gohugoio/hugo/issues/9620) - Make hugo.toml the new config.toml [`f38a2fb`](https://github.com/gohugoio/hugo/commit/f38a2fbd) [@&#8203;bep](https://github.com/bep) [#&#8203;8979](https://github.com/gohugoio/hugo/issues/8979) #### Bug fixes - Fix permalinks issue with repeated sections [`671f64b`](https://github.com/gohugoio/hugo/commit/671f64b2) [@&#8203;bep](https://github.com/bep) [#&#8203;10377](https://github.com/gohugoio/hugo/issues/10377) - Fix HEAD method in resources.GetRemote [`f13531e`](https://github.com/gohugoio/hugo/commit/f13531e6) [@&#8203;bep](https://github.com/bep) [#&#8203;10604](https://github.com/gohugoio/hugo/issues/10604) - Fix order when reading custom headers in resources.GetRemote [`b5d4850`](https://github.com/gohugoio/hugo/commit/b5d48506) [@&#8203;bep](https://github.com/bep) [#&#8203;10616](https://github.com/gohugoio/hugo/issues/10616) - resource: Fix Go Doc vs .Data.Integrity [`fbc3e08`](https://github.com/gohugoio/hugo/commit/fbc3e08c) [@&#8203;bep](https://github.com/bep) #### Improvements - related: Handly \[]any [`d595419`](https://github.com/gohugoio/hugo/commit/d5954190) [@&#8203;bep](https://github.com/bep) [#&#8203;10624](https://github.com/gohugoio/hugo/issues/10624) - tpl/strings: Add findRESubmatch [`2fb40ec`](https://github.com/gohugoio/hugo/commit/2fb40ece) [@&#8203;bep](https://github.com/bep) [#&#8203;10594](https://github.com/gohugoio/hugo/issues/10594) - config/security: Add GO\w+ (e.g. GOROOT) to the default allowed list [`c6b3887`](https://github.com/gohugoio/hugo/commit/c6b38876) [@&#8203;bep](https://github.com/bep) [#&#8203;10429](https://github.com/gohugoio/hugo/issues/10429) - Preserve front matter slice value types (e.g. int) [`21af5b3`](https://github.com/gohugoio/hugo/commit/21af5b35) [@&#8203;bep](https://github.com/bep) [#&#8203;10624](https://github.com/gohugoio/hugo/issues/10624) - Make hugo.toml the new config.toml [`f38a2fb`](https://github.com/gohugoio/hugo/commit/f38a2fbd) [@&#8203;bep](https://github.com/bep) [#&#8203;8979](https://github.com/gohugoio/hugo/issues/8979) - Add fill HTTP Response info into .Data in resources.GetRemote [`6a579eb`](https://github.com/gohugoio/hugo/commit/6a579eba) [@&#8203;bep](https://github.com/bep) [#&#8203;10604](https://github.com/gohugoio/hugo/issues/10604) - tpl/compare: Sort special float values as string [`f95fd57`](https://github.com/gohugoio/hugo/commit/f95fd57a) [@&#8203;acclassic](https://github.com/acclassic) [#&#8203;10389](https://github.com/gohugoio/hugo/issues/10389) - tpl/diagrams: Move Goat to its own file [`e754d5c`](https://github.com/gohugoio/hugo/commit/e754d5cb) [@&#8203;bep](https://github.com/bep) - Update CONTRIBUTING.md [`002cd52`](https://github.com/gohugoio/hugo/commit/002cd528) [@&#8203;bep](https://github.com/bep) - Update CONTRIBUTING.md [`a76c405`](https://github.com/gohugoio/hugo/commit/a76c405d) [@&#8203;bep](https://github.com/bep) #### Dependency Updates - deps: Upgrade github.com/evanw/esbuild v0.15.18 => v0.17.0 [`6e9fa9e`](https://github.com/gohugoio/hugo/commit/6e9fa9e0) [@&#8203;bep](https://github.com/bep) [#&#8203;10536](https://github.com/gohugoio/hugo/issues/10536) #### Documentation - dos: Regen CLI docs [`19e9605`](https://github.com/gohugoio/hugo/commit/19e96056) [@&#8203;bep](https://github.com/bep) - docs: Regen docshelper [`80e8bd3`](https://github.com/gohugoio/hugo/commit/80e8bd3b) [@&#8203;bep](https://github.com/bep) - Update README.md [`c4f3a46`](https://github.com/gohugoio/hugo/commit/c4f3a46c) [@&#8203;bep](https://github.com/bep) - Misc doc, code refactoring to improve documentation [`e402d91`](https://github.com/gohugoio/hugo/commit/e402d91e) [@&#8203;bep](https://github.com/bep) - Update README.md [`c0a03a2`](https://github.com/gohugoio/hugo/commit/c0a03a2a) [@&#8203;bep](https://github.com/bep) #### Build Setup - Remove reference to Goreleaser in code comment [`dd6d0a6`](https://github.com/gohugoio/hugo/commit/dd6d0a6d) [@&#8203;omarkohl](https://github.com/omarkohl) ### [`v0.109.0`](https://github.com/gohugoio/hugo/releases/tag/v0.109.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.108.0...v0.109.0) <img src="https://user-images.githubusercontent.com/394382/209377043-7c5e2506-a4a2-46c1-83af-9a77756563a9.png" width=40% height=40% align=right> Hugo `v0.109.0` is the last release of 2022 – and with that we're wishing all of you a very merry Christmas and a prosperous new year\[^1]. #### Notable new features ##### Pass variables to SCSS/SASS Hugo has had great SCSS/SASS support, but passing variables (e.g. theme colours from config) down to the transpiler has been much harder than it should. In Hugo `v0.109.0` we added a new [vars option](https://gohugo.io/hugo-pipes/scss-sass/#options) and you can finally just do: ```handlebars {{ $vars := dict "color1" "blue" "color2" "green" "font_size" "24px" }} {{ $opts := (dict "transpiler" "dartsass" "outputStyle" "compressed" "vars" $vars ) }} {{ $r := resources.Get "scss/main.scss" | toCSS $opts }} ``` And then in the SCSS file: ```scss @&#8203;use "hugo:vars" as v; p { color: v.$color1; font-size: v.$font-size; } ``` More examples [here](https://discourse.gohugo.io/t/initialize-sass-variables-from-hugo-templates/42053/). ##### Hugo Module Workspaces Workspace support was added in [Go 1.18](https://go.dev/blog/get-familiar-with-workspaces), and in this release Hugo finally gets solid support for it. A common use case for a workspace is to simplify local development of a site with its theme modules. A workspace can be configured in a `*.work` file and activated with the [module.workspace](https://gohugo.io/hugo-modules/configuration/) setting, which for this use is commonly controlled via the `HUGO_MODULE_WORKSPACE` OS environment variable. See the [hugo.work](https://github.com/gohugoio/hugoDocs/blob/master/hugo.work) file in the Hugo Docs repo for an example: go 1.19 use . use ../gohugoioTheme Using the `use` directive, list all the modules you want to work on, pointing to its relative location. As in the example above, it's recommended to always include the main project (the ".") in the list. With that you can start the Hugo server with that workspace enabled: HUGO_MODULE_WORKSPACE=hugo.work hugo server --ignoreVendorPaths "**" The `--ignoreVendorPaths` flag is added above to ignore any of the vendored dependencies inside `_vendor`. If you don't use vendoring, you don't need that flag. But now the server is set up watching the files and directories in the workspace and you can see your local edits reloaded. ##### Breadcrumbs We have added a new `.Ancestors` method on `Page` that walks up the tree to the home page. With this, breadcrumbs templates can be greatly simplified: ```handlebars <ol> <ul> {{- range .Ancestors.Reverse }} <li><a href="{{ .Permalink }}">{{ .Title }}</a></li> {{- end }} <li class="active" aria-current="page"> <a href="{{ .Permalink }}">{{ .Title }}</a> </li> </ul> </ol> ``` ##### The path to /public now available in PostCSS So you can do `process.env.HUGO_PUBLISHDIR` in your `postcss.config.js` to figure out where Hugo publishes its files. Note that the value will always be an absolute file path and will point to a directory on disk even when running `hugo server` in memory mode. If you write to this folder from PostCSS when running the server, you could run the server with one of these flags: hugo server --renderToDisk hugo server --renderStaticToDisk #### Note - modules: Make the module.workspace=off as default (note) [`0d4b17d`](https://github.com/gohugoio/hugo/commit/0d4b17d4) [@&#8203;bep](https://github.com/bep) [#&#8203;10553](https://github.com/gohugoio/hugo/issues/10553) - release: Add a note section in release notes [`3afaca7`](https://github.com/gohugoio/hugo/commit/3afaca75) [@&#8203;bep](https://github.com/bep) - helpers: Allow at signs in UnicodeSanitize (note) [`2d217cb`](https://github.com/gohugoio/hugo/commit/2d217cba) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10548](https://github.com/gohugoio/hugo/issues/10548) - Also consider wrapped errors when checking for file IsNotExist errors [`ad20598`](https://github.com/gohugoio/hugo/commit/ad205987) [@&#8203;bep](https://github.com/bep) [#&#8203;10534](https://github.com/gohugoio/hugo/issues/10534) #### Bug fixes - If you use the legacy `libsass` transpiler in `toCSS` and uses the cached build to avoid having the extended version installed on the CI server, you need to rebuild those assets and commit them to source control (e.g. with `hugo --gc`). - tpl/resources: Fix data race in ToCSS [`aa2c724`](https://github.com/gohugoio/hugo/commit/aa2c7241) [@&#8203;bep](https://github.com/bep) [#&#8203;10542](https://github.com/gohugoio/hugo/issues/10542) - tocss: Fix unquote case with double quotes [`5d5f0a2`](https://github.com/gohugoio/hugo/commit/5d5f0a23) [@&#8203;septs](https://github.com/septs) [#&#8203;10555](https://github.com/gohugoio/hugo/issues/10555) - resources/js: Fix some import discrepancies between Hugo and ESBuild [`b54de1b`](https://github.com/gohugoio/hugo/commit/b54de1bd) [@&#8203;bep](https://github.com/bep) [#&#8203;10527](https://github.com/gohugoio/hugo/issues/10527) - parser/metadecoders: Fix spelling [`e0e63f3`](https://github.com/gohugoio/hugo/commit/e0e63f35) [@&#8203;lacamera](https://github.com/lacamera) #### Improvements - Adjust "you need the extended version" error message [`180dfeb`](https://github.com/gohugoio/hugo/commit/180dfeba) [@&#8203;bep](https://github.com/bep) - resource/page: Slight adjustment of Page.Ancestors [`eb0c8f9`](https://github.com/gohugoio/hugo/commit/eb0c8f9d) [@&#8203;bep](https://github.com/bep) [#&#8203;10567](https://github.com/gohugoio/hugo/issues/10567) - resource/page: Add Page.Ancestors [`3a21618`](https://github.com/gohugoio/hugo/commit/3a216186) [@&#8203;septs](https://github.com/septs) [#&#8203;10567](https://github.com/gohugoio/hugo/issues/10567) - Annotate test assertions [`7183232`](https://github.com/gohugoio/hugo/commit/71832328) [@&#8203;jmooring](https://github.com/jmooring) - hugolib: Exclude non-linkable pages from translations map [`37ab1cf`](https://github.com/gohugoio/hugo/commit/37ab1cf1) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;9073](https://github.com/gohugoio/hugo/issues/9073) - Add HUGO_PUBLISHDIR to the Node environment [`59af05c`](https://github.com/gohugoio/hugo/commit/59af05ca) [@&#8203;bep](https://github.com/bep) [#&#8203;10554](https://github.com/gohugoio/hugo/issues/10554) - Revert "tpl/tplimpl: Use https in sitemap templates" [`4989da6`](https://github.com/gohugoio/hugo/commit/4989da65) [@&#8203;jmooring](https://github.com/jmooring) - tocss: Add some more test cases [`effa6a4`](https://github.com/gohugoio/hugo/commit/effa6a42) [@&#8203;bep](https://github.com/bep) [#&#8203;10555](https://github.com/gohugoio/hugo/issues/10555) - Allow "fast render mode" even if --disableLiveReload is set [`d20d265`](https://github.com/gohugoio/hugo/commit/d20d2651) [@&#8203;bep](https://github.com/bep) [#&#8203;10561](https://github.com/gohugoio/hugo/issues/10561) - tocss: Add vars option [`41a080b`](https://github.com/gohugoio/hugo/commit/41a080b2) [@&#8203;bep](https://github.com/bep) [#&#8203;10555](https://github.com/gohugoio/hugo/issues/10555) - modules: Improve "module workspace" not found error [`eda1e72`](https://github.com/gohugoio/hugo/commit/eda1e720) [@&#8203;bep](https://github.com/bep) - modules: Adjust watch logic vs workspace use definitions [`330fa89`](https://github.com/gohugoio/hugo/commit/330fa894) [@&#8203;bep](https://github.com/bep) - Add any configured Go Workspace file to the config watcher [`6db5274`](https://github.com/gohugoio/hugo/commit/6db52748) [@&#8203;bep](https://github.com/bep) [#&#8203;10556](https://github.com/gohugoio/hugo/issues/10556) - parser/metadecoders: Remove superflous cast in test [`17055d1`](https://github.com/gohugoio/hugo/commit/17055d1f) [@&#8203;bep](https://github.com/bep) - parser/metadecoders: Simplify nil check in Unmarshal [`2a81a49`](https://github.com/gohugoio/hugo/commit/2a81a494) [@&#8203;bep](https://github.com/bep) - parser/metadecoders: Add empty /data JSON file as empty map [`e30d711`](https://github.com/gohugoio/hugo/commit/e30d711c) [@&#8203;acclassic](https://github.com/acclassic) [#&#8203;8601](https://github.com/gohugoio/hugo/issues/8601) - tpl/openapi3: Wrap \*kopenapi3.T [`87e898a`](https://github.com/gohugoio/hugo/commit/87e898a1) [@&#8203;bep](https://github.com/bep) - github: Use ruby/setup-ruby [`d894269`](https://github.com/gohugoio/hugo/commit/d8942698) [@&#8203;bep](https://github.com/bep) [#&#8203;10517](https://github.com/gohugoio/hugo/issues/10517) - tpl/tplimpl: Use https in sitemap templates [`3fd0b78`](https://github.com/gohugoio/hugo/commit/3fd0b784) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10515](https://github.com/gohugoio/hugo/issues/10515) #### Dependency Updates - build(deps): bump golang.org/x/tools from 0.3.0 to 0.4.0 [`7874b96`](https://github.com/gohugoio/hugo/commit/7874b968) [@&#8203;dependabot](https://github.com/dependabot)\[bot] #### Documentation - docs: Regen docs helper JSON [`10bb29d`](https://github.com/gohugoio/hugo/commit/10bb29d7) [@&#8203;bep](https://github.com/bep) - tpl: Improve template funcs GoDoc [`cd1ed56`](https://github.com/gohugoio/hugo/commit/cd1ed563) [@&#8203;bep](https://github.com/bep) #### Build Setup - github: Update to Dart Sass 1.56.2 [`c9354d5`](https://github.com/gohugoio/hugo/commit/c9354d54) [@&#8203;bep](https://github.com/bep) \[^1]: We're working on some bigger and even more exiting Hugo features that will be ready early next year. Stay tuned! ### [`v0.108.0`](https://github.com/gohugoio/hugo/releases/tag/v0.108.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.107.0...v0.108.0) With Hugo `v0.108.0` you can render standalone Markdown images without a surrounding paragraph. Both the HTML- and CommonMark-specification defines image as an inline element. For Markdown, this has meant that if you put an image on its own (not *inlined* in another paragraph), it would be wrapped in `<p></p>` tags, even if you provide your own [Render Hook Template](https://gohugo.io/templates/render-hooks/). Now you can get by this annoyance by setting `markup.goldmark.parser.wrapStandAloneImageWithinParagraph = false` ```toml [markup] [markup.goldmark] [markup.goldmark.parser] wrapStandAloneImageWithinParagraph = false [markup.goldmark.parser.attribute] block = true ``` In the above we have also enabled attribute support for Markdown blocks to illustrate another nice side effect of this; it's now possible to use Markdown attributes (e.g. CSS classes) on standalone images: ```md This is an inline image: ![Inline Image](/inline.jpg). Some more text. ![Block Image](/block.jpg) {.blue} ``` The images in the above Markdown example would, given the hook template below, be rendered wrapped in a `figure` element with the `blue` CSS class applied in the latter example. ```handlebars {{ if .IsBlock }}<figure class="{{ .Attributes.class }}"><img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" /></figure> {{ else }}<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" />{{ end }} ``` Two new fields are added to the render context passed to image render hooks: - `IsBlock`: Returns true if this is a standalone image and the config option [markup.goldmark.parser.wrapStandAloneImageWithinParagraph](https://gohugo.io/getting-started/configuration-markup/#goldmark) is disabled. - `Ordinal`: Zero-based ordinal for all the images in the current document. #### Bug fixes - common/hugio: Fix multiWriteCloser.Close [`5067775`](https://github.com/gohugoio/hugo/commit/5067775a) [@&#8203;bep](https://github.com/bep) [#&#8203;10505](https://github.com/gohugoio/hugo/issues/10505) - tpl/collections: Fix some index cases where the indices given is a slice and be more lenient with nil inputs [`d373774`](https://github.com/gohugoio/hugo/commit/d373774c) [@&#8203;bep](https://github.com/bep) [#&#8203;10489](https://github.com/gohugoio/hugo/issues/10489) #### Improvements - Make the hugo env non verbose output slightly more verbose [`f97544a`](https://github.com/gohugoio/hugo/commit/f97544a8) [@&#8203;bep](https://github.com/bep) - Add dart-sass-embedded version info to hugo env -v [`d8efe08`](https://github.com/gohugoio/hugo/commit/d8efe085) [@&#8203;bep](https://github.com/bep) - tpl/embedded: Make Open Graph's series optional [`b82b547`](https://github.com/gohugoio/hugo/commit/b82b547a) [@&#8203;razonyang](https://github.com/razonyang) - dartsass: Add sourceMapIncludeSources option [`e93138d`](https://github.com/gohugoio/hugo/commit/e93138df) [@&#8203;bep](https://github.com/bep) - github: Update Dart Sass Embedded to 1.56.1 [`7d16c3c`](https://github.com/gohugoio/hugo/commit/7d16c3c0) [@&#8203;bep](https://github.com/bep) - markup/goldmark: Add removeSurroundingParagraph for Markdown images [`63126c6`](https://github.com/gohugoio/hugo/commit/63126c63) [@&#8203;bep](https://github.com/bep) [#&#8203;8362](https://github.com/gohugoio/hugo/issues/8362) [#&#8203;10492](https://github.com/gohugoio/hugo/issues/10492) [#&#8203;10494](https://github.com/gohugoio/hugo/issues/10494) [#&#8203;10501](https://github.com/gohugoio/hugo/issues/10501) - tpl/tplimpl: Allow alternate comment syntax [`0b976d2`](https://github.com/gohugoio/hugo/commit/0b976d2b) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10495](https://github.com/gohugoio/hugo/issues/10495) - resources: Increase timeout for http.Client [`a49e51f`](https://github.com/gohugoio/hugo/commit/a49e51fd) [@&#8203;dirtymew](https://github.com/dirtymew) [#&#8203;10478](https://github.com/gohugoio/hugo/issues/10478) - config/security: Add CI env var to whitelist [`dc44bca`](https://github.com/gohugoio/hugo/commit/dc44bca9) [@&#8203;septs](https://github.com/septs) - tpl: Use consistent delimiter spacing in examples [`b8d5c37`](https://github.com/gohugoio/hugo/commit/b8d5c378) [@&#8203;jmooring](https://github.com/jmooring) #### Dependency Updates - deps: Upgrade github.com/bep/godartsass v0.15.0 => v0.16.0 [`f5b5b71`](https://github.com/gohugoio/hugo/commit/f5b5b71c) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/getkin/kin-openapi from 0.109.0 to 0.110.0 [`50549c8`](https://github.com/gohugoio/hugo/commit/50549c86) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.15.16 to 0.15.18 [`535ea8c`](https://github.com/gohugoio/hugo/commit/535ea8cc) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/text from 0.4.0 to 0.5.0 [`8bbec42`](https://github.com/gohugoio/hugo/commit/8bbec426) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.15.15 to 0.15.16 [`0bfa293`](https://github.com/gohugoio/hugo/commit/0bfa293d) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Upgrade github.com/bep/godartsass v0.14.0 => v0.15.0 [`83080df`](https://github.com/gohugoio/hugo/commit/83080df6) [@&#8203;bep](https://github.com/bep) #### Documentation - docs: Add basic doc for wrapStandAloneImageWithinParagraph etc. [`de9c554`](https://github.com/gohugoio/hugo/commit/de9c5542) [@&#8203;bep](https://github.com/bep) [#&#8203;10492](https://github.com/gohugoio/hugo/issues/10492) - tpl: Misco GoDoc improvements [`7d5e3ab`](https://github.com/gohugoio/hugo/commit/7d5e3ab8) [@&#8203;bep](https://github.com/bep) - docs: Regen docs helper [`75f782a`](https://github.com/gohugoio/hugo/commit/75f782a5) [@&#8203;bep](https://github.com/bep) ### [`v0.107.0`](https://github.com/gohugoio/hugo/releases/tag/v0.107.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.106.0...v0.107.0) This release is mostly interesting if you do code highlighting. We fixed a bottle neck which should show a significant performance boost for sites using code highlighting. Hugo's [gohugo.io](https://gohugo.io/) docs site builds ~20% faster. Also, Chroma, the highlighting library, is upgraded to [v2.4.0](https://github.com/alecthomas/chroma/releases/tag/v2.4.0) with new lexers and lots of improvements. #### Bug fixes - hugo/parser: Fix shortcode boolean param parsing [`00fe7e0`](https://github.com/gohugoio/hugo/commit/00fe7e04) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10451](https://github.com/gohugoio/hugo/issues/10451) #### Improvements - Add a cache for lexers.Get [`7855b47`](https://github.com/gohugoio/hugo/commit/7855b47f) [@&#8203;bep](https://github.com/bep) - markup/goldmark: Improve benchmark [`34d1150`](https://github.com/gohugoio/hugo/commit/34d1150d) [@&#8203;bep](https://github.com/bep) - commands: Create assets directory with new site [`85e2ac1`](https://github.com/gohugoio/hugo/commit/85e2ac1a) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;10460](https://github.com/gohugoio/hugo/issues/10460) #### Dependency Updates - build(deps): bump github.com/getkin/kin-openapi from 0.108.0 to 0.109.0 [`6a004b8`](https://github.com/gohugoio/hugo/commit/6a004b8d) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.15.14 to 0.15.15 [`0923622`](https://github.com/gohugoio/hugo/commit/09236224) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/frankban/quicktest from 1.14.3 to 1.14.4 [`7477672`](https://github.com/gohugoio/hugo/commit/74776726) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/tools from 0.2.0 to 0.3.0 [`63f7f0f`](https://github.com/gohugoio/hugo/commit/63f7f0ff) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Upgrade github.com/alecthomas/chroma/v2 v2.4.0 [`bcb62d8`](https://github.com/gohugoio/hugo/commit/bcb62d89) [@&#8203;bep](https://github.com/bep) ### [`v0.106.0`](https://github.com/gohugoio/hugo/releases/tag/v0.106.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.105.0...v0.106.0) #### Bug fixes - Fix taxonomy weight sort regression [`52ea07d`](https://github.com/gohugoio/hugo/commit/52ea07d2) [@&#8203;bep](https://github.com/bep) [#&#8203;10406](https://github.com/gohugoio/hugo/issues/10406) - tlp/resources: resources.Get returns nil when given empty string [`db945a6`](https://github.com/gohugoio/hugo/commit/db945a6e) [@&#8203;shifterbit](https://github.com/shifterbit) - tpl/internal: Sync go_templates [`f6ab955`](https://github.com/gohugoio/hugo/commit/f6ab9553) [@&#8203;bep](https://github.com/bep) [#&#8203;10411](https://github.com/gohugoio/hugo/issues/10411) #### Dependency Updates - build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.4 to 2.0.6 [`bafb389`](https://github.com/gohugoio/hugo/commit/bafb389b) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.15.13 to 0.15.14 [`cdd83bf`](https://github.com/gohugoio/hugo/commit/cdd83bf3) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - deps: Update the libweb version string [`e00220a`](https://github.com/gohugoio/hugo/commit/e00220a0) [@&#8203;bep](https://github.com/bep) - deps: Upgrade github.com/bep/gowebp v0.1.0 => v0.2.0 [`a662dda`](https://github.com/gohugoio/hugo/commit/a662ddae) [@&#8203;bep](https://github.com/bep) - build(deps): bump github.com/yuin/goldmark from 1.5.2 to 1.5.3 [`fe08d35`](https://github.com/gohugoio/hugo/commit/fe08d35f) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/spf13/afero from 1.9.2 to 1.9.3 [`4b675dd`](https://github.com/gohugoio/hugo/commit/4b675ddd) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/getkin/kin-openapi from 0.107.0 to 0.108.0 [`24eaa29`](https://github.com/gohugoio/hugo/commit/24eaa290) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/clbanning/mxj/v2 from 2.5.6 to 2.5.7 [`58a98c7`](https://github.com/gohugoio/hugo/commit/58a98c77) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/net from 0.1.0 to 0.2.0 [`900904f`](https://github.com/gohugoio/hugo/commit/900904fd) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.15.12 to 0.15.13 [`24eca0c`](https://github.com/gohugoio/hugo/commit/24eca0cb) [@&#8203;dependabot](https://github.com/dependabot)\[bot] #### Documentation - docs: Regen CLI docs [`0a019a1`](https://github.com/gohugoio/hugo/commit/0a019a1a) [@&#8203;bep](https://github.com/bep) - docs: Regenerate docs helper [`9f7fb0a`](https://github.com/gohugoio/hugo/commit/9f7fb0a7) [@&#8203;bep](https://github.com/bep) - Add Go 1.16+ install method to README [`60e0e2c`](https://github.com/gohugoio/hugo/commit/60e0e2c1) [@&#8203;vgnh](https://github.com/vgnh) - readme: Update ToC [`13adf3e`](https://github.com/gohugoio/hugo/commit/13adf3e0) [@&#8203;vgnh](https://github.com/vgnh) </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:eyJjcmVhdGVkSW5WZXIiOiIzNC42My4xIiwidXBkYXRlZEluVmVyIjoiMzQuMTYwLjAifQ==-->
renovator force-pushed renovate/gohugoio-hugo-0-x from 16a91d2256 to 8eaa6b627b 2023-03-01 22:33:23 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.110.0 to chore(deps): update dependency gohugoio/hugo to v0.111.0 2023-03-01 22:33:24 +01:00
renovator force-pushed renovate/gohugoio-hugo-0-x from 8eaa6b627b to 62296c6e2b 2023-03-02 11:33:19 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.111.0 to chore(deps): update dependency gohugoio/hugo to v0.111.1 2023-03-02 11:33:20 +01:00
renovator force-pushed renovate/gohugoio-hugo-0-x from 62296c6e2b to 59669e15a4 2023-03-05 14:03:17 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.111.1 to chore(deps): update dependency gohugoio/hugo to v0.111.2 2023-03-05 14:03:18 +01:00
renovator force-pushed renovate/gohugoio-hugo-0-x from 59669e15a4 to 0e7e185069 2023-03-12 13:03:20 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.111.2 to chore(deps): update dependency gohugoio/hugo to v0.111.3 2023-03-12 13:03:21 +01:00
renovator force-pushed renovate/gohugoio-hugo-0-x from 0e7e185069 to 0c5141e849 2023-03-13 19:04:18 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.111.3 to chore(deps): update dependency gohugoio/hugo to v0.111.3 - autoclosed 2023-03-18 21:36:18 +01:00
renovator closed this pull request 2023-03-18 21:36:19 +01:00
All checks were successful
continuous-integration/drone/pr Build is passing

Pull request closed

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#86
No description provided.