Skip to content

Commit

Permalink
chore: update changelog draft
Browse files Browse the repository at this point in the history
  • Loading branch information
bang9 committed Nov 28, 2024
1 parent f229033 commit d9e4ef0
Showing 1 changed file with 12 additions and 32 deletions.
44 changes: 12 additions & 32 deletions CHANGELOG_DRAFT.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,13 @@
## v3.8.0

- **Dependency Update**
The minimum version of `@sendbird/chat` has been bumped to `4.16.0`.

- **Reaction Support in Supergroup**
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).

- **RTL Support**
Right-to-left (RTL) support is now automatically activated based on the language.

```ts
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);
## v3.8.1

- **Added fallback for deleted emoji icons**
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.

- **Support for hiding user ids in mention suggestions**
Added an option to hide user IDs in the mention suggestion list. It can be used as shown below:
```tsx
const module = createGroupChannelModule();
const GroupChannelFragment = createGroupChannelFragment({
SuggestedMentionList: (props) => <module.SuggestedMentionList {...props} showUserId={false} />,
});
```

**Android**: Add the following line to your `AndroidManifest.xml` to enable RTL support:

```xml
<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.

0 comments on commit d9e4ef0

Please sign in to comment.