[Automated] Update academy-theme to v0.4.9#130
Conversation
Signed-off-by: CodexRaunak <CodexRaunak@users.noreply.github.com>
|
There was a problem hiding this comment.
Pull request overview
Updates the Hugo module dependency on github.com/layer5io/academy-theme to the newly released v0.4.9, keeping this example site aligned with the latest academy theme.
Changes:
- Bumped
github.com/layer5io/academy-themefromv0.4.8tov0.4.9ingo.mod. - Regenerated
go.sumto include checksums forv0.4.9.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| go.mod | Updates the required academy-theme module version to v0.4.9. |
| go.sum | Adds checksum entries for academy-theme v0.4.9. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Code Review
This pull request updates the academy-theme dependency from version v0.4.8 to v0.4.9. Feedback suggests updating the replace directive in go.mod to be version-agnostic to prevent it from breaking during version bumps, correcting a potential typo in the Go version, and running hugo mod tidy to remove unused checksums from go.sum.
| require ( | ||
| github.com/FortAwesome/Font-Awesome v4.7.0+incompatible // indirect | ||
| github.com/layer5io/academy-theme v0.4.8 // indirect | ||
| github.com/layer5io/academy-theme v0.4.9 // indirect |
There was a problem hiding this comment.
The replace directive on line 6 is pinned to version v0.4.2. Since this update changes the required version to v0.4.9, the replacement will no longer be active for local development. It is recommended to update the replace directive to be version-agnostic (e.g., replace github.com/layer5io/academy-theme => ../academy-theme) to ensure it works across version updates.
Additionally, the Go version on line 3 (1.24.5) appears to be a typo, as that specific patch version has not been released. You may want to correct it to a valid stable version like 1.24.0.
| github.com/layer5io/academy-theme v0.4.9 h1:MQi5yZ2HmTzBVDZn+4CUuPRIxAlYCbwCOza4TUQUjtE= | ||
| github.com/layer5io/academy-theme v0.4.9/go.mod h1:Dv72UWsREOvX4Zg4mJjrpoyDxdgxxpiDotxqYBXMjXo= |
This PR updates the academy-theme dependency to the latest release version v0.4.9.
Changes:
Auto-generated based upon release of a new version of layer5io/academy-theme.