chore(deps): update dependency gohugoio/hugo to v0.114.0 #100

Merged
xoxys merged 1 commits from renovate/gohugoio-hugo-0.x into main 2023-06-23 08:47:17 +02:00
Member

This PR contains the following updates:

Package Update Change
gohugoio/hugo minor v0.112.5 -> v0.114.0

Release Notes

gohugoio/hugo (gohugoio/hugo)

v0.114.0

Compare Source

The main new thing in this release is that we now support both major versions of the Dart Sass Embedded protocol, which means that you now can use the regular Dart Sass binary. We measured the new protocol to be faster with high concurrency:

name                             old time/op    new time/op    delta
Transpiler/SCSS-10                  114µs ± 0%     145µs ± 1%  +26.40%  (p=0.029 n=4+4)
Transpiler/Start_and_Execute-10    25.6ms ± 2%    26.0ms ± 3%     ~     (p=0.486 n=4+4)
Transpiler/SCSS_Parallel-10        89.0µs ± 2%    44.4µs ± 3%  -50.12%  (p=0.029 n=4+4)

name                             old alloc/op   new alloc/op   delta
Transpiler/SCSS-10                 1.33kB ± 1%    1.33kB ± 0%     ~     (p=1.000 n=4+4)
Transpiler/Start_and_Execute-10    22.4kB ± 1%    22.4kB ± 1%     ~     (p=0.886 n=4+4)
Transpiler/SCSS_Parallel-10        1.34kB ± 3%    1.33kB ± 1%     ~     (p=1.000 n=4+4)

name                             old allocs/op  new allocs/op  delta
Transpiler/SCSS-10                   18.0 ± 0%      18.0 ± 0%     ~     (all equal)
Transpiler/Start_and_Execute-10       144 ± 1%       150 ± 0%   +4.16%  (p=0.029 n=4+4)
Transpiler/SCSS_Parallel-10          18.0 ± 0%      18.0 ± 0%     ~     (all equal)

We have also moved to a new log library and added some new math functions and also revised the existing set to work better with a mix of scalars and slices.

Notes

  • We have removed the flags --log, --verboseLog, added the new flag --logLevel and deprecated --verbose and --debug See #​11088
  • This release contains a security fix in the upstream Go HTML template library disallowing JavaScript inside backticks by default. See https://github.com/golang/go/issues/59234 If you really need this and are sure this isn't a security risk in your case, you can revert to the old behaviour:
[security]
[security.gotemplates]
allowActionJSTmpl = true

Bug fixes

Improvements

Dependency Updates

Documentation

Build Setup

v0.113.0

Compare Source

