Skip to content

Commit 4e2d6a3

Browse files
committed
chore(release): release packages v2.5.0
1 parent 45e434e commit 4e2d6a3

File tree

16 files changed

+83
-15
lines changed

16 files changed

+83
-15
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
### Features
9+
10+
- added message search fragment ([a6342c0](https://github.com/sendbird/sendbird-uikit-react-native/commit/a6342c09c2007ac2372f4a630499382aae34d6de))
11+
- implement focus animation on search item ([7fe38e8](https://github.com/sendbird/sendbird-uikit-react-native/commit/7fe38e8b6cc3ce436b117bc72dada85d5b83fb2d))
12+
- implemented scroll-view enhancer ([1dca4a0](https://github.com/sendbird/sendbird-uikit-react-native/commit/1dca4a062b45bffc781beec88c311cb6d83463fe))
13+
14+
### Bug Fixes
15+
16+
- **chat-hooks:** fixed adding, updating, and deleting messages properly when returning from background to foreground in the open channel ([50b2f23](https://github.com/sendbird/sendbird-uikit-react-native/commit/50b2f2335089eb98b11d0f5560b2151d534e5254))
17+
- **uikit:** do not handle onUserBanned in open channel list ([8ba9daa](https://github.com/sendbird/sendbird-uikit-react-native/commit/8ba9daaa2f56076d00761f684c890292d5ced03e))
18+
- **uikit:** fixed mention suggestion properly based on updated members ([fb50bbd](https://github.com/sendbird/sendbird-uikit-react-native/commit/fb50bbd8eb7f398b64026430484b7caaac0df347))
19+
620
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
721

822
### Features

docs-validation/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
**Note:** Version bump only for package @sendbird/docs-validation
9+
610
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
711

812
**Note:** Version bump only for package @sendbird/docs-validation

docs-validation/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/docs-validation",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"private": true,
55
"scripts": {
66
"test": "tsc --project tsconfig.build.json",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": ["packages/*", "sample", "docs-validation"],
33
"npmClient": "yarn",
44
"useWorkspaces": true,
5-
"version": "2.4.2",
5+
"version": "2.5.0",
66
"command": {
77
"publish": {
88
"conventionalCommits": true,

packages/uikit-chat-hooks/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
### Features
9+
10+
- added message search fragment ([a6342c0](https://github.com/sendbird/sendbird-uikit-react-native/commit/a6342c09c2007ac2372f4a630499382aae34d6de))
11+
- implemented scroll-view enhancer ([1dca4a0](https://github.com/sendbird/sendbird-uikit-react-native/commit/1dca4a062b45bffc781beec88c311cb6d83463fe))
12+
13+
### Bug Fixes
14+
15+
- **chat-hooks:** fixed adding, updating, and deleting messages properly when returning from background to foreground in the open channel ([50b2f23](https://github.com/sendbird/sendbird-uikit-react-native/commit/50b2f2335089eb98b11d0f5560b2151d534e5254))
16+
- **uikit:** do not handle onUserBanned in open channel list ([8ba9daa](https://github.com/sendbird/sendbird-uikit-react-native/commit/8ba9daaa2f56076d00761f684c890292d5ced03e))
17+
618
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
719

820
### Improvements

packages/uikit-chat-hooks/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-chat-hooks",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"description": "A set of React hooks for integrating Sendbird chat functionality into your React app.",
55
"keywords": [
66
"sendbird",
@@ -43,10 +43,10 @@
4343
"access": "public"
4444
},
4545
"dependencies": {
46-
"@sendbird/uikit-utils": "2.4.2"
46+
"@sendbird/uikit-utils": "2.5.0"
4747
},
4848
"devDependencies": {
49-
"@sendbird/uikit-testing-tools": "2.4.2",
49+
"@sendbird/uikit-testing-tools": "2.5.0",
5050
"@types/react": "*",
5151
"react": "17.0.2",
5252
"react-native-builder-bob": "^0.18.0",

packages/uikit-react-native-foundation/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
9+
610
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
711

812
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation

packages/uikit-react-native-foundation/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react-native-foundation",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"description": "A foundational UI kit for building chat-enabled React Native apps.",
55
"keywords": [
66
"sendbird",
@@ -46,7 +46,7 @@
4646
"access": "public"
4747
},
4848
"dependencies": {
49-
"@sendbird/uikit-utils": "2.4.2"
49+
"@sendbird/uikit-utils": "2.5.0"
5050
},
5151
"devDependencies": {
5252
"@types/react": "*",

packages/uikit-react-native/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
### Features
9+
10+
- added message search fragment ([a6342c0](https://github.com/sendbird/sendbird-uikit-react-native/commit/a6342c09c2007ac2372f4a630499382aae34d6de))
11+
- implement focus animation on search item ([7fe38e8](https://github.com/sendbird/sendbird-uikit-react-native/commit/7fe38e8b6cc3ce436b117bc72dada85d5b83fb2d))
12+
- implemented scroll-view enhancer ([1dca4a0](https://github.com/sendbird/sendbird-uikit-react-native/commit/1dca4a062b45bffc781beec88c311cb6d83463fe))
13+
14+
### Bug Fixes
15+
16+
- **uikit:** do not handle onUserBanned in open channel list ([8ba9daa](https://github.com/sendbird/sendbird-uikit-react-native/commit/8ba9daaa2f56076d00761f684c890292d5ced03e))
17+
- **uikit:** fixed mention suggestion properly based on updated members ([fb50bbd](https://github.com/sendbird/sendbird-uikit-react-native/commit/fb50bbd8eb7f398b64026430484b7caaac0df347))
18+
619
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
720

821
### Features

packages/uikit-react-native/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react-native",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"description": "Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.",
55
"keywords": [
66
"sendbird",
@@ -57,9 +57,9 @@
5757
"access": "public"
5858
},
5959
"dependencies": {
60-
"@sendbird/uikit-chat-hooks": "2.4.2",
61-
"@sendbird/uikit-react-native-foundation": "2.4.2",
62-
"@sendbird/uikit-utils": "2.4.2"
60+
"@sendbird/uikit-chat-hooks": "2.5.0",
61+
"@sendbird/uikit-react-native-foundation": "2.5.0",
62+
"@sendbird/uikit-utils": "2.5.0"
6363
},
6464
"devDependencies": {
6565
"@bam.tech/react-native-image-resizer": "^3.0.4",

packages/uikit-testing-tools/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-testing-tools
9+
610
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
711

812
**Note:** Version bump only for package @sendbird/uikit-testing-tools

packages/uikit-testing-tools/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-testing-tools",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"private": true,
55
"description": "UIKit testing tools",
66
"keywords": [
@@ -40,7 +40,7 @@
4040
},
4141
"devDependencies": {
4242
"@sendbird/chat": "^4.3.0",
43-
"@sendbird/uikit-utils": "2.4.2",
43+
"@sendbird/uikit-utils": "2.5.0",
4444
"@types/jest": "^29.4.0",
4545
"@types/react": "*",
4646
"@types/react-native": "*",

packages/uikit-utils/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
### Features
9+
10+
- added message search fragment ([a6342c0](https://github.com/sendbird/sendbird-uikit-react-native/commit/a6342c09c2007ac2372f4a630499382aae34d6de))
11+
- implemented scroll-view enhancer ([1dca4a0](https://github.com/sendbird/sendbird-uikit-react-native/commit/1dca4a062b45bffc781beec88c311cb6d83463fe))
12+
13+
### Bug Fixes
14+
15+
- **uikit:** do not handle onUserBanned in open channel list ([8ba9daa](https://github.com/sendbird/sendbird-uikit-react-native/commit/8ba9daaa2f56076d00761f684c890292d5ced03e))
16+
617
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
718

819
**Note:** Version bump only for package @sendbird/uikit-utils

packages/uikit-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-utils",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"description": "A collection of utility functions and constants for building chat UI components with Sendbird UIKit.",
55
"keywords": [
66
"sendbird",

sample/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.2...v2.5.0) (2023-05-04)
7+
8+
### Features
9+
10+
- added message search fragment ([a6342c0](https://github.com/sendbird/sendbird-uikit-react-native/commit/a6342c09c2007ac2372f4a630499382aae34d6de))
11+
612
## [2.4.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.1...v2.4.2) (2023-04-28)
713

814
**Note:** Version bump only for package @sendbird/uikit-sample-cli

sample/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-sample-cli",
3-
"version": "2.4.2",
3+
"version": "2.5.0",
44
"private": true,
55
"scripts": {
66
"android": "concurrently 'yarn start' 'react-native run-android'",

0 commit comments

Comments
 (0)