Skip to content

Commit 14c23fb

Browse files
authored
Merge pull request #179 from sendbird/release/3.5.3
chore(SDKRLSD-1297): release 3.5.3
2 parents 9e60ff9 + 6755956 commit 14c23fb

File tree

18 files changed

+64
-21
lines changed

18 files changed

+64
-21
lines changed

.github/workflows/publish-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/github-script@v7
2121
with:
2222
script: |
23-
const permission = await github.repos.getCollaboratorPermissionLevel({
23+
const permission = await github.rest.repos.getCollaboratorPermissionLevel({
2424
owner: context.repo.owner,
2525
repo: context.repo.repo,
2626
username: context.actor
@@ -32,7 +32,7 @@ jobs:
3232
if (currentBranch !== `release/${{ github.event.inputs.version }}`) {
3333
core.setFailed(`Current branch ${currentBranch} does not match release/${{ github.event.inputs.version }}`);
3434
}
35-
const pullRequests = await github.pulls.list({
35+
const pullRequests = await github.rest.pulls.list({
3636
owner: context.repo.owner,
3737
repo: context.repo.repo,
3838
state: 'open',
@@ -54,8 +54,8 @@ jobs:
5454
env:
5555
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656
run: |
57-
lerna version ${{ github.event.inputs.version }} --yes
58-
lerna publish from-git --yes
57+
yarn lerna version ${{ github.event.inputs.version }} --yes
58+
yarn lerna publish from-git --yes
5959
- name: 'approve a pull request'
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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.5.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.2...v3.5.3) (2024-05-28)
7+
8+
### Bug Fixes
9+
10+
- handle image/jpg mime type to determine image compress properly ([37f346d](https://github.com/sendbird/sendbird-uikit-react-native/commit/37f346d2483245c4653cde098537b50c974b4241))
11+
- when frozen or muted, input should be disabled ([712ae97](https://github.com/sendbird/sendbird-uikit-react-native/commit/712ae97bdff6f4ed3d77562d6a2537d40d85e059))
12+
613
## [3.5.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.1...v3.5.2) (2024-04-23)
714

815
### Features

CHANGELOG_DRAFT.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
## v3.5.2
1+
## v3.5.3
22

3-
- Added the `inputDisabled` prop to the Input component of the `GroupChannel` and `OpenChannel` modules as a public interface.
3+
- Fixed the issue where `frozen` and `muted` were not considered as the highest priority in determining the disabled status of the input.
4+
- Removed `defaultProps` from the Image component.
5+
- Added handling to process `image/jpg` mime type when deciding whether to apply image compression.

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.5.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.2...v3.5.3) (2024-05-28)
7+
8+
**Note:** Version bump only for package @sendbird/docs-validation
9+
610
## [3.5.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.1...v3.5.2) (2024-04-23)
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.5.2",
3+
"version": "3.5.3",
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.5.2",
5+
"version": "3.5.3",
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.5.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.2...v3.5.3) (2024-05-28)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-chat-hooks
9+
610
## [3.5.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.1...v3.5.2) (2024-04-23)
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.5.2",
3+
"version": "3.5.3",
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.5.2"
48+
"@sendbird/uikit-utils": "3.5.3"
4949
},
5050
"devDependencies": {
51-
"@sendbird/uikit-testing-tools": "3.5.2",
51+
"@sendbird/uikit-testing-tools": "3.5.3",
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.5.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.2...v3.5.3) (2024-05-28)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
9+
610
## [3.5.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.5.1...v3.5.2) (2024-04-23)
711

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

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.5.2",
3+
"version": "3.5.3",
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.5.2"
51+
"@sendbird/uikit-utils": "3.5.3"
5252
},
5353
"devDependencies": {
5454
"@types/react": "*",

0 commit comments

Comments
 (0)