This release adds TLS/HTTPS support to hugo server (see cf38c73 and #​11064 for details) entirely backed by mkcert. We still default to http which is recommended and good enough for 99% of the Hugo use, but there are some situations where you really need it.

We have added a new sub command and some new flags to hugo server to enable this:

### Installs a local CA in the system root store. You only need to do this once.
hugo server trust
###  Generates locally-trusted certificates (if not already created) and starts the server with TLS/HTTPS enabled.
hugo server --tlsAuto

Note that we just delegate to mkcert using its default settings, so all of their documentation is relevant.

Also note that this is currently only supported for Linux, MacOS and Windows. And if you install on Linux using Snap, you will currently get an access denied error when running hugo server trust. A workaround for that, or if you need to use some of mkcert's advanced options, is to use mkcert directly to install the local CA:

go install filippo.io/mkcert@latest
mkcert -install

You can then start the server with hugo server --tlsAuto.

If you have obtained the TLS certificate and key file by other means, you can use the --tlsCertFile and --tlsKeyFile flags. When --tlsAuto or --tlsCertFile and --tlsKeyFile is set and no --baseURL is provided as a flag, the server is started with TLS and https as the protocol.

v0.112.7

Compare Source

What's Changed

v0.112.6

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [gohugoio/hugo](https://github.com/gohugoio/hugo) | minor | `v0.112.5` -> `v0.114.0` | --- ### Release Notes <details> <summary>gohugoio/hugo (gohugoio/hugo)</summary> ### [`v0.114.0`](https://github.com/gohugoio/hugo/releases/tag/v0.114.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.113.0...v0.114.0) The main new thing in this release is that we now support both major versions of the Dart Sass Embedded protocol, which means that you now can use the regular [Dart Sass](https://github.com/sass/dart-sass/releases) binary. We measured the new protocol to be [faster with high concurrency](https://github.com/bep/godartsass/pull/17): name old time/op new time/op delta Transpiler/SCSS-10 114µs ± 0% 145µs ± 1% +26.40% (p=0.029 n=4+4) Transpiler/Start_and_Execute-10 25.6ms ± 2% 26.0ms ± 3% ~ (p=0.486 n=4+4) Transpiler/SCSS_Parallel-10 89.0µs ± 2% 44.4µs ± 3% -50.12% (p=0.029 n=4+4) name old alloc/op new alloc/op delta Transpiler/SCSS-10 1.33kB ± 1% 1.33kB ± 0% ~ (p=1.000 n=4+4) Transpiler/Start_and_Execute-10 22.4kB ± 1% 22.4kB ± 1% ~ (p=0.886 n=4+4) Transpiler/SCSS_Parallel-10 1.34kB ± 3% 1.33kB ± 1% ~ (p=1.000 n=4+4) name old allocs/op new allocs/op delta Transpiler/SCSS-10 18.0 ± 0% 18.0 ± 0% ~ (all equal) Transpiler/Start_and_Execute-10 144 ± 1% 150 ± 0% +4.16% (p=0.029 n=4+4) Transpiler/SCSS_Parallel-10 18.0 ± 0% 18.0 ± 0% ~ (all equal) We have also moved to a new log library and added some new [math functions](https://gohugo.io/functions/math/) and also revised the existing set to work better with a mix of scalars and slices. #### Notes - We have removed the flags `--log`, `--verboseLog`, added the new flag `--logLevel` and deprecated `--verbose` and `--debug` See [#&#8203;11088](https://github.com/gohugoio/hugo/issues/11088) - This release contains a security fix in the upstream Go HTML template library disallowing JavaScript inside backticks by default. See https://github.com/golang/go/issues/59234 If you really need this and are sure this isn't a security risk in your case, you can revert to the old behaviour: ```toml [security] [security.gotemplates] allowActionJSTmpl = true ``` #### Bug fixes - common/loggers: Drop the bold INFO etc. prefixes [`6dfbd24`](https://github.com/gohugoio/hugo/commit/6dfbd247) [@&#8203;bep](https://github.com/bep) - all: Fix some typos [`68d9d3e`](https://github.com/gohugoio/hugo/commit/68d9d3eb) [@&#8203;deining](https://github.com/deining) - all: Fix typos in function names and comments [`9009c8c`](https://github.com/gohugoio/hugo/commit/9009c8cd) [@&#8203;alexandear](https://github.com/alexandear) - deploy: Fix deploy defaults for non-zero flag values (e.g. maxDeletes, invalidateCDN) [`12dc9a6`](https://github.com/gohugoio/hugo/commit/12dc9a6e) [@&#8203;bep](https://github.com/bep) [#&#8203;11127](https://github.com/gohugoio/hugo/issues/11127) - Fix upstream Go templates bug with reversed key/value assignment [`ee359df`](https://github.com/gohugoio/hugo/commit/ee359df1) [@&#8203;bep](https://github.com/bep) [#&#8203;11112](https://github.com/gohugoio/hugo/issues/11112) - tpl/collections: Fix append when appending a slice to a slice of slices [`d178fe9`](https://github.com/gohugoio/hugo/commit/d178fe94) [@&#8203;bep](https://github.com/bep) [#&#8203;11093](https://github.com/gohugoio/hugo/issues/11093) - Fix .Width and .Height for animated gifs [`21d1756`](https://github.com/gohugoio/hugo/commit/21d17566) [@&#8203;bep](https://github.com/bep) [#&#8203;11079](https://github.com/gohugoio/hugo/issues/11079) - Fix config merge regression with root slices (e.g. disableKinds) [`60a2cdf`](https://github.com/gohugoio/hugo/commit/60a2cdf7) [@&#8203;bep](https://github.com/bep) [#&#8203;11089](https://github.com/gohugoio/hugo/issues/11089) - Fix handling of aliases (e.g. hugo serve) [`0541a1b`](https://github.com/gohugoio/hugo/commit/0541a1b5) [@&#8203;bep](https://github.com/bep) [#&#8203;11090](https://github.com/gohugoio/hugo/issues/11090) - commands,config: Fix typo in log and error messages [`b8526f3`](https://github.com/gohugoio/hugo/commit/b8526f32) [@&#8203;alexandear](https://github.com/alexandear) - Fix indented SASS imports for Dart Sass [`c782ebd`](https://github.com/gohugoio/hugo/commit/c782ebd8) [@&#8203;bep](https://github.com/bep) [#&#8203;11074](https://github.com/gohugoio/hugo/issues/11074) #### Improvements - Add empty Environ when loading test config [`3ab8465`](https://github.com/gohugoio/hugo/commit/3ab84651) [@&#8203;bep](https://github.com/bep) - loggers: Avoid using Logf for the LevelLoggerToWriter [`f59c3c0`](https://github.com/gohugoio/hugo/commit/f59c3c02) [@&#8203;bep](https://github.com/bep) - tocss/dartsas: Avoid using Logf for the internal Dart Sass logging [`3ca29b1`](https://github.com/gohugoio/hugo/commit/3ca29b15) [@&#8203;bep](https://github.com/bep) - helpers: Remove superflous formatting flag in deprecation warnings [`fdb0b7f`](https://github.com/gohugoio/hugo/commit/fdb0b7fb) [@&#8203;bep](https://github.com/bep) - common/loggers: Re-add trailing newline in logger.Printf [`1b85303`](https://github.com/gohugoio/hugo/commit/1b85303a) [@&#8203;bep](https://github.com/bep) [#&#8203;11130](https://github.com/gohugoio/hugo/issues/11130) - Replace the old log setup, with structured logging etc. [`7c9fada`](https://github.com/gohugoio/hugo/commit/7c9fada7) [@&#8203;bep](https://github.com/bep) [#&#8203;11124](https://github.com/gohugoio/hugo/issues/11124) - common/collections: Always make a copy of the input slice in Append [`f73c567`](https://github.com/gohugoio/hugo/commit/f73c5675) [@&#8203;bep](https://github.com/bep) [#&#8203;10458](https://github.com/gohugoio/hugo/issues/10458) - Re-add site.RSSLink (and deprecate it) [`90b2674`](https://github.com/gohugoio/hugo/commit/90b2674d) [@&#8203;bep](https://github.com/bep) [#&#8203;11110](https://github.com/gohugoio/hugo/issues/11110) - tpl/math: Allow variadic math functions to take slice args, add math.Product, math.Sum [`2ba2271`](https://github.com/gohugoio/hugo/commit/2ba2271e) [@&#8203;bep](https://github.com/bep) [#&#8203;11030](https://github.com/gohugoio/hugo/issues/11030) - commands: Remove flags log, verboseLog, add flag logLevel, deprecate flags verbose and debug [`ef147f4`](https://github.com/gohugoio/hugo/commit/ef147f4e) [@&#8203;bep](https://github.com/bep) [#&#8203;9648](https://github.com/gohugoio/hugo/issues/9648) [#&#8203;11071](https://github.com/gohugoio/hugo/issues/11071) - cache: Set default cache path based on $USER [`258884f`](https://github.com/gohugoio/hugo/commit/258884f4) [@&#8203;Sircular](https://github.com/Sircular) [#&#8203;7391](https://github.com/gohugoio/hugo/issues/7391) - resources: Remove failing and superflous test assertion [`69f0e88`](https://github.com/gohugoio/hugo/commit/69f0e88a) [@&#8203;bep](https://github.com/bep) - helpers: Avoid url.Parse in RelURL and AbsURL if we can [`ed7e250`](https://github.com/gohugoio/hugo/commit/ed7e2500) [@&#8203;bep](https://github.com/bep) - Adjust benchmarks [`6a09e7f`](https://github.com/gohugoio/hugo/commit/6a09e7f2) [@&#8203;bep](https://github.com/bep) - Adjust benchmark [`29e5cbb`](https://github.com/gohugoio/hugo/commit/29e5cbb6) [@&#8203;bep](https://github.com/bep) - Add BenchmarkAbsURL [`ded6866`](https://github.com/gohugoio/hugo/commit/ded68660) [@&#8203;bep](https://github.com/bep) - helpers: Improve schema detection when creating relative URLs [`e1d4302`](https://github.com/gohugoio/hugo/commit/e1d43021) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;11080](https://github.com/gohugoio/hugo/issues/11080) - helpers: Add a basic benchmark for RelURL [`5db215d`](https://github.com/gohugoio/hugo/commit/5db215d4) [@&#8203;bep](https://github.com/bep) - config: Remove unexpected \_merge keys introduced in author and social maps [`b7dc93c`](https://github.com/gohugoio/hugo/commit/b7dc93ca) [@&#8203;bep](https://github.com/bep) [#&#8203;11083](https://github.com/gohugoio/hugo/issues/11083) - Upgrade to v2 of the Dart Sass Embedded Protocol [`f210188`](https://github.com/gohugoio/hugo/commit/f210188d) [@&#8203;bep](https://github.com/bep) [#&#8203;11059](https://github.com/gohugoio/hugo/issues/11059) #### Dependency Updates - Revert "build(deps): bump gocloud.dev from 0.24.0 to 0.29.0" [`59300fa`](https://github.com/gohugoio/hugo/commit/59300faa) [@&#8203;bep](https://github.com/bep) - Revert "deps: Update github.com/tdewolff/minify/v2 v2.12.5 => v2.12.6" [`49dd53a`](https://github.com/gohugoio/hugo/commit/49dd53a4) [@&#8203;bep](https://github.com/bep) [#&#8203;11132](https://github.com/gohugoio/hugo/issues/11132) - build(deps): bump github.com/evanw/esbuild from 0.18.3 to 0.18.4 [`8a04d47`](https://github.com/gohugoio/hugo/commit/8a04d47a) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.18.2 to 0.18.3 [`aaf2e96`](https://github.com/gohugoio/hugo/commit/aaf2e969) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/sync from 0.2.0 to 0.3.0 [`0f989d5`](https://github.com/gohugoio/hugo/commit/0f989d5e) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump google.golang.org/api from 0.123.0 to 0.127.0 [`732dcb8`](https://github.com/gohugoio/hugo/commit/732dcb84) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/tools from 0.9.1 to 0.9.3 [`944859f`](https://github.com/gohugoio/hugo/commit/944859f1) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/kyokomi/emoji/v2 from 2.2.11 to 2.2.12 [`bb9377b`](https://github.com/gohugoio/hugo/commit/bb9377b5) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/getkin/kin-openapi from 0.117.0 to 0.118.0 [`e88f1b8`](https://github.com/gohugoio/hugo/commit/e88f1b80) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/net from 0.10.0 to 0.11.0 [`516f0cb`](https://github.com/gohugoio/hugo/commit/516f0cb6) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump gocloud.dev from 0.24.0 to 0.29.0 [`7bed16c`](https://github.com/gohugoio/hugo/commit/7bed16c3) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump golang.org/x/image from 0.7.0 to 0.8.0 [`e08cfc8`](https://github.com/gohugoio/hugo/commit/e08cfc8c) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/magefile/mage from 1.14.0 to 1.15.0 [`4895195`](https://github.com/gohugoio/hugo/commit/48951956) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.6 to 2.0.8 [`91c0b0f`](https://github.com/gohugoio/hugo/commit/91c0b0f7) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/evanw/esbuild from 0.17.19 to 0.18.2 [`baef235`](https://github.com/gohugoio/hugo/commit/baef235d) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump go.uber.org/atomic from 1.10.0 to 1.11.0 [`254c2b3`](https://github.com/gohugoio/hugo/commit/254c2b32) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/hairyhenderson/go-codeowners [`84f71ba`](https://github.com/gohugoio/hugo/commit/84f71ba8) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/frankban/quicktest from 1.14.4 to 1.14.5 [`82adc97`](https://github.com/gohugoio/hugo/commit/82adc972) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/mattn/go-isatty from 0.0.17 to 0.0.19 [`60533fd`](https://github.com/gohugoio/hugo/commit/60533fdc) [@&#8203;dependabot](https://github.com/dependabot)\[bot] - build(deps): bump github.com/spf13/afero from 1.9.3 to 1.9.5 [`261143b`](https://github.com/gohugoio/hugo/commit/261143bb) [@&#8203;dependabot](https://github.com/dependabot)\[bot] #### Documentation - docs: Regen docshelper [`9f98b3e`](https://github.com/gohugoio/hugo/commit/9f98b3e7) [@&#8203;bep](https://github.com/bep) - docs: Regen CLI docs [`7241b5f`](https://github.com/gohugoio/hugo/commit/7241b5fd) [@&#8203;bep](https://github.com/bep) #### Build Setup - Revert "snap: Transition base snap from core20 to core22 ([#&#8203;11101](https://github.com/gohugoio/hugo/issues/11101))" ([#&#8203;11125](https://github.com/gohugoio/hugo/issues/11125)) [`0e79446`](https://github.com/gohugoio/hugo/commit/0e794465) [@&#8203;jmooring](https://github.com/jmooring) [#&#8203;11116](https://github.com/gohugoio/hugo/issues/11116) - snap: Transition base snap from core20 to core22 ([#&#8203;11101](https://github.com/gohugoio/hugo/issues/11101)) [`35e9b3e`](https://github.com/gohugoio/hugo/commit/35e9b3ed) [@&#8203;jmooring](https://github.com/jmooring) ### [`v0.113.0`](https://github.com/gohugoio/hugo/releases/tag/v0.113.0) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.112.7...v0.113.0) This release adds TLS/HTTPS support to `hugo server` (see [`cf38c73`](https://github.com/gohugoio/hugo/commit/cf38c73f) and [#&#8203;11064](https://github.com/gohugoio/hugo/issues/11064) for details) entirely backed by [mkcert](https://github.com/FiloSottile/mkcert). We still default to `http` which is recommended and good enough for 99% of the Hugo use, but there are [some situations](https://web.dev/when-to-use-local-https/) where you really need it. We have added a new sub command and some new flags to `hugo server` to enable this: ### Installs a local CA in the system root store. You only need to do this once. hugo server trust ### Generates locally-trusted certificates (if not already created) and starts the server with TLS/HTTPS enabled. hugo server --tlsAuto Note that we just delegate to [mkcert](https://github.com/FiloSottile/mkcert) using its default settings, so all of their documentation is relevant. Also note that this is currently only supported for Linux, MacOS and Windows. And if you install on Linux using Snap, you will currently get an access denied error when running `hugo server trust`. A workaround for that, or if you need to use some of mkcert's advanced options, is to use mkcert directly to install the local CA: go install filippo.io/mkcert@latest mkcert -install You can then start the server with `hugo server --tlsAuto`. If you have obtained the TLS certificate and key file by other means, you can use the `--tlsCertFile` and `--tlsKeyFile` flags. When `--tlsAuto` or `--tlsCertFile` and `--tlsKeyFile` is set and no `--baseURL` is provided as a flag, the server is started with TLS and `https` as the protocol. ### [`v0.112.7`](https://github.com/gohugoio/hugo/releases/tag/v0.112.7) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.112.6...v0.112.7) #### What's Changed - Fix menuItem.URL when pageRef is not set [`5e5ce00`](https://github.com/gohugoio/hugo/commit/5e5ce00d) [@&#8203;bep](https://github.com/bep) [#&#8203;11062](https://github.com/gohugoio/hugo/issues/11062) - Don't inject livereload script on hugo -w [`a191b38`](https://github.com/gohugoio/hugo/commit/a191b38a) [@&#8203;bep](https://github.com/bep) [#&#8203;11061](https://github.com/gohugoio/hugo/issues/11061) - markup: Fix typo in function and struct names [`382c726`](https://github.com/gohugoio/hugo/commit/382c726e) [@&#8203;alexandear](https://github.com/alexandear) - all: Replace deprecated ioutil with io and os [`4c46f94`](https://github.com/gohugoio/hugo/commit/4c46f940) [@&#8203;alexandear](https://github.com/alexandear) ### [`v0.112.6`](https://github.com/gohugoio/hugo/releases/tag/v0.112.6) [Compare Source](https://github.com/gohugoio/hugo/compare/v0.112.5...v0.112.6) - github: Fix Windows build [`06faee5`](https://github.com/gohugoio/hugo/commit/06faee5b) [@&#8203;bep](https://github.com/bep) [#&#8203;11052](https://github.com/gohugoio/hugo/issues/11052) - Fix potential deadlock in ByParam [`3258569`](https://github.com/gohugoio/hugo/commit/32585696) [@&#8203;bep](https://github.com/bep) [#&#8203;11039](https://github.com/gohugoio/hugo/issues/11039) - commands: Add --lang to hugo config [`0ef2952`](https://github.com/gohugoio/hugo/commit/0ef29528) [@&#8203;bep](https://github.com/bep) [#&#8203;11057](https://github.com/gohugoio/hugo/issues/11057) - Make sure any default mounts show up in "hugo config" [`e3ae8f0`](https://github.com/gohugoio/hugo/commit/e3ae8f02) [@&#8203;bep](https://github.com/bep) [#&#8203;11040](https://github.com/gohugoio/hugo/issues/11040) - tpl/tplimpl: Use .Language.LanguageCode in built-in templates [`ff77a92`](https://github.com/gohugoio/hugo/commit/ff77a927) [@&#8203;jmooring](https://github.com/jmooring) - Fail on invalid defaultContentLanguage [`9cdca1f`](https://github.com/gohugoio/hugo/commit/9cdca1f9) [@&#8203;bep](https://github.com/bep) [#&#8203;11044](https://github.com/gohugoio/hugo/issues/11044) - Avoid panic in invalid language config [`6462eec`](https://github.com/gohugoio/hugo/commit/6462eecf) [@&#8203;bep](https://github.com/bep) [#&#8203;11046](https://github.com/gohugoio/hugo/issues/11046) - Don't panic on empty yaml config params [`a7d6b14`](https://github.com/gohugoio/hugo/commit/a7d6b141) [@&#8203;bep](https://github.com/bep) [#&#8203;11047](https://github.com/gohugoio/hugo/issues/11047) - Prevent double escaping of image alt-text in Goldmar typographer [`3f497d4`](https://github.com/gohugoio/hugo/commit/3f497d49) [@&#8203;bep](https://github.com/bep) [#&#8203;11045](https://github.com/gohugoio/hugo/issues/11045) - deps: Update github.com/tdewolff/minify/v2 v2.12.5 => v2.12.6 [`409c6c3`](https://github.com/gohugoio/hugo/commit/409c6c3f) [@&#8203;jmooring](https://github.com/jmooring) </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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDUuNSIsInVwZGF0ZWRJblZlciI6IjM1LjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
renovator force-pushed renovate/gohugoio-hugo-0.x from 0333f3769d to 97cecfb09b 2023-06-02 10:03:50 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.112.6 to chore(deps): update dependency gohugoio/hugo to v0.112.7 2023-06-02 10:03:50 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 97cecfb09b to 7a63d67848 2023-06-05 17:33:57 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.112.7 to chore(deps): update dependency gohugoio/hugo to v0.113.0 2023-06-05 17:33:57 +02:00
renovator force-pushed renovate/gohugoio-hugo-0.x from 7a63d67848 to ec22450e5f 2023-06-19 19:33:49 +02:00 Compare
renovator changed title from chore(deps): update dependency gohugoio/hugo to v0.113.0 to chore(deps): update dependency gohugoio/hugo to v0.114.0 2023-06-19 19:33:50 +02:00
xoxys merged commit 79c3abf6cc into main 2023-06-23 08:47:17 +02:00
xoxys deleted branch renovate/gohugoio-hugo-0.x 2023-06-23 08:47:17 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: container/hugo#100
No description provided.