v3.8.0
3.8.0 (2024-11-21)
Release notes
-
Dependency Update
The minimum version of@sendbird/chat
has been bumped to4.16.0
. -
Reaction Support in Supergroup
Reactions are now supported in supergroups. This update introduces a simplifiedReactedUserInfo
type, replacing the previousUser
andMember
types for reaction-related data. For more details, please refer to the #217. -
RTL Support
Right-to-left (RTL) support is now automatically activated based on the language.import { I18nManager } from 'react-native'; // To allow RTL support, use the following code: I18nManager.allowRTL(true); // To test RTL, you can force RTL by using the following code: // I18nManager.forceRTL(true);
Android: Add the following line to your
AndroidManifest.xml
to enable RTL support:<application android:supportsRtl="true"> </application>
iOS: For iOS, enable RTL support by adding supported languages in the Localizations section of your Xcode project settings.
-
Improved stability
Some bugs related to voice messages have been fixed.
Changelogs
Features
- added local configs screen to support dynamic configs (8e2591a)
- added visibility of users who reacted in SuperGroupChannel (a79ac92)
- added visibility of users who reacted in SuperGroupChannel (afa1c3d)
- apply direction to text ui layout (09f0bef)
- apply rtl support to open channel fragments (ed9b5b5)
- apply rtl to channel preview component (1e1e930)
- apply rtl to group channel header (080b3f4)
- apply rtl to icon component (56c2793)
- apply rtl to thread (3aee405)
- change left to start and right to end in styles (6ffb896)
- support rtl to text and text input (ee4a0c8)
- updated chat sdk version to 4.15.0 (7cf3f47)
- updated chat sdk version to 4.16.0 (5500831)
Bug Fixes
- apply LRM,RLM properly for mention direction (7c7a751)
- clear voiceMessageStatusManager on unmount group channel fragment (8c7a73a)
- ensure text aligns center regardless of RTL setting (89401bb)
- metion block should be grouped (662e6f8)
- reset currentTime when voice message stopped (c91d7fd)
- sync voice status of thread parent message component (d3c76d5)