From 529c7f1090e16c1bcff39948a8a5f4ed054650fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 4 Sep 2019 13:05:50 +0200 Subject: [PATCH] Update 0.58.0-relnotes.md [ci skip] --- temp/0.58.0-relnotes.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/temp/0.58.0-relnotes.md b/temp/0.58.0-relnotes.md index e873cbf62..a0778b3cc 100644 --- a/temp/0.58.0-relnotes.md +++ b/temp/0.58.0-relnotes.md @@ -1,4 +1,24 @@ +**Hugo 0.58** adds the long sought after [Exif (docs)](https://gohugo.io/content-management/image-processing/#exif) method on image and a bunch of useful [image filters (docs)](https://gohugo.io/functions/images/#image-filters), courtesy of [@disintegration](https://github.com/disintegration)'s great [Gift](https://github.com/disintegration/gift) image library. + +This means that you now can do variations of this: + +```go-html-template +{{ $blurryGrayscale := $myimage.Resize "300x200" | images.Filter images.Grayscale (images.GaussianBlur 8) }} +{{ $exif := $myimg.Exif }} +``` + +It's worth noting that the issue that enabled/triggered the implementation of the above was the simplifications needed to fix [#5903](https://github.com/gohugoio/hugo/issues/5903), which makes sure that type information is preserved when processed via **Hugo Pipes**. E.g. you can now do: + +```go-html-template +{{ ($myimg | fingerprint ).Width }} +``` + +And it works as expected. + +This release is also built with the brand new **Go 1.13** which means that it's also the [fastest Hugo version](https://discourse.gohugo.io/t/hugo-benchmarks-go-1-12-vs-go-1-13/20572/5) to date. + This release represents **39 contributions by 5 contributors** to the main Hugo code base.[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@niklasfasching](https://github.com/niklasfasching), [@vazrupe](https://github.com/vazrupe), and [@jakejarvis](https://github.com/jakejarvis) for their ongoing contributions. + And a big thanks to [@digitalcraftsman](https://github.com/digitalcraftsman) and [@onedrawingperday](https://github.com/onedrawingperday) for their relentless work on keeping the themes site in pristine condition and to [@kaushalmodi](https://github.com/kaushalmodi) for his great work on the documentation site. Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs),