Skip to content

Commit 9ba78cd

Browse files
author
Sravan S
authored
[v3.4.8] (May 19 2023) (#545)
Fixes: * Prevent white space only text sending * Mentioned user Regex parsing Mention will now work even if userId has `.*+?^${}()|[\]\\` characters * ChannelList blink when when message is send Happened when there were two channelLists in the same page with different query params * ChannelSetting `renderUserProfile` prop We were applying `renderChannelProfile` in place of `renderUserProfile` * MessageBody: Words break mid word Words were breaking midword because all white spaces were converted into nbsps CSS couldnt distinguish nbsps as whitespaces, so wrapping didnt work well Chores: * Setup CircleCI * We are moving from Github Actions to CircleCI * Setup Husky * Setup lint on post push * Auto run yarn install on post pull * Update EsLint * Update version to 8.40.x * Apply more strict rules Fixes: https://sendbird.atlassian.net/browse/SDKRLSD-821 Co-authored-by: Chris Heo<[email protected]>, Hoon Baek<[email protected]>, Irene Ryu <[email protected] >, Sravan<[email protected]>,
1 parent a4c9567 commit 9ba78cd

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog - v3
22

3+
## [v3.4.8] (May 19 2023)
4+
5+
Fixes:
6+
* Prevent white space only text sending
7+
* Mentioned user Regex parsing
8+
Mention will now work even if userId has `.*+?^${}()|[\]\\` characters.
9+
* ChannelList blink when when message is send
10+
Happened when there were two channelLists in the same page with
11+
different query params.
12+
* ChannelSetting `renderUserProfile` prop
13+
We were applying `renderChannelProfile` in place of `renderUserProfile`.
14+
* MessageBody: Words break mid word
15+
Words were breaking midword because all white spaces
16+
were converted into nbsps. CSS couldnt distinguish nbsps
17+
as whitespaces, so wrapping didnt work well.
18+
19+
Chores:
20+
* Setup CircleCI
21+
* We are moving from Github Actions to CircleCI
22+
* Setup Husky
23+
* Setup lint on post push
24+
* Auto run yarn install on post pull
25+
* Update EsLint
26+
* Update version to 8.40.x
27+
* Apply more strict rules
28+
329
## [v3.4.7] (May 4 2023)
430

531
Important Notes:

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.4.7",
3+
"version": "3.4.8",
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",

scripts/index_d_ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import { GroupChannelModule, ModuleNamespaces, OpenChannelModule } from '@sendbird/chat/lib/__definition';
2-
31
/**
42
* Type Definitions for @sendbird/uikit-react@{{ version }}
53
* homepage: https://sendbird.com/
64
* git: https://github.com/sendbird/sendbird-uikit-react
7-
*/
5+
*/
86
declare module "SendbirdUIKitGlobal" {
97
import type React from 'react';
108
import type SendbirdChat from '@sendbird/chat';
9+
import { GroupChannelModule, ModuleNamespaces, OpenChannelModule } from '@sendbird/chat/lib/__definition';
1110
import type {
1211
SendbirdError,
1312
SessionHandler,

0 commit comments

Comments
 (0)