Fix build with Go 1.24 - hugo - [fork] hugo port for 9front
HTML git clone git@git.drkhsh.at/hugo.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit 4b0c194fb318bc8fa38ed021d161901b7f6f7f95
DIR parent 8de4ffb294c511420b14bd3685c973355f69c59f
HTML Author: W. Michael Petullo <mike@flyn.org>
Date: Mon, 20 Jan 2025 19:34:39 -0600
Fix build with Go 1.24
Go 1.24 provides stricter checking that forbids passing a variable as
a format string to Printf-family functions with no other arguments. Remove
instances of this. See also:
https://tip.golang.org/doc/go1.24#vet
Signed-off-by: W. Michael Petullo <mike@flyn.org>
Diffstat:
M common/hugio/hasBytesWriter_test.go | 8 ++++----
M common/hugo/hugo.go | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
---
DIR diff --git a/common/hugio/hasBytesWriter_test.go b/common/hugio/hasBytesWriter_test.go
@@ -48,16 +48,16 @@ func TestHasBytesWriter(t *testing.T) {
for i := 0; i < 22; i++ {
h, w := neww()
- fmt.Fprintf(w, rndStr()+"abc __foobar"+rndStr())
+ fmt.Fprint(w, rndStr()+"abc __foobar"+rndStr())
c.Assert(h.Patterns[0].Match, qt.Equals, true)
h, w = neww()
- fmt.Fprintf(w, rndStr()+"abc __f")
- fmt.Fprintf(w, "oo bar"+rndStr())
+ fmt.Fprint(w, rndStr()+"abc __f")
+ fmt.Fprint(w, "oo bar"+rndStr())
c.Assert(h.Patterns[0].Match, qt.Equals, true)
h, w = neww()
- fmt.Fprintf(w, rndStr()+"abc __moo bar")
+ fmt.Fprint(w, rndStr()+"abc __moo bar")
c.Assert(h.Patterns[0].Match, qt.Equals, false)
}
DIR diff --git a/common/hugo/hugo.go b/common/hugo/hugo.go
@@ -423,7 +423,7 @@ func DeprecateLevel(item, alternative, version string, level logg.Level) {
msg = fmt.Sprintf("%s was deprecated in Hugo %s and will be removed in a future release. %s", item, version, alternative)
}
- loggers.Log().Logger().WithLevel(level).WithField(loggers.FieldNameCmd, "deprecated").Logf(msg)
+ loggers.Log().Logger().WithLevel(level).WithField(loggers.FieldNameCmd, "deprecated").Logf("%s", msg)
}
// We usually do about one minor version a month.