Skip to content

Commit ece86e7

Browse files
authored
v3.14.4 (#1084)
## [v3.14.4] (May 02, 2024) ### Features * Added `suggestedRepliesDirection` global option which serves as vertical/horizontal scroll option for `SuggestedReplies` * How to use? ```tsx <App appId={appId} userId={userId} uikitOptions={{ groupChannel: { // Below turns on the `SuggestedReplies` feature (see v3.8.0 release changelog). Default value is false. enableSuggestedReplies: true, // Below changes scroll direction from horizontal to vertical. suggestedRepliesDirection: 'vertical' } }} /> ``` * Added a new ui component `Header` (`import Header from '@sendbird/uikit-react/ui/Header'`) which replaced all existing header components ### Fixes * Fixed a bug where suggested replies are incorrectly displayed when `showSuggestedRepliesFor` is set to 'last_message_only'
1 parent 6122270 commit ece86e7

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

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

3+
## [v3.14.4] (May 02, 2024)
4+
### Features
5+
* Added `suggestedRepliesDirection` global option which serves as vertical/horizontal scroll option for `SuggestedReplies`
6+
* How to use?
7+
```tsx
8+
<App
9+
appId={appId}
10+
userId={userId}
11+
uikitOptions={{
12+
groupChannel: {
13+
// Below turns on the `SuggestedReplies` feature (see v3.8.0 release changelog). Default value is false.
14+
enableSuggestedReplies: true,
15+
// Below changes scroll direction from horizontal to vertical.
16+
suggestedRepliesDirection: 'vertical'
17+
}
18+
}}
19+
/>
20+
```
21+
* Added a new ui component `Header` (`import Header from '@sendbird/uikit-react/ui/Header'`) which replaced all existing header components
22+
### Fixes
23+
* Fixed a bug where suggested replies are incorrectly displayed when `showSuggestedRepliesFor` is set to 'last_message_only'
24+
25+
326
## [v3.14.3] (Apr 19, 2024)
427
### Features
528
* Add outputFormat to the image compression options

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.14.3",
3+
"version": "3.14.4",
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/steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
8. Ask EM to review the release ticket and await for `Release approved`.
3636
9. In the root, `yarn build` to create new build files. Once created, make sure files in `dist` is newly created/updated.
3737
10. Change directory to `./dist` and then publish `npm publish` (`npm publish --tag beta` for beta release).
38-
11. In the release branch, create a new tag `v{X.X.X}` and the push the tag `git push v{X.X.X} origin`.
38+
11. In the release branch, create a new tag `v{X.X.X}` and the push the tag `git push origin v{X.X.X}`.
3939
12. After release do the followings:
4040
- Update release ticket to `Released`
4141
- In the [releases](https://github.com/sendbird/sendbird-uikit-react/releases) draft a new release note with the new tag (write changelog in the description) and then publish release.

0 commit comments

Comments
 (0)