Skip to content

v0.2.0

Choose a tag to compare

@github-actions github-actions released this 25 Jun 04:20
d20e41f

v0.2.0 (2026-06-25)

Minor Changes

Sections listed in the collections: config now declare collection membership without requiring date-token permalink patterns. Non-blog sections like releases or changelogs can participate in collections.* pagination and template loops.

# alloy.config.yaml
collections:
  releases:             # declares releases/ as a collection — no date tokens needed
    sortBy: date
    order: desc
# content/releases/_data.yaml
permalink: "/releases/:title/"
{% for release in collections.releases %}
  <a href="{{ release.url }}">{{ release.title }}</a>
{% endfor %}

Patch Changes

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