Releases: sendbird/sendbird-uikit-react-native
Releases · sendbird/sendbird-uikit-react-native
v3.7.6
v3.7.5
3.7.5 (2024-10-29)
Release notes
- Updated Android permissions to comply with Google Play Store policies
- Fixed an issue where images were not visible in the file viewer due to z-index conflicts in the new architecture
- Fixed an issue where reactions could not be added or removed correctly
- Fixed an issue with scroll behavior during message streaming in bot chats for smoother scrolling
Changelogs
Features
- add scrolling for streaming message update (c4924bc)
Bug Fixes
v3.7.4
3.7.4 (2024-10-22)
Release notes
- Removed calls to the
Promise.allSettled
API that were causing issues in some environments. - Removed the default value of onOpenFileURL to maintain backward compatibility.
Changelogs
Bug Fixes
v3.7.3
3.7.3 (2024-10-15)
Release notes
- Enhanced Compatibility with
date-fns
: Updated internal code and dependencies to ensure better compatibility with the latest version of thedate-fns
library. - Fixed Token Deregistration Bug: Adjusted the code to ensure that token deregistration completes successfully before initiating a disconnect.
Changelogs
Bug Fixes
- await token apis (cdc1b4c)
v3.7.2
3.7.2 (2024-09-25)
Release notes
- Added event handlers interface for
onOpenURL
andonOpenFileURL
toSendbirdUIKitContainer
.<SendbirdUIKitContainer appId={APP_ID} handlers={{ onOpenURL: (url) => { console.log('onOpenURL', url); }, onOpenFileURL: (url) => { console.log('onOpenFileURL', url); }, }} />
Changelogs
Features
- add sbu handlers interface (0e75d81)
v3.7.1
v3.7.0
3.7.0 (2024-08-08)
Release notes
Features
- Added support for MMKV storage and deprecated AsyncStorage.
import { MMKV } from 'react-native-mmkv'; import { SendbirdUIKitContainer } from '@sendbird/uikit-react-native'; const mmkv = new MMKV(); const App = () => { return <SendbirdUIKitContainer chatOptions={{ localCacheStorage: mmkv }}>{/* ... */}</SendbirdUIKitContainer>; };
Important
Since react-native-mmkv uses JSI for synchronous native method invocations, remote debugging (e.g., with Chrome) is no longer possible.
Instead, you should use Flipper or React DevTools.
-
For more details on remote debugging deprecations, refer to react-native-community discussions and proposals #734.
-
For information on the new debugger, refer to react-native-community discussions and proposals #733.
Chore
- Updated sample React-Native version to 0.74.3
Changelogs
Features
v3.6.0
v3.5.4
3.5.4 (2024-06-13)
Release notes
- Deprecated the setter of
enableReactionsSupergroup
inSendbirdUIKitContainerProps
, which is not allowed by default. If you wish to use this feature, contact us.
Changelogs
Features
- deprecated enableReactionsSupergroup in SendbirdUIKitContainerProps (b90d2e2)
v3.5.3
3.5.3 (2024-05-28)
Release notes
- Fixed the issue where
frozen
andmuted
were not considered as the highest priority in determining the disabled status of the input. - Removed
defaultProps
from the Image component. - Added handling to process
image/jpg
mime type when deciding whether to apply image compression.