Skip to content

Commit 200bd60

Browse files
committed
v3.11.0
1 parent 5aaa966 commit 200bd60

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog - v3
22

3+
## [v3.11.0] (Feb 07, 2024)
4+
5+
### Features:
6+
* Added `enableSuggestedReplies` global option
7+
* How to use?
8+
```tsx
9+
<App
10+
appId={appId}
11+
userId={userId}
12+
uikitOptions={{
13+
groupChannel: {
14+
// Below turns on the `SuggestedReplies` feature (see v3.8.0 release changelog). Default value is false.
15+
enableSuggestedReplies: true,
16+
}
17+
}}
18+
/>
19+
```
20+
* `MessageInput` is now being disabled if `channel.lastMessage.extendedMessagePayload['disable_chat_input']` is true
21+
22+
### Fixes:
23+
24+
* Fixed a bug where channel is being removed from my channel list when other member leaves the channel
25+
* Fixed a bug where channel avatar image is not updated when a member leaves, or joins, or `profileUrl` changes
26+
* Fixed a bug where `ChannelListUI` is not updated when network is reconnected
27+
* Fixed a bug in `ChannelList` where `activeChannelUrl` is set but `onChannelSelect` fires with null after loading `ChannelList`
28+
* Fixed a bug where url text wrapped around special characters not parsed as link
29+
* Fixed a bug where space character before url text is removed in sent message
30+
* Fixed a runtime error occurring when using `renderMessage` of `Channel` module
31+
332
## [v3.10.1] (Jan 26, 2024)
433

534
### Fixes:
@@ -21,8 +50,6 @@
2150
Now we are supporting Feedback Message feature!
2251
Feedback message feature can be turned on through `enableFeedback` option. When turned on, feedback feature is applied to messages with non default `myFeedbackStatus` values.
2352

24-
25-
2653
* Added `enableFeedback` global option
2754
* How to use?
2855
```tsx

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react",
3-
"version": "3.10.1",
3+
"version": "3.11.0",
44
"description": "Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.",
55
"keywords": [
66
"sendbird",

0 commit comments

Comments
 (0)