Skip to content

v0.6.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@sachaarbonel sachaarbonel released this 12 Jan 14:46
· 49 commits to master since this release
394506e

stream_feed

0.5.0

Changelog

  • BREAKING: we no longer accept a token in the constructor. This change is inspired by Stream Chat, and allows for use cases like multi account management. It allows to instantiate StreamFeedClient at the top of your widget tree for example, and connect the user later.
-  client = StreamFeedClient(apiKey, token: frontendToken);
+  client = StreamFeedClient(apiKey);
+
+  await client.setUser(
+    const User(
+      data: {
+        'name': 'John Doe',
+        'occupation': 'Software Engineer',
+        'gender': 'male'
+      },
+    ),
+    frontendToken,
+  );

stream_feed_flutter_core

0.6.0

Changelog

  • breaking: bump version of breaking change llc