v0.2.0

Minor Changes

  • The collections: config declares collection membership without requiring date-token permalink patterns. Non-blog sections like releases or changelogs participate in collections.* pagination and template loops.

    # alloy.config.yaml
    collections:
      releases:
        sortBy: date
        order: desc
    # content/releases/_data.yaml
    permalink: "/releases/:title/"
    {% for release in collections.releases %}
      <a href=&#34;{{ release.url }}&#34;>{{ release.title }}</a>
    {% endfor %}

Patch Changes

  • Fix race conditions in concurrent plugin hook execution and runtime initialization.