Skip to content

Releases: sendbird/sendbird-uikit-react-native

v3.9.4

07 May 05:11
Compare
Choose a tag to compare

3.9.4 (2025-05-07)

Bug Fixes

  • allow string values for borderRadius in StyleSheet (8415fae)

v3.9.3

28 Apr 07:39
Compare
Choose a tag to compare

3.9.3 (2025-04-28)

Features

  • update uikit-tools to 0.0.7 to support React Native 0.79 (ba14d82)

v3.9.2

21 Apr 05:34
Compare
Choose a tag to compare

3.9.2 (2025-04-21)

Bug Fixes

  • improve message validation related to mentionedMessageTemplate (4ed0b24)

v3.9.1

15 Apr 02:08
Compare
Choose a tag to compare

3.9.1 (2025-04-15)

Release notes

  • Support for Android policy compliance
    • In Android + Expo environments, if your app does not use the READ_MEDIA_IMAGES, READ_MEDIA_AUDIO and READ_MEDIA_VIDEO permissions, you must explicitly exclude them using android.blockedPermissions in your Expo configuration (app.json).

      "android": {
        "blockedPermissions": [
          "android.permission.READ_MEDIA_IMAGES",
          "android.permission.READ_MEDIA_VIDEO",
          "android.permission.READ_MEDIA_AUDIO",
        ]
      }
      

Improvements

  • bump minimum expo-media-library version for android policy compliance (71fedf0)

v3.9.0

11 Apr 05:28
Compare
Choose a tag to compare

3.9.0 (2025-04-11)

Release notes

  • Support for React Native 0.77

Features

  • add optional support for @react-native-documents/picker (2fd794e)

Bug Fixes

  • resolve FlatList-related error on Metro 0.81.3 (beaaefb)

v3.8.6

12 Feb 01:57
Compare
Choose a tag to compare

3.8.6 (2025-02-12)

Release notes

  • Changed required permissions on iOS camera features from both camera and microphone to camera only.

Changelogs

Improvements

  • require only camera permission when using camera feature (2a10efb)

v3.8.4

05 Feb 01:59
Compare
Choose a tag to compare

3.8.4 (2025-02-05)

Changelogs

Bug Fixes

  • remove duplicate MB text when uploading files over 25MB (042babb)

v3.8.3

07 Jan 01:52
Compare
Choose a tag to compare

3.8.3 (2025-01-07)

Release notes

  • Update the MMKV version range from ^2.0.0 to >=2.0.0

v3.8.2

11 Dec 08:37
Compare
Choose a tag to compare

3.8.2 (2024-12-11)

Release notes

  • Enabled overriding all chat options

Changelogs

Note: Version bump only for package sendbird-uikit-react-native

v3.8.1

28 Nov 08:32
Compare
Choose a tag to compare

3.8.1 (2024-11-28)

Release notes

  • Added fallback for deleted emoji icons
    Fixed a crash that occurred when a reaction emoji was deleted and could not be found. A question mark icon will now appear as a fallback in such cases.

  • Support for hiding user ids in mention suggestions
    Added an option to hide user IDs in the mention suggestion list. It can be used as shown below:

    const module = createGroupChannelModule();
    const GroupChannelFragment = createGroupChannelFragment({
      SuggestedMentionList: (props) => <module.SuggestedMentionList {...props} showUserId={false} />,
    });

Changelogs

Features

  • added showUserId config to suggested mention list (5f7c6af)

Bug Fixes

  • add emoji fallback icon (3d30123)