Skip to content

Commit d5dd1ea

Browse files
committed
chore: update changelog draft
1 parent badf23f commit d5dd1ea

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

CHANGELOG_DRAFT.md

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1-
## v3.7.6
1+
## v3.8.0
22

3-
- Reverted the Android CAMERA permission to mandatory.
3+
- **Dependency Update**
4+
The minimum version of `@sendbird/chat` has been bumped to `4.16.0`.
5+
6+
- **Reaction Support in Supergroup**
7+
Reactions are now supported in supergroups. This update introduces a simplified `ReactedUserInfo` type, replacing the previous `User` and `Member` types for reaction-related data. For more details, please refer to the [#217](https://github.com/sendbird/sendbird-uikit-react-native/pull/217).
8+
9+
- **RTL Support**
10+
Right-to-left (RTL) support is now automatically activated based on the language.
11+
12+
```ts
13+
import { I18nManager } from 'react-native';
14+
15+
// To allow RTL support, use the following code:
16+
I18nManager.allowRTL(true);
17+
18+
// To test RTL, you can force RTL by using the following code:
19+
// I18nManager.forceRTL(true);
20+
```
21+
22+
**Android**: Add the following line to your `AndroidManifest.xml` to enable RTL support:
23+
24+
```xml
25+
<application
26+
android:supportsRtl="true">
27+
</application>
28+
```
29+
30+
**iOS**: For iOS, enable RTL support by adding supported languages in the Localizations section of your Xcode project settings.
31+
32+
- **Improved stability**
33+
Some bugs related to voice messages have been fixed.

0 commit comments

Comments
 (0)