Skip to content
Compare
Choose a tag to compare
@the-zazukoian the-zazukoian released this 12 Dec 15:35
· 1010 commits to main since this release
368019a

Major Changes

  • 7090728: BREAKING CHANGE:
    The plugin configuration changed in order to support multiple namespaces directly.

    The following configuration:

    middlewares:
      # […] your other middlewares
      markdown-content:
        module: "@zazuko/trifid-markdown-content"
        order: 80
        config:
          namespace: root-content
          directory: file:content
          mountPath: /

    Can be migrated in an easy way by moving all configuration entries (except the namespace) into the config.entries[namespaceValue] key, like this:

    middlewares:
      # […] your other middlewares
      markdown-content:
        module: "@zazuko/trifid-markdown-content"
        order: 80
        config:
          entries:
            root-content:
              directory: file:content
              mountPath: /

    See more details and options in the README.md file of the plugin.