From 56362e4bc74ceee7ee974c67860009b748dd25f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 5 Jul 2021 12:37:25 +0200 Subject: [PATCH] Update 0.85.0-relnotes.md --- ...0.85.0-relnotes.md => 0.85.0-relnotes-ready.md} | 14 ++++++++++++++ 1 file changed, 14 insertions(+) rename temp/{0.85.0-relnotes.md => 0.85.0-relnotes-ready.md} (89%) diff --git a/temp/0.85.0-relnotes.md b/temp/0.85.0-relnotes-ready.md similarity index 89% rename from temp/0.85.0-relnotes.md rename to 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),