Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ dependencies:
flutter:
sdk: flutter
flutter_state_notifier: ^1.0.0
stream_feeds: ^0.3.1
stream_feeds: ^0.4.0
2 changes: 1 addition & 1 deletion melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion packages/stream_feeds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
## unreleased
## 0.4.0
- [BREAKING] Change `queryFollowSuggestions` return type to `List<FeedSuggestionData>`.
- [BREAKING] Remove `activitySelectorOptions` from `FeedQuery`.
- Add `activityFeedback` method to `Feed` and `Activity` for submitting activity feedback.
- Add `hidden` and `preview` fields to `ActivityData`.
- 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`.
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_feeds/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_feeds/lib/src/state.dart
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_feeds/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions sample_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down