@stream-io/feeds-react-native-sdk 0.1.32 → 0.1.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/README.md +36 -7
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.33](https://github.com/GetStream/stream-feeds-js/compare/@stream-io/feeds-react-native-sdk-0.1.32...@stream-io/feeds-react-native-sdk-0.1.33) (2025-12-10)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/feeds-client` updated to version `0.3.18`
|
|
5
10
|
## [0.1.32](https://github.com/GetStream/stream-feeds-js/compare/@stream-io/feeds-react-native-sdk-0.1.31...@stream-io/feeds-react-native-sdk-0.1.32) (2025-12-08)
|
|
6
11
|
|
|
7
12
|
### Dependency Updates
|
package/README.md
CHANGED
|
@@ -1,11 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
Supported React Native versions: >=0.73.0
|
|
3
|
-
Supported Expo versions: >=51.0.0
|
|
1
|
+
# Official React Native SDK for Stream Feeds
|
|
4
2
|
|
|
5
|
-
|
|
3
|
+
Bring users together through personalized feeds, threaded discussions, and real-time updates that make every interaction feel meaningful.
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
- Supported React versions: >=17.0.0
|
|
6
|
+
- Supported React Native versions: >=0.73.0
|
|
7
|
+
- Supported Expo versions: >=51.0.0
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## **Quick Links**
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
- [Register](https://getstream.io/chat/trial/) to get an API key for Stream Feeds
|
|
12
|
+
- [Sample app](../../sample-apps/react-native/ExpoTikTokApp/#expo-tiktok-sample-app)
|
|
13
|
+
- [Docs](https://getstream.io/activity-feeds/docs/)
|
|
14
|
+
|
|
15
|
+
## What is Stream?
|
|
16
|
+
|
|
17
|
+
Stream allows developers to rapidly deploy scalable feeds, chat messaging and video with an industry leading 99.999% uptime SLA guarantee.
|
|
18
|
+
|
|
19
|
+
Stream's Activity Feed V3 SDK enables teams of all sizes to build scalable activity feeds. The best place to get started is to follow the tutorial:
|
|
20
|
+
|
|
21
|
+
TODO
|
|
22
|
+
|
|
23
|
+
## 👩💻 Free for Makers 👨💻
|
|
24
|
+
|
|
25
|
+
Stream is free for most side and hobby projects. To qualify, your project/company needs to have < 5 team members and < $10k in monthly revenue. Makers get $100 in monthly credit for feeds for free.
|
|
26
|
+
|
|
27
|
+
## 💡 Supported Features 💡
|
|
28
|
+
|
|
29
|
+
Here are some of the features we support:
|
|
30
|
+
|
|
31
|
+
- **For-You feed**: Most modern apps combine a “For You” feed with a regular “Following” feed. With activity selectors you can:
|
|
32
|
+
- surface popular activities
|
|
33
|
+
- show activities near the user
|
|
34
|
+
- match activities to a user’s interests
|
|
35
|
+
- mix-and-match these selectors to build an engaging personalized feed.
|
|
36
|
+
- **Comments**: Voting, threading, images, URL previews, @mentions & notifications. Basically all the features of Reddit style commenting systems.
|
|
37
|
+
- **Advanced feed features**: Activity expiration • visibility controls • feed visibility levels • feed members • bookmarking • follow-approval flow • stories support.
|
|
38
|
+
- **Activity filtering**: Filter activity feeds with almost no hit to performance
|
|
39
|
+
- **Search & queries**: Activity search, **query activities**, and **query feeds** endpoints.
|
|
40
|
+
- **Modern essentials**: Permissions • OpenAPI spec • GDPR endpoints • realtime WebSocket events • push notifications • “own capabilities” API.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/feeds-react-native-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.33",
|
|
4
4
|
"packageManager": "yarn@3.5.0",
|
|
5
5
|
"main": "./dist/commonjs/index.js",
|
|
6
6
|
"types": "./dist/typescript/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"test-ci": "echo 'No tests yet'"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@stream-io/feeds-client": "0.3.
|
|
27
|
+
"@stream-io/feeds-client": "0.3.18",
|
|
28
28
|
"react-native-url-polyfill": "^3.0.0",
|
|
29
29
|
"rimraf": "^6.0.1",
|
|
30
30
|
"use-sync-external-store": "^1.5.0"
|