Skip to content

Commit

Permalink
Merge pull request #61 from sendbird/release/4.22.0
Browse files Browse the repository at this point in the history
4.22.0
  • Loading branch information
sendbird-sdk-deployment authored Dec 20, 2024
2 parents a621e16 + a693032 commit dc7c367
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## v4.22.0 (Dec 20, 2024)
### Features

- Supports for `Poll` feature is added for all message types.
- Added `poll` and `applyPoll(poll: Poll)` method in `BaseMessage`.
- Added `pollId` in `FileMessageCreateParams` and `MultipleFilesMessageCreateParams`.

- Added `sampledReactedUserInfoList` in `Reaction` to support getting reaction-related data
- Added `ReactedUserInfo`
- Deprecated `sampledUserIds` in `Reaction`

``` kotlin
class Reaction {
val sampledReactedUserInfoList: List<ReactedUserInfo>
}
```

### Improvements

- Improved sender profile update in super group channel.
- Fixed a bug where connecting fails with a user ID containing special characters.
## v4.21.1 (Nov 21, 2024)
### Features
SDK now supports `Custom Report Categories` configured through Sendbird Dashboard, which takes effect after restarting the app. Previous report categories will remain until app restart.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Then, add the dependency to the project's top-level `build.gradle` file:
```gradle
dependencies {
...
implementation 'com.sendbird.sdk:sendbird-chat:4.21.1'
implementation 'com.sendbird.sdk:sendbird-chat:4.22.0'
...
}
```
Expand All @@ -104,7 +104,7 @@ TLS 1.3 is enabled by default in Sendbird SDK for Android. To disable it, please
```gradle
dependencies {
implementation ('com.sendbird.sdk:sendbird-chat:4.21.1') {
implementation ('com.sendbird.sdk:sendbird-chat:4.22.0') {
exclude group: 'org.conscrypt', module: 'conscrypt-android'
}
}
Expand Down

0 comments on commit dc7c367

Please sign in to comment.