Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/temp
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-05 13:37:25 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-05 13:38:14 +0300
commit56362e4bc74ceee7ee974c67860009b748dd25f4 (patch)
tree4381dd26043fb911ed86868e93a51df95ed4006a /temp
parentf5cfb9e25126e96ea648a2bb3c92f258db1b71cc (diff)
Update 0.85.0-relnotes.md
Diffstat (limited to 'temp')
-rw-r--r--temp/0.85.0-relnotes-ready.md (renamed from temp/0.85.0-relnotes.md)14
1 files changed, 14 insertions, 0 deletions
diff --git a/temp/0.85.0-relnotes.md b/temp/0.85.0-relnotes-ready.md
index 26db7c6e5..8170ff581 100644
--- a/temp/0.85.0-relnotes.md
+++ b/temp/0.85.0-relnotes-ready.md
@@ -1,3 +1,17 @@
+Hugo `0.85.0` is on the smaller side of releases, but the main new thing it brings should be important to those who need it: Poll based polling when watching the filesystem for changes.
+
+Hugo uses [Fsnotify](https://github.com/fsnotify/fsnotify) to provide native file system notifications. This is still the default, but there may situations where this isn't working. The file may not support it (e.g. NFS), or you get the "too many open files" error and cannot or do not want to increase the `ulimit`. Enable polling by passing the `--poll` flag with an interval:
+
+```bash
+hugo server --poll 700ms
+```
+
+You van even do "long polling" by passing a long interval:
+
+```bash
+hugo server --poll 24h
+```
+
This release represents **23 contributions by 6 contributors** to the main Hugo code base.[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@raoulb](https://github.com/raoulb), [@jmooring](https://github.com/jmooring), and [@digitalcraftsman](https://github.com/digitalcraftsman) for their ongoing contributions.
Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs),