Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5b89da0

Browse files
chore: bump github.com/gohugoio/hugo from 0.152.2 to 0.153.1 (#21368)
Bumps [github.com/gohugoio/hugo](https://github.com/gohugoio/hugo) from0.152.2 to 0.153.1.<details><summary>Release notes</summary><p><em>Sourced from <ahref="https://github.com/gohugoio/hugo/releases">github.com/gohugoio/hugo'sreleases</a>.</em></p><blockquote><h2>v0.153.1</h2><blockquote><p>[!note]This is a bug fix release. See the <ahref="https://github.com/gohugoio/hugo/releases/tag/v0.153.0">mainrelease</a> for a list of new features.</p></blockquote><ul><li>Handle PNG named *.webp 4085ee93 <ahref="https://github.com/bep"><code>@​bep</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14288">#14288</a></li><li>Revert deprecation logging for contentDir per language 168bf17e <ahref="https://github.com/bep"><code>@​bep</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14287">#14287</a></li><li>Fix panic when 404 is backed by a content file f740d7cf <ahref="https://github.com/bep"><code>@​bep</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14283">#14283</a></li><li>internal/warpc: Increase WebP memory limit to 256 MiB 5f46da6e <ahref="https://github.com/jmooring"><code>@​jmooring</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14282">#14282</a></li></ul><h2>v0.153.0</h2><blockquote><p>[!note]There is a newer bug fix release available <ahref="https://github.com/gohugoio/hugo/releases/tag/v0.153.1">here</a>.</p></blockquote><p>This is a good one! Hugo <code>v0.153.0</code> comes with a powerfulnew multidimensional content model (languages, versions and roles) andcompletely overhauls WebP image support, and much more:</p><ul><li>For the new multidimensional content model, start reading <ahref="https://gohugo.io/quick-reference/glossary/#sites-matrix">sitesmatrix</a> and <ahref="https://gohugo.io/quick-reference/glossary/#sites-complements">sitescomplements</a>. The matrix is what gets written to disk,<code>complements</code> allows e.g. a site in Swedish to fill inmissing gaps in the site in Norwegian's page and resource collections.Also see the new <ahref="https://gohugo.io/methods/page/rotate/">Rotate</a> method, thatallows you to rotate the content tree in a given dimension.</li><li>For WebP we now build a WASM version of <ahref="https://github.com/webmproject/libwebp/">libwebp</a>(<code>v1.6.0</code>) and run it in the <ahref="https://wazero.io/">Wazero</a> runtime. We use this for bothencoding and decoding. This solves an old and annoying issue with Go'sstdlib's decoder, with <ahref="https://redirect.github.com/gohugoio/hugo/issues/8879">loss ofcontrast and muted colors</a> in some photos, but it also means that youdon't need the extended version of Hugo to handle WebP images. And, drumroll, we now also support animated WebP, including converting to andfrom animated GIFs.</li><li>For MacOS, we now build signed and notarised <code>pkg</code>installers.</li></ul><p>Also:</p><ul><li>The Asciidoctor integration is greatly improved.</li><li>New template funcs <ahref="https://gohugo.io/functions/urls/pathunescape/">urls.PathUnescape</a>and <ahref="https://gohugo.io/functions/urls/pathescape/">urls.PathEscape</a>.</li><li><ahref="https://gohugo.io/functions/openapi3/unmarshal/">openapi3.Unmarshal</a>now support external refs (including remote refs).</li></ul><h2>Notes</h2><ul><li>tpl/css: Deprecate libsass in favor of dartsass (note) 9937a5dc <ahref="https://github.com/bep"><code>@​bep</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14261">#14261</a></li><li>Build Order: Hugo builds sites based on the sorted dimensions (seebelow). In earlier versions, we built the sites starting with thedefault content language. This change is also reflected in the sortorder of <code>.Site.Sites</code> to make it consistent with<code>.Site.Languages</code>.</li><li>Sort Order: The dimensions are sorted as follows, which affectsbuild order and complement selection:<ul><li>languages: By weight, then by name.</li><li>versions: By weight, then by semantic versioning (descending).</li><li>roles: By weight, then by name.</li></ul></li><li>Deprecations:<ul><li>The lang option on mounts (<ahref="https://gohugo.io/configuration/module/#mounts">https://gohugo.io/configuration/module/#mounts</a>)and segments(<ahref="https://gohugo.io/configuration/segments/#segment-definition">https://gohugo.io/configuration/segments/#segment-definition</a>)is deprecated in favor of the more powerful <code>sites.matrix</code>option.</li><li>File mount <code>includeFiles</code> and <code>excludeFiles</code>are deprecated in favour of the new files filter, which supportsnegation.</li></ul></li><li>Logging: We no longer log warnings about potential duplicate contentpaths, as this becomes impractical to reason about with acomplex sites matrix.</li></ul><h2>Bug fixes</h2><ul><li>Fix some outdated front matter b82e496c <ahref="https://github.com/bep"><code>@​bep</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14271">#14271</a></li><li>Fix server rebuilds on editing content with Chinese terms e2e64aee<a href="https://github.com/bep"><code>@​bep</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14240">#14240</a></li><li>Fix slow server startup of very big content trees 7a43b928 <ahref="https://github.com/bep"><code>@​bep</code></a> <ahref="https://redirect.github.com/gohugoio/hugo/issues/14211">#14211</a></li><li>github: Fix &quot;no space left on device&quot; issue in CI b037b930<a href="https://github.com/bep"><code>@​bep</code></a></li><li>docs: Fix link to CGO wiki page 5af31128 <ahref="https://github.com/jordelver"><code>@​jordelver</code></a></li></ul><!-- raw HTML omitted --></blockquote><p>... (truncated)</p></details><details><summary>Commits</summary><ul><li><ahref="https://github.com/gohugoio/hugo/commit/8e6cac8462d210f611154068eaa24c4461357653"><code>8e6cac8</code></a>releaser: Bump versions for release of 0.153.1</li><li><ahref="https://github.com/gohugoio/hugo/commit/4085ee9340373b806a74654ff46586cc6d99d096"><code>4085ee9</code></a>Handle PNG named *.webp</li><li><ahref="https://github.com/gohugoio/hugo/commit/168bf17e7042a4df98742d21354205b8a48641a5"><code>168bf17</code></a>Revert deprecation logging for contentDir per language</li><li><ahref="https://github.com/gohugoio/hugo/commit/80ea90c880e805814d6689769c4a1969f592f539"><code>80ea90c</code></a>images: Add some more PNG tests</li><li><ahref="https://github.com/gohugoio/hugo/commit/f740d7cfe0ebaec7056a8fc2b770e46b86c13ee7"><code>f740d7c</code></a>Fix panic when 404 is backed by a content file</li><li><ahref="https://github.com/gohugoio/hugo/commit/5f46da6e2a3f838b40176775c0b46855f4f8f529"><code>5f46da6</code></a>internal/warpc: Increase WebP memory limit to 256 MiB</li><li><ahref="https://github.com/gohugoio/hugo/commit/fe64a682254e32391a6d0c78f277b1133e1f4583"><code>fe64a68</code></a>releaser: Prepare repository for 0.154.0-DEV</li><li><ahref="https://github.com/gohugoio/hugo/commit/b4128babb839feaa962c00e777f0d2fe8d811f7d"><code>b4128ba</code></a>releaser: Bump versions for release of 0.153.0</li><li><ahref="https://github.com/gohugoio/hugo/commit/790a5b70142a07a8046763359a16a553474a1928"><code>790a5b7</code></a>hugoreleaser: Updage macospkgremote to increase notarizationtimeout</li><li><ahref="https://github.com/gohugoio/hugo/commit/70ce2446b593a67f8871ce78cf250a95062af9e0"><code>70ce244</code></a>Merge commit '08e1ea5c709d3d49bdc3ce3c21e8fa05a33150d0'</li><li>Additional commits viewable in <ahref="https://github.com/gohugoio/hugo/compare/v0.152.2...v0.153.1">compareview</a></li></ul></details><br />[![Dependabot compatibilityscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/gohugoio/hugo&package-manager=go_modules&previous-version=0.152.2&new-version=0.153.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)Dependabot will resolve any conflicts with this PR as long as you don'talter it yourself. You can also trigger a rebase manually by commenting`@dependabot rebase`.[//]: # (dependabot-automerge-start)[//]: # (dependabot-automerge-end)---<details><summary>Dependabot commands and options</summary><br />You can trigger Dependabot actions by commenting on this PR:- `@dependabot rebase` will rebase this PR- `@dependabot recreate` will recreate this PR, overwriting any editsthat have been made to it- `@dependabot merge` will merge this PR after your CI passes on it- `@dependabot squash and merge` will squash and merge this PR afteryour CI passes on it- `@dependabot cancel merge` will cancel a previously requested mergeand block automerging- `@dependabot reopen` will reopen this PR if it is closed- `@dependabot close` will close this PR and stop Dependabot recreatingit. You can achieve the same result by closing it manually- `@dependabot show <dependency name> ignore conditions` will show allof the ignore conditions of the specified dependency- `@dependabot ignore this major version` will close this PR and stopDependabot creating any more for this major version (unless you reopenthe PR or upgrade to it yourself)- `@dependabot ignore this minor version` will close this PR and stopDependabot creating any more for this minor version (unless you reopenthe PR or upgrade to it yourself)- `@dependabot ignore this dependency` will close this PR and stopDependabot creating any more for this dependency (unless you reopen thePR or upgrade to it yourself)</details>Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent3f13859 commit5b89da0

File tree

2 files changed

+61
-46
lines changed

2 files changed

+61
-46
lines changed

‎go.mod‎

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ require (
127127
github.com/go-logr/logrv1.4.3
128128
github.com/go-playground/validator/v10v10.30.0
129129
github.com/gofrs/flockv0.13.0
130-
github.com/gohugoio/hugov0.152.2
130+
github.com/gohugoio/hugov0.153.1
131131
github.com/golang-jwt/jwt/v4v4.5.2
132132
github.com/golang-migrate/migrate/v4v4.19.0
133133
github.com/gomarkdown/markdownv0.0.0-20240930133441-72d49d9543d8
@@ -248,7 +248,7 @@ require (
248248
github.com/agext/levenshteinv1.2.3// indirect
249249
github.com/agnivade/levenshteinv1.2.1// indirect
250250
github.com/akutz/memconnv0.1.0// indirect
251-
github.com/alecthomas/chroma/v2v2.20.0// indirect
251+
github.com/alecthomas/chroma/v2v2.21.1// indirect
252252
github.com/alexbrainman/sspiv0.0.0-20210105120005-909beea2cc74// indirect
253253
github.com/anmitsu/go-shlexv0.0.0-20200514113438-38f4b401e2be// indirect
254254
github.com/apparentlymart/go-cidrv1.1.0// indirect
@@ -260,8 +260,8 @@ require (
260260
github.com/aws/aws-sdk-go-v2/credentialsv1.19.1// indirect
261261
github.com/aws/aws-sdk-go-v2/feature/ec2/imdsv1.18.14// indirect
262262
github.com/aws/aws-sdk-go-v2/feature/rds/authv1.6.2
263-
github.com/aws/aws-sdk-go-v2/internal/configsourcesv1.4.14// indirect
264-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2v2.7.14// indirect
263+
github.com/aws/aws-sdk-go-v2/internal/configsourcesv1.4.16// indirect
264+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2v2.7.16// indirect
265265
github.com/aws/aws-sdk-go-v2/internal/iniv1.8.4// indirect
266266
github.com/aws/aws-sdk-go-v2/service/internal/accept-encodingv1.13.3// indirect
267267
github.com/aws/aws-sdk-go-v2/service/internal/presigned-urlv1.13.14// indirect
@@ -358,7 +358,7 @@ require (
358358
github.com/mailru/easyjsonv0.9.1// indirect
359359
github.com/mattn/go-colorablev0.1.14// indirect
360360
github.com/mattn/go-localereaderv0.0.1// indirect
361-
github.com/mattn/go-runewidthv0.0.16// indirect
361+
github.com/mattn/go-runewidthv0.0.19// indirect
362362
github.com/mdlayher/genetlinkv1.3.2// indirect
363363
github.com/mdlayher/netlinkv1.7.2// indirect
364364
github.com/mdlayher/sdnotifyv1.0.0// indirect
@@ -411,7 +411,7 @@ require (
411411
github.com/tailscale/wireguard-gov0.0.0-20231121184858-cc193a0b3272
412412
github.com/tchap/go-patricia/v2v2.3.2// indirect
413413
github.com/tcnksm/go-httpstatv0.2.0// indirect
414-
github.com/tdewolff/parse/v2v2.8.5-0.20251020133559-0efcf90bef1a// indirect
414+
github.com/tdewolff/parse/v2v2.8.5// indirect
415415
github.com/tidwall/matchv1.2.0// indirect
416416
github.com/tidwall/prettyv1.2.1// indirect
417417
github.com/tinylib/msgpv1.2.5// indirect
@@ -491,10 +491,10 @@ require (
491491

492492
require (
493493
cel.dev/exprv0.24.0// indirect
494-
cloud.google.com/gov0.121.4// indirect
494+
cloud.google.com/gov0.121.6// indirect
495495
cloud.google.com/go/iamv1.5.2// indirect
496496
cloud.google.com/go/monitoringv1.24.2// indirect
497-
cloud.google.com/go/storagev1.55.0// indirect
497+
cloud.google.com/go/storagev1.56.0// indirect
498498
git.sr.ht/~jackmordaunt/go-toastv1.1.2// indirect
499499
github.com/DataDog/datadog-agent/comp/core/tagger/origindetectionv0.64.2// indirect
500500
github.com/DataDog/datadog-agent/pkg/versionv0.64.2// indirect
@@ -510,21 +510,24 @@ require (
510510
github.com/aquasecurity/trivyv0.61.1-0.20250407075540-f1329c7ea1aa// indirect
511511
github.com/aquasecurity/trivy-checksv1.11.3-0.20250604022615-9a7efa7c9169// indirect
512512
github.com/aws/aws-sdk-gov1.55.7// indirect
513-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstreamv1.6.11// indirect
513+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstreamv1.7.3// indirect
514514
github.com/aws/aws-sdk-go-v2/service/signinv1.0.1// indirect
515515
github.com/bahlo/generic-list-gov0.2.0// indirect
516516
github.com/bgentry/go-netrcv0.0.0-20140422174119-9fd32a8b3d3d// indirect
517+
github.com/bits-and-blooms/bitsetv1.24.4// indirect
517518
github.com/buger/jsonparserv1.1.1// indirect
518519
github.com/cenkalti/backoff/v5v5.0.3// indirect
519520
github.com/charmbracelet/x/exp/slicev0.0.0-20250327172914-2fdc97757edf// indirect
521+
github.com/clipperhouse/stringishv0.1.1// indirect
522+
github.com/clipperhouse/uax29/v2v2.3.0// indirect
520523
github.com/cncf/xds/gov0.0.0-20251022180443-0feb69152e9f// indirect
521524
github.com/envoyproxy/go-control-plane/envoyv1.35.0// indirect
522525
github.com/envoyproxy/protoc-gen-validatev1.2.1// indirect
523526
github.com/esiqveland/notifyv0.13.3// indirect
524527
github.com/go-git/gcfgv1.5.1-0.20230307220236-3a3c6141e376// indirect
525528
github.com/go-git/go-billy/v5v5.6.2// indirect
526529
github.com/go-sql-driver/mysqlv1.9.3// indirect
527-
github.com/goccy/go-yamlv1.18.0// indirect
530+
github.com/goccy/go-yamlv1.19.1// indirect
528531
github.com/google/go-containerregistryv0.20.6// indirect
529532
github.com/gorilla/websocketv1.5.4-0.20250319132907-e064f32e3674// indirect
530533
github.com/hashicorp/go-getterv1.7.9// indirect

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp