Skip to content

Hollo 0.9.15

Latest

Choose a tag to compare

@github-actions github-actions released this 26 Aug 14:37
· 171 commits to main since this release
0.9.15
d559165

Released on August 26, 2026.

  • Added a partial hash index on posts.quote_authorization_iri, preventing federated Delete activities from repeatedly scanning the entire posts table while checking for revoked quote authorizations. On large installations, create the index before upgrading to avoid blocking writes during the automatic migration:

    CREATE INDEX CONCURRENTLY
      posts_quote_authorization_iri_index
    ON posts USING hash (quote_authorization_iri)
    WHERE quote_authorization_iri IS NOT NULL;

    If this concurrent build fails or is interrupted, PostgreSQL can leave an invalid index behind. Drop it and retry the command above before upgrading:

    DROP INDEX CONCURRENTLY IF EXISTS
      posts_quote_authorization_iri_index;

    [#595]