Skip to content

Commit 86f1b19

Browse files
authored
BREAKING CHANGE: fix Hugo's .Site.IsServer error (#375)
As of Hugo 0.120.0, `.Site.IsServer` is deprecated, and starting with Hugo 0.132.0, it causes a build error. Unfortunately, this is a breaking upstream change that we can't "fix" on our end. As a result, we had to raise the minimum supported version to v0.54.0 and implement another workaround to ensure compatibility with older versions, not just Hugo v0.120.0 and all subsequent versions. Fix #369
1 parent 70f97b6 commit 86f1b19

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

‎.github/workflows/ci-test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix:
3737
hugo:
38-
- '0.48' # min version
38+
- '0.54.0' # min version
3939
- '0.58.2' # https://github.com/gohugoio/hugoThemes/issues/682
4040
- '0.59.1' # last major version without goldmark renderer
4141
- '0.60.1' # first major version with goldmark renderer
@@ -44,6 +44,7 @@ jobs:
4444
- '0.86.1' # https://github.com/gohugoio/hugo/issues/9150
4545
- '0.93.3' # https://github.com/gohugoio/hugo/commit/837fdfdf45014e3d5ef3b00b01548b68a4489c5f
4646
- '0.123.8' # https://github.com/gohugoio/hugo/issues/12080
47+
- '0.132.2' # .Site.IsServer deprecation ERROR
4748
- 'latest'
4849
fail-fast: true
4950

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ to those feedback, otherwise the PR will be closed after 2-4 weeks of inactivity
100100
### Pull Request Contribution Prerequisites
101101

102102
* You have Node & npm installed
103-
* You have Hugo installed at v0.48.0+
103+
* You have Hugo installed at v0.54.0+
104104
* You are familiar with Git
105105

106106
### Pull Request Process

‎exampleSite/content/docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ with the [Hugo](https://gohugo.io/) static site generator.
2222
## Installation
2323

2424
Before installing the **Mainroad** theme, make sure that you've
25-
[installed **Hugo** (version 0.48 or later)](https://gohugo.io/getting-started/quick-start/#step-1-install-hugo) and
25+
[installed **Hugo** (version 0.54.0 or later)](https://gohugo.io/getting-started/quick-start/#step-1-install-hugo) and
2626
[created a new site](https://gohugo.io/getting-started/quick-start/#step-2-create-a-new-site). To learn how to install
2727
Hugo, visit [Hugo Documentation](https://gohugo.io/getting-started/installing/).
2828

‎layouts/_default/baseof.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@
3535
{{- end }}
3636

3737
<link rel="shortcut icon" href="{{ "favicon.ico" | relURL }}">
38-
{{- if not .Site.IsServer }}
38+
{{- $server := "" }}
39+
{{- if gt (int (index (split hugo.Version ".") 1)) "120" }}
40+
{{ $server = hugo.IsServer }}
41+
{{- else }}
42+
{{ $server = .Site.IsServer }}
43+
{{- end -}}
44+
{{- if not $server }}
3945
{{ template "_internal/google_analytics.html" . }}
4046
{{- end }}
4147
</head>

‎layouts/partials/comments.html

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
{{ if and .Site.Config.Services.Disqus.Shortname (index .Params "comments" | default "true") (not .Site.IsServer) }}
1+
{{- $server := "" }}
2+
{{- if ge (int (index (split hugo.Version ".") 1)) "120" }}
3+
{{- $server = hugo.IsServer }}
4+
{{- else }}
5+
{{- $server = .Site.IsServer }}
6+
{{- end }}
7+
{{- if and .Site.Config.Services.Disqus.Shortname (index .Params "comments" | default "true") (not $server) }}
28
<section class="comments">
39
{{ template "_internal/disqus.html" . }}
410
</section>
5-
{{ end }}
11+
{{- end }}

‎theme.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://github.com/vimux/mainroad/"
66
demosite = "https://mainroad-demo.netlify.app/"
77
tags = ["blog", "responsive", "light", "multilingual", "customizable", "widgets", "wordpress"]
88
features = ["blog", "responsive", "multilingual", "widgets", "rss", "disqus", "google analytics", "wordpress"]
9-
min_version = "0.48"
9+
min_version = "0.54.0"
1010

1111
[author]
1212
name = "Vimux"

0 commit comments

Comments
 (0)