fc61378a3 Add Hugo 0.32 related docs 77edf7fd7 commands: Regenerate af9d25458 Fix Blackfriday's Markdown extension name 1223dd63a Remove roadmap b8bcb2fb8 Include note to allow hugo write permissions outside home dir 7dbccb936 Fix typo in roadmap 3a38da6f5 Fix spelling 94ebe50ff Merge branch 'master' of github.com:gohugoio/hugoDocs 89376e21d Clarify Hugo Roadmap 03d191fec Mention Reverse function in taxonomy tpl page. a4ea3402d Fix ref and relref function pages. b36632b31 Remove non-existing source variable a638160dc Update Content Organization to match the world 47eb431ca Correct one link in templates/output-formats.md 8bf933629 Spell fix ce2d48728 Add docs for .AllTranslations de94b4942 Move sponsor data to theme data 41fe75254 Merge commit 'f463ef99ed2862e4042557e28aece7ca858e1d0a' f463ef99e Squashed 'themes/gohugoioTheme/' changes from bc851da9..75da2f6b 532c65f2a Move sponsor logo to theme 899e2defe Add sponsor logos to home page and footer 3ca53db97 Release 0.31.1 bb9876ce2 Merge branch 'temp0311' c7c3ee7e5 releaser: Prepare repository for 0.32-DEV 4ac554792 releaser: Add release notes to /docs for release of 0.31.1 52bfb5c15 releaser: Bump versions for release of 0.31.1 cfdc2e4ea Fix output formats example 5746c10c2 More on output format de2ee0fe0 Improve suffix redefinition example c9997839e Update gitlab CI submodule management 82d74e306 Add Bootstrap styling to breadcrumb example c8c9601a8 Use the code shortcode for the breadcrumb example 16be43e7d Clean up formatting in variable definition lists 149c2c157 Add nested section docs 783c3d636 Sync theme 60a220bbd Squashed 'themes/gohugoioTheme/' changes from 6b632895..bc851da9 4b33a04d0 Fix typo 94cffc43c Fix little typo a5d4f762f Fix typo 36c5a0b43 Add a note about the 2 in staticDir2 087bd9a9f Add KeyCDN to menu 4ac8aae38 Hugo 0.31 Released 8fdd995e7 releaser: Prepare repository for 0.32-DEV eb0f38fbb releaser: Add release notes to /docs for release of 0.31 60efdfff7 releaser: Bump versions for release of 0.31 44dafb10b Merge commit '30c0d485eaff6d70df1be0353911ddca485d52bf' e6b847b95 Merge commit '05e42bc643f1840ed2ad9c2eff82a269d1381683' 15d86a525 Handle Taxonomy permalinks 5c3c18d7f Add support for height argument to figure shortcode git-subtree-dir: docs git-subtree-split: fc61378a3227c14883a2942d67c806014e7bb6cb
6.7 KiB
date: 2017-11-20 title: "Hugo 0.31: Language Multihost Edition!" description: "Hugo 0.31: Multihost, smart union static dirs, and more ..." slug: "0.31-relnotes" categories: ["Releases"] images:
- images/blog/hugo-31-poster.png
Hugo `0.31` is the **Language Multihost Edition!**
The 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:
- 21105+ stars
- 455+ contributors
- 184+ themes
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 newtranslationKey
front matter variable. See #2699.
Enhancements
Language related
- Support unknown language codes 23ba779f @bep #3564
- Fix
.IsTranslated
with identical filenames b3daa1f4 @bep #2699 - Fall back to unstranslated base template 0a81a6b4 @bep #3893
- Add support for multiple static dirs 60dfb9a6 @bep #36#4027
- Add multilingual multihost support 2e046576 @bep #4027
Templates
- Refactor
Mod
withcast
76dc811c @artem-sidorenko - Add support for height argument to figure shortcode 488631fe @kaushalmodi #4014
Core
- Use ms precision for static change logging bb048d81 @bep
- Update Chroma to get the latest SASS lexer b32ffed6 @bep #4069
- Bump to Go 1.9.2 9299a16c @bep #4064
- Update Travis and snapcraft to Go 1.9.2 77cbd001 @bep #4064
- Handle Taxonomy permalinks d9a78b61 @betaveros #1208
Other
- Support Fast Render mode with sub-path in baseURL 31641033 @bep #3981
- Simplify Site benchmarks c3c10f2c @bep
- Replace
make
withmage
to build Hugo #3969 - Convert to
dep
as dependency/vendor manager for Hugo #3988 - Pre-allocate some slices a9be687b @bep
Fixes
Templates
- Make sure only one instance of a cached partial is rendered #4086