Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.19.2 #52

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v4.19.2 (Sep 26, 2024)
### Improvements
- Fixed a bug where non-operator's message affects the last message and the unread message count for exclusive channels
- Fixed a bug where a channel gets unexpectedly unhidden upon receiving a new message.
- Added `useDnsFallback` to `InitParams` which enables a fallback where a second DNS lookup is attempted using a public DNS when the initial lookup using the system DNS fails. Its default value is `false`.
## v4.19.1 (Sep 12, 2024)
### Improvements
- Improved speed of `MessageCollection.initialize()` when there are lots of reply messages in the channel.
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.19.1'
implementation 'com.sendbird.sdk:sendbird-chat:4.19.2'
...
}
```
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.19.1') {
implementation ('com.sendbird.sdk:sendbird-chat:4.19.2') {
exclude group: 'org.conscrypt', module: 'conscrypt-android'
}
}
Expand Down