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

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.110.0

Release Notes

gohugoio/hugo

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:eyJjcmVhdGVkSW5WZXIiOiIzNC45LjIiLCJ1cGRhdGVkSW5WZXIiOiIzNC4xMTcuMSJ9-->
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gohugoio/hugo](https://github.com/gohugoio/hugo) | minor | `v0.105.0` -> `v0.110.0` | --- ### Release Notes <details> <summary>gohugoio/hugo</summary> ### [`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:eyJjcmVhdGVkSW5WZXIiOiIzNC45LjIiLCJ1cGRhdGVkSW5WZXIiOiIzNC4xMTcuMSJ9-->
renovator force-pushed renovate/gohugoio-hugo-0.x from 784f8d2a4d to 8223b74460 2022-11-24 16:03:21 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.106.0 to chore(deps): update dependency gohugoio/hugo to v0.107.0 2022-11-24 16:03:21 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 8223b74460 to b2a165c458 2022-12-06 15:03:07 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.107.0 to chore(deps): update dependency gohugoio/hugo to v0.108.0 2022-12-06 15:03:08 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from b2a165c458 to 534b5f32f1 2022-12-23 12:03:03 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.108.0 to chore(deps): update dependency gohugoio/hugo to v0.109.0 2022-12-23 12:03:04 +01:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 534b5f32f1 to 096b763f21 2023-01-17 14:03:26 +01:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.109.0 to chore(deps): update dependency gohugoio/hugo to v0.110.0 2023-01-17 14:03:32 +01:00
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.110.0 to chore(deps): update dependency gohugoio/hugo to v0.110.0 - autoclosed 2023-02-20 11:03:24 +01:00
renovator closed this pull request 2023-02-20 11:03:24 +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#75
No description provided.