feat!(core): commit breaking changes

This commit is contained in:
Salvatore Giordano
2021-09-22 15:25:45 +02:00
parent 0e02ccf9e2
commit ad3c3572dd
3 changed files with 12 additions and 43 deletions
@@ -1,6 +1,6 @@
## 3.0.0
Deprecated
🛑 Breaking Changes from `2.2.1`
- `MessageSearchListViewCore` `paginationParams` property is now deprecated in favor of `limit`.
```dart
@@ -10,7 +10,7 @@
// new
limit = 30
```
- `UserListViewCore` `pagination` property is now deprecated in favor of `limit`.
- `UserListCore` `pagination` property is now deprecated in favor of `limit`.
```dart
// previous
pagination = const PaginationParams(limit: 30)
@@ -18,7 +18,7 @@
// new
limit = 30
```
- `ChannelListViewCore` `pagination` property is now deprecated in favor of `limit`.
- `ChannelListCore` `pagination` property is now deprecated in favor of `limit`.
```dart
// previous
pagination = const PaginationParams(limit: 30)
@@ -27,6 +27,8 @@
limit = 30
```
- `UserListViewCore` `filter` property now is non-nullable.
🔄 Changed
- `UserListViewCore` filter property now has a default value.