brevno-suite/hugo
3 years agoreleaser: Bump versions for release of 0.92.0 v0.92.0
hugoreleaser [Wed, 12 Jan 2022 08:23:17 +0000 (08:23 +0000)]
releaser: Bump versions for release of 0.92.0

[ci skip]

3 years agoreleaser: Add release notes for 0.92.0
hugoreleaser [Wed, 12 Jan 2022 08:23:17 +0000 (08:23 +0000)]
releaser: Add release notes for 0.92.0
[ci skip]

3 years agodocs: Regenerate docshelper
Bjørn Erik Pedersen [Wed, 12 Jan 2022 07:17:03 +0000 (08:17 +0100)]
docs: Regenerate docshelper

3 years agoMerge commit 'a8e9fc699a6ff7d578f97a7c553ce844efad8fdb'
Bjørn Erik Pedersen [Wed, 12 Jan 2022 07:16:35 +0000 (08:16 +0100)]
Merge commit 'a8e9fc699a6ff7d578f97a7c553ce844efad8fdb'

3 years agoSquashed 'docs/' changes from 4eb10c1a9..b8b20e9a2
Bjørn Erik Pedersen [Wed, 12 Jan 2022 07:15:10 +0000 (08:15 +0100)]
Squashed 'docs/' changes from 4eb10c1a9..b8b20e9a2

b8b20e9a2 Update index.md
f33994fe6 Remove files.Extension (duplicate of files.Ext)
948d6d69d layouts: Use .File.Path
d3050b78c Document .Page.BundleType (#1620)
8a033918f Image filters: ensure Grayscale is a level-2 heading
98537018f Document .Publish method for global resources
963ddc994 docs: add a link to the mailmap documentation
915f858dc Fix release notes version
58093dafe Update index.md
8008ba1e1 Release 0.91.2
d1788dae8 Merge branch 'tempv0.91.2'
af2970180 Revert "config/security: Add HOME to default exec env var whitelist"
2648d3088 netlify: Hugo 0.91.1
d0801599c Merge branch 'tempv0.91.1'
b343bfd7a config/security: Add HOME to default exec env var whitelist
03fbb403f Update data-templates.md
2f608055f Correct GetRemote docs and examples
4e942166a Update 2021-12-17-no-more-releasenotes.md
dbf9514fd Update security.toml
2c38aa356 Update index.md
562ad8e96 Add timeZone
4bc482152 Update introduction.md
1eb66c758 news: Add a note about the placement of release notes
b2a293abb Remove the default archetype template
f9837793c netlify: Hugo 0.91.0
467256ad5 docs: Regen docs helper
68554cf77 Add some basic security policies with sensible defaults

git-subtree-dir: docs
git-subtree-split: b8b20e9a257dca8e53ca9e5f314cf54b18702a37

3 years agoOnly create LazyContentProvider for the non-rendering Site
Bjørn Erik Pedersen [Tue, 11 Jan 2022 16:32:58 +0000 (17:32 +0100)]
Only create LazyContentProvider for the non-rendering Site

Which saves a fair amound of allocations:

```
gobench --package ./hugolib --bench "SiteNew/Regular_D" --base master
```

Before:

```
name                                  old time/op    new time/op    delta
SiteNew/Regular_Deep_content_tree-10    40.7ms ± 3%    41.2ms ± 1%    ~     (p=0.343 n=4+4)

name                                  old alloc/op   new alloc/op   delta
SiteNew/Regular_Deep_content_tree-10    27.7MB ± 0%    28.8MB ± 0%  +3.76%  (p=0.029 n=4+4)

name                                  old allocs/op  new allocs/op  delta
SiteNew/Regular_Deep_content_tree-10      304k ± 0%      329k ± 0%  +8.07%  (p=0.029 n=4+4)
```

After:

```
name                                  old time/op    new time/op    delta
SiteNew/Regular_Deep_content_tree-10    34.2ms ± 1%    34.7ms ± 1%    ~     (p=0.114 n=4+4)

name                                  old alloc/op   new alloc/op   delta
SiteNew/Regular_Deep_content_tree-10    27.7MB ± 0%    28.1MB ± 0%  +1.38%  (p=0.029 n=4+4)

name                                  old allocs/op  new allocs/op  delta
SiteNew/Regular_Deep_content_tree-10      304k ± 0%      314k ± 0%  +3.03%  (p=0.029 n=4+4)
```

Updates #8919

3 years agoFix missing page data for alternative formats
Paul Gottschling [Thu, 9 Sep 2021 13:30:41 +0000 (09:30 -0400)]
Fix missing page data for alternative formats

When a template calls the .Translations function and a
Hugo environment is using multiple output formats,
a template that calls methods like .Summary and .Len on
each translation will unexpectedly show empty return
values for these methods.

This is because each pageOutput's ContentProvider is
assigned to a page.NopPage in newPageOutput. When
*HugoSites.render assigns pageContentOutputs to
pageOutputs in *pageState.shiftToOutputFormat, it
reuses pageContentOutputs from other pageOutputs,
leaving some pageContentOutputs as NopPages. While this
approach conserves resources, sometimes it means that
a template will unexpectedly call a method on a
pageContentOutput that is actually a NopPage.

In the case of ContentProvider methods called on
translations for alternative output formats, the methods
were called on NopPages.

This change introduces LazyContentProvider, which
performs late initialization when one of its methods is
called. This way, we can reuse content in "normal" cases
but ensure that ContentProvider methods work as expected
when a pageOutput is not assigned a pageContentOutput
during the initial pre-render phase.

Fixes #8919

3 years agodocs: Add dependency table to maintainance page
Bjørn Erik Pedersen [Tue, 11 Jan 2022 20:57:37 +0000 (21:57 +0100)]
docs: Add dependency table to maintainance page

See #8949

3 years agodeps: Upgrade github.com/evanw/esbuild v0.14.8 => v0.14.11
Bjørn Erik Pedersen [Tue, 11 Jan 2022 18:16:28 +0000 (19:16 +0100)]
deps: Upgrade github.com/evanw/esbuild v0.14.8 => v0.14.11

3 years agoAdd hugo.Deps
Bjørn Erik Pedersen [Tue, 11 Jan 2022 14:07:04 +0000 (15:07 +0100)]
Add hugo.Deps

Fixes #8949

3 years agohugolib: Fix livereload problem with files including NFC characters in MacOs
roointan [Sat, 8 Jan 2022 10:35:30 +0000 (14:05 +0330)]
hugolib: Fix livereload problem with files including NFC characters in MacOs

Fixes #8429

3 years agodocs. Regen CLI docs
Bjørn Erik Pedersen [Fri, 7 Jan 2022 11:37:07 +0000 (12:37 +0100)]
docs. Regen CLI docs

Closes #9363

3 years agocommands: Fix CLI help text for hugo new
Bjørn Erik Pedersen [Fri, 7 Jan 2022 11:36:12 +0000 (12:36 +0100)]
commands: Fix CLI help text for hugo new

Updates #9363

3 years agoUpdate to Go 1.17.6
Bjørn Erik Pedersen [Fri, 7 Jan 2022 10:07:42 +0000 (11:07 +0100)]
Update to Go 1.17.6

Fixes #9361

3 years agocreate: Correctly pass newContentEditor flags
Joe Mooring [Fri, 7 Jan 2022 05:19:13 +0000 (21:19 -0800)]
create: Correctly pass newContentEditor flags

Fixes #9356

3 years agoAdd --panicOnWarning flag
Bjørn Erik Pedersen [Thu, 6 Jan 2022 09:22:19 +0000 (10:22 +0100)]
Add --panicOnWarning flag

Fixes #9357
Fixes #9359

3 years agogithub: Increase stale days
Bjørn Erik Pedersen [Wed, 5 Jan 2022 14:48:00 +0000 (15:48 +0100)]
github: Increase stale days

3 years agodocs: Regenerate CLI docs
Bjørn Erik Pedersen [Tue, 4 Jan 2022 16:12:09 +0000 (17:12 +0100)]
docs: Regenerate CLI docs

3 years agodocs: Regenerate docshelper
Bjørn Erik Pedersen [Tue, 4 Jan 2022 16:11:17 +0000 (17:11 +0100)]
docs: Regenerate docshelper

3 years agoRemove mmark
Bjørn Erik Pedersen [Tue, 4 Jan 2022 12:26:23 +0000 (13:26 +0100)]
Remove mmark

Closes #9350

3 years agoMisc depreation updates
Bjørn Erik Pedersen [Tue, 4 Jan 2022 12:07:10 +0000 (13:07 +0100)]
Misc depreation updates

* Deprecate .Page.Path when backed by a file
* site.Permalinks
* --ignoreVendor (use --ignoreVendorPaths)

Closes #9348
Closes #9349

3 years agoMake the deprecated Page/File methods (from Hugo 0.55) ERROR
Bjørn Erik Pedersen [Tue, 4 Jan 2022 10:22:57 +0000 (11:22 +0100)]
Make the deprecated Page/File methods (from Hugo 0.55) ERROR

Closes #9346

3 years agogithub: Add add stale GitHub action
Bjørn Erik Pedersen [Tue, 4 Jan 2022 16:08:10 +0000 (17:08 +0100)]
github: Add add stale GitHub action

3 years agoFix surprise OutputFormat.Rel overwriting
Paul Gottschling [Mon, 3 Jan 2022 16:17:51 +0000 (11:17 -0500)]
Fix surprise OutputFormat.Rel overwriting

In page.NewOutputFormat, we take an output.Format f and use it to
create a page.OutputFormat. If the format is canonical, we assign
the final OutputFormat's Rel to "canonical" rather than using
f.Rel. However, this leads to unexpected behavior for custom
output formats, where a user can define a "rel" for a format
via the config file.

For example, the standard for "humans.txt" files requires using
rel="author" in HTML "link" elements. Meanwhile, humans.txt is
usually the only format used for its content. As a result, for
Hugo configurations that define a humans.txt custom output format,
Hugo will render "link" elements to content in this format with
rel="canonical," rather than "author" as required by the standard.

This commit changes page.NewOutputFormat to check whether a given
format is user defined and, if so, skips assigning Rel to
"canonical," even if isCanonical is true.

Fixes #8030

3 years agohugolib: Make an RST test optional
Bjørn Erik Pedersen [Sat, 1 Jan 2022 11:20:07 +0000 (12:20 +0100)]
hugolib: Make an RST test optional

If no RST installed.

3 years agodeps: Upgrade github.com/niklasfasching/go-org v1.5.0 => v1.6.0
Joe Mooring [Sun, 26 Dec 2021 22:45:50 +0000 (14:45 -0800)]
deps: Upgrade github.com/niklasfasching/go-org v1.5.0 => v1.6.0

Fixes #8921

3 years agoUpdate stale.yml
Bjørn Erik Pedersen [Thu, 30 Dec 2021 19:13:08 +0000 (20:13 +0100)]
Update stale.yml

3 years agoreleaser: Prepare repository for 0.92.0-DEV vanilla/release-0.91.2
hugoreleaser [Thu, 23 Dec 2021 16:10:18 +0000 (16:10 +0000)]
releaser: Prepare repository for 0.92.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.91.2 v0.91.2
hugoreleaser [Thu, 23 Dec 2021 15:33:33 +0000 (15:33 +0000)]
releaser: Bump versions for release of 0.91.2

[ci skip]

3 years agoreleaser: Add release notes for 0.91.2
hugoreleaser [Thu, 23 Dec 2021 15:33:33 +0000 (15:33 +0000)]
releaser: Add release notes for 0.91.2
[ci skip]

3 years agoRevert "config/security: Add HOME to default exec env var whitelist"
Bjørn Erik Pedersen [Thu, 23 Dec 2021 11:46:04 +0000 (12:46 +0100)]
Revert "config/security: Add HOME to default exec env var whitelist"

There have been one report in the wild suggesting that this needs to be tested better before doing:

https://discourse.gohugo.io/t/hugo-mod-failing-in-v0-91-1-but-works-in-v0-91-0/36180/5

This reverts commit fca266ebbb81af3d4479873a7a79759033c7ce25.

3 years agoMake sure we always create the /public folder
Bjørn Erik Pedersen [Thu, 23 Dec 2021 07:57:28 +0000 (08:57 +0100)]
Make sure we always create the /public folder

* Before this commit, when you had static files in the root of /content and no /public folder, that folder would not be created unless the /static syncer had already run.
* So, with a common pattern doing `rm -rf public && hugo` would the fail now and then because /static and /content are processed in parallel (unless you have cleanDestinationDir=true)
* This was even worse before commit 0b918e131fe523188b820d1e3fa0b08251abde69 – a frozen build.

Closes #8166

3 years agoFix "stuck on build" in error situations in content processing
Bjørn Erik Pedersen [Wed, 22 Dec 2021 18:00:32 +0000 (19:00 +0100)]
Fix "stuck on build" in error situations in content processing

Updates #8166

3 years agodeps: Run "go mod tidy"
Bjørn Erik Pedersen [Thu, 23 Dec 2021 08:12:58 +0000 (09:12 +0100)]
deps: Run "go mod tidy"

3 years agodeps: Upgrade github.com/evanw/esbuild v0.14.7 => v0.14.8
Bjørn Erik Pedersen [Thu, 23 Dec 2021 08:12:23 +0000 (09:12 +0100)]
deps: Upgrade github.com/evanw/esbuild v0.14.7 => v0.14.8

3 years agoreleaser: Prepare repository for 0.92.0-DEV vanilla/release-0.91.1
hugoreleaser [Wed, 22 Dec 2021 16:07:34 +0000 (16:07 +0000)]
releaser: Prepare repository for 0.92.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.91.1 v0.91.1
hugoreleaser [Wed, 22 Dec 2021 15:31:05 +0000 (15:31 +0000)]
releaser: Bump versions for release of 0.91.1

[ci skip]

3 years agoreleaser: Add release notes for 0.91.1
hugoreleaser [Wed, 22 Dec 2021 15:31:05 +0000 (15:31 +0000)]
releaser: Add release notes for 0.91.1
[ci skip]

3 years agomedia: Also consider extension in FromContent
Bjørn Erik Pedersen [Tue, 21 Dec 2021 09:35:33 +0000 (10:35 +0100)]
media: Also consider extension in FromContent

As used in `resources.GetRemote`.

This will now reject image files with text and text files with images.

3 years agomedia: Add missing BMP and GIF to the default MediaTypes list
Bjørn Erik Pedersen [Tue, 21 Dec 2021 08:54:14 +0000 (09:54 +0100)]
media: Add missing BMP and GIF to the default MediaTypes list

3 years agomedia: Add PDF MIME type
Bjørn Erik Pedersen [Tue, 21 Dec 2021 08:39:05 +0000 (09:39 +0100)]
media: Add PDF MIME type

3 years agodeps: Update github.com/evanw/esbuild v0.14.5 => v0.14.7
Bjørn Erik Pedersen [Wed, 22 Dec 2021 09:40:49 +0000 (10:40 +0100)]
deps: Update github.com/evanw/esbuild v0.14.5 => v0.14.7

3 years agoconfig/security: Add HOME to default exec env var whitelist
Bjørn Erik Pedersen [Wed, 22 Dec 2021 09:55:44 +0000 (10:55 +0100)]
config/security: Add HOME to default exec env var whitelist

See #9309

3 years agomodules: Set GOCACHE env var
Bjørn Erik Pedersen [Wed, 22 Dec 2021 09:53:03 +0000 (10:53 +0100)]
modules: Set GOCACHE env var

This was introduced in Go 1.15. We do set the GOPATH, which should be enough, but #9309 indicate that's not the case on every platform (GitHub Actions).

Closes #9309

3 years agoreleaser: Prepare repository for 0.92.0-DEV vanilla/release-0.91.0
hugoreleaser [Fri, 17 Dec 2021 10:31:22 +0000 (10:31 +0000)]
releaser: Prepare repository for 0.92.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.91.0 v0.91.0
hugoreleaser [Fri, 17 Dec 2021 09:50:19 +0000 (09:50 +0000)]
releaser: Bump versions for release of 0.91.0

[ci skip]

3 years agoreleaser: Add release notes for 0.91.0
hugoreleaser [Fri, 17 Dec 2021 09:50:19 +0000 (09:50 +0000)]
releaser: Add release notes for 0.91.0
[ci skip]

3 years agoreleaser: Drop running tests as part of the release
Bjørn Erik Pedersen [Fri, 17 Dec 2021 09:44:10 +0000 (10:44 +0100)]
releaser: Drop running tests as part of the release

3 years agodocs: Regen docs helper
Bjørn Erik Pedersen [Fri, 17 Dec 2021 09:31:08 +0000 (10:31 +0100)]
docs: Regen docs helper

3 years agotpl/resources: Add empty method mapping for GetRemote
Bjørn Erik Pedersen [Fri, 17 Dec 2021 09:30:10 +0000 (10:30 +0100)]
tpl/resources: Add empty method mapping for GetRemote

To get auto generated documentation for it.

3 years agoAlways use content to resolve content type in resources.GetRemote
Bjørn Erik Pedersen [Thu, 16 Dec 2021 14:12:13 +0000 (15:12 +0100)]
Always use content to resolve content type in resources.GetRemote

This is a security hardening measure; don't trust the URL extension or any `Content-Type`/`Content-Disposition` header on its own, always look at the file content using Go's `http.DetectContentType`.

This commit also adds ttf and otf media type definitions to Hugo.

Fixes #9302
Fixes #9301

3 years agoAdd resources.GetRemote
Bjørn Erik Pedersen [Thu, 16 Dec 2021 10:09:21 +0000 (11:09 +0100)]
Add resources.GetRemote

In Hugo 0.89 we added remote support to `resources.Get`.

In hindsight that was not a great idea, as a poll from many Hugo users showed. See Issue #9285 for more details.

After this commit `resources.Get` only supports local resource lookups. If you want to support both, you need to use a construct similar to:

Also improve some option case handling.

```
{{ resource := "" }}
{{ if (urls.Parse $url).IsAbs }}
{{ $resource = resources.GetRemote $url }}
{{ else }}
{{ $resource = resources.Get $url }}
{{ end }}
```

Fixes #9285
Fixes #9296

3 years agoAllow for return partials with falsy arguments (#9298)
Paul Gottschling [Fri, 17 Dec 2021 07:35:21 +0000 (02:35 -0500)]
Allow for return partials with falsy arguments (#9298)

Partials with returns values are parsed, then inserted into a
partial return wrapper via wrapInPartialReturnWrapper in order
to assign the return value via *contextWrapper.Set. The
predefined wrapper template for partials inserts a partial's nodes
into a "with" template action in order to set dot to a
*contextWrapper within the partial. However, because "with" is
skipped if its argument is falsy, partials with falsy arguments
were not being evaluated.

This replaces the "with" action in the partial wrapper with a
"range" action that isn't skipped if .Arg is falsy.

Fixes #7528

3 years agodeps: Upgrade github.com/evanw/esbuild v0.14.2 => v0.14.5
Bjørn Erik Pedersen [Wed, 15 Dec 2021 17:00:51 +0000 (18:00 +0100)]
deps: Upgrade github.com/evanw/esbuild v0.14.2 => v0.14.5

3 years agodon't use path.Join, because it cleans the final path
Joachim Ansorg [Thu, 16 Dec 2021 19:30:44 +0000 (20:30 +0100)]
don't use path.Join, because it cleans the final path

3 years agoAdd some basic security policies with sensible defaults
Bjørn Erik Pedersen [Sun, 12 Dec 2021 11:11:11 +0000 (12:11 +0100)]
Add some basic security policies with sensible defaults

This ommmit contains some security hardening measures for the Hugo build runtime.

There are some rarely used features in Hugo that would be good to have disabled by default. One example would be the "external helpers".

For `asciidoctor` and some others we use Go's `os/exec` package to start a new process.

These are a predefined set of binary names, all loaded from `PATH` and with a predefined set of arguments. Still, if you don't use `asciidoctor` in your project, you might as well have it turned off.

You can configure your own in the new `security` configuration section, but the defaults are configured to create a minimal amount of site breakage. And if that do happen, you will get clear instructions in the loa about what to do.

The default configuration is listed below. Note that almost all of these options are regular expression _whitelists_ (a string or a slice); the value `none` will block all.

```toml
[security]
  enableInlineShortcodes = false
  [security.exec]
    allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$']
    osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM)$']

  [security.funcs]
    getenv = ['^HUGO_']

  [security.http]
    methods = ['(?i)GET|POST']
    urls = ['.*']
```

3 years agoSimplify Babel test assertions
Bjørn Erik Pedersen [Tue, 14 Dec 2021 06:26:53 +0000 (07:26 +0100)]
Simplify Babel test assertions

To make the tests pass on my grand old Windows 8 VM.

3 years agoMerge commit '45e6fdb315d113ba13e20a633ed0c67e3f25170d'
Bjørn Erik Pedersen [Mon, 13 Dec 2021 20:05:10 +0000 (21:05 +0100)]
Merge commit '45e6fdb315d113ba13e20a633ed0c67e3f25170d'

3 years agoSquashed 'docs/' changes from 316cec249..4eb10c1a9
Bjørn Erik Pedersen [Mon, 13 Dec 2021 20:04:12 +0000 (21:04 +0100)]
Squashed 'docs/' changes from 316cec249..4eb10c1a9

4eb10c1a9 Set a sensible maxAge on the image cache
2c37f4f89 Update lists.md
8690c018f Update introduction.md
0458c3d88 Update index.md
150982f5e Update index.md
50dc0b6b9 Update multilingual.md
648598090 Configure image cache to use :cacheDir/images
4dfb523c3 Update introduction.md
b94d42e6f Add text to social images
d3253d2aa Add resources/_gen/images/ to .gitignore
8a56e1dfd Delete resources/_gen/images
1521e79b6 Update introduction.md
c7110a597 Update introduction.md
f7c4d220f Update introduction.md
c14ecf1ff Update introduction.md
c4b388c20 Fix shortcode in hugo-pipes/introduction (#1605)
d9876bd68 Update introduction.md
a39a532d5 Update introduction.md
fa8758122 netlify: Hugo 0.90.1
50cc40570 Update Contribute to Hugo Development
fc98fc82c Add .vscode dir to .gitignore (#1602)
8f8bcdefc Add frontmatter param to code-toggle shortcode (#1601)
f3b432c7c Add markdownlint configuration file (#1597)
7ea3aea92 netlify: Bump to 0.90.0
e2b6f990b docs: Regenerate docs helper
c02259e33 Merge commit '8d9511a08f14260cbfb73119e4afae50e5a9966d'
2e3573899 Add custom font support to images.Text
3186e6458 images: Text filter that draws text with the given options (#9239)
424f219eb tpl/transform: Optional options for highlight func
7993f17d0 Implement XML data support
1eb9d34cf Make resources.Get use a file cache for remote resources
8a0fffd56 Add remote support to resources.Get

git-subtree-dir: docs
git-subtree-split: 4eb10c1a9689aebf652011a6260a14bf8a3dcef4

3 years agoImprove handling of remote image/jpeg resources (#9278)
Joe Mooring [Mon, 13 Dec 2021 07:55:15 +0000 (23:55 -0800)]
Improve handling of remote image/jpeg resources (#9278)

Add jpe, jif, and jfif to image/jpeg extensions.
For remote image/jpeg without extension, always use jpg extension.

Closes #9275

3 years agoFix Dockerfile
hitzhangjie [Sun, 12 Dec 2021 13:45:08 +0000 (21:45 +0800)]
Fix Dockerfile

Mage uses git, so we should install git before run mage.

Closes #9261

3 years agoRemove debug statement
Joe Mooring [Sat, 11 Dec 2021 21:24:28 +0000 (13:24 -0800)]
Remove debug statement

3 years agoFix deprecation notice
Bjørn Erik Pedersen [Sat, 11 Dec 2021 10:54:28 +0000 (11:54 +0100)]
Fix deprecation notice

Asterisks needs to be quoted on command line.

3 years agoreleaser: Prepare repository for 0.91.0-DEV vanilla/release-0.90.1
hugoreleaser [Fri, 10 Dec 2021 11:42:18 +0000 (11:42 +0000)]
releaser: Prepare repository for 0.91.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.90.1 v0.90.1
hugoreleaser [Fri, 10 Dec 2021 10:56:40 +0000 (10:56 +0000)]
releaser: Bump versions for release of 0.90.1

[ci skip]

3 years agoreleaser: Add release notes for 0.90.1
hugoreleaser [Fri, 10 Dec 2021 10:56:40 +0000 (10:56 +0000)]
releaser: Add release notes for 0.90.1
[ci skip]

3 years agoRemove the retries on error in remote resources.Get
Bjørn Erik Pedersen [Fri, 10 Dec 2021 08:55:41 +0000 (09:55 +0100)]
Remove the retries on error in remote resources.Get

Fixes #9271
See  #9259

3 years agoAllow user to handle/ignore errors in resources.Get
Bjørn Erik Pedersen [Thu, 9 Dec 2021 15:57:05 +0000 (16:57 +0100)]
Allow user to handle/ignore errors in resources.Get

In Hugo 0.90.0 we introduced remote support in `resources.Get`.

But with remote resources comes with a higher chance of failing a build (network issues, remote server down etc.).

Before this commit we always failed the build on any unexpected error.

This commit allows the user to check for any error (and potentially fall back to a default local resource):

```htmlbars
{{ $result := resources.Get "https://gohugo.io/img/hugo-logo.png" }}
{{ with $result }}
        {{ if .Err }}
        {{/* log the error, insert a default image etc. *}}
        {{ else }}
        <img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
        {{ end }}
{{ end }}
```

Note that the default behaviour is still to fail the build, but we will delay that error until you start using the `Resource`.

Fixes #9529

3 years agoMake resource.Get return nil on 404 not found
Bjørn Erik Pedersen [Thu, 9 Dec 2021 15:16:35 +0000 (16:16 +0100)]
Make resource.Get return nil on 404 not found

This is in line with the interface declaration and also how local lookups work.

Fixes #9267

3 years agoUpdate to Go 1.17.5
Bjørn Erik Pedersen [Fri, 10 Dec 2021 09:36:02 +0000 (10:36 +0100)]
Update to Go 1.17.5

Fixes #9269

3 years agoUpdate to Go 1.17.4 and remove timeout in resources.Get
Bjørn Erik Pedersen [Thu, 9 Dec 2021 11:49:17 +0000 (12:49 +0100)]
Update to Go 1.17.4 and remove timeout in resources.Get

Fixes #9265

3 years agoreleaser: Prepare repository for 0.91.0-DEV vanilla/release-0.90.0
hugoreleaser [Wed, 8 Dec 2021 10:11:31 +0000 (10:11 +0000)]
releaser: Prepare repository for 0.91.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.90.0 v0.90.0
hugoreleaser [Wed, 8 Dec 2021 09:33:46 +0000 (09:33 +0000)]
releaser: Bump versions for release of 0.90.0

[ci skip]

3 years agoreleaser: Add release notes for 0.90.0
hugoreleaser [Wed, 8 Dec 2021 09:33:46 +0000 (09:33 +0000)]
releaser: Add release notes for 0.90.0
[ci skip]

3 years agoreleaser: Simplify the release process
Bjørn Erik Pedersen [Wed, 8 Dec 2021 08:23:18 +0000 (09:23 +0100)]
releaser: Simplify the release process

Make it into a one step even for major releases.

3 years agoreleaser: Remove unused code
Bjørn Erik Pedersen [Wed, 8 Dec 2021 08:02:45 +0000 (09:02 +0100)]
releaser: Remove unused code

3 years agodocs: Regenerate docs helper
Bjørn Erik Pedersen [Wed, 8 Dec 2021 07:56:16 +0000 (08:56 +0100)]
docs: Regenerate docs helper

3 years agoMerge commit '8d9511a08f14260cbfb73119e4afae50e5a9966d'
Bjørn Erik Pedersen [Wed, 8 Dec 2021 07:54:25 +0000 (08:54 +0100)]
Merge commit '8d9511a08f14260cbfb73119e4afae50e5a9966d'

3 years agoSquashed 'docs/' changes from 39a7fac34..316cec249
Bjørn Erik Pedersen [Wed, 8 Dec 2021 07:42:31 +0000 (08:42 +0100)]
Squashed 'docs/' changes from 39a7fac34..316cec249

316cec249 Update future events template example (#1595)
3bde7d489 Install mage outside module (#1592)
762e27eff Clarify ignoreFiles regex matching
4d0032051 Add id attribute to h2 elements (#1590)
8262b077c Improve inline resource examples (#1587)
2eae7c7ec fix disqus example name (#1588)
a772f4804 Added install instructions for openSUSE Tumbleweed (#1459)
7ad1c301b Remove screen capture from Hosting on GitHub page (#1586)
a58541f49 add more details on about gh-pages and baseURL on hosting-on-github.md (#1346)
3bd0b46dc Update configuration page (#1585)
4cf1f013e Update OS functions
2c45a95c2 Remove getting-started/code-toggle/
40fdff598 Describe artificial language private use subtags (#1577)
91011d210 Remove google_news from list of internal templates (#1576)
36c7879e4 Update the .Unix function
731063488 Remove a showcase
818c371a0 Update index.md
3136d39d9 netlify: Hugo 0.89.4
092bc9278 Merge branch 'tempv0.89.4'
18e01f105 releaser: Add release notes to /docs for release of 0.89.4
79135281f Correct and sort list of target image formats (#1574)
af4170c7e netlify: Hugo 0.89.3
7f5444251 Merge branch 'tempv0.89.3'
a32e4a6c2 releaser: Add release notes to /docs for release of 0.89.3
6dd3dc3f9 Update configuration.md
5fbe741d7 Update index.md (#1570)
37a69496f netlify: Bump to Hugo 0.89.2
3b293f1f4 Merge branch 'tempv0.89.2'
64c934e7a releaser: Add release notes to /docs for release of 0.89.2
919c51c7d Update index.md
13dd463b1 netlify: Hugo 0.89.1
d8cda1474 releaser: Add release notes to /docs for release of 0.89.1
a2adf7742 releaser: Add release notes to /docs for release of 0.89.1
c3088c4fc Add code toggle to menus page (#1568)
2d0f38978 Remove blank lines from code-toggle output (#1564)
7cf058bfd Add localization examples (#1563)
cf8627c2e Fixing typos, fixing incomplete link (#1561)
c78cc014b Document the removePathAccents setting
70beddaf4 Make corrections to 0.89.0 release notes (#1560)
1917195f0 Update index.md
7fb8e070c Run hugo --gc
1772d45fb Release 0.89.0
d9006179b Merge branch 'tempv0.89.0'
8db86b61e releaser: Add release notes to /docs for release of 0.89.0
abf268571 docs: Regen CLI docs
fbbdb0ab1 Update the timeout default
9cbd1c15a Fix description of lang.FormatNumberCustom
6043b54cc Remove "render" keyword from Host on Render page
f8ea8e84f Clarify description of front matter url (#1557)
91a0c9954 Update Twitter shortcode oEmbed endpoint
79a7405b8 Merge commit 'aa5ac36a3eb68b86c803caec703869efefc8447e'
57667bae6 hugofs: Add includeFiles and excludeFiles to mount configuration
0c9ee0a04 Allow multiple plugins in the PostCSS options map
155799e6b docs: Create path.Clean documentation

git-subtree-dir: docs
git-subtree-split: 316cec2494dc5f908283289371d74f36a73d3d8d

3 years agoAdd custom font support to images.Text
Bjørn Erik Pedersen [Tue, 7 Dec 2021 11:49:53 +0000 (12:49 +0100)]
Add custom font support to images.Text

Fixes #9253

3 years agoimages: Fix cache busting of image text filter
Bjørn Erik Pedersen [Tue, 7 Dec 2021 10:48:48 +0000 (11:48 +0100)]
images: Fix cache busting of image text filter

See #9238

3 years agobuild(deps): bump github.com/getkin/kin-openapi from 0.80.0 to 0.85.0
dependabot[bot] [Fri, 3 Dec 2021 17:32:07 +0000 (17:32 +0000)]
build(deps): bump github.com/getkin/kin-openapi from 0.80.0 to 0.85.0

Bumps [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) from 0.80.0 to 0.85.0.
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](https://github.com/getkin/kin-openapi/compare/v0.80.0...v0.85.0)

---
updated-dependencies:
- dependency-name: github.com/getkin/kin-openapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoimages: Text filter that draws text with the given options (#9239)
Paul van Brouwershaven [Tue, 7 Dec 2021 10:29:55 +0000 (11:29 +0100)]
images: Text filter that draws text with the given options (#9239)

Fixes #9238

3 years agotpl/transform: Optional options for highlight func
Joe Mooring [Mon, 6 Dec 2021 22:53:09 +0000 (14:53 -0800)]
tpl/transform: Optional options for highlight func

Closes #9249
Fixes gohugoio/hugoDocs#63

3 years agodeps: Upgrade github.com/evanw/esbuild v0.13.12 => v0.14.2 (note)
Bjørn Erik Pedersen [Sat, 4 Dec 2021 15:28:50 +0000 (16:28 +0100)]
deps: Upgrade github.com/evanw/esbuild v0.13.12 => v0.14.2 (note)

Note: ESBuild v0.14.0 contains backwards-incompatible changes, see https://github.com/evanw/esbuild/releases/tag/v0.14.0

Fixes #9244

3 years agoreleaser: Add "note" to Note regexp
Bjørn Erik Pedersen [Sat, 4 Dec 2021 15:27:56 +0000 (16:27 +0100)]
releaser: Add "note" to Note regexp

3 years agobuild(deps): bump github.com/mitchellh/mapstructure from 1.4.2 to 1.4.3
dependabot[bot] [Fri, 3 Dec 2021 16:13:25 +0000 (16:13 +0000)]
build(deps): bump github.com/mitchellh/mapstructure from 1.4.2 to 1.4.3

Bumps [github.com/mitchellh/mapstructure](https://github.com/mitchellh/mapstructure) from 1.4.2 to 1.4.3.
- [Release notes](https://github.com/mitchellh/mapstructure/releases)
- [Changelog](https://github.com/mitchellh/mapstructure/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mitchellh/mapstructure/compare/v1.4.2...v1.4.3)

---
updated-dependencies:
- dependency-name: github.com/mitchellh/mapstructure
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoreleaser: Rework and simplify to use GitHub only for release notes
Bjørn Erik Pedersen [Thu, 2 Dec 2021 21:08:52 +0000 (22:08 +0100)]
releaser: Rework and simplify to use GitHub only for release notes

3 years agobuild(deps): bump google.golang.org/api from 0.51.0 to 0.61.0
dependabot[bot] [Fri, 3 Dec 2021 08:22:20 +0000 (08:22 +0000)]
build(deps): bump google.golang.org/api from 0.51.0 to 0.61.0

Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.51.0 to 0.61.0.
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.51.0...v0.61.0)

---
updated-dependencies:
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agomedia: Add rss suffix for application/rss+xml
Paul van Brouwershaven [Fri, 3 Dec 2021 11:45:49 +0000 (12:45 +0100)]
media: Add rss suffix for application/rss+xml

Closes #9233

3 years agoparser: Add a test case in format resolution
Bjørn Erik Pedersen [Fri, 3 Dec 2021 09:34:34 +0000 (10:34 +0100)]
parser: Add a test case in format resolution

See #9233

3 years agolazy: Reset error in Reset
Bjørn Erik Pedersen [Thu, 2 Dec 2021 15:49:44 +0000 (16:49 +0100)]
lazy: Reset error in Reset

To prevent sticky errors on server rebuilds.

Fixes #7043
Closes #9194

3 years agoImplement XML data support
Paul van Brouwershaven [Thu, 2 Dec 2021 16:30:36 +0000 (17:30 +0100)]
Implement XML data support

Example:

```
{{ with resources.Get "https://example.com/rss.xml" | transform.Unmarshal }}
    {{ range .channel.item }}
        <strong>{{ .title | plainify | htmlUnescape }}</strong><br />
        <p>{{ .description | plainify | htmlUnescape }}</p>
        {{ $link := .link | plainify | htmlUnescape }}
        <a href="{{ $link }}">{{ $link }}</a><br />
        <hr>
    {{ end }}
{{ end }}
```

Closes #4470

3 years agoValidate private use language tags
Joe Mooring [Sun, 7 Nov 2021 15:06:48 +0000 (07:06 -0800)]
Validate private use language tags

Fixes #9119

3 years agoresources: Add timeout to the HTTP request in Get
Bjørn Erik Pedersen [Thu, 2 Dec 2021 13:13:24 +0000 (14:13 +0100)]
resources: Add timeout to the HTTP request in Get

Workaround for https://github.com/golang/go/issues/49366

3 years agoAdd a remote retry for resources.Get
Bjørn Erik Pedersen [Thu, 2 Dec 2021 12:31:22 +0000 (13:31 +0100)]
Add a remote retry for resources.Get

3 years agoMake resources.Get use a file cache for remote resources
Paul van Brouwershaven [Thu, 2 Dec 2021 11:56:25 +0000 (12:56 +0100)]
Make resources.Get use a file cache for remote resources

Closes #9228

3 years agoRemove empty href element from pagination template
Joe Mooring [Sun, 21 Nov 2021 05:29:04 +0000 (21:29 -0800)]
Remove empty href element from pagination template

Closes #9149

3 years agoCheck for empty deployment targets and matchers
Joe Mooring [Tue, 30 Nov 2021 21:39:47 +0000 (13:39 -0800)]
Check for empty deployment targets and matchers

Fixes #9220

3 years agoresources: Adjust the remote Get cache so it does not get evicted on restarts
Bjørn Erik Pedersen [Tue, 30 Nov 2021 15:54:01 +0000 (16:54 +0100)]
resources: Adjust the remote Get cache so it does not get evicted on restarts

We fill improve this, soon.