Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v3.15.12 #1295

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changelog - v3

## [v3.15.12] (Jan 9 2025)

### Features:
- Provided `useConnectionState` that you can get the connection state of SDK.

### Fixes:
- Improved the stability with the latest Chat SDK version.

## [v3.15.11] (Dec 19 2024)

### Fixes:
- Fixed an issue where the bubble type typing indicator appeared but was not visible because the scroll did not move to the bottom.

## [v3.15.10] (Dec 12 2024)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-react",
"version": "3.15.11",
"version": "3.15.12",
"description": "Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.",
"keywords": [
"sendbird",
Expand Down Expand Up @@ -70,7 +70,7 @@
"react-dom": "^16.8.6 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@sendbird/chat": "^4.14.2",
"@sendbird/chat": "^4.16.2",
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

able to merge after releasing [email protected]

"@sendbird/react-uikit-message-template-view": "0.0.2",
"@sendbird/uikit-tools": "0.0.2",
"css-vars-ponyfill": "^2.3.2",
Expand Down
1 change: 1 addition & 0 deletions rollup.module-exports.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export default {
// hooks
'hooks/useModal': 'src/hooks/useModal/index.tsx',
'hooks/useLocalization': 'src/hooks/useLocalization.ts',
'hooks/useConnectionState': 'src/hooks/useConnectionState.ts',
// utils
'utils/message/getOutgoingMessageState': 'src/utils/exports/getOutgoingMessageState.ts',
'utils/message/isVoiceMessage': 'src/utils/isVoiceMessage.ts',
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2714,9 +2714,9 @@ __metadata:
languageName: node
linkType: hard

"@sendbird/chat@npm:^4.14.2":
version: 4.14.4
resolution: "@sendbird/chat@npm:4.14.4"
"@sendbird/chat@npm:^4.16.2":
version: 4.16.2
resolution: "@sendbird/chat@npm:4.16.2"
peerDependencies:
"@react-native-async-storage/async-storage": ^1.17.6
react-native-mmkv: ^2.0.0
Expand All @@ -2725,7 +2725,7 @@ __metadata:
optional: true
react-native-mmkv:
optional: true
checksum: 01c00724ffa1322b5484b8378c8fe5cacdbdb52fd82eb7a92cc31b36e82b751b3875a40c3f30c442738ce2fb05fe4bb617293b4c7605f3eb7906ceae92cd63ed
checksum: 8866fa3285348e723db6c2e68abf7d42c3835656b79c3d791477cfd21da7c611b15a15578cf763d8c2f57e15e9be441ef314df7b7ae63fabcb9f16da9cb9ef69
languageName: node
linkType: hard

Expand Down Expand Up @@ -2770,7 +2770,7 @@ __metadata:
"@rollup/plugin-node-resolve": ^15.2.3
"@rollup/plugin-replace": ^5.0.4
"@rollup/plugin-typescript": ^11.1.5
"@sendbird/chat": ^4.14.2
"@sendbird/chat": ^4.16.2
"@sendbird/react-uikit-message-template-view": 0.0.2
"@sendbird/uikit-tools": 0.0.2
"@storybook/addon-essentials": ^8.0.9
Expand Down
Loading