Changelog
All notable changes to this project will be documented in this file.
This document collects any major change to the Lens v3 from Dev Preview to the Mainnet launch. While we will try to keep breaking changes to a minimal, we may need to introduce them as we iterate on the implementations.
18 December 2024
Routine release with several bug fixes and improvements.
Changed
NestedPost and PostReference nodes got removed.
fragment Post on Post { id author { ...Account } metadata { ...PostMetadata } root {- ...NestedPost+ ...ReferencedPost } quoteOf {- ...NestedPost+ ...ReferencedPost } commentOn {- ...NestedPost+ ...ReferencedPost } stats { ...PostStats }}
where:
ReferencedPost
fragment ReferencedPost on Post { id author { ...Account } metadata { ...PostMetadata }
# root, quoteOf, commentOn omitted to avoid circular references}