Skip to content

Commit 11de98e

Browse files
committed
Release 0.55.6
2 parents 2585569 + d2def17 commit 11de98e

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
---
3+
date: 2019-05-18
4+
title: "Hugo 0.55.6: One Bug Fix!"
5+
description: "Fixes some reported paginator crashes in server mode."
6+
categories: ["Releases"]
7+
images:
8+
- images/blog/hugo-bug-poster.png
9+
10+
---
11+
12+
This is a bug-fix release with one important fix. There have been reports about infrequent paginator crashes when running the Hugo server since 0.55.0. The reason have been narrowed down to that of parallel rebuilds. This isn't a new thing, but the changes in 0.55.0 made it extra important to serialize the page initialization. This release fixes that by protecting the `Build` method with a lock when running in server mode. [95ce2a40](https://github.com/gohugoio/hugo/commit/95ce2a40e734bb82b69f9a64270faf3ed69c92cc) [@bep](https://github.com/bep) [#5885](https://github.com/gohugoio/hugo/issues/5885)[#5968](https://github.com/gohugoio/hugo/issues/5968)
13+

netlify.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@ publish = "public"
33
command = "hugo --gc --minify"
44

55
[context.production.environment]
6-
HUGO_VERSION = "0.55.5"
6+
HUGO_VERSION = "0.55.6"
77
HUGO_ENV = "production"
88
HUGO_ENABLEGITINFO = "true"
99

1010
[context.split1]
1111
command = "hugo --gc --minify --enableGitInfo"
1212

1313
[context.split1.environment]
14-
HUGO_VERSION = "0.55.5"
14+
HUGO_VERSION = "0.55.6"
1515
HUGO_ENV = "production"
1616

1717
[context.deploy-preview]
1818
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
1919

2020
[context.deploy-preview.environment]
21-
HUGO_VERSION = "0.55.5"
21+
HUGO_VERSION = "0.55.6"
2222

2323
[context.branch-deploy]
2424
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
2525

2626
[context.branch-deploy.environment]
27-
HUGO_VERSION = "0.55.5"
27+
HUGO_VERSION = "0.55.6"
2828

2929
[context.next.environment]
3030
HUGO_ENABLEGITINFO = "true"

0 commit comments

Comments
 (0)