From fa413df368e23ead0666e0736c6e639a083cdf6d Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Wed, 26 Nov 2025 14:08:41 +0100 Subject: [PATCH] chore(repo): release v0.4.0 --- docs/pubspec.yaml | 2 +- melos.yaml | 2 +- packages/stream_feeds/CHANGELOG.md | 3 ++- packages/stream_feeds/example/pubspec.yaml | 2 +- packages/stream_feeds/lib/src/state.dart | 3 +++ packages/stream_feeds/pubspec.yaml | 2 +- sample_app/pubspec.yaml | 4 ++-- 7 files changed, 11 insertions(+), 7 deletions(-) diff --git a/docs/pubspec.yaml b/docs/pubspec.yaml index 4ce945e..416c8f1 100644 --- a/docs/pubspec.yaml +++ b/docs/pubspec.yaml @@ -7,4 +7,4 @@ dependencies: flutter: sdk: flutter flutter_state_notifier: ^1.0.0 - stream_feeds: ^0.3.1 + stream_feeds: ^0.4.0 diff --git a/melos.yaml b/melos.yaml index 21d27c2..956fcfa 100644 --- a/melos.yaml +++ b/melos.yaml @@ -47,7 +47,7 @@ command: rxdart: ^0.28.0 shared_preferences: ^2.5.3 state_notifier: ^1.0.0 - stream_feeds: ^0.3.1 + stream_feeds: ^0.4.0 stream_core: ^0.3.0 video_player: ^2.10.0 uuid: ^4.5.1 diff --git a/packages/stream_feeds/CHANGELOG.md b/packages/stream_feeds/CHANGELOG.md index 1b103d1..cfc7441 100644 --- a/packages/stream_feeds/CHANGELOG.md +++ b/packages/stream_feeds/CHANGELOG.md @@ -1,4 +1,4 @@ -## unreleased +## 0.4.0 - [BREAKING] Change `queryFollowSuggestions` return type to `List`. - [BREAKING] Remove `activitySelectorOptions` from `FeedQuery`. - Add `activityFeedback` method to `Feed` and `Activity` for submitting activity feedback. @@ -6,6 +6,7 @@ - Update follower and following counts on the feed state when receiving follow websocket events. - Fix FeedsReactionData id for updating reactions in the feed state. - Improvement for stories and minor updates to other AggregatedActivity state updates. +- Export all the State classes and Queries used in the SDK. ## 0.3.1 - Update API client with renaming `addReaction` to `addActivityReaction` and `deleteReaction` to `deleteActivityReaction`. diff --git a/packages/stream_feeds/example/pubspec.yaml b/packages/stream_feeds/example/pubspec.yaml index 6c8ed64..bdfc27c 100644 --- a/packages/stream_feeds/example/pubspec.yaml +++ b/packages/stream_feeds/example/pubspec.yaml @@ -11,7 +11,7 @@ dependencies: flutter: sdk: flutter flutter_state_notifier: ^1.0.0 - stream_feeds: ^0.3.1 + stream_feeds: ^0.4.0 dev_dependencies: flutter_test: diff --git a/packages/stream_feeds/lib/src/state.dart b/packages/stream_feeds/lib/src/state.dart index b88594e..9074d55 100644 --- a/packages/stream_feeds/lib/src/state.dart +++ b/packages/stream_feeds/lib/src/state.dart @@ -1,5 +1,6 @@ export 'state/activity.dart'; export 'state/activity_comment_list.dart'; +export 'state/activity_comment_list_state.dart'; export 'state/activity_list.dart'; export 'state/activity_list_state.dart'; export 'state/activity_state.dart'; @@ -10,7 +11,9 @@ export 'state/bookmark_list_state.dart'; export 'state/comment_list.dart'; export 'state/comment_list_state.dart'; export 'state/comment_reaction_list.dart'; +export 'state/comment_reaction_list_state.dart'; export 'state/comment_reply_list.dart'; +export 'state/comment_reply_list_state.dart'; export 'state/feed.dart'; export 'state/feed_list.dart'; export 'state/feed_list_state.dart'; diff --git a/packages/stream_feeds/pubspec.yaml b/packages/stream_feeds/pubspec.yaml index c1df1eb..6d6ac5c 100644 --- a/packages/stream_feeds/pubspec.yaml +++ b/packages/stream_feeds/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_feeds description: The official Dart client for Stream Feeds, a service for building applications with activity feeds. -version: 0.3.1 +version: 0.4.0 repository: https://github.com/GetStream/stream-feeds-flutter # Note: The environment configuration and dependency versions are managed by Melos. diff --git a/sample_app/pubspec.yaml b/sample_app/pubspec.yaml index 6e9b736..6eef56c 100644 --- a/sample_app/pubspec.yaml +++ b/sample_app/pubspec.yaml @@ -2,7 +2,7 @@ name: sample_app description: "A demo app for the Stream Feeds SDK" publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 0.3.1 +version: 0.4.0 environment: sdk: ^3.6.2 @@ -29,7 +29,7 @@ dependencies: json_annotation: ^4.9.0 photo_view: ^0.15.0 shared_preferences: ^2.5.3 - stream_feeds: ^0.3.1 + stream_feeds: ^0.4.0 video_player: ^2.10.0 dev_dependencies: