index.md (3517B)
1 2 --- 3 date: 2020-06-23 4 title: "Summer Breeze" 5 description: "Taxonomy terms cleanup, render hooks per section/type, HMAC function, and more." 6 categories: ["Releases"] 7 --- 8 9 Again, a release on the small side. Some new features -- one example is that we now support hook templates per section/type, see [#7349](https://github.com/gohugoio/hugo/issues/7349) -- and some important bug fixes. 10 11 But the most important part of this release is that we have now finally cleaned up the terms used for the taxonomy page kinds. This has made the taxonomy feature in Hugo harder to understand than it needed to be. The old/new values for these are `taxonomy` => `term` and `taxonomyTerm` => `taxonomy`. We have taken great care to avoid site breakage. See [#6911](https://github.com/gohugoio/hugo/issues/6911) for more information. 12 13 This release represents **21 contributions by 9 contributors** to the main Hugo code base.bjorn.erik.pedersen leads the Hugo development with a significant amount of contributions, but also a big shoutout to helfper, moorereason, and onedrawingperday for their ongoing contributions. 14 And a big thanks to [@digitalcraftsman](https://github.com/digitalcraftsman) for his relentless work on keeping the themes site in pristine condition and to [@davidsneighbour](https://github.com/davidsneighbour), [@coliff](https://github.com/coliff) and [@kaushalmodi](https://github.com/kaushalmodi) for all the great work on the documentation site. 15 16 Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), 17 which has received **30 contributions by 14 contributors**. A special thanks to christianoliff, bjorn.erik.pedersen, patrick, and hello for their work on the documentation site. 18 19 20 ## Notes 21 22 * Rename taxonomy kinds from taxonomy to term, taxonomyTerm to taxonomy [#6911](https://github.com/gohugoio/hugo/issues/6911) 23 24 ## Enhancements 25 26 ### Templates 27 28 * tpl/crypto: Add hmac 29 30 ### Other 31 32 * Remove some old release notes 33 * Create robots.txt in the domain root directory [#5160](https://github.com/gohugoio/hugo/issues/5160)[#4193](https://github.com/gohugoio/hugo/issues/4193) 34 * Make GroupByParamDate work with string params [#3983](https://github.com/gohugoio/hugo/issues/3983) 35 * Add GroupByLastmod [#7408](https://github.com/gohugoio/hugo/issues/7408) 36 * Rename taxonomy kinds from taxonomy to term, taxonomyTerm to taxonomy [#6911](https://github.com/gohugoio/hugo/issues/6911)[#7395](https://github.com/gohugoio/hugo/issues/7395) 37 * Add genDocsHelper mage target 38 * Regenerate templates 39 * Beautify HTML generated by pagination template [#7199](https://github.com/gohugoio/hugo/issues/7199) 40 * Add a nested data dir test 41 * Use os.PathError in RootMappingFs.doLstat 42 * Remove credit (#7347) 43 * Allow hook template per section/type [#7349](https://github.com/gohugoio/hugo/issues/7349) 44 45 ## Fixes 46 47 ### Templates 48 49 * Fix bad rounding in NumFmt [#7116](https://github.com/gohugoio/hugo/issues/7116) 50 51 ### Other 52 53 * Fix aliases with path in baseURL 54 * Fix server data race/nil pointer in withMaps [#7392](https://github.com/gohugoio/hugo/issues/7392) 55 * Fix order of GetTerms [#7213](https://github.com/gohugoio/hugo/issues/7213) 56 * Fix aliases with uglyURLs 57 * Fix crash for closing shortcode with no .Inner set [#6857](https://github.com/gohugoio/hugo/issues/6857)[#7330](https://github.com/gohugoio/hugo/issues/7330) 58 * Fix aliases with relativeURLs 59 * Fix URL rewrites vs fast render server mode [#7357](https://github.com/gohugoio/hugo/issues/7357) 60 61 62 63 64