All Versions
66
Latest Version
Avg Release Cycle
10 days
Latest Release
1217 days ago

Changelog History
Page 4

  • v0.67.0 Changes

    March 09, 2020

    πŸš€ The two main items in Hugo 0.67.0 is custom HTTP header support in hugo server and incldue/exclude filters for Hugo Deploy.

    πŸ”’ Being able to configure HTTP headers in your development server means that you can now verify how your site behaves with the intended Content Security Policy settings etc., e.g.:

    [server] [[server.headers]]for = "/\*\*.html"[server.headers.values]X-Frame-Options = "DENY"X-XSS-Protection = "1; mode=block"X-Content-Type-Options = "nosniff"Referrer-Policy = "strict-origin-when-cross-origin"Content-Security-Policy = "script-src localhost:1313"
    

    Note: This release also changes how raw HTML files inside /content is processed to be in line with the documentation. See #7030.

    This release represents 7 contributions by 4 contributors to the main Hugo code base.@bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @satotake, @sams96, and @davidejones for their ongoing contributions.
    πŸ“š And a big thanks to @digitalcraftsman and @onedrawingperday for their relentless work on keeping the themes site in pristine condition and to @davidsneighbour and @kaushalmodi for all the great work on the documentation site.

    πŸ“š Many have also been busy writing and fixing the documentation in hugoDocs,
    which has received 5 contributions by 5 contributors. A special thanks to @bep, @psliwka, @digitalcraftsman, and @jasikpark for their work on the documentation site.

    Hugo now has:

    ✨ Enhancements

    Other

    πŸ›  Fixes

    Templates

    Other

  • v0.66.0 Changes

    March 03, 2020

    πŸ— This relase adds inline @import support to resources.PostCSS, with imports relative to Hugo's virtual, composable file system. Another useful addition is the new build configuration section. As an example in config.toml:

    [build] useResourceCacheWhen = "always"
    

    The above will tell Hugo to always use the cached build resources inside resources/_gen for the build steps requiring a non-standard dependency (PostCSS and SCSS/SASS). Valid values are never, always and fallback (default).

    This release represents 27 contributions by 8 contributors to the main Hugo code base.@bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @anthonyfok, @carlmjohnson, and @sams96 for their ongoing contributions.
    πŸ“š And a big thanks to @digitalcraftsman and @onedrawingperday for their relentless work on keeping the themes site in pristine condition and to @davidsneighbour and @kaushalmodi for all the great work on the documentation site.

    πŸ“š Many have also been busy writing and fixing the documentation in hugoDocs,
    which has received 8 contributions by 5 contributors. A special thanks to @bep, @nantipov, @regisphilibert, and @inwardmovement for their work on the documentation site.

    Hugo now has:

    ✨ Enhancements

    Templates

    Other

    πŸ›  Fixes

    Output

    Core

    Other

  • v0.65.3 Changes

    February 23, 2020

    πŸš€ This is a bug-fix release with a couple of important fixes.

  • v0.65.2

    February 21, 2020
  • v0.65.1 Changes

    February 20, 2020

    πŸš€ This is a bug-fix release with a couple of important fixes.

  • v0.65.0 Changes

    February 20, 2020

    Hugo 0.65 generalizes how a page is packaged and published to be applicable to any page. This should solve some of the most common issues we see people ask and talk about on the issue tracker and on the forum.

    πŸš€ Release Highlights

    πŸ†• New in Hugo Core

    Any branch node can now bundle resources (images, data files etc.), even the taxonomy nodes (e.g. /categories).

    List pages (sections and the home page) can now be added to taxonomies.

    The front matter fields that control when and if to publish a piece of content (draft, publishDate, expiryDate) now also works for list pages, and is recursive.

    0️⃣ We have added a new _build front matter keyword to provide fine-grained control over page publishing. The default values:

    \_build:   # Whether to add it to any of the page collections.  # Note that the page can still be found with .Site.GetPage.  list: true    # Whether to render it.  render: true    # Whether to publish its resources. These will still be published on demand,  # but enabling this can be useful if the originals (e.g. images) are  # never used.  publishResources: true
    

    Note that all front matter keywords can be set in the cascade on a branch node, which would be especially useful for _build.

    ⬆️ We have also upgraded to the latest LibSass (v3.6.3). Nothing remarkable functional new here, but it makes Hugo ready for the upcoming Dart Backport.

    And finally, we have added a GetTerms method on Page, making listing the terms defined on this page in the given taxonomy much simpler:

    <ul>
        {{ range (.GetTerms "tags") }}
            <li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
       {{ end }}
    </ul>
    

    πŸ†• New in Hugo Modules

    There are several improvements to the tooling used in Hugo Modules. One bug fix, but also some improvements to make it easier to manage:

    • ⚑️ You can now recursively update your modules with hugo mod get -u ./...
    • hugo mod clean will now only clean the cache for the current project and now also takes an optional module path pattern, e.g. hugo mod clean --pattern "github.com/**"
    • A new command hugo mod verify is added to verify that the module cache matches the hashes in go.sum. Run with hugo mod verify --clean to delete any modules that fail this check.

    πŸ‘€ See hugo mod.

    🐎 Performance

    The new features listed above required a structural simplification, and we do watch our weight when doing this. And the benchmarks show that Hugo should, in general, be slightly faster. This is especially true if you're using taxonomies, and the partial rebuilding on content changes should be considerably faster.

    Numbers

    This release represents 34 contributions by 6 contributors to the main Hugo code base.@bep leads the Hugo development with a significant amount of contributions, but also a big shoutout to @satotake, @QuLogic, and @JaymoKang for their ongoing contributions.
    πŸ“š And a big thanks to @digitalcraftsman and @onedrawingperday for their relentless work on keeping the themes site in pristine condition and to @davidsneighbour and @kaushalmodi for all the great work on the documentation site.

    πŸ“š Many have also been busy writing and fixing the documentation in hugoDocs,
    which has received 7 contributions by 4 contributors. A special thanks to @coliff, @bep, @tibnew, and @nerg4l for their work on the documentation site.

    Hugo now has:

    Notes

    • .GetPage "members.md" (the Page method) will now only do relative lookups, which is what most people would expect.
    • There have been a slight change of how disableKinds for regular pages: They will not be rendered on its own, but will be added to the site collections.

    ✨ Enhancements

    Templates

    Output

    • πŸ– Handle disabled RSS even if it's defined in outputs da54787c @bep

    Other

    πŸ›  Fixes

    Templates

    Other

  • v0.64.1 Changes

    February 09, 2020

    πŸš€ This is a bug-fix release with a couple of important fixes.

  • v0.64.0 Changes

    February 04, 2020

    Hugo 0.64.0 is mostly a bugfix-release, but well worth the download. The main reason this release comes so soon after the previous is my (me being @bep) ongoing work on getting solid support for third-party libraries in Hugo Modules. In particular, this release makes the Hugo server's live-reload work with Turbolinks and similar. Also worth mentioning is that hugo mod get -u (without any path) now correctly updates every module imported in config.toml even with Go 1.13.

    This release represents 16 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 6 contributions by 4 contributors. A special thanks to @bep, @peterkappus, @kc0bfv, and @inwardmovement for their work on the documentation site.

    Hugo now has:

    ✨ Enhancements

    Output

    Other

    πŸ›  Fixes

    Other

  • v0.63.2 Changes

    January 27, 2020

    πŸš€ This is a bug-fix release with a couple of important fixes.

  • v0.63.1 Changes

    January 23, 2020

    πŸš€ This is a bug-fix release with a couple of important fixes.