Skip to content

Commit

Permalink
Merge pull request #128 from sendbird/v4.2.28
Browse files Browse the repository at this point in the history
Add 4.2.28.
  • Loading branch information
sf-tyler-jeong authored Nov 15, 2024
2 parents 53ca8a3 + 693ee78 commit 451f678
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v4.2.28 (Nov 15, 2024)

### Improvements
- Fixed a bug regarding the initial parameters in message collection

## v4.2.27 (Nov 6, 2024)

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Before installing Sendbird Chat SDK, you need to create a Sendbird application o

```yaml
dependencies:
sendbird_chat_sdk: ^4.2.27
sendbird_chat_sdk: ^4.2.28
```
- Run `flutter pub get` command in your project directory.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/internal/main/chat/chat.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ part 'chat_notifications.dart';
part 'chat_push.dart';
part 'chat_user.dart';

const sdkVersion = '4.2.27';
const sdkVersion = '4.2.28';

// Internal implementation for main class. Do not directly access this class.
class Chat with WidgetsBindingObserver {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,14 @@ abstract class BaseMessageCollection {
);
}
//- Failed messages

_initializeParams.includeMetaArray = true;
_initializeParams.includeReactions = true;
_initializeParams.includeThreadInfo = true;
_initializeParams.includeParentMessageInfo = true;
}
//- [DBManager]

_initializeParams.includeMetaArray = true;
_initializeParams.includeReactions = true;
_initializeParams.includeThreadInfo = true;
_initializeParams.includeParentMessageInfo = true;

List<RootMessage> messages = [];
ChannelMessagesGetResponse? res;
Object? exception;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: sendbird_chat_sdk
description: With Sendbird Chat for Flutter, you can easily build an in-app chat with all the essential messaging features.
version: 4.2.27
version: 4.2.28
homepage: https://sendbird.com
repository: https://github.com/sendbird/sendbird-chat-sdk-flutter
documentation: https://sendbird.com/docs/chat/sdk/v4/flutter/getting-started/send-first-message
Expand Down

0 comments on commit 451f678

Please sign in to comment.