Skip to content

Commit 5446d8a

Browse files
Merge pull request #946 from GetStream/develop
Next release - 3.9.1
2 parents 4946478 + 6240948 commit 5446d8a

File tree

31 files changed

+196
-46
lines changed

31 files changed

+196
-46
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Bug report
33
about: Create a report to help us improve
44
title: ''
55
labels: ''
6-
assignees: vishalnarkhede
6+
assignees:
7+
- vishalnarkhede
8+
- madsroskar
79

810
---
911

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
NEXT_RELEASE_CHANGELOG.md
2+
NEXT_RELEASE_CHANGELOG.md
3+
*.log

PULL_REQUEST_TEMPLATE.md

Lines changed: 39 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,42 @@
1-
# Submit a pull request
1+
## 🎯 Goal
22

3-
## CLA
3+
<!-- Describe why we are making this change -->
44

5-
- [ ] I have signed the [Stream CLA](https://docs.google.com/forms/d/e/1FAIpQLScFKsKkAJI7mhCr7K9rEIOpqIDThrWxuvxnwUq2XkHyG154vQ/viewform) (required).
6-
- [ ] The code changes follow best practices
7-
- [ ] Code changes are tested (add some information if not applicable)
5+
## 🛠 Implementation details
6+
7+
<!-- Provide a description of the implementation -->
8+
9+
## 🎨 UI Changes
10+
11+
<!-- Add relevant screenshots -->
12+
13+
<details>
14+
<summary>iOS</summary>
15+
16+
| Before | After |
17+
| --- | --- |
18+
| img | img |
19+
</details>
20+
21+
22+
<details>
23+
<summary>Android</summary>
24+
25+
| Before | After |
26+
| --- | --- |
27+
| img | img |
28+
</details>
29+
30+
## 🧪 Testing
31+
32+
<!-- Explain how this change can be tested (or why it can't be tested) -->
33+
34+
## ☑️ Checklist
35+
36+
- [ ] I have signed the [Stream CLA](https://docs.google.com/forms/d/e/1FAIpQLScFKsKkAJI7mhCr7K9rEIOpqIDThrWxuvxnwUq2XkHyG154vQ/viewform) (required)
37+
- [ ] PR targets the `develop` branch
38+
- [ ] Commits follow the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) spec
39+
- [ ] New code is covered by tests
40+
- [ ] Screenshots added for visual changes
41+
- [ ] Documentation is updated
842

9-
## Description of the pull request

docusaurus/docs/reactnative/basics/getting_started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ To be able to use the Stream Chat React Native SDK, a few dependencies must meet
100100
### Additional Steps
101101

102102
- `react-native` - [additional installation steps](https://reactnative.dev/docs/image#gif-and-webp-support-on-android)
103-
- `react-native-reanimated` - [additional installation steps](https://docs.swmansion.com/react-native-reanimated/docs/installation).
103+
- `react-native-reanimated` - [additional installation steps](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/installation).
104104
- `react-native-image-crop-picker` - [additional installation steps](https://github.com/ivpusic/react-native-image-crop-picker#step-3)
105105
- `react-native-cameraroll` - [additional installation steps](https://github.com/react-native-cameraroll/react-native-cameraroll#permissions)
106106
- `react-native-gesture-handler` - [additional installation steps](https://docs.swmansion.com/react-native-gesture-handler/docs/#android)

docusaurus/docs/reactnative/basics/hello_stream_chat.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ For the purpose of this guide you should create a `channel` as you see fit utili
127127
* Channel created using a members list
128128
*/
129129
const channel = client.channel('messaging', {
130-
members: ['jlahey', 'rlafleur']
130+
members: ['jlahey', 'rlafleur'],
131131
name: 'The Park',
132132
});
133133
```

examples/NativeMessaging/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
targetSdkVersion = 30
99
androidXCore = "1.0.2"
1010
ndkVersion = "20.1.5948944"
11-
kotlinVersion = '1.3.0'
11+
kotlinVersion = '1.3.10'
1212
// Put here other AndroidX dependencies
1313
}
1414
repositories {
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
diff --git a/node_modules/@react-native-community/blur/android/build.gradle b/node_modules/@react-native-community/blur/android/build.gradle
2+
index 8177235..5d310b9 100644
3+
--- a/node_modules/@react-native-community/blur/android/build.gradle
4+
+++ b/node_modules/@react-native-community/blur/android/build.gradle
5+
@@ -9,7 +9,6 @@ buildscript {
6+
if (project == rootProject) {
7+
repositories {
8+
google()
9+
- jcenter()
10+
}
11+
12+
dependencies {
13+
@@ -37,11 +36,12 @@ android {
14+
15+
repositories {
16+
google()
17+
- jcenter()
18+
+
19+
+ maven { url 'https://jitpack.io' }
20+
}
21+
22+
dependencies {
23+
//noinspection GradleDynamicVersion
24+
implementation 'com.facebook.react:react-native:+'
25+
- implementation 'com.eightbitlab:blurview:1.6.3'
26+
+ implementation 'com.github.Dimezis:BlurView:version-1.6.6'
27+
}
30.3 KB
Loading
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:width="108dp"
3+
android:height="108dp"
4+
android:viewportWidth="108"
5+
android:viewportHeight="108">
6+
<group android:scaleX="0.72"
7+
android:scaleY="0.72"
8+
android:translateX="15.12"
9+
android:translateY="15.12">
10+
<path
11+
android:pathData="M65.042,45.564L88.074,43.931C89.594,43.823 90.552,45.537 89.663,46.775L83.777,54.973C82.711,54.334 81.584,53.787 80.406,53.343L83.12,49.571L76.042,52.219C75.049,52.075 74.033,52 73,52C72.395,52 71.795,52.026 71.203,52.076L82.08,47.95L68.044,48.956L70.849,52.109C69.487,52.247 68.163,52.516 66.89,52.903L54.917,39.39V58.184L60.614,56.04C59.31,56.994 58.12,58.094 57.069,59.317L56.612,59.488L56.849,59.577C56.439,60.07 56.052,60.581 55.687,61.111L54.917,60.823V62.316C54.191,63.543 53.585,64.85 53.118,66.221V60.823L38.17,66.409H53.055C52.677,67.555 52.394,68.744 52.217,69.967H35.958C35.379,69.967 34.836,69.689 34.498,69.219L18.343,46.777C17.452,45.539 18.409,43.823 19.931,43.931L42.893,45.564L52.7,34.599C53.419,33.796 54.678,33.801 55.391,34.61L65.042,45.564ZM51.393,59.488L36.121,65.189L24.885,49.571L51.393,59.488ZM53.133,58.185V39.388L40.645,53.484L53.133,58.185ZM36.983,52.184L39.856,48.956L25.82,47.95L36.983,52.184ZM73,90C82.389,90 90,82.389 90,73C90,63.611 82.389,56 73,56C63.611,56 56,63.611 56,73C56,82.389 63.611,90 73,90Z"
12+
android:fillColor="#ffffff"
13+
android:fillType="evenOdd"/>
14+
<path
15+
android:pathData="M67.497,85.035C67.007,85.035 66.574,84.929 66.209,84.717C64.83,83.92 64.349,81.622 64.93,78.571C64.99,78.257 65.061,77.936 65.141,77.609C64.888,77.537 64.643,77.46 64.407,77.379C62.97,76.888 61.749,76.235 60.879,75.49C59.956,74.702 59.466,73.841 59.466,73.01C59.466,71.414 61.215,69.853 64.152,68.834C64.473,68.722 64.807,68.617 65.153,68.518C65.078,68.215 65.011,67.916 64.954,67.623C64.671,66.171 64.618,64.84 64.8,63.768C65.002,62.601 65.478,61.769 66.184,61.361C67.617,60.529 70.053,61.385 72.533,63.591C72.683,63.723 72.833,63.862 72.984,64.007C73.209,63.79 73.434,63.584 73.658,63.389C74.773,62.418 75.903,61.707 76.921,61.332C78.032,60.923 78.993,60.923 79.695,61.327C81.132,62.153 81.607,64.691 80.934,67.94C80.894,68.135 80.849,68.334 80.8,68.535C81.097,68.621 81.386,68.713 81.665,68.81C83.063,69.29 84.241,69.915 85.077,70.607C85.985,71.366 86.466,72.198 86.466,73.01C86.466,74.668 84.51,76.345 81.357,77.388C81.194,77.442 81.026,77.495 80.855,77.546C80.916,77.791 80.969,78.032 81.016,78.268C81.309,79.758 81.357,81.142 81.15,82.267C80.929,83.463 80.429,84.314 79.708,84.732C79.348,84.943 78.92,85.049 78.445,85.049C77.137,85.049 75.479,84.261 73.749,82.771C73.506,82.562 73.262,82.34 73.018,82.105C72.83,82.286 72.643,82.459 72.457,82.622C71.313,83.622 70.135,84.352 69.059,84.732C68.497,84.934 67.968,85.035 67.497,85.035ZM72.211,81.285C72.039,81.451 71.868,81.608 71.697,81.757C69.958,83.276 68.453,83.881 67.497,83.881C67.204,83.881 66.963,83.824 66.781,83.718C66.041,83.29 65.526,81.598 66.06,78.787C66.115,78.496 66.18,78.198 66.256,77.892C67.355,78.136 68.575,78.312 69.891,78.418C70.637,79.47 71.419,80.436 72.211,81.285ZM73.823,81.276C74.051,81.496 74.279,81.703 74.504,81.897C76.671,83.761 78.392,84.165 79.136,83.732C79.91,83.285 80.477,81.454 79.891,78.494C79.848,78.279 79.799,78.06 79.744,77.837C78.63,78.094 77.396,78.284 76.089,78.401C75.342,79.483 74.582,80.448 73.823,81.276ZM80.542,76.436C80.697,76.39 80.849,76.342 80.997,76.293C83.962,75.307 85.317,73.899 85.317,73.01C85.317,72.553 84.971,72.015 84.342,71.491C83.616,70.886 82.559,70.333 81.295,69.896C81.035,69.807 80.767,69.723 80.491,69.643C80.159,70.715 79.715,71.853 79.176,73.017C79.744,74.213 80.203,75.36 80.542,76.436ZM78.521,74.352C78.883,75.177 79.187,75.972 79.428,76.727C78.646,76.906 77.801,77.05 76.91,77.157C77.189,76.715 77.465,76.256 77.738,75.783C78.013,75.306 78.274,74.828 78.521,74.352ZM78.509,71.688C78.852,70.885 79.142,70.103 79.375,69.356C78.596,69.179 77.769,69.035 76.908,68.926C77.187,69.364 77.462,69.814 77.728,70.276C78.004,70.751 78.264,71.222 78.509,71.688ZM75.43,68.777C75.878,69.437 76.314,70.133 76.733,70.857C77.16,71.593 77.549,72.317 77.9,73.024C77.549,73.747 77.161,74.48 76.739,75.211C76.315,75.945 75.883,76.642 75.447,77.297C74.645,77.354 73.816,77.383 72.971,77.383C72.126,77.383 71.309,77.358 70.527,77.308C70.066,76.637 69.624,75.936 69.207,75.216C68.789,74.494 68.404,73.765 68.054,73.04C68.404,72.311 68.788,71.581 69.201,70.866L69.203,70.867C69.621,70.143 70.06,69.444 70.515,68.778C71.321,68.716 72.145,68.685 72.971,68.685C73.804,68.685 74.628,68.716 75.43,68.777ZM76.07,67.674C77.343,67.793 78.561,67.986 79.685,68.246C79.729,68.066 79.769,67.888 79.805,67.714C80.435,64.653 79.892,62.778 79.118,62.331C78.724,62.105 78.085,62.134 77.315,62.418C76.426,62.745 75.422,63.384 74.413,64.263C74.206,64.443 74,64.632 73.793,64.831C74.56,65.659 75.328,66.618 76.07,67.674ZM72.984,65.656C73.514,66.23 74.046,66.872 74.569,67.569C74.04,67.544 73.505,67.531 72.966,67.531C72.435,67.531 71.907,67.544 71.386,67.567C71.908,66.879 72.444,66.238 72.984,65.656ZM72.175,64.83C71.391,65.673 70.618,66.631 69.881,67.672C68.61,67.789 67.395,67.978 66.273,68.233C66.203,67.951 66.142,67.674 66.088,67.402C65.829,66.09 65.781,64.898 65.939,63.965C66.079,63.158 66.372,62.586 66.766,62.36C67.54,61.913 69.433,62.38 71.769,64.456C71.904,64.575 72.039,64.7 72.175,64.83ZM66.584,69.346C67.356,69.174 68.18,69.033 69.035,68.926C68.752,69.369 68.476,69.822 68.208,70.285C67.94,70.75 67.685,71.218 67.443,71.685C67.107,70.89 66.819,70.106 66.584,69.346ZM65.463,69.629C65.141,69.72 64.831,69.817 64.536,69.92C61.835,70.862 60.624,72.15 60.624,73.01C60.624,73.904 61.927,75.312 64.782,76.288C64.996,76.361 65.219,76.431 65.45,76.497C65.79,75.384 66.239,74.22 66.78,73.043C66.245,71.882 65.801,70.732 65.463,69.629ZM67.443,74.398C67.101,75.209 66.807,76.009 66.568,76.779C67.336,76.947 68.168,77.081 69.054,77.179C68.764,76.729 68.481,76.266 68.208,75.793C67.94,75.33 67.684,74.865 67.443,74.398ZM71.392,78.507C71.907,78.527 72.433,78.537 72.971,78.537C73.523,78.537 74.068,78.525 74.605,78.5C74.077,79.218 73.546,79.872 73.018,80.453C72.47,79.862 71.924,79.208 71.392,78.507ZM75.383,73.01C75.383,74.342 74.303,75.423 72.97,75.423C71.638,75.423 70.558,74.342 70.558,73.01C70.558,71.678 71.638,70.598 72.97,70.598C74.303,70.598 75.383,71.678 75.383,73.01Z"
16+
android:fillColor="#000000"
17+
android:fillType="evenOdd"/>
18+
</group>
19+
</vector>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3+
<background android:drawable="@color/ic_launcher_background"/>
4+
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
5+
</adaptive-icon>

0 commit comments

Comments
 (0)