update changelogs
This commit is contained in:
@@ -11,11 +11,9 @@
|
||||
- `StreamWebSocketError` -> for user websocket related errors.
|
||||
- `StreamChatNetworkError` -> for network related errors.
|
||||
- `client.queryChannels()`, `channel.query()` options param is removed in favor of individual params
|
||||
- `options.state` -> bool state
|
||||
- `options.watch` -> bool watch
|
||||
- `options.presence` -> bool presence
|
||||
- `client.queryUsers()` options param is removed in favor of individual params
|
||||
- `options.presence` -> bool presence
|
||||
- `option.state` -> bool state
|
||||
- `option.watch` -> bool watch
|
||||
- `option.presence` -> bool presence
|
||||
|
||||
✅ Added
|
||||
- New `Location` enum is introduced for easily changing the client location/baseUrl.
|
||||
@@ -25,7 +23,7 @@
|
||||
- `baseURL` is now deprecated in favor of using `Location` to change data location.
|
||||
|
||||
🐞 Fixed
|
||||
- Client does not return without internet connection [#369](https://github.com/GetStream/stream-chat-flutter/issues/369)
|
||||
- [#369](https://github.com/GetStream/stream-chat-flutter/issues/369): Client does not return without internet connection
|
||||
|
||||
## 2.0.0-nullsafety.6
|
||||
|
||||
|
||||
@@ -7,6 +7,26 @@
|
||||
- `options.presence` -> bool presence
|
||||
- `UserListCore` options property is removed in favor of individual properties
|
||||
- `options.presence` -> bool presence
|
||||
- `MessageBuilder` and `ParentMessageBuilder` signature is now
|
||||
```dart
|
||||
typedef MessageBuilder = Widget Function(
|
||||
BuildContext,
|
||||
MessageDetails,
|
||||
List<Message>,
|
||||
MessageWidget defaultMessageWidget,
|
||||
);
|
||||
```
|
||||
the last parameter is the default `MessageWidget`
|
||||
You can call `.copyWith` to customize just a subset of properties
|
||||
|
||||
✅ Added
|
||||
- TypingIndicator now has a property called `parentId` to show typing indicator specific to threads
|
||||
- [#493](https://github.com/GetStream/stream-chat-flutter/pull/493): add support for messageListView header/footer
|
||||
|
||||
🐞 Fixed
|
||||
- [#483](https://github.com/GetStream/stream-chat-flutter/issues/483): Keyboard covers input text box when editing message
|
||||
- Modals are shown using the nearest `Navigator` to make using the SDK easier in a nested navigator use case
|
||||
- [#484](https://github.com/GetStream/stream-chat-flutter/issues/484): messages don't update without a reload
|
||||
|
||||
## 2.0.0-nullsafety.7
|
||||
|
||||
|
||||
Reference in New Issue
Block a user