Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump hugo-extended from 0.134.2 to 0.134.3 #181

Merged
merged 2 commits into from
Sep 24, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps hugo-extended from 0.134.2 to 0.134.3.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that 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 after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [hugo-extended](https://github.com/jakejarvis/hugo-extended) from 0.134.2 to 0.134.3.
- [Commits](jakejarvis/hugo-extended@v0.134.2...v0.134.3)

---
updated-dependencies:
- dependency-name: hugo-extended
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner September 23, 2024 20:33
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 23, 2024
@dependabot dependabot bot requested review from riscait, naipaka, boywithdv and k-nkmr and removed request for a team September 23, 2024 20:33
@github-actions github-actions bot enabled auto-merge (squash) September 23, 2024 20:33
@boywithdv
Copy link
Contributor

boywithdv commented Sep 24, 2024

@boywithdv ➜ /workspaces/handbook (dependabot/npm_and_yarn/hugo-extended-0.134.3) $ hugo server
hugo: downloading modules …
hugo: collected modules in 20755 ms
Watching for changes in /workspaces/handbook/{assets,content,layouts,package.json,static}
Watching for config changes in /workspaces/handbook/hugo.yaml, /workspaces/handbook/go.mod
Start building sites … 
hugo v0.134.3-5fb333b9f5ff4ec018f9d78910177d0bec1befb0+extended linux/amd64 BuildDate=2024-09-19T14:28:20Z VendorInfo=gohugoio

ERROR render of "home" failed: "/home/vscode/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/google/[email protected]/layouts/docs/baseof.html:4:7": execute of template failed: template: docs/list.html:4:7: executing "docs/list.html" at <partial "head.html" .>: error calling partial: execute of template failed: html/template:partials/head.html:53:16: no such template "_internal/google_analytics_async.html"
ERROR render of "section" failed: "/home/vscode/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/google/[email protected]/layouts/docs/baseof.html:4:7": execute of template failed: template: docs/list.html:4:7: executing "docs/list.html" at <partial "head.html" .>: error calling partial: execute of template failed: html/template:partials/head.html:53:16: no such template "_internal/google_analytics_async.html"
ERROR render of "page" failed: "/home/vscode/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/google/[email protected]/layouts/docs/baseof.html:4:7": execute of template failed: template: docs/single.html:4:7: executing "docs/single.html" at <partial "head.html" .>: error calling partial: execute of template failed: html/template:partials/head.html:53:16: no such template "_internal/google_analytics_async.html"
Built in 138 ms
Error: error building site: render: failed to render pages: render of "404" failed: "/home/vscode/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/google/[email protected]/layouts/docs/baseof.html:4:7": execute of template failed: template: 404.html:4:7: executing "404.html" at <partial "head.html" .>: error calling partial: execute of template failed: html/template:partials/head.html:53:16: no such template "_internal/google_analytics_async.html"

@naipaka
Copy link
Contributor

naipaka commented Sep 24, 2024

@boywithdv
After investigating the error, I found that in docsy 0.10.0, there's a mention of "Google analytics: drop deprecated async template by @deining in #1931", so it seems that upgrading docsy should address the issue!

It looks like you can upgrade using the following steps ✍️
It also seems like adding gomod with dependabot would be a good idea. I'll handle that in a separate PR!

  1. Run go get -u ./... && go mod tidy.
  2. Run hugo server and verify that go.mod and go.sum have been updated.
  3. Commit & push on codespace.
日本語

そちらのエラーを調べてみたところ、docsy 0.10.0 で「Google analytics: drop deprecated async template by @deining in #1931」と記載があったので、docsy のバージョンアップで対応できるかと思います!

以下の手順でバージョンアップできそうです✍️
dependabotでgomodも追加したほうが良さそうですね、別PRで自分の方で対応しようと思います!

  1. go get -u ./... && go mod tidy を実行
  2. hugo server を実行し、go.modgo.sumが更新されていることを確認
  3. codespace上でコミット&push

@boywithdv
Copy link
Contributor

boywithdv commented Sep 24, 2024

dependabotでgomodも追加したほうが良さそうですね、別PRで自分の方で対応しようと思います!

docsyのバージョンアップの手順、ありがとうございます!🙏
gomod追加後にこちらのdependabotの対応をいたします!

@github-actions github-actions bot merged commit 59bc6b9 into main Sep 24, 2024
1 check passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/hugo-extended-0.134.3 branch September 24, 2024 01:52
@boywithdv
Copy link
Contributor

boywithdv commented Sep 24, 2024

@naipaka dependabot対応の方終えました!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants