Skip to content

Commit

Permalink
Merge pull request #36 from sendbird/release/4.15.7
Browse files Browse the repository at this point in the history
4.15.7
  • Loading branch information
sendbird-sdk-deployment authored Mar 22, 2024
2 parents b166c0a + 593020c commit 78a9ea2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## v4.15.7 (Mar 22, 2024)
### Improvements
- Added `EventDetail` in `GroupChannelContext`/`FeedChannelContext` to hold detailed information of channel events
- i.e. Getting an inviter/invitees information when a channel has been added from receiving an invitation:
```kotlin
override fun onChannelsAdded(context: GroupChannelContext, channels: List<GroupChannel>) {
if (context.eventDetail is EventDetail.OnUserReceivedInvitation) {
val inviter: User? = context.eventDetail.inviter
val invitees: List<User> = context.eventDetail.invitees
}
}
```
## v4.15.6 (Mar 11, 2024)
### Improvements
- Fixed `DateTimeException` occurring from `SendbirdChat.init()` in some devices
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Then, add the dependency to the project's top-level `build.gradle` file:
```gradle
dependencies {
...
implementation 'com.sendbird.sdk:sendbird-chat:4.15.6'
implementation 'com.sendbird.sdk:sendbird-chat:4.15.7'
...
}
```
Expand All @@ -103,7 +103,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.15.6') {
implementation ('com.sendbird.sdk:sendbird-chat:4.15.7') {
exclude group: 'org.conscrypt', module: 'conscrypt-android'
}
}
Expand Down

0 comments on commit 78a9ea2

Please sign in to comment.