Skip to content

Commit 9ba7a00

Browse files
committed
chore(release): release packages v2.4.1
1 parent 08b1c9d commit 9ba7a00

File tree

14 files changed

+88
-12
lines changed

14 files changed

+88
-12
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
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.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **uikit:** fixed connection failure due to duplicate network listener invocation on v4.6.0+ session token connection. ([ff761f3](https://github.com/sendbird/sendbird-uikit-react-native/commit/ff761f3414bb6018813561c0014ff95388827097))
12+
* **utils:** properly retrieve file extensions from URLs that contain query parameters ([7401d55](https://github.com/sendbird/sendbird-uikit-react-native/commit/7401d55d43e1fd0094ea459c554ea85ee48c9f2c))
13+
14+
15+
### Improvements
16+
17+
* refactored createFileService functions and utils structure ([5e44d4f](https://github.com/sendbird/sendbird-uikit-react-native/commit/5e44d4f7a989df54f103efc67f7d18c28405426c))
18+
19+
20+
621
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
722

823

docs-validation/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
**Note:** Version bump only for package @sendbird/docs-validation
9+
10+
11+
12+
13+
614
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
715

816

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.0",
3+
"version": "2.4.1",
44
"private": true,
55
"scripts": {
66
"test": "tsc --project tsconfig.build.json",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"npmClient": "yarn",
88
"useWorkspaces": true,
9-
"version": "2.4.0",
9+
"version": "2.4.1",
1010
"command": {
1111
"publish": {
1212
"conventionalCommits": true,

packages/uikit-chat-hooks/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-chat-hooks
9+
10+
11+
12+
13+
614
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
715

816

packages/uikit-chat-hooks/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-chat-hooks",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "React hooks that built with SendbirdChat SDK",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -38,7 +38,7 @@
3838
"access": "public"
3939
},
4040
"dependencies": {
41-
"@sendbird/uikit-utils": "2.4.0"
41+
"@sendbird/uikit-utils": "2.4.1"
4242
},
4343
"devDependencies": {
4444
"@types/react": "*",

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

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
9+
10+
11+
12+
13+
614
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
715

816

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.0",
3+
"version": "2.4.1",
44
"description": "react-native-uikit",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -39,7 +39,7 @@
3939
"access": "public"
4040
},
4141
"dependencies": {
42-
"@sendbird/uikit-utils": "2.4.0"
42+
"@sendbird/uikit-utils": "2.4.1"
4343
},
4444
"devDependencies": {
4545
"@types/react": "*",

packages/uikit-react-native/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.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **uikit:** fixed connection failure due to duplicate network listener invocation on v4.6.0+ session token connection. ([ff761f3](https://github.com/sendbird/sendbird-uikit-react-native/commit/ff761f3414bb6018813561c0014ff95388827097))
12+
13+
14+
### Improvements
15+
16+
* refactored createFileService functions and utils structure ([5e44d4f](https://github.com/sendbird/sendbird-uikit-react-native/commit/5e44d4f7a989df54f103efc67f7d18c28405426c))
17+
18+
19+
620
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
721

822

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.0",
3+
"version": "2.4.1",
44
"description": "react-native-uikit",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -42,9 +42,9 @@
4242
"access": "public"
4343
},
4444
"dependencies": {
45-
"@sendbird/uikit-chat-hooks": "2.4.0",
46-
"@sendbird/uikit-react-native-foundation": "2.4.0",
47-
"@sendbird/uikit-utils": "2.4.0"
45+
"@sendbird/uikit-chat-hooks": "2.4.1",
46+
"@sendbird/uikit-react-native-foundation": "2.4.1",
47+
"@sendbird/uikit-utils": "2.4.1"
4848
},
4949
"devDependencies": {
5050
"@bam.tech/react-native-image-resizer": "^3.0.4",

packages/uikit-utils/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.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **utils:** properly retrieve file extensions from URLs that contain query parameters ([7401d55](https://github.com/sendbird/sendbird-uikit-react-native/commit/7401d55d43e1fd0094ea459c554ea85ee48c9f2c))
12+
13+
14+
### Improvements
15+
16+
* refactored createFileService functions and utils structure ([5e44d4f](https://github.com/sendbird/sendbird-uikit-react-native/commit/5e44d4f7a989df54f103efc67f7d18c28405426c))
17+
18+
19+
620
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
721

822

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.0",
3+
"version": "2.4.1",
44
"description": "UIKit utilities",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

sample/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
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.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **uikit:** fixed connection failure due to duplicate network listener invocation on v4.6.0+ session token connection. ([ff761f3](https://github.com/sendbird/sendbird-uikit-react-native/commit/ff761f3414bb6018813561c0014ff95388827097))
12+
13+
14+
615
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
716

817

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.0",
3+
"version": "2.4.1",
44
"private": true,
55
"scripts": {
66
"postinstall": "patch-package",

0 commit comments

Comments
 (0)