Skip to content

chore(deps): update dependency gohugoio/hugo to v0.160.0#57

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/gohugoio-hugo-0.x
Open

chore(deps): update dependency gohugoio/hugo to v0.160.0#57
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/gohugoio-hugo-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Dec 8, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
gohugoio/hugo minor v0.121.0v0.160.0

Release Notes

gohugoio/hugo (gohugoio/hugo)

v0.160.0

Compare Source

Now you can inject CSS vars, e.g. from the configuration, into your stylesheets when building with css.Build. Also, now all the render hooks has a .Position method, now also more accurate and effective.

Bug fixes

Improvements

Dependency Updates

Documentation

v0.159.2

Compare Source

Note that the security fix below is not a potential threat if you either:

EDIT IN: This release also adds release archives for non-extended-withdeploy builds.

What's Changed

v0.159.1

Compare Source

The regression fixed in this release isn't new, but it's so subtle that we thought we'd release this sooner rather than later. For some time now, the minifier we use have stripped namespaced attributes in SVGs, which broke dynamic constructs using e.g. AlpineJS' x-bind: namespace (library used by Hugo's documentation site).

To fix this, the upstream library has hadded a keepNamespaces slice option. It was not possible to find a default that would make all happy, so we opted for an option that at least would make AlpineJS sites work out of the box:

 [minify.tdewolff.svg]
      keepNamespaces = ['', 'x-bind']

What's Changed

v0.159.0

Compare Source

This release greatly improves and simplifies management of Node.js/npm dependencies in a multi-module setup. See this page for more information.

Note

  • Replace deprecated site.Data with hugo.Data in tests a8fca59 @​bep
  • Replace deprecated excludeFiles and includeFiles with files in tests 182b104 @​bep
  • Replace deprecated :filename with :contentbasename in the permalinks test eb11c3d @​bep

Bug fixes

Improvements

Dependency Updates

Documentation

v0.158.0

Compare Source

This release adds css.Build, native and very fast bundling/transformation/minifying of CSS resources. Also see the new strings.ReplacePairs, a very fast option if you need to do many string replacements.

Notes

Deprecations

The methods and config options are deprecated and will be removed in a future Hugo release.

Also see this article

Language configuration
  • languageCode → Use locale instead.
  • languages.<lang>.languageCode → Use languages.<lang>.locale instead.
  • languages.<lang>.languageName → Use languages.<lang>.label instead.
  • languages.<lang>.languageDirection → Use languages.<lang>.direction instead.
Language methods
  • .Site.LanguageCode → Use .Site.Language.Locale instead.
  • .Language.LanguageCode → Use .Language.Locale instead.
  • .Language.LanguageName → Use .Language.Label instead.
  • .Language.LanguageDirection → Use .Language.Direction instead.

Bug fixes

Improvements

Dependency Updates

v0.157.0

Compare Source

The notable new feature is GitInfo support for Hugo Modules. See this repo for a runnable demo where multiple versions of the same content is mounted into different versions.

Bug fixes

Improvements

Dependency Updates

v0.156.0

Compare Source

This release brings significant speedups of collections.Where and collections.Sort – but this is mostly a "spring cleaning" release, to make the API cleaner and simpler to understand/document.

Deprecated

  • Site.AllPages is Deprecated
  • Site.BuildDrafts is Deprecated
  • Site.Languages is Deprecated
  • Site.Data is deprecated, use hugo.Data
  • Page.Sites and Site.Sites is Deprecated, use hugo.Sites

See this topic for more info.

Removed

These have all been deprecated at least since v0.136.0 and any usage have been logged as an error for a long time:

Template functions

  • data.GetCSV / getCSV (use resources.GetRemote)
  • data.GetJSON / getJSON (use resources.GetRemote)
  • crypto.FNV32a (use hash.FNV32a)
  • resources.Babel (use js.Babel)
  • resources.PostCSS (use css.PostCSS)
  • resources.ToCSS (use css.Sass)

Page methods:

  • .Page.NextPage (use .Page.Next)
  • .Page.PrevPage (use .Page.Prev)

Paginator:

  • .Paginator.PageSize (use .Paginator.PagerSize)

Site methods:

  • .Site.LastChange (use .Site.Lastmod)
  • .Site.Author (use .Site.Params.Author)
  • .Site.Authors (use .Site.Params.Authors)
  • .Site.Social (use .Site.Params.Social)
  • .Site.IsMultiLingual (use hugo.IsMultilingual)
  • .Sites.First (use .Sites.Default)

Site config:

  • paginate (use pagination.pagerSize)
  • paginatePath (use pagination.path)

File caches:

  • getjson cache
  • getcsv cache

Notes

Bug fixes

Improvements

Dependency Updates

Build Setup

Documentation

v0.155.3

Compare Source

What's Changed

v0.155.2

Compare Source

Note that the bug fix below is for the two new dimensions introduced in v0.153.0 (version and role), multiple languages worked fine. Also, changes to the first version and role also worked, which had me head-scratching for a while. Oh, well, enjoy.

v0.155.1

Compare Source

What's Changed

v0.155.0

Compare Source

Some notable new things in this release are:

  • Improvements to how versions are handled: We now support version (and also for the other dimension) range queries (e.g. >= v1.0.0), and we now cache Go module version queries, which makes mounting multiple versions of the same GitHub repo with different version much more practical and enjoyable, se this site and config for an annotated example.
  • We finally have XMP and IPTC image metadata support, in addition to EXIF, see #​13146
  • Page aliases now works in multidimensional sites (e.g. multiple languages), and it is now much easier to create e.g. Netlify _redirects files that works in such setups.
  • There are several performance related WebP improvements in this release.
  • Also, image processing in general (e.g. resize operations) should be considerably more effective.

Breaking change

Prior to v0.155.0, alias paths beginning with a slash (/) were treated as server-relative. In v0.155.0 and later, they are now site-relative. This change only affects multilingual single-host projects that used alias paths beginning with a slash (/) to cross language boundaries. See details.

Note

Bug fixes

Improvements

Dependency Updates

Build Setup

Documentation

v0.154.5

Compare Source

What's Changed

v0.154.4

Compare Source

What's Changed

Also see the new Page.OutputFormats.Canonical method.

v0.154.3

Compare Source

What's Changed

v0.154.2

Compare Source

What's Changed

  • Fix alpha/fuzzy border issue with new webp decoder for images with with transparent background e9b9b36 @​bep #​14339

v0.154.1

Compare Source

What's Changed

v0.154.0

Compare Source

Hugo v0.154.0 is the 14th release this year (not counting patch releases) and introduces partial decorators, or “partials with a twist.” This is a very powerful construct that I, @​bep, have always wanted to have in Hugo, but I could never wrap my head around an implementation. Until now.

A small and not very useful example:

{{ with partial "b.html" "World" }}Hello {{ . }}{{ end }}
{{ define "_partials/b.html" }}<b>{{ inner . }}</b>{{ end }}

The above renders to:

<b>Hello World</b>
  • The new inner keyword can be used zero or more times in a partial template, typically with different data (e.g. pages in a range), and its presence signals a reversal of the execution -- the callee becomes the caller.
  • Decorators can be deeply nested, see this PR for an example.

This release also brings some new utility funcs in the reflect package to identify the core types in Hugo. For example, to identify an processable image hasn't been trivial, now it is:

{{ $obj := . }}
{{ if reflect.IsResource $obj }}
   {{ if reflect.IsImageResource $obj }}
        // It has width/height and we can process it.
   {{ else }}
       // Just link to it.
   {{ end }}
{{ end }}

Bug fixes

Improvements

Dependency Updates

v0.153.5

Compare Source

What's Changed

v0.153.4

Compare Source

What's Changed

v0.153.3

Compare Source

What's Changed


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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.121.1 chore(deps): update dependency gohugoio/hugo to v0.121.2 Jan 5, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 8fa3c06 to d27487e Compare January 5, 2024 14:36
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from d27487e to 435402b Compare January 26, 2024 17:18
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.121.2 chore(deps): update dependency gohugoio/hugo to v0.122.0 Jan 26, 2024
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.122.0 chore(deps): update dependency gohugoio/hugo to v0.123.0 Feb 19, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch 2 times, most recently from e134e3a to fe561be Compare February 21, 2024 10:53
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.0 chore(deps): update dependency gohugoio/hugo to v0.123.1 Feb 21, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from fe561be to c66ae80 Compare February 22, 2024 19:36
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.1 chore(deps): update dependency gohugoio/hugo to v0.123.2 Feb 22, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from c66ae80 to 1afa7a5 Compare February 23, 2024 18:47
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.2 chore(deps): update dependency gohugoio/hugo to v0.123.3 Feb 23, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 1afa7a5 to bc2bafc Compare February 26, 2024 20:13
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.3 chore(deps): update dependency gohugoio/hugo to v0.123.4 Feb 26, 2024
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.4 chore(deps): update dependency gohugoio/hugo to v0.123.5 Feb 28, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch 2 times, most recently from b5f8149 to e9f4d96 Compare February 28, 2024 21:19
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.5 chore(deps): update dependency gohugoio/hugo to v0.123.6 Feb 28, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from e9f4d96 to f0d7cd5 Compare March 1, 2024 18:12
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.6 chore(deps): update dependency gohugoio/hugo to v0.123.7 Mar 1, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from f0d7cd5 to e9f97a0 Compare March 7, 2024 17:52
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.7 chore(deps): update dependency gohugoio/hugo to v0.123.8 Mar 7, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from e9f97a0 to 03461fa Compare March 16, 2024 20:07
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.123.8 chore(deps): update dependency gohugoio/hugo to v0.124.0 Mar 16, 2024
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.124.0 chore(deps): update dependency gohugoio/hugo to v0.124.1 Mar 20, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 03461fa to 9021224 Compare March 20, 2024 13:22
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 9021224 to 5335642 Compare April 16, 2024 16:33
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.124.1 chore(deps): update dependency gohugoio/hugo to v0.125.0 Apr 16, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 5335642 to b399d23 Compare April 18, 2024 10:38
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.125.0 chore(deps): update dependency gohugoio/hugo to v0.125.1 Apr 18, 2024
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.125.6 chore(deps): update dependency gohugoio/hugo to v0.125.7 May 8, 2024
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.125.7 chore(deps): update dependency gohugoio/hugo to v0.126.0 May 14, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch 2 times, most recently from 0bd885f to 56c226e Compare May 15, 2024 20:42
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.126.0 chore(deps): update dependency gohugoio/hugo to v0.126.1 May 15, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 56c226e to d905d21 Compare May 30, 2024 18:02
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.126.1 chore(deps): update dependency gohugoio/hugo to v0.126.2 May 30, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from d905d21 to 2189d73 Compare June 2, 2024 13:55
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.126.2 chore(deps): update dependency gohugoio/hugo to v0.126.3 Jun 2, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 2189d73 to e0d5470 Compare June 5, 2024 12:15
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.126.3 chore(deps): update dependency gohugoio/hugo to v0.127.0 Jun 5, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from e0d5470 to 4d9f32c Compare June 25, 2024 18:37
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.127.0 chore(deps): update dependency gohugoio/hugo to v0.128.0 Jun 25, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 4d9f32c to 8452958 Compare July 2, 2024 09:01
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.128.0 chore(deps): update dependency gohugoio/hugo to v0.128.1 Jul 2, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 8452958 to ccede93 Compare July 4, 2024 09:51
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.128.1 chore(deps): update dependency gohugoio/hugo to v0.128.2 Jul 4, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from ccede93 to c97be24 Compare July 17, 2024 15:55
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.128.2 chore(deps): update dependency gohugoio/hugo to v0.129.0 Jul 17, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from c97be24 to 107f9ab Compare July 29, 2024 15:02
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.129.0 chore(deps): update dependency gohugoio/hugo to v0.130.0 Jul 29, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 107f9ab to 23aa08b Compare August 2, 2024 11:06
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.130.0 chore(deps): update dependency gohugoio/hugo to v0.131.0 Aug 2, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 23aa08b to 70ca2c7 Compare August 12, 2024 17:03
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.131.0 chore(deps): update dependency gohugoio/hugo to v0.132.0 Aug 12, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 70ca2c7 to 344449f Compare August 13, 2024 11:41
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.132.0 chore(deps): update dependency gohugoio/hugo to v0.132.1 Aug 13, 2024
@renovate renovate bot force-pushed the renovate/gohugoio-hugo-0.x branch from 344449f to 2068f91 Compare August 14, 2024 18:43
@renovate renovate bot changed the title chore(deps): update dependency gohugoio/hugo to v0.132.1 chore(deps): update dependency gohugoio/hugo to v0.132.2 Aug 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants