Skip to content

Commit c756816

Browse files
committed
chore: update changelog draft
1 parent f229033 commit c756816

File tree

1 file changed

+12
-32
lines changed

1 file changed

+12
-32
lines changed

CHANGELOG_DRAFT.md

Lines changed: 12 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,13 @@
1-
## v3.8.0
2-
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);
1+
## v3.8.1
2+
3+
- **Added fallback for deleted emoji icons**
4+
Fixed a crash that occurred when a reaction emoji was deleted and could not be found. A question mark icon will now appear as a fallback in such cases.
5+
6+
- **Support for hiding user ids in mention suggestions**
7+
Added an option to hide user IDs in the mention suggestion list. It can be used as shown below:
8+
```tsx
9+
const module = createGroupChannelModule();
10+
const GroupChannelFragment = createGroupChannelFragment({
11+
SuggestedMentionList: (props) => <module.SuggestedMentionList {...props} showUserId={false} />,
12+
});
2013
```
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)