Releases: gohugoio/hugo
v0.24
This is The Revival of the Archetypes!
"A feature that could be the name of the next Indiana Jones movie deserves its own release," says @bep.
Hugo now handles the archetype files as Go templates. This means that the issues with sorting and lost comments are long gone. This also means that you will have to supply all values, including title and date. But this also opens up a lot of new windows.
A fictional example for the section newsletter and the archetype file archetypes/newsletter.md:
---
title: "{{ replace .TranslationBaseName "-" " " | title }}"
date: {{ .Date }}
draft: true
---
**Insert Lead paragraph here.**
<!--more-->
## New Cool Posts
{{ range first 10 ( where .Site.RegularPages "Type" "cool" ) }}
* {{ .Title }}
{{ end }}And then create a new post with:
hugo new newsletter/the-latest-cool.stuff.mdNote: the site will only be built if the .Site is in use in the archetype file, and this can be time consuming for big sites.
Hot Tip: If you set the newContentEditor configuration variable to an editor on your PATH, the newly created article will be opened.
The above newsletter type archetype illustrates the possibilities: The full Hugo .Site and all of Hugo's template funcs can be used in the archetype file.
Also, Hugo now supports archetype files for all content formats, not just markdown.
Hugo now has:
- 17839+ stars
- 493+ contributors
- 166+ themes
Notes
- Archetype files now need to be complete, including
titleanddate. - The
-f(format) flag inhugo newis removed: Now use the archetype files as is.
Enhancements
- Support extension-less media types. The motivation behind this change is to support Netlify's
_redirectsfiles, so we can generate server-side redirects for the Hugo docs site. See this commit to see how we configured that. 0f40e1fa @bep #3614 - Add
disableAliases516e6c6d @bep #3613 - Support non-md files as archetype files 19f2e729 @bep #3597 #3618
- Identify extension-less text types as text c43b512b @bep #3614
- Add
.Siteto the archetype templates 662e12f3 @bep #1629 - Use archetype template as-is as a Go template 422057f6 @bep #452 #1629
- Update links to new discuss URL 4aa12390 @bep
Fixes
- Fix error handling for
JSONfront matter fb53987a @bep #3610 - Fix handling of quoted brackets in
JSONfront matter 3183b9a2 @bep #3511
Automated with @goreleaser
Built with go version go1.8.3 darwin/amd64
v0.23
Hugo 0.23 is mainly a release that handles all the small changes needed to get Hugo moved to a GitHub organisation: gohugoio, but it also contains a couple of important fixes that makes this an update worth-while for all.
Hugo now has:
- 17739+ stars
- 494+ contributors
- 165+ themes
Fixes
- Fix handling of duplicate footnotes a9e551a1 @bep #1912
- Add support for spaces in project folder for
GitInfo#3533 #3552
GitHub organisation related changes
- Update layout references to gohugoio/hugo 66d4850b @bep
- Update content references to gohugoio/hugo 715ff1f8 @bep
- Add note on updates for rpm-based distros 52a0cea6 @daftaupe
- Update logo link in README ccb8300d @bep
- Remove docs building from CI builds 214dbdfb @bep
- Adjust docs path 729be807 @bep
- Add docs as submodule 6cee0dfe @bep
- Update Gitter link in README fbb25014 @bep
- Change Windows build badge link, take #3 86543d6a @bep
- Update Windows build link e6ae32a0 @bep
- Update links in CONTRIBUTING.md due to the org transition 95386544 @digitalcraftsman
- Update source path in Dockerfile due to the org transition 7b99fb9f @digitalcraftsman
- Update clone folder in appveyor.yml due to the org transition d531d17b @digitalcraftsman
- Update import path in snapcraft.yaml due to the org transition 9266bf9d @digitalcraftsman
- Run gofmt to get imports in line vs gohugoio/hugo 873a6f18 @bep
- Update Makefile vs gohugoio/hugo f503d76a @bep
- Update README to point to gohugoio/hugo 93643860 @bep
- Update examples to point to gohugoio/hugo db46bcf8 @bep
- Update textual references in Go source to point to gohugoio/hugo c17ad675 @bep
- Update import paths to gohugoio/hugo d8717cd4 @bep
Automated with @goreleaser
Built with go version go1.8.3 darwin/amd64
v0.22.1
Hugo 0.22.1 fixes a couple of issues reported after the 0.22 release Monday. Most importantly a fix for detecting regular subfolders below the root-sections.
Also, we forgot to adapt the permalink settings with support for nested sections, which made that feature less useful than it could be.
With this release you can configure permalinks with sections like this:
First level only:
[permalinks]
blog = ":section/:title"Nested (all levels):
[permalinks]
blog = ":sections/:title"Fixes
- Fix section logic for root folders with subfolders a30023f5 @bep #3586
- Support sub-sections in permalink settings 1f26420d @bep #3580
- Adjust rlimit to 64000 ff54b6bd @bep #3582
- Make error on setting rlimit a warning only 629e1439 @bep #3582
- Revert: Remove the rlimit tweaking on macOS 26aa06a3 @bep #3582
Automated with @goreleaser
Built with go version go1.8.3 darwin/amd64
v0.22
Hugo 0.22 brings nested sections, by popular demand and a long sought after feature (#465). We are still low on documentation for this great feature, but @bep has been kind enough to accompany his implementation with a demo site.
This release represents 58 contributions by 10 contributors to the main Hugo code base. Since last release Hugo has gained 420 stars and 2 additional themes.
@bep still leads the Hugo development with his witty Norwegian humor, and once again contributed a significant amount of additions. But also a big shoutout to @bogem, @moorereason, and @onedrawingperday for their ongoing contributions. And as always big thanks to @digitalcraftsman for his relentless work on keeping the documentation and the themes site in pristine condition.
Hugo now has:
- 17576+ stars
- 455+ contributors
- 165+ themes
Other Highlights
.Site.GetPage can now also be used to get regular pages (#2844):
{{ (.Site.GetPage "page" "blog" "mypost.md" ).Title }}Also, considerable work has been put into writing automated benchmark tests for the site builds, and we're happy to report that although this release comes with fundamental structural changes, this version is -- in general -- even faster than the previous. It’s quite a challenge to consistently add significant new functionality and simultaneously maintain the stellar performance Hugo is famous for.
Notes
.Site.Sections is replaced. We have reworked how sections work in Hugo, they can now be nested and are no longer taxonomies. If you use the old collection, you should get detailed upgrade instructions in the log when you run hugo. For more information, see this demo site.
Enhancements
Templates
- Add
uintsupport toInb82cd82f @moorereason - Support interfaces in
union204c3a9e @moorereason #3411 - Add
uniqfunction e28d9aa4 @adiabatic - Handle
template.HTMLand friends inToInt4113693a @moorereason #3308
Core
- Make the
RSS feeduse the date for the node it represents f1da5a15 @bep #2708 - Enable
nested sectionsb3968939 @bep #465 - Add test for "no 404" in
sitemap8aaec644 @bep #3563 - Support regular pages in
.Site.GetPagee0c2e798 @bep #2844
#3082
Performance
- Add site building benchmarks 8930e259 @bep #3535
- Add a cache to
GetPagewhich makes it much faster 50d11138 @bep - Speed up
GetPagefbb78b89 @bep #3503 - Add BenchmarkFrontmatterTags 3d9c4f51 @bep #3464
- Add
benchSite.shto make it easy to run Hugo performance benchmarks d74452cf @bep - Cache language config 4aff2b6e @bep
- Temporarily revert to BurntSushi for
TOMLfront matter handling; it is currently much faster 0907a5c1 @bep #3541 #3464 - Add a simple partitioned lazy cache 87203139 @bep
Other
- Add
noindextag to HTML generated by Hugo aliases d5ab7f08 @onedrawingperday - Update Go versions bde807bd @bep
- Remove the
rlimittweaking onmacOSbcd32f10 @bep #3512
Docs
- Rewrite “Archetypes” article @davidturnbull #3543
- Remove Unmaintaned Frontends from Tools. f41f7282 @onedrawingperday
Fixes
Core
- Improve
live-reloadon directory structure changes making removal of directories or pasting new content directories into/contentjust work fe901b81 @bep #3570 - Respect
disableKinds=["sitemap"]69d92dc4 @bep #3544 - Fix
disablePathToLowerregression 5be04486 @bep #3374 - Fix
ref/relrefissue with duplicate base filenames 612f6e3a @bep #2507
Docs
Automated with @goreleaser
Built with go version go1.8.3 darwin/amd64
v0.21
Hugo 0.21 brings full support for shortcodes per Output Format (#3220), the last vital piece of that puzzle. This is especially useful for Google AMP with its many custom media tags.
This release represents 126 contributions by 29 contributors to the main Hugo code base. Since last main release Hugo has gained 850 stars and 7 additional themes.
Hugo now has:
- 17156+ stars
- 457+ contributors
- 163+ themes
@bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @moorereason, @bogem, and @munnerz for their ongoing contributions. And as always a big thanks to @digitalcraftsman for his relentless work on keeping the documentation and the themes site in pristine condition.
Other Highlights
On a more technical side, @moorereason and @bep have introduced namespaces for Hugo's many template funcs (#3042 ). There are so many now, and adding more into that big pile would be a sure path toward losing control. Now they are nicely categorised into namespaces with its own tests and examples, with an API that the documentation site can use to make sure it is correct and up-to-date.
Notes
- The deprecated
.Extension,.Nowand.TargetPathwill nowERROR544f0a63 @bep - The config settings and flags
disable404,disableRSS,disableSitemap,disableRobotsTXTare now deprecated. UsedisableKinds. 5794a265 @bep #3345
Enhancements
Templates
- Log a WARNING on wrong usage of
IsSet38661c17 @moorereason #3092 - Add support for ellipsed paginator navigator, making paginators with lots of pages more compact b6ea492b @bep #3466
- Add support for interfaces to
intersectf1c29b01 @moorereason #1952 - Add
NumFmtfunction 93b3b138 @moorereason #1444 - Add template function namespaces #3418 #3042 @moorereason @bep
- Add translation links to the default sitemap template 90d3fbf1 @rayjolt #2569
- Allow text partials in HTML templates and the other way around 1cf29200 @bep #3273
Output
- Refactor site rendering with an "output format context". In this release, this is used for shortcode handling only, but this paves the way for future niceness 1e4d082c @bep #3397 2bcbf104 @bep #3220
Core
- Handle
shortcodeperOutput Formataf72db80 @bep #3220 - Improve shortcode error message 58d9cbd3 @bep
- Avoid
index.mdin/index/index.htmlfea4fd86 @bep #3396 - Make missing
GitInfoaWARNING5ad2f176 @bep #3376 - Prevent decoding
pageParamin common cases e98f885b @bogem - Ignore non-source files on partial rebuild b5b6e81c @xofyarg #3325
- Log
WARNINGonly on unknown/datafiles ab692e73 @bep #3361 - Avoid processing the same notify event twice 3b677594 @bep
- Only show
rssURIdeprecationWARNINGif it is actually set cfd3af8e @bep #3319
Docs
- Add documentation on slug translation 635b3bb4 @xavib
- Replace
cdn.mathjax.orgwithcdnjs.cloudflare.com4b637ac0 @takuti - Add notes about some output format behaviour 162d3a58 @jpatters
- Add
txtpenas alternative commenting service 7cdc244a @rickyhan
Other
- Embed
PageinWeightedPageebf677a5 @bep #3435 - Improve the detection of untranslated strings a40d1f6e @bogem #2607
- Make first letter of the Hugo commands flags' usage lowercase f0f69d03 @bogem
- Import
Octopressimage tag inJekyll importer5f3ad1c3 @buynov
Fixes
Templates
Output
- Fix output format mixup in example 10287263 @bep #3481
- Fix base theme vs project base template logic 077005e5 @bep #3323
Core
- Render
404in default language only 154e18dd @mitchchn #3075 - Fix
RSSLinkvsRSSOutput Formate682fcc6 @bep #3450 - Add default config for
ignoreFiles, making that option work when running in server mode 42f4ce15 @chaseadamsio - Fix output formats override when no outputs definition given 6e2f2dd8 @bep #3447
- Fix handling of zero-length files 0e87b18b @bep #3355
- Must recreate
Paginatoron live-reload 45c74526 @bep #3315
Docs
- Fix incorrect path in
templates/list27e88154 [@MunifTanjim](...
v0.20.7
This just fixes an issue with the release scripts, no change in the binaries.
Hugo now has:
- 16782+ stars
- 458+ contributors
- 156+ themes
Fix
Automated with @goreleaser
Built with go version go1.8.1 darwin/amd64
v0.20.6
There have been some shouting on discuss.gohugo.io about some broken sites after the release of Hugo 0.20. This release reintroduces the old behaviour, making /my-blog-post/index.md work as expected.
Hugo now has:
- 16675+ stars
- 456+ contributors
- 156+ themes
Fixes
- Avoid index.md in /index/index.html #3396
- Make missing GitInfo a WARNING b30ca4be @bep #3376
- Fix some of the fpm fields for deb 3bd1d057 @anthonyfok
Automated with @goreleaser
Built with go version go1.8.1 darwin/amd64
v0.20.5
v0.20.4
This is the second bug-fix release of the day, fixing a couple of issues related to the new release scripts.
Hugo now has:
- 16626+ stars
- 457+ contributors
- 156+ themes
Fixes
- Fix statically linked binaries 275bcf56 @munnerz #3382
- Filename change in Hugo 0.20.3 binaries #3385
- Fix version calculation cb3c6b6f @bep
Automated with @goreleaser
Built with go version go1.8.1 darwin/amd64
v0.20.3
This is a bug-fix release with one important fix. But it also adds some harness around GoReleaser to automate the Hugo release process. Big thanks to @caarlos0 for great and super-fast support fixing issues along the way.
Hugo now has:
- 16619+ stars
- 458+ contributors
- 156+ themes
Enhancement
Fix
Automated with @goreleaser
Built with go version go1.8.1 linux/amd64