diff --git a/CHANGELOG.md b/CHANGELOG.md index 8210508f8..2fea6d4fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 2b770caf4..1c200c21f 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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", "@sendbird/react-uikit-message-template-view": "0.0.2", "@sendbird/uikit-tools": "0.0.2", "css-vars-ponyfill": "^2.3.2", diff --git a/rollup.module-exports.mjs b/rollup.module-exports.mjs index 7e76c0d4e..addf55d8a 100644 --- a/rollup.module-exports.mjs +++ b/rollup.module-exports.mjs @@ -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',