Skip to content

Commit

Permalink
fix(deps): update module github.com/gohugoio/hugo to v0.120.3 (#1043)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/gohugoio/hugo](https://togithub.com/gohugoio/hugo) |
require | minor | `v0.119.0` -> `v0.120.3` |

---

### Release Notes

<details>
<summary>gohugoio/hugo (github.com/gohugoio/hugo)</summary>

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

[Compare
Source](https://togithub.com/gohugoio/hugo/compare/v0.120.2...v0.120.3)

#### What's Changed

- tpl/tplimpl: Fix deprecation logic in embedded templates
[`cb98e90`](https://togithub.com/gohugoio/hugo/commit/cb98e9061)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11658](https://togithub.com/gohugoio/hugo/issues/11658)
- Remove some old and unused deprecation code
[`5fa97ee`](https://togithub.com/gohugoio/hugo/commit/5fa97ee96)
[@&#8203;bep](https://togithub.com/bep)
- Add a field prefix to the deprecated log statements
[`4d38f47`](https://togithub.com/gohugoio/hugo/commit/4d38f4725)
[@&#8203;bep](https://togithub.com/bep)
- Avoid double printing INFO deprecation messages
[`80f793c`](https://togithub.com/gohugoio/hugo/commit/80f793c38)
[@&#8203;bep](https://togithub.com/bep)
[#&#8203;11645](https://togithub.com/gohugoio/hugo/issues/11645)
- build(deps): bump github.com/tdewolff/parse/v2 from 2.7.1 to 2.7.3
[`a9079d7`](https://togithub.com/gohugoio/hugo/commit/a9079d7a6)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/tdewolff/minify/v2 from 2.20.1 to 2.20.5
[`4914b7f`](https://togithub.com/gohugoio/hugo/commit/4914b7f18)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]

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

[Compare
Source](https://togithub.com/gohugoio/hugo/compare/v0.120.1...v0.120.2)

#### What's Changed

- Fix deprecation printing on info level
[`ab21433`](https://togithub.com/gohugoio/hugo/commit/ab2143368)
[@&#8203;bep](https://togithub.com/bep)
[#&#8203;11638](https://togithub.com/gohugoio/hugo/issues/11638)
- tpl/tplimpl: Fix deprecation logic in RSS template
[`23fcfb7`](https://togithub.com/gohugoio/hugo/commit/23fcfb7f7)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11639](https://togithub.com/gohugoio/hugo/issues/11639)

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

[Compare
Source](https://togithub.com/gohugoio/hugo/compare/v0.120.0...v0.120.1)

#### What's Changed

- deps: Update github.com/tdewolff/minify/v2 v2.20.0 => v2.20.1
[`2bedcf3`](https://togithub.com/gohugoio/hugo/commit/2bedcf3d1)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11633](https://togithub.com/gohugoio/hugo/issues/11633)

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

[Compare
Source](https://togithub.com/gohugoio/hugo/compare/v0.119.0...v0.120.0)

This is a full dependency refresh and a couple of new cool features:

A new [Padding](https://gohugo.io/functions/images/#padding) image
filter, and a new
[debug.Timer](https://gohugo.io/functions/debug/timer/) template func.
The new `debug.Timer` is useful for finding performance bottle necks in
templates:

```handlebars
{{ $timer := debug.Timer "slowTemplate" }}
// ...
{{ $timer.Stop }}
```

If you then run `hugo --logLevel info` you should see timer info logged
at the end of the build. You can have as many timers as you want and if
you don't stop them, they will be stopped at the end of build.

Hugo now also builds release binaries for Solaris now that a long-living
issue in the upstream
[ƒsnotify](https://togithub.com/fsnotify/fsnotify/pull/371) library has
been fixed, thanks to [@&#8203;nshalman](https://togithub.com/nshalman).

#### Notes

- The `enableEmoji` flag now only works for Markdown content. This is
unfortunate, but the old solution has some known issues and it was too
hard to make it work properly as a general thing across all formats. See
[#&#8203;11598](https://togithub.com/gohugoio/hugo/issues/11598)
- `site.DisqusShortname is deprecated`
[`2eca1b3`](https://togithub.com/gohugoio/hugo/commit/2eca1b3cc)
- `site.GoogleAnalytics` is deprecated
[`a692278`](https://togithub.com/gohugoio/hugo/commit/a692278bc)
- `site.Author` is deprecated
[`d4016dd`](https://togithub.com/gohugoio/hugo/commit/d4016dd5c)
- `site.Social` is deprecated
[`4910312`](https://togithub.com/gohugoio/hugo/commit/4910312ee)

Also, we have changed the string type for some of the fields and
methods:

-
[.Fragments.ToHTML](https://togithub.com/gohugoio/hugo/commit/1b5f78b6b7335b02b6207a637498c4c8817999d1)
not returns `template.HTML`
- `$resource.Data.Integrity` now returns a `string` and not a
`template.HTMLAttr`
- `delimit` now returns a `string` and not a `template.HTML` See
[#&#8203;10876](https://togithub.com/gohugoio/hugo/issues/10876)
[#&#8203;11502](https://togithub.com/gohugoio/hugo/issues/11502).
- the URL functions now returns a `string`, see
[#&#8203;11536](https://togithub.com/gohugoio/hugo/issues/11536)
-   The paginator `Pager` now returns a `string`.
-   `site.BaseURL` now returns a `string`.

The above should both solve some issues and make the above types more
useful and easer to reason about. But if you use the `delimit` function
to process HTML and see some unexpected escaping after this release,
e.g.:

```handlebars
{{ $s := slice "<i>foo</i>" }}
{{ delimit $s "," }}
```

Then you need to mark the type with `safeHTML`:

```handlebars
{{ $s := slice "<i>foo</i>" }}
{{ delimit $s "," | safeHTML }}
```

#### Bug fixes

- create/skeletons: Fix menu template
[`acf01bf`](https://togithub.com/gohugoio/hugo/commit/acf01bfb7)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11519](https://togithub.com/gohugoio/hugo/issues/11519)
- Fix so hugo get -u updates transitively
[`de4e466`](https://togithub.com/gohugoio/hugo/commit/de4e46603)
[@&#8203;razonyang](https://togithub.com/razonyang)
- tpl/tplimpl: Fix dropped error
[`6251626`](https://togithub.com/gohugoio/hugo/commit/625162674)
[@&#8203;alrs](https://togithub.com/alrs)
- tpl/collections: Fix and deprecate echoParams
[`75f56b4`](https://togithub.com/gohugoio/hugo/commit/75f56b4ce)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11498](https://togithub.com/gohugoio/hugo/issues/11498)

#### Improvements

- Add Solaris build
[`7f8ab74`](https://togithub.com/gohugoio/hugo/commit/7f8ab7468)
[@&#8203;bep](https://togithub.com/bep)
[#&#8203;3500](https://togithub.com/gohugoio/hugo/issues/3500)
- Make site.BaseURL and $pager.URL a string
[`b6a7568`](https://togithub.com/gohugoio/hugo/commit/b6a756813)
[@&#8203;bep](https://togithub.com/bep)
- commands/new: Remove format flag from new content cmd
[`27b22cd`](https://togithub.com/gohugoio/hugo/commit/27b22cd87)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11462](https://togithub.com/gohugoio/hugo/issues/11462)
- hugolib: Display correct markup identifier in error message
[`a2488b1`](https://togithub.com/gohugoio/hugo/commit/a2488b1c9)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11538](https://togithub.com/gohugoio/hugo/issues/11538)
- livereloadinject: Save some allocations
[`8f60c0c`](https://togithub.com/gohugoio/hugo/commit/8f60c0c1e)
[@&#8203;bep](https://togithub.com/bep)
- livereloadinject: Use more robust injection method
[`9dc6080`](https://togithub.com/gohugoio/hugo/commit/9dc608084)
[@&#8203;DominoPivot](https://togithub.com/DominoPivot)
- tpl/urls: Return strings from URL functions
[`a349aaf`](https://togithub.com/gohugoio/hugo/commit/a349aafb7)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11511](https://togithub.com/gohugoio/hugo/issues/11511)
- transform/livereloadinject: Add benchmark
[`b8fbd4a`](https://togithub.com/gohugoio/hugo/commit/b8fbd4a57)
[@&#8203;bep](https://togithub.com/bep)
- Revert "modules: Throttle the "downloading modules …" log entries"
[`28d8446`](https://togithub.com/gohugoio/hugo/commit/28d844642)
[@&#8203;bep](https://togithub.com/bep)
- Revert "modules: Adjust the log throttle logic a little"
[`eb5fd31`](https://togithub.com/gohugoio/hugo/commit/eb5fd3127)
[@&#8203;bep](https://togithub.com/bep)
- resources/images: Create padding image filter
[`3ed28e4`](https://togithub.com/gohugoio/hugo/commit/3ed28e4bf)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11599](https://togithub.com/gohugoio/hugo/issues/11599)
- markup/goldmark: Update the CJK extension to allow specifying line
break styles
[`db14238`](https://togithub.com/gohugoio/hugo/commit/db14238ba)
[@&#8203;henry0312](https://togithub.com/henry0312)
- modules: Adjust the log throttle logic a little
[`3f64b5a`](https://togithub.com/gohugoio/hugo/commit/3f64b5a3d)
[@&#8203;bep](https://togithub.com/bep)
- modules: Throttle the "downloading modules …" log entries
[`6690409`](https://togithub.com/gohugoio/hugo/commit/66904097e)
[@&#8203;bep](https://togithub.com/bep)
- tpl/collections: Make delimit return a string
[`e54139c`](https://togithub.com/gohugoio/hugo/commit/e54139c85)
[@&#8203;bep](https://togithub.com/bep)
[#&#8203;10876](https://togithub.com/gohugoio/hugo/issues/10876)
[#&#8203;11502](https://togithub.com/gohugoio/hugo/issues/11502)
- Revise the deprecation logging
[`71fd79a`](https://togithub.com/gohugoio/hugo/commit/71fd79a3f)
[@&#8203;bep](https://togithub.com/bep)
- Remove rest of the now unused emoji code
[`c4a530f`](https://togithub.com/gohugoio/hugo/commit/c4a530f10)
[@&#8203;bep](https://togithub.com/bep)
[#&#8203;11598](https://togithub.com/gohugoio/hugo/issues/11598)
- markdown: Pass emoji codes to yuin/goldmark-emoji
[`272484f`](https://togithub.com/gohugoio/hugo/commit/272484f8b)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;7332](https://togithub.com/gohugoio/hugo/issues/7332)
[#&#8203;11587](https://togithub.com/gohugoio/hugo/issues/11587)
[#&#8203;11598](https://togithub.com/gohugoio/hugo/issues/11598)
- watcher/filenotify: Remove redundant duplicated comments
[`c23a0c4`](https://togithub.com/gohugoio/hugo/commit/c23a0c4a0)
[@&#8203;alexandear](https://togithub.com/alexandear)
- tpl/debug: Add average and median to timer output
[`46bdc03`](https://togithub.com/gohugoio/hugo/commit/46bdc0388)
[@&#8203;bep](https://togithub.com/bep)
- tpl/debug: Add debug.Timer
[`5160c7e`](https://togithub.com/gohugoio/hugo/commit/5160c7efa)
[@&#8203;bep](https://togithub.com/bep)
[#&#8203;11580](https://togithub.com/gohugoio/hugo/issues/11580)
- Add some convenient integration test helpers
[`fd38171`](https://togithub.com/gohugoio/hugo/commit/fd3817181)
[@&#8203;bep](https://togithub.com/bep)
- hugolib: Deprecate .Site.DisqusShortname
[`2eca1b3`](https://togithub.com/gohugoio/hugo/commit/2eca1b3cc)
[@&#8203;jmooring](https://togithub.com/jmooring)
- hugolib: Deprecate .Site.GoogleAnalytics
[`a692278`](https://togithub.com/gohugoio/hugo/commit/a692278bc)
[@&#8203;jmooring](https://togithub.com/jmooring)
- tpl/tplimpl: Deprecate .Site.Author usage in RSS template
[`d4016dd`](https://togithub.com/gohugoio/hugo/commit/d4016dd5c)
[@&#8203;jmooring](https://togithub.com/jmooring)
- tpl/tplimpl: Deprecate .Site.Social usage with internal templates
[`4910312`](https://togithub.com/gohugoio/hugo/commit/4910312ee)
[@&#8203;jmooring](https://togithub.com/jmooring)
- markup/tableofcontents: Return template.HTML from .Fragments.ToHTML
[`1b5f78b`](https://togithub.com/gohugoio/hugo/commit/1b5f78b6b)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11545](https://togithub.com/gohugoio/hugo/issues/11545)
- commands: Update message displayed when running CLI from GUI
[`5993afa`](https://togithub.com/gohugoio/hugo/commit/5993afa4c)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11525](https://togithub.com/gohugoio/hugo/issues/11525)
- common/hugo: Add hugo.IsServer and hugo.IsDevelopment
[`d1b4458`](https://togithub.com/gohugoio/hugo/commit/d1b445853)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11510](https://togithub.com/gohugoio/hugo/issues/11510)
- all: Format files with gofmt
[`274852b`](https://togithub.com/gohugoio/hugo/commit/274852bcf)
[@&#8203;alexandear](https://togithub.com/alexandear)
- magefile: Update isGoLatest to check for Go 1.21
[`37a2d5e`](https://togithub.com/gohugoio/hugo/commit/37a2d5eb4)
[@&#8203;abdullah-alaadine](https://togithub.com/abdullah-alaadine)
- resources/integrity: Return string instead of template.HTMLAttr
[`4c95389`](https://togithub.com/gohugoio/hugo/commit/4c95389c2)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11513](https://togithub.com/gohugoio/hugo/issues/11513)
- tpl/lang: Formally deprecate lang.NumFmt
[`46da0b7`](https://togithub.com/gohugoio/hugo/commit/46da0b7aa)
[@&#8203;jmooring](https://togithub.com/jmooring)

#### Dependency Updates

- build(deps): bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0
[`59bcc09`](https://togithub.com/gohugoio/hugo/commit/59bcc098c)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0
[`e26ba75`](https://togithub.com/gohugoio/hugo/commit/e26ba752d)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/alecthomas/chroma/v2 from 2.9.1 to 2.10.0
[`bcf07fa`](https://togithub.com/gohugoio/hugo/commit/bcf07fa63)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump golang.org/x/tools from 0.13.0 to 0.14.0
[`e2b2092`](https://togithub.com/gohugoio/hugo/commit/e2b2092ce)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/tdewolff/minify/v2 from 2.12.9 to 2.20.0
[`f4df7b8`](https://togithub.com/gohugoio/hugo/commit/f4df7b88b)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/mattn/go-isatty from 0.0.19 to 0.0.20
[`3d9bd40`](https://togithub.com/gohugoio/hugo/commit/3d9bd404e)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump golang.org/x/image from 0.12.0 to 0.13.0
[`5f5e55a`](https://togithub.com/gohugoio/hugo/commit/5f5e55aa8)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump golang.org/x/net from 0.15.0 to 0.17.0
[`8c61fd2`](https://togithub.com/gohugoio/hugo/commit/8c61fd254)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/evanw/esbuild from 0.19.3 to 0.19.5
[`d3145e4`](https://togithub.com/gohugoio/hugo/commit/d3145e4e5)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/spf13/afero from 1.9.5 to 1.10.0
[`743a1da`](https://togithub.com/gohugoio/hugo/commit/743a1da3e)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- build(deps): bump github.com/bep/logg from 0.2.0 to 0.3.0
[`123901b`](https://togithub.com/gohugoio/hugo/commit/123901b74)
[@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
- deps: Update github.com/tdewolff/minify/v2 v2.12.7 => v2.12.9
[`d5d0f42`](https://togithub.com/gohugoio/hugo/commit/d5d0f420d)
[@&#8203;jmooring](https://togithub.com/jmooring)
[#&#8203;11533](https://togithub.com/gohugoio/hugo/issues/11533)

#### Documentation

- docs: Regen docshelper
[`29b6e13`](https://togithub.com/gohugoio/hugo/commit/29b6e133a)
[@&#8203;bep](https://togithub.com/bep)
- docs: Regenerate docshelper
[`d3d4ab4`](https://togithub.com/gohugoio/hugo/commit/d3d4ab41a)
[@&#8203;bep](https://togithub.com/bep)
- Update README.md
[`3af8bde`](https://togithub.com/gohugoio/hugo/commit/3af8bded2)
[@&#8203;bep](https://togithub.com/bep)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/peaceiris/hugo-theme-iris).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Nov 1, 2023
1 parent 8a2b0c7 commit c86d61b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
14 changes: 7 additions & 7 deletions deps/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module theme

go 1.18

require github.com/gohugoio/hugo v0.119.0
require github.com/gohugoio/hugo v0.120.3

require (
github.com/armon/go-radix v1.0.0 // indirect
Expand All @@ -11,7 +11,7 @@ require (
github.com/bep/godartsass v1.2.0 // indirect
github.com/bep/godartsass/v2 v2.0.0 // indirect
github.com/bep/golibsass v1.1.1 // indirect
github.com/bep/logg v0.2.0 // indirect
github.com/bep/logg v0.3.0 // indirect
github.com/bep/overlayfs v0.6.0 // indirect
github.com/clbanning/mxj/v2 v2.7.0 // indirect
github.com/cli/safeexec v1.0.1 // indirect
Expand All @@ -20,19 +20,19 @@ require (
github.com/gohugoio/locales v0.14.0 // indirect
github.com/gohugoio/localescompressed v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/hashstructure v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/niklasfasching/go-org v1.7.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/afero v1.10.0 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/tdewolff/parse/v2 v2.6.6 // indirect
github.com/tdewolff/parse/v2 v2.7.3 // indirect
golang.org/x/exp v0.0.0-20221031165847-c99f073a8326 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
Expand Down
15 changes: 15 additions & 0 deletions deps/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ github.com/bep/golibsass v1.1.1 h1:xkaet75ygImMYjM+FnHIT3xJn7H0xBA9UxSOJjk8Khw=
github.com/bep/golibsass v1.1.1/go.mod h1:DL87K8Un/+pWUS75ggYv41bliGiolxzDKWJAq3eJ1MA=
github.com/bep/logg v0.2.0 h1:EWKB04ea/K/V0xd/7O6x5q+1l+Grub+9N48YMcevtF4=
github.com/bep/logg v0.2.0/go.mod h1:Ccp9yP3wbR1mm++Kpxet91hAZBEQgmWgFgnXX3GkIV0=
github.com/bep/logg v0.3.0 h1:aJWnnkTv9kUAM/2poviaEl5eAdqY0gAnQ9X3bMYZ2xw=
github.com/bep/logg v0.3.0/go.mod h1:Ccp9yP3wbR1mm++Kpxet91hAZBEQgmWgFgnXX3GkIV0=
github.com/bep/overlayfs v0.6.0 h1:sgLcq/qtIzbaQNl2TldGXOkHvqeZB025sPvHOQL+DYo=
github.com/bep/overlayfs v0.6.0/go.mod h1:NFjSmn3kCqG7KX2Lmz8qT8VhPPCwZap3UNogXawoQHM=
github.com/bep/workers v1.0.0/go.mod h1:7kIESOB86HfR2379pwoMWNy8B50D7r99fRLUyPSNyCs=
Expand Down Expand Up @@ -126,6 +128,8 @@ github.com/gohugoio/hugo v0.118.2 h1:N+Gf+Zs74xuURsBN/Q1mevb68SgH77bapkREDjW4/Ss
github.com/gohugoio/hugo v0.118.2/go.mod h1:loOGCp1OeKj3qCxrUe6L/FP1m0qF0EA9QbZ6ARXVoho=
github.com/gohugoio/hugo v0.119.0 h1:kQha6WHt5GcCbI2PELB5KjWMHFJ8LJLrh3lusxnmCng=
github.com/gohugoio/hugo v0.119.0/go.mod h1:pXwmL2lFumAkr3qS2D262seu4SWDLphQLvYfhdGdLRU=
github.com/gohugoio/hugo v0.120.3 h1:PwIZ/frBealnRdBpkpjd4fWA2sLMI0aDBf8mPtrIVJw=
github.com/gohugoio/hugo v0.120.3/go.mod h1:ZogFi7Iv3kRSSJDDguNsF219M4mGllg44IMvw/z/tEA=
github.com/gohugoio/locales v0.14.0 h1:Q0gpsZwfv7ATHMbcTNepFd59H7GoykzWJIxi113XGDc=
github.com/gohugoio/locales v0.14.0/go.mod h1:ip8cCAv/cnmVLzzXtiTpPwgJ4xhKZranqNqtoIu0b/4=
github.com/gohugoio/localescompressed v1.0.1 h1:KTYMi8fCWYLswFyJAeOtuk/EkXR/KPTHHNN9OS+RTxo=
Expand Down Expand Up @@ -212,6 +216,8 @@ github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPn
github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/mitchellh/hashstructure v1.1.0 h1:P6P1hdjqAAknpY/M1CGipelZgp+4y9ja9kmUZPXP+H0=
github.com/mitchellh/hashstructure v1.1.0/go.mod h1:xUDAozZz0Wmdiufv0uyhnHkUTN6/6d8ulp4AwfLKrmA=
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
Expand Down Expand Up @@ -243,6 +249,8 @@ github.com/spf13/afero v1.9.3 h1:41FoI0fD7OR7mGcKE/aOiLkGreyf8ifIOQmJANWogMk=
github.com/spf13/afero v1.9.3/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y=
github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM=
github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ=
github.com/spf13/afero v1.10.0 h1:EaGW2JJh15aKOejeuJ+wpFSHnbd7GE6Wvp3TsNhb6LY=
github.com/spf13/afero v1.10.0/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ=
github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w=
github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU=
github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA=
Expand All @@ -268,8 +276,11 @@ github.com/tdewolff/parse/v2 v2.6.5 h1:lYvWBk55GkqKl0JJenGpmrgu/cPHQQ6/Mm1hBGswo
github.com/tdewolff/parse/v2 v2.6.5/go.mod h1:woz0cgbLwFdtbjJu8PIKxhW05KplTFQkOdX78o+Jgrs=
github.com/tdewolff/parse/v2 v2.6.6 h1:Yld+0CrKUJaCV78DL1G2nk3C9lKrxyRTux5aaK/AkDo=
github.com/tdewolff/parse/v2 v2.6.6/go.mod h1:woz0cgbLwFdtbjJu8PIKxhW05KplTFQkOdX78o+Jgrs=
github.com/tdewolff/parse/v2 v2.7.3 h1:SHj/ry85FdqniccvzJTG+Gt/mi/HNa1cJcTzYZnvc5U=
github.com/tdewolff/parse/v2 v2.7.3/go.mod h1:9p2qMIHpjRSTr1qnFxQr+igogyTUTlwvf9awHSm84h8=
github.com/tdewolff/test v1.0.7 h1:8Vs0142DmPFW/bQeHRP3MV19m1gvndjUb1sn8yy74LM=
github.com/tdewolff/test v1.0.7/go.mod h1:6DAvZliBAAnD7rhVgwaM7DE5/d9NMOAJ09SqYqeK4QE=
github.com/tdewolff/test v1.0.10/go.mod h1:6DAvZliBAAnD7rhVgwaM7DE5/d9NMOAJ09SqYqeK4QE=
github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down Expand Up @@ -368,6 +379,8 @@ golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8=
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM=
golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
Expand Down Expand Up @@ -438,6 +451,8 @@ golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE=
golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
Expand Down

0 comments on commit c86d61b

Please sign in to comment.