Releases: modiimedia/contentful-hugo
v1.14.1
- Fix typos in default shortcodes
- Change
$.Site
to.Site
in default shortcodes
v1.14.0
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
Fixes a bug where overrides
and filters
were being ignored in server mode
v1.13.1
Fixes cannot read property "sys" of undefined
error when receiving webhooks from Asset changes and Content Type changes
v1.13.0
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
)