Skip to content

Commit 7104de8

Browse files
jmooringbep
authored andcommitted
common/hugo: Adjust deprecation timing and message
Closes #13333
1 parent 835579b commit 7104de8

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

‎common/hugo/hugo.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ func Deprecate(item, alternative string, version string) {
418418
func DeprecateLevel(item, alternative, version string, level logg.Level) {
419419
var msg string
420420
if level == logg.LevelError {
421-
msg = fmt.Sprintf("%s was deprecated in Hugo %s and will be removed in Hugo %s. %s", item, version, CurrentVersion.Next().ReleaseVersion(), alternative)
421+
msg = fmt.Sprintf("%s was deprecated in Hugo %s and subsequently removed. %s", item, version, alternative)
422422
} else {
423423
msg = fmt.Sprintf("%s was deprecated in Hugo %s and will be removed in a future release. %s", item, version, alternative)
424424
}
@@ -434,11 +434,11 @@ func deprecationLogLevelFromVersion(ver string) logg.Level {
434434
to := CurrentVersion
435435
minorDiff := to.Minor - from.Minor
436436
switch {
437-
case minorDiff >= 12:
438-
// Start failing the build after about a year.
437+
case minorDiff >= 15:
438+
// Start failing the build after about 15 months.
439439
return logg.LevelError
440-
case minorDiff >= 6:
441-
// Start printing warnings after about six months.
440+
case minorDiff >= 3:
441+
// Start printing warnings after about 3 months.
442442
return logg.LevelWarn
443443
default:
444444
return logg.LevelInfo

‎common/hugo/hugo_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ func TestDeprecationLogLevelFromVersion(t *testing.T) {
5757
c.Assert(deprecationLogLevelFromVersion("0.55.0"), qt.Equals, logg.LevelError)
5858
ver := CurrentVersion
5959
c.Assert(deprecationLogLevelFromVersion(ver.String()), qt.Equals, logg.LevelInfo)
60-
ver.Minor -= 1
61-
c.Assert(deprecationLogLevelFromVersion(ver.String()), qt.Equals, logg.LevelInfo)
62-
ver.Minor -= 6
60+
ver.Minor -= 3
61+
c.Assert(deprecationLogLevelFromVersion(ver.String()), qt.Equals, logg.LevelWarn)
62+
ver.Minor -= 4
6363
c.Assert(deprecationLogLevelFromVersion(ver.String()), qt.Equals, logg.LevelWarn)
64-
ver.Minor -= 6
64+
ver.Minor -= 13
6565
c.Assert(deprecationLogLevelFromVersion(ver.String()), qt.Equals, logg.LevelError)
6666

6767
// Added just to find the threshold for where we can remove deprecated items.

‎tpl/debug/debug.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,15 @@ func (ns *Namespace) TestDeprecationInfo(item, alternative string) string {
171171
// Internal template func, used in tests only.
172172
func (ns *Namespace) TestDeprecationWarn(item, alternative string) string {
173173
v := hugo.CurrentVersion
174-
v.Minor -= 6
174+
v.Minor -= 3
175175
hugo.Deprecate(item, alternative, v.String())
176176
return ""
177177
}
178178

179179
// Internal template func, used in tests only.
180180
func (ns *Namespace) TestDeprecationErr(item, alternative string) string {
181181
v := hugo.CurrentVersion
182-
v.Minor -= 12
182+
v.Minor -= 15
183183
hugo.Deprecate(item, alternative, v.String())
184184
return ""
185185
}

0 commit comments

Comments
 (0)