Releases: fedify-dev/hollo
Hollo 0.6.19
Released on December 20, 2025.
- Upgraded Fedify to 1.6.15 to fix a ReDoS (Regular Expression Denial of Service) vulnerability in Fedify's HTML parsing code. An attacker could exploit this vulnerability to cause denial of service by sending malicious HTML responses during federation operations. [CVE-2025-68475]
Hollo 0.6.18
Released on November 15, 2025.
- Reverted the
/api/v1/notificationsendpoint query optimization from 0.6.17 due to a regression that caused server errors when serializing reactions without account information. The optimization attempted to reduce query complexity by separating post data loading, but inadvertently broke reaction serialization for nested posts (shares and quotes). Database indexes added in 0.6.17 are retained.
Hollo 0.6.17
Released on November 15, 2025.
-
Significantly improved
/api/v1/notificationsendpoint performance by optimizing database queries and restructuring data loading strategy. The endpoint now responds in under 1.6 seconds, down from over 2.5 seconds previously (approximately 40% improvement). Key optimizations include:- Pre-fetching muted and blocked account IDs to eliminate correlated subqueries in notification type queries.
- Separating post data loading into multiple targeted queries instead of using deeply nested lateral joins, reducing query complexity and execution time.
- Adding strategic database indexes on
follows,mutes,likes, andreactionstables to improve query performance.
Hollo 0.6.16
Released on November 12, 2025.
-
Fixed search functionality not returning any results when searching for post content.
-
Fixed search results including shared posts (reposts/reblogs). Search now shows only original posts and replies, excluding shares.
Hollo 0.6.15
Released on November 7, 2025.
- Significantly improved
/nodeinfo/2.1endpoint performance by optimizing database queries and adding appropriate indexes. The endpoint now responds in under 1 second even with millions of federated posts, down from 5–15 seconds previously. This prevents load balancer health check failures and external service timeouts. [#282]
Hollo 0.6.14
Released on October 7, 2025.
- Fixed a critical security vulnerability where direct messages (DMs) were visible to all authenticated users regardless of whether they were participants in the conversation. The visibility filter now correctly restricts direct messages to only the sender and mentioned recipients, preventing unauthorized access to private conversations. [#247, #255 by Hyeonseo Kim]
Hollo 0.6.13
Released on October 7, 2025.
- Fixed a bug where replies from followers who are not followed back were not visible in conversation threads. The visibility filter now correctly includes posts that mention the authenticated user, ensuring that all replies directed to the user are displayed regardless of follow-back status.
Hollo 0.6.12
Hollo 0.6.11
Released on September 17, 2025.
- Fixed a bug where
Likeactivities from Bluesky via BridgyFed were not being received due to invalid AT Protocol URIs. This was resolved by upgrading Fedify to 1.5.9, which includes improved AT Protocol URI handling to properly parse URIs with DID authorities. [#217]
Hollo 0.6.10
Released on August 26, 2025.
- Upgraded Fedifyh to 1.5.7 which fixes a bug where HTTP Signature verification failed for requests having
createdorexpiresfields in theirSignatureheader, causing500 Internal Server Errorresponses in inbox handlers.