Skip to content

Commit 35d0316

Browse files
authored
Merge pull request #163 from sendbird/release/3.4.1
chore(SDKRLSD-1111): release 3.4.1
2 parents 863f044 + b3f416e commit 35d0316

File tree

17 files changed

+72
-18
lines changed

17 files changed

+72
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [3.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.4.0...v3.4.1) (2024-02-06)
7+
8+
### Bug Fixes
9+
10+
- use ComponentType instead of function structure in CommonComponent type ([2cf00e9](https://github.com/sendbird/sendbird-uikit-react-native/commit/2cf00e933e09c5ce8e138c36188c0123e5100abe))
11+
612
## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)
713

814
### Features

CHANGELOG_DRAFT.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
## v3.4.0
1+
## v3.4.1
22

3-
- Implemented a zoomable image viewer into FileViewer.
4-
- Changed the horizontal and vertical padding of TextInput to padding with directions.
3+
- Added `channelListQueryParams` prop to `GroupChannelListFragment`. It allows you to set the query parameters for the channel list. (`collectionCreator` is deprecated and replaced by `channelListQueryParams`)
4+
- ```tsx
5+
<GroupChannelList
6+
channelListQueryParams={{
7+
includeEmpty: true,
8+
includeFrozen: true,
9+
}}
10+
/>
11+
```
12+
- Added `messageListQueryParams` prop to `GroupChannelFragment`. It allows you to set the query parameters for the message list. (`collectionCreator` is deprecated and replaced by `messageListQueryParams`)
13+
- ```tsx
14+
<GroupChannel
15+
channelUrl={channelUrl}
16+
messageListQueryParams={{
17+
prevResultLimit: 20,
18+
customTypesFilter: ['filter'],
19+
}}
20+
/>
21+
```
22+
- Fixed an issue where a type error occurred in the `CommonComponent`. It used `React.ComponentType` instead of the function structure.

docs-validation/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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+
## [3.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.4.0...v3.4.1) (2024-02-06)
7+
8+
**Note:** Version bump only for package @sendbird/docs-validation
9+
610
## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)
711

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

docs-validation/package.json

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

lerna.json

Lines changed: 1 addition & 1 deletion
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": "3.4.0",
5+
"version": "3.4.1",
66
"command": {
77
"publish": {
88
"conventionalCommits": true,

packages/uikit-chat-hooks/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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+
## [3.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.4.0...v3.4.1) (2024-02-06)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-chat-hooks
9+
610
## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)
711

812
**Note:** Version bump only for package @sendbird/uikit-chat-hooks

packages/uikit-chat-hooks/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-chat-hooks",
3-
"version": "3.4.0",
3+
"version": "3.4.1",
44
"description": "A set of React hooks for integrating Sendbird chat functionality into your React app.",
55
"keywords": [
66
"sendbird",
@@ -45,10 +45,10 @@
4545
"access": "public"
4646
},
4747
"dependencies": {
48-
"@sendbird/uikit-utils": "3.4.0"
48+
"@sendbird/uikit-utils": "3.4.1"
4949
},
5050
"devDependencies": {
51-
"@sendbird/uikit-testing-tools": "3.4.0",
51+
"@sendbird/uikit-testing-tools": "3.4.1",
5252
"@types/react": "*",
5353
"react": "17.0.2",
5454
"react-native-builder-bob": "^0.18.0",

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

Lines changed: 4 additions & 0 deletions
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+
## [3.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.4.0...v3.4.1) (2024-02-06)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
9+
610
## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)
711

812
### Bug Fixes

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react-native-foundation",
3-
"version": "3.4.0",
3+
"version": "3.4.1",
44
"description": "A foundational UI kit for building chat-enabled React Native apps.",
55
"keywords": [
66
"sendbird",
@@ -48,7 +48,7 @@
4848
"access": "public"
4949
},
5050
"dependencies": {
51-
"@sendbird/uikit-utils": "3.4.0"
51+
"@sendbird/uikit-utils": "3.4.1"
5252
},
5353
"devDependencies": {
5454
"@types/react": "*",

packages/uikit-react-native/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [3.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.4.0...v3.4.1) (2024-02-06)
7+
8+
### Bug Fixes
9+
10+
- use ComponentType instead of function structure in CommonComponent type ([2cf00e9](https://github.com/sendbird/sendbird-uikit-react-native/commit/2cf00e933e09c5ce8e138c36188c0123e5100abe))
11+
612
## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)
713

814
### Features

0 commit comments

Comments
 (0)