Skip to content

Releases: gohugoio/hugo

v0.32.2

03 Jan 09:58
@bep bep
Compare
Choose a tag to compare

This is a bug-fix release with one important fix.

  • Handle publish of processed images to /public on fresh build with no image cache in /resources (as reported by one person in a Netlify build) 196da49c @bep #4213

Automated with GoReleaser
Built with go version go1.9.2 linux/amd64

v0.32.1

02 Jan 09:11
@bep bep
Compare
Choose a tag to compare

This fixes 2 bugs from the Hugo 0.32 release.

  • Fix image processing from shortcodes in non-server mode. @bep #4202
  • Fix broken hugo --renderToMemory. Note that this is only useful for benchmark testing, as there is no easy way to actually view the result. d36d71ed @bep #4212

Automated with GoReleaser
Built with go version go1.9.2 linux/amd64

v0.32

31 Dec 09:35
@bep bep
Compare
Choose a tag to compare

Hugo 0.32 features Page Bundles and Image Processing by @bep, which is very cool and useful on so many levels. Read about it in more detail in the Hugo documentation, but some of the highlights include:

  • Automatic bundling of a content page with its resources. Resources can be anything: Images, JSON files ... and also other content pages.
  • A Resource will have its RelPermalink and Permalink relative to the "owning page". This makes the complete article with both text and images portable (just send a ZIP file with a folder to your editor), and it can be previewed directly on GitHub.
  • Powerful and simple to use image processing with the new .Resize, .Fill, and .Fit methods on the new Image resource.
  • Full support for symbolic links inside /content, both for regular files and directories.

The built-in benchmarks in Hugo show that this is also the fastest and most memory effective Hugo version to date. But note that the build time total reported in the console is now adjusted to be the real total, including the copy of static files. So, if it reports more milliseconds, it is still most likely faster ...

This release represents 30 contributions by 7 contributors to the main Hugo code base.

@bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @betaveros, @chaseadamsio, and @kropp. And as always big thanks to @digitalcraftsman for his relentless work on keeping the documentation and the themes site in pristine condition.

Many have also been busy writing and fixing the documentation in hugoDocs,
which has received 17 contributions by 7 contributors. A special thanks to @bep, @felicianotech, @maiki, and @carlchengli for their work on the documentation site.

Hugo now has:

Today is New Year's Eve. It is the last day of 2017, a year that have seen a string of pearls of Hugo releases, making Hugo the top choice for website development:

  • 0.32, December 2017: Page Bundles and Image Processing edition.
  • 0.31, November 2017: The Language Multihost Edition! with one baseURL per language.
  • 0.30, October 2017: The Race Car Edition with the Fast Render Mode.
  • 0.29, September 2017: Added Template Metrics.
  • 0.28, September 2017: Blistering fast and native syntax highlighting from Chroma.
  • 0.27, September 2017: Fast and flexible Related Content.
  • 0.26, August 2017: The Language Style Edition with AP Style or Chicago Style Title Case and « French Guillemets ».
  • 0.25, July 2017: The Kinder Surprise edition added, among other cool things, hugo server --navigateToChanged which navigates to the content page you start editing.
  • 0.24, June 2017: Was The Revival of the Archetypes! Now archetype files, i.e. the content file templates, can include template syntax with all of Hugo's functions and variables.
  • 0.23, June 2017: Hugo moved to it's own GitHub organization, gohugoio.
  • 0.22, June 2017: Added nested sections, a long sought after feature.
  • 0.21, May 2017: Full support for shortcodes per output format (think AMP).
  • 0.20, April 2017: Was all about Custom Output Formats.
  • 0.19, February 2017: Native Emacs Org-mode content support and lots of internal upgrades.

Notes

  • The build total in the console is now the ... total (i.e. it now includes both the copy of the static files and the Hugo build). So if your Hugo site seems to build slightly slower, it is in reality probably slightly faster than before this release.
  • Images and other static resources in folders with "_index.md" will have its RelPermalink relative to its page.
  • Images and other static resources in or below "index.md" folders will have its RelPermalink relative to its page (respecting permalink settings etc.)
  • Content pages in or below "index.md" will not get their own URL, but will be part of the .Resources collection of its page.
  • .Site.Files is deprecated.
  • Hugo no longer minfies CSS files inside /content. This was an undocumented "proof of concept feature". We may revisit the "assets handling" in a future release.
  • Page.GetParamdoes not lowercase your result anymore. If you really want to lowercase your params, do it with .GetParam "myparam" | lower or similar.

Previously deprecated that will now ERROR:

  • disable404: Use disableKinds=["404"]
  • disableRSS: Use disableKinds=["RSS"]
  • disableSitemap: Use disableKinds=["sitemap"]
  • disableRobotsTXT: Use disableKinds=["robotsTXT"]

Enhancements

Fixes

Templates

Other


Automated with GoReleaser
Built with go version go1.9.2 linux/amd64

v0.31.1

27 Nov 11:30
@bep bep
Compare
Choose a tag to compare

This is a bug-fix release with one important bug fix:


Automated with GoReleaser
Built with go version go1.9.2 linux/amd64

v0.31

20 Nov 10:31
@bep bep
Compare
Choose a tag to compare

Hugo 0.31 is the Language Multihost Edition!

eSoliaThe Multihost feature is sponsored by eSolia, @rickcogley's company.

Multihost means that you can have a baseURL per language, for example, https://no.example.com and https://en.example.com. This is seamlessly integrated, and the built-in web server with live reload and navigateToChanged etc. just works. A related enhancement in this release is the support for as many static dirs as you need, with intelligent language overrides, forming a big union file system. Add to that several other language related fixes and enhancements, it is safe to say that this is the version you want for multilingual Hugo sites!

This release represents 44 contributions by 7 contributors to the main Hugo code base.
@bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @kaushalmodi, @natefinch, and @betaveros 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.

Many have also been busy writing and fixing the documentation in hugoDocs,
which has received 13 contributions by 9 contributors. A special thanks to @oncletom, @kaushalmodi, @XhmikosR, and @digitalcraftsman for their work on the documentation site.

Hugo now has:

Notes

  • For mapping of translated content, Hugo now considers the full path of the content file, which makes it possible with translation of duplicate content filenames such as index.md. A specific translation key can be specified with the new translationKey front matter variable. See #2699.

Enhancements

Language related

Templates

Core

Other

Fixes

Templates

  • Make sure only one instance of a cached partial is rendered #4086

Other


Automated with GoReleaser
Built with go version go1.9.2 linux/amd64

v0.30.2

19 Oct 12:29
@bep bep
Compare
Choose a tag to compare

This release fixes Fast Render mode with sub-path in baseURL 31641033 @bep #3981.


Automated with GoReleaser
Built with go version go1.9.1 linux/amd64

v0.30.1

19 Oct 05:46
@bep bep
Compare
Choose a tag to compare

This is a bug-fix release with two important fixes.

Hugo now has:


Automated with GoReleaser
Built with go version go1.9.1 linux/amd64

v0.30

16 Oct 08:43
@bep bep
Compare
Choose a tag to compare

Hugo 0.30 is the Race Car Edition. Hugo is already very very fast, but much wants more. So we added Fast Render Mode. It is hard to explain, so start the Hugo development server with hugo server and start editing. Live reloads just got so much faster! The "how and what" is discussed at length in other places, but the short version is that we now re-render only the parts of the site that you are working on.

The second performance-related feature is a follow-up to the Template Metrics added in Hugo 0.29. Now, if you add the flag --templateMetricsHints, we will calculate a score for how your partials can be cached (with the partialCached template func).

This release also more or less makes the really fast Chroma highlighter a complete alternative to Pygments. Most noteable is the new table linenos support (7c30e2cb @bep #3915), which makes copy-and-paste code blocks much easier.

This release represents 31 contributions by 10 contributors to the main Hugo code base.
@bep leads the Hugo development with a significant amount of contribution, but also a big shoutout to @moorereason, @digitalcraftsman, and @bmon 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.

Many have also been busy writing and fixing the documentation in hugoDocs,
which has received 26 contributions by 15 contributors. A special thanks to @bep, @digitalcraftsman, @moorereason, and @kaushalmodi for their work on the documentation site.

Hugo now has:

Notes

  • Running hugo server will now run with the new "Fast Render Mode" default on. To turn it off, run hugo server --disableFastRender or set disableFastRender=true in your site config.
  • There have been several fixes and enhancements in the Chroma highlighter. One is that it now creates Pygments compatible CSS classes, which means that you may want to re-generate the stylesheet. See the Syntax Highlighting Doc.

Enhancements

Performance

Templates

Other

Fixes

v0.29

26 Sep 19:25
@bep bep
Compare
Choose a tag to compare

Hugo 0.29 brings Template Metrics by @moorereason. Hugo is very fast, but it is still possible to write ineffective templates. Now these should be easy to identify. Just run:

hugo --templateMetrics

Now, that was the tasty carrot. The real reason this release comes so fast after the last one is to change the default value for the new noHTTPCache flag, which gives away too much performance to make sense as a default value.

Hugo now has:

Notes

Enhancements

Templates

Other


Automated with GoReleaser
Built with go version go1.9 linux/amd64

v0.28

25 Sep 08:02
@bep bep
Compare
Choose a tag to compare

Hugo 0.28 brings blistering fast and native syntax highlighting from Chroma (fb33d828 @bep #3888). A big thank you to Alec Thomas for taking on this massive task of porting the popular python highlighter Pygments to Go.

See the Updated Documentation for more information about how this works.

Worth mentioning is also the liveReloadPort flag on hugo server, which makes it possible to do "live reloads" behind a HTTPS proxy, which makes for very cool remote customer demos.

One example would be a Hugo server running behind a ngrok tunnel:

ngrok http 1313

Then start the Hugo server with:

hugo server -b https://youridhere.ngrok.io --appendPort=false --liveReloadPort=443 --navigateToChanged

The navigateToChanged flag is slightly unrelated, but it is super cool ...

This release represents 15 contributions by 2 contributors to the main Hugo code base.

Many have also been busy writing and fixing the documentation in hugoDocs,
which has received 9 contributions by 7 contributors. A special thanks to @bep, @i-give-up, @muhajirframe, and @icannotfly for their work on the documentation site.

Hugo now has:

Notes

  • Hugo now uses Chroma as new default syntax highlighter. This should in most cases work out-of-the box or with very little adjustments. But if you want to continue to use Pygments, set pygmentsUseClassic=true in your site config.
  • We now add a set of "no cache" headers to the responses for hugo server, which makes the most sense in most development scenarios. Run with hugo server --noHTTPCache=false to get the old behaviour.

Enhancements

Templates

Other


Automated with GoReleaser
Built with go version go1.9 linux/amd64