Skip to content

Releases: modiimedia/contentful-hugo

v1.14.1

10 Mar 16:52
Compare
Choose a tag to compare
  • Fix typos in default shortcodes
  • Change $.Site to .Site in default shortcodes

v1.14.0

03 Mar 21:49
Compare
Choose a tag to compare

Multilingual Support Released

This released adds a locales field to the config file, which enables developers to specify multiple locales to pull content from.

Usage instructions can be found here: https://github.com/ModiiMedia/contentful-hugo#localization-options

v1.13.2

29 Jan 19:10
Compare
Choose a tag to compare

Fixes a bug where overrides and filters were being ignored in server mode

v1.13.1

29 Jan 18:22
Compare
Choose a tag to compare

Fixes cannot read property "sys" of undefined error when receiving webhooks from Asset changes and Content Type changes

v1.13.0

26 Jan 21:35
Compare
Choose a tag to compare

Server Mode Beta Release

This release adds the --server flag which fires up a NodeJS server that can receive Contentful webhooks and overwrite / delete the affected files. By default the server runs on port 1414 but can be overwritten with the --port flag.

This release also adds a default sys field to content markdown

sys:
  id: "<entry-id>"
  updatedAt: "<updated-at-date>"
  createdAt: "<created-at-date>"
  revision: <revision-number>
  space: "<space-id>"
  contentType: "<content-type-id>"

The following fields are now marked as depreciated and will be removed in a future release:

  • updated (replaced by sys.updatedAt)
  • createdAt (replaced by sys.createdAt)