Skip to content

Commit 5f885f7

Browse files
committed
Merge branch 'develop' into chore/expo-audio-support
# Conflicts: # package/expo-package/package.json
2 parents a25115b + 19da009 commit 5f885f7

File tree

10 files changed

+33
-13
lines changed

10 files changed

+33
-13
lines changed

.github/workflows/sample-distribution.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ jobs:
3434
- name: iOS Pods setup
3535
working-directory: examples/SampleApp/ios
3636
run: |
37-
pod update hermes-engine --no-repo-update
37+
rm -rf Pods
38+
rm -f Podfile.lock
39+
rm -rf build
40+
rm -rf ~/Library/Developer/Xcode/DerivedData
3841
bundle exec pod install
3942
- name: Build and release Testflight QA
4043
working-directory: examples/SampleApp

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[![NPM](https://img.shields.io/npm/v/stream-chat-react-native.svg)](https://www.npmjs.com/package/stream-chat-react-native)
1111
[![Build Status](https://github.com/GetStream/stream-chat-react-native/actions/workflows/release.yml/badge.svg)](https://github.com/GetStream/stream-chat-react-native/actions)
1212
[![Component Reference](https://img.shields.io/badge/docs-component%20reference-blue.svg)](https://getstream.io/chat/docs/sdk/reactnative)
13-
![JS Bundle Size](https://img.shields.io/badge/js_bundle_size-459%20KB-blue)
13+
![JS Bundle Size](https://img.shields.io/badge/js_bundle_size-450%20KB-blue)
1414

1515
<img align="right" src="https://getstream.imgix.net/images/ios-chat-tutorial/[email protected]?auto=format,enhance" width="50%" />
1616

examples/SampleApp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
### [3.1.2](https://github.com/GetStream/stream-chat-react-native/compare/[email protected]@v3.1.2) (2025-06-23)
4+
5+
6+
### Bug Fixes
7+
8+
* sample app crash on start ([#3128](https://github.com/GetStream/stream-chat-react-native/issues/3128)) ([971087d](https://github.com/GetStream/stream-chat-react-native/commit/971087d0f81a33c8503853ad1a34cff8c3822fec))
9+
310
### [3.1.1](https://github.com/GetStream/stream-chat-react-native/compare/[email protected]@v3.1.1) (2025-05-30)
411

512

examples/SampleApp/fastlane/Fastfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ lane :deploy_to_testflight_qa do |options|
3434
)
3535

3636
current_build_number = app_store_build_number(
37-
api_key: appstore_api_key,
38-
live: false,
39-
app_identifier: bundle_id
40-
)
37+
api_key: appstore_api_key,
38+
live: false,
39+
app_identifier: bundle_id
40+
)
4141

4242
increment_build_number(
4343
build_number: current_build_number + 1,

examples/SampleApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sampleapp",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"private": true,
55
"repository": {
66
"type": "git",

package/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
### [7.1.2](https://github.com/GetStream/stream-chat-react-native/compare/v7.1.1...v7.1.2) (2025-06-23)
4+
5+
6+
### Bug Fixes
7+
8+
* android crash during sharing larger media ([96e4cc2](https://github.com/GetStream/stream-chat-react-native/commit/96e4cc26c4724e260148223eb8d501ea042e27cd))
9+
* prefer local uri when sharing if there ([#3118](https://github.com/GetStream/stream-chat-react-native/issues/3118)) ([0ecee49](https://github.com/GetStream/stream-chat-react-native/commit/0ecee49cf6996874b076b82a816542a707b5b825))
10+
* remove unwanted styles ([#3111](https://github.com/GetStream/stream-chat-react-native/issues/3111)) ([41940f0](https://github.com/GetStream/stream-chat-react-native/commit/41940f01e39ecf3b17796376948fcda1a3d4febd))
11+
* visibility of unread notification and underlay in certain scenarios ([#3119](https://github.com/GetStream/stream-chat-react-native/issues/3119)) ([69bbbe6](https://github.com/GetStream/stream-chat-react-native/commit/69bbbe6a9363fdd75c4beae6f652628dd2525731))
12+
313
### [7.1.1](https://github.com/GetStream/stream-chat-react-native/compare/v7.1.0...v7.1.1) (2025-05-30)
414

515

package/expo-package/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stream-chat-expo",
33
"description": "The official Expo SDK for Stream Chat, a service for building chat applications",
4-
"version": "7.1.1",
4+
"version": "7.1.2",
55
"author": {
66
"company": "Stream.io Inc",
77
"name": "Stream.io Inc"
@@ -11,7 +11,7 @@
1111
"types": "types/index.d.ts",
1212
"dependencies": {
1313
"mime": "^4.0.7",
14-
"stream-chat-react-native-core": "link:../"
14+
"stream-chat-react-native-core": "7.1.2"
1515
},
1616
"peerDependencies": {
1717
"expo": ">=51.0.0",

package/native-package/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stream-chat-react-native",
33
"description": "The official React Native SDK for Stream Chat, a service for building chat applications",
4-
"version": "7.1.1",
4+
"version": "7.1.2",
55
"homepage": "https://www.npmjs.com/package/stream-chat-react-native",
66
"author": {
77
"company": "Stream.io Inc",
@@ -21,7 +21,7 @@
2121
"dependencies": {
2222
"es6-symbol": "^3.1.3",
2323
"mime": "^4.0.7",
24-
"stream-chat-react-native-core": "7.1.1"
24+
"stream-chat-react-native-core": "7.1.2"
2525
},
2626
"peerDependencies": {
2727
"@react-native-camera-roll/camera-roll": ">=7.8.0",

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stream-chat-react-native-core",
33
"description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
4-
"version": "7.1.1",
4+
"version": "7.1.2",
55
"author": {
66
"company": "Stream.io Inc",
77
"name": "Stream.io Inc"

package/src/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "7.1.1"
2+
"version": "7.1.2"
33
}

0 commit comments

Comments
 (0)