From b18a76631c265872236d38b746c0fab05da5c180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 18 Feb 2020 12:17:16 +0100 Subject: [PATCH 1/4] commands: Support "hugo mod get -u ./..." Fixes #6828 --- content/en/hugo-modules/use-modules.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/en/hugo-modules/use-modules.md b/content/en/hugo-modules/use-modules.md index 71430700a1..b5f9deadd6 100644 --- a/content/en/hugo-modules/use-modules.md +++ b/content/en/hugo-modules/use-modules.md @@ -46,6 +46,15 @@ Some examples: ```bash hugo mod get -u ``` + +### Update All Modules Recursively + +{{< new-in "0.65.0" >}} + +```bash +hugo mod get -u ./... +``` + ### Update One Module ```bash From d4a886ed2a3093d01d220ed416e8cd384ce4ff59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 19 Feb 2020 09:16:27 +0100 Subject: [PATCH 2/4] Add Page.GetTerms Fixes #6905 --- content/en/templates/taxonomy-templates.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/content/en/templates/taxonomy-templates.md b/content/en/templates/taxonomy-templates.md index b82a5175c8..bef2d32264 100644 --- a/content/en/templates/taxonomy-templates.md +++ b/content/en/templates/taxonomy-templates.md @@ -216,6 +216,18 @@ Because we are leveraging the front matter system to define taxonomies for conte ### Example: List Tags in a Single Page Template +{{< new-in "0.65.0" >}} + +```go-html-template + +``` + +Before Hugo 0.65.0 you needed to do something like this: + ```go-html-template {{ $taxo := "tags" }}