From 0b1515de528632747d0b268c299dec3ac8cc0e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 31 Jul 2019 16:39:36 +0200 Subject: [PATCH] Update index.md --- content/en/news/0.56.3-relnotes/index.md | 26 ++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/content/en/news/0.56.3-relnotes/index.md b/content/en/news/0.56.3-relnotes/index.md index 4ae67d2c7..e61aaacf5 100644 --- a/content/en/news/0.56.3-relnotes/index.md +++ b/content/en/news/0.56.3-relnotes/index.md @@ -9,9 +9,27 @@ images: --- - +This is a bug-fix release with a couple of important fixes. After getting feedback about the new **Hugo Modules** feature, this release also adds some minor improvements: -This is a bug-fix release with a couple of important fixes. +It adds support for overlapping file mounts, even for the filesystems where we walk down the directory structure. One relevant example that is fixed by this release: + +```toml +[module] +[[module.mounts]] +source="content1" +target="content" +[[module.mounts]] +source="content2" +target="content/docs" +``` + +The above is obviously both common and very useful. This was never an issue with the situations where load a specific file/directory (e.g. `resources.Get "a/b/c/d/sunset.jpg"`). + +User feedback also told us that these file mounts were a little hard to debug, so we added a new command that prints the configured mounts as a JSON: + +```bash +hugo config mounts +``` * hugolib: Fix bundle header clone logic [0e086785](https://github.com/gohugoio/hugo/commit/0e086785fa4be8086256e9d7de6cda78e18d00ee) [@bep](https://github.com/bep) [#6136](https://github.com/gohugoio/hugo/issues/6136) * docs: Regenerate CLI docs [02b947ea](https://github.com/gohugoio/hugo/commit/02b947eaa3cc68404180d796a2f7119dce074539) [@bep](https://github.com/bep) @@ -23,3 +41,7 @@ This is a bug-fix release with a couple of important fixes. + + + +