Skip to content

Commit fb30e93

Browse files
committed
chore: update changelog draft
1 parent 26de952 commit fb30e93

File tree

1 file changed

+38
-4
lines changed

1 file changed

+38
-4
lines changed

CHANGELOG_DRAFT.md

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
1-
## v3.1.2
1+
## v3.2.0
22

3-
- Add `chatOptions.localCacheEncryption` to SendbirdUIKitContainer props
4-
- Filter deactivated users when making mention suggestions
5-
- In the case of a resolved version, a android inverted flatlist warning message is not displayed.
3+
- Add chat init params to `chatOptions` in `SendbirdUIKitContainer` props.
4+
- Add `reaction.onPressUserProfile` to `SendbirdUIKitContainer` props.
5+
- Add `scrollToMessage` to `GroupChannelContexts.MessageList`.
6+
- Add Voice message
7+
8+
```tsx
9+
const App = () => {
10+
return (
11+
<SendbirdUIKitContainer
12+
uikitOptions={{
13+
groupChannel: {
14+
enableVoiceMessage: true,
15+
},
16+
}}
17+
platformServices={{
18+
recorder: RecorderService,
19+
player: PlayerService,
20+
}}
21+
/>
22+
);
23+
};
24+
```
25+
26+
Before using it, you should implement the `RecorderService` and `PlayerService` platform services.<br/>
27+
You can implement this easily by using helper functions.
28+
29+
> - CLI
30+
> - Install `react-native-permissions` and `react-native-audio-recorder-player`.
31+
> - Create platform services using `createNativeRecorderService` and `createNativePlayerService`.
32+
> - Expo:
33+
> - Install `expo-av`
34+
> - Create platform services using `createExpoRecorderService` and `createExpoPlayerService`.
35+
36+
- Fix the display of a message unavailable text if the message is not accessible.
37+
- Fix the search for messages within an accessible range.
38+
- Fix the usage of color variants in unknown group channel messages.
39+
- Fix the ensure that the UIKit configuration is always initialized, even in offline mode.

0 commit comments

Comments
 (0)