Skip to content

Commit 65c0411

Browse files
authored
Merge pull request #63 from GetStream/stream-feed-v0.1.3
stream_feed release: 0.1.3
2 parents 39a7dfa + 6ffe961 commit 65c0411

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

packages/stream_feed/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.1.3: 17/05/2021
2+
3+
- fix: EnrichedActivity Not Returning Reactions
4+
- update links in readme
5+
16
## 0.1.2: 07/05/2021
27

38
- update dependencies

packages/stream_feed/README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Official Dart Client for [Stream Activity Feeds](https://getstream.io/activity-feeds/)
22

3-
>The official Dart client for Stream Activity Feeds, a service for building feed applications. This library can be used on any Dart project and on both mobile and web apps with Flutter.
4-
3+
> The official Dart client for Stream Activity Feeds
4+
> a service for building feed applications. This library can be used on any Dart project
5+
> and on both mobile and web apps with Flutter.
56
67
**🔗 Quick Links**
78

@@ -41,14 +42,19 @@ const apiKey = 'my-API-key';
4142
const secret = 'my-API-secret';
4243

4344
// Instantiate a new client (server side)
44-
var client = StreamFeedClient.connect(apiKey, secret: secret);
45+
var client = StreamFeedClient.connect(apiKey, secret: secret, runner: Runner.server);
4546

4647
// Optionally supply the app identifier and an options object specifying the data center to use and timeout for requests (15s)
4748
client = StreamFeedClient.connect(apiKey,
48-
secret: secret,
49-
appId: 'yourappid',
50-
options: StreamHttpClientOptions(
51-
location: Location.usEast, connectTimeout: Duration(seconds: 15)));
49+
secret: secret,
50+
runner: Runner.server,
51+
appId: 'yourappid',
52+
runner: Runner.server,
53+
options: StreamHttpClientOptions(
54+
location: Location.usEast,
55+
connectTimeout: Duration(seconds: 15),
56+
),
57+
);
5258

5359
// Create a token for user with id "the-user-id"
5460
final userToken = client.frontendToken('the-user-id');
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/// Current package version
22
/// Used in [HttpClient] to build the `x-stream-client` header
3-
const String packageVersion = '0.1.2';
3+
const String packageVersion = '0.1.3';

packages/stream_feed/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_feed
22
description: Stream Feed official Dart SDK. Build your own feed experience using Dart and Flutter.
3-
version: 0.1.2
3+
version: 0.1.3
44
repository: https://github.com/GetStream/stream-feed-flutter
55
issue_tracker: https://github.com/GetStream/stream-feed-flutter/issues
66
homepage: https://getstream.io/

0 commit comments

Comments
 (0)