diff --git a/package/CHANGELOG.md b/package/CHANGELOG.md index 074b14ab7c..9e6c54d24b 100644 --- a/package/CHANGELOG.md +++ b/package/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## [5.30.0](https://github.com/GetStream/stream-chat-react-native/compare/v5.29.0...v5.30.0) (2024-05-16) + + +### Features + +* show edited message label in message UI ([#2514](https://github.com/GetStream/stream-chat-react-native/issues/2514)) ([e19be3c](https://github.com/GetStream/stream-chat-react-native/commit/e19be3ca85ea21c29deb3e26bc43c5e8d1f7c6d5)) + + +### Bug Fixes + +* channel.lastRead() returns null after posting a message ([#2480](https://github.com/GetStream/stream-chat-react-native/issues/2480)) ([851d314](https://github.com/GetStream/stream-chat-react-native/commit/851d3148555fc2eaf9927271089b56f6c4bde02d)) +* handle react native audio recorder player optionally ([#2515](https://github.com/GetStream/stream-chat-react-native/issues/2515)) ([bdca957](https://github.com/GetStream/stream-chat-react-native/commit/bdca95725c7089ea75154b7c9dfa8730c5be9a97)) +* incorrect mentioned users regex users with same prefix ([#2508](https://github.com/GetStream/stream-chat-react-native/issues/2508)) ([c73fd35](https://github.com/GetStream/stream-chat-react-native/commit/c73fd35e939192d62202d7bff3687211b2754643)) +* new message in empty messagelist and channel preview latest message ([#2509](https://github.com/GetStream/stream-chat-react-native/issues/2509)) ([fb971a6](https://github.com/GetStream/stream-chat-react-native/commit/fb971a67da203f0783209af5b505758a7504dc42)) +* remove redundant console.logs from Audio.ts ([a9a308a](https://github.com/GetStream/stream-chat-react-native/commit/a9a308a58d596b923c110821b6b3e266b4607d5b)) +* Stream chat fix http no such file ([#2512](https://github.com/GetStream/stream-chat-react-native/issues/2512)) ([b9cb890](https://github.com/GetStream/stream-chat-react-native/commit/b9cb8905e2783c95ac0c2b203197475abfccde21)) + ## [5.29.0](https://github.com/GetStream/stream-chat-react-native/compare/v5.28.1...v5.29.0) (2024-05-02) diff --git a/package/expo-package/package.json b/package/expo-package/package.json index c97d8b12df..112b2433db 100644 --- a/package/expo-package/package.json +++ b/package/expo-package/package.json @@ -1,7 +1,7 @@ { "name": "stream-chat-expo", "description": "The official Expo SDK for Stream Chat, a service for building chat applications", - "version": "5.29.0", + "version": "5.30.0", "author": { "company": "Stream.io Inc", "name": "Stream.io Inc" @@ -10,7 +10,7 @@ "main": "src/index.js", "types": "types/index.d.ts", "dependencies": { - "stream-chat-react-native-core": "5.29.0" + "stream-chat-react-native-core": "5.30.0" }, "peerDependencies": { "@react-native-community/netinfo": ">=6.0.0", diff --git a/package/native-package/package.json b/package/native-package/package.json index 5348478f91..1150b51752 100644 --- a/package/native-package/package.json +++ b/package/native-package/package.json @@ -1,7 +1,7 @@ { "name": "stream-chat-react-native", "description": "The official React Native SDK for Stream Chat, a service for building chat applications", - "version": "5.29.0", + "version": "5.30.0", "author": { "company": "Stream.io Inc", "name": "Stream.io Inc" @@ -11,7 +11,7 @@ "types": "types/index.d.ts", "dependencies": { "es6-symbol": "^3.1.3", - "stream-chat-react-native-core": "5.29.0" + "stream-chat-react-native-core": "5.30.0" }, "peerDependencies": { "@react-native-camera-roll/camera-roll": ">=5.0.0", diff --git a/package/package.json b/package/package.json index 47494204f9..4aaf00539b 100644 --- a/package/package.json +++ b/package/package.json @@ -1,7 +1,7 @@ { "name": "stream-chat-react-native-core", "description": "The official React Native and Expo components for Stream Chat, a service for building chat applications", - "version": "5.29.0", + "version": "5.30.0", "author": { "company": "Stream.io Inc", "name": "Stream.io Inc" diff --git a/package/src/version.json b/package/src/version.json index aa0a52ee24..4678975c5f 100644 --- a/package/src/version.json +++ b/package/src/version.json @@ -1,3 +1,3 @@ { - "version": "5.29.0" + "version": "5.30.0" }