Skip to content

Commit 7539ad9

Browse files
Merge pull request #866 from GetStream/develop
Next Release
2 parents 4580ef8 + a69724b commit 7539ad9

File tree

81 files changed

+4594
-3663
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+4594
-3663
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ assignees: vishalnarkhede
1010
<!--
1111
PLEASE READ THIS BEFORE PROCEEDING:
1212
13-
Did you check cookbook? - https://github.com/GetStream/stream-chat-react-native/wiki/Cookbook-v3.0
13+
Did you check docs? - https://getstream.io/chat/docs/sdk/reactnative
1414
15-
If you are looking for an answer to "how to implement/do ... using xx component?" question, cookbook would be a nice place to start. We are constantly trying to update cookbook with different examples of use-cases/customisations of components. If you can't find an answer there, please leave a comment here - https://github.com/GetStream/stream-chat-react-native/issues/184 and I will try to add/include a sample code or example as soon as possible to cookbook. This way it can help the other devs who are looking for same answer. Also if you have some feedback regarding cookbook, please don't hesitate to comment there.
15+
If you are looking for an answer to "how to implement/do ... using xx component?" question, please check the Guides section of the docs. If you can't find an answer there, please leave a comment here - https://github.com/GetStream/stream-chat-react-native/issues/184 and I will try to add/include a sample code or example as soon as possible to Guides section of docs. This way it can help the other devs who are looking for same answer. Also if you have some feedback regarding docs, please don't hesitate to comment there.
1616
1717
Your co-operation is really-really appreciated in this manner. Thanks and happy coding :)
1818
-->

.github/workflows/check-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- develop
77
- master
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
89
types: [opened, synchronize]
910

1011
jobs:

.github/workflows/e2e-native-android.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- develop
77
- master
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
89
types: [opened, synchronize]
910

1011
jobs:

.github/workflows/e2e-native-ios.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- develop
77
- master
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
89
types: [opened, synchronize]
910

1011
jobs:

.github/workflows/e2e-sample-android.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- develop
77
- master
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
89
types: [opened, synchronize]
910

1011
jobs:

.github/workflows/e2e-sample-ios.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- develop
77
- master
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
89
types: [opened, synchronize]
910

1011
jobs:

.github/workflows/lint-pr-title.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
branches:
66
- develop
7+
- 'v[0-9]+.[0-9]+.[0-9]+'
78
types: [opened, edited, synchronize]
89

910
jobs:

README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,6 @@
3131
- [Keep in mind](#-keep-in-mind)
3232
- [Contributing](#-contributing)
3333

34-
## 🔐 React Native Compatibility
35-
36-
To use this library you need to ensure you match up with the correct version of React Native you are using.
37-
38-
| `stream-chat-react-native` version | React Native Version | `stream-chat` Version |
39-
| ---------------------------------- | --------------------- | --------------------- |
40-
| `3.2.0` | `>= 0.60` | `>= 3.5.1` |
41-
| `3.0.0` | `>= 0.60` | `>= 3.0.0` |
42-
| `2.x.x` | `>= 0.60` | `< 3.0.0` |
43-
| `1.x.x` | `>= 0.59` | `< 3.0.0` |
44-
| `0.x.x` | `*` | `< 3.0.0` |
45-
4634
## 📖 React Native Chat Tutorial
4735

4836
The best place to start is the [React Native Chat Tutorial](https://github.com/GetStream/stream-chat-react-native/wiki/Tutorial-v3.0). It teaches you how to use this SDK and also shows how to make frequently required changes.
6.94 KB
Loading

docusaurus/docs/reactnative/basics/getting_started.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,16 @@ Most if not all of the required packages now support auto-linking so setup shoul
8787

8888
For iOS on a Mac install the pods `npx pod-install ios`.
8989

90+
#### Version compabilities
91+
92+
To be able to use the Stream Chat React Native SDK, a few dependencies must meet the following version requirements:
93+
94+
| react-native | stream-chat-react-native (min required) | react-native-reanimated (min required) |
95+
| - | - | - |
96+
| 0.65 | 3.9.0 | 2.2.1 |
97+
| 0.64 | 3.6.2 | 2.2.0 |
98+
| 0.63 | 3.0.0 | 2.2.0 |
99+
90100
### Additional Steps
91101

92102
- `react-native` - [additional installation steps](https://reactnative.dev/docs/image#gif-and-webp-support-on-android)

0 commit comments

Comments
 (0)