Changelog
All notable changes to this project will be documented in this page.
This page 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 minimum, we may need to introduce them as we iterate on the implementations.
10 February 2025
Actions, Rules, and Sponsorships
Added
Follow Rules
Feed Rules
Graph Rules
Username Namespace Rules
Group Rules
Post Rules
Post Actions
Account Actions
Sponsorship support: apps can now sponsor their own users
Changed
- Logged-in operations objects:
Post.operations.canEdit, Post.operations.canDelete, Post.operations.canComment, Post.operations.canQuote, Post.operations.canRepost now returns a new PostOperationValidationOutcome union with all the details regarding rules validation.
Account.operations.canFollow and Account.operations.canUnfollow now returns a new AccountFollowOperationValidationOutcome union with all the details regarding rules validation.
Paginated query postActions got renamed into postActionContracts and the return type is now consolidated, including ActionMetatada for unknown Post Actions.
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}