From 20716c78e4dc6f34972e25dc48b6f6e567e0afe1 Mon Sep 17 00:00:00 2001 From: Efthymis Sarmpanis Date: Mon, 4 Dec 2023 12:41:58 +0200 Subject: [PATCH] chore(repo): synchronize versions --- packages/stream_chat/CHANGELOG.md | 37 ++-- packages/stream_chat_flutter/CHANGELOG.md | 174 ++++++++---------- packages/stream_chat_flutter/pubspec.yaml | 2 +- .../stream_chat_flutter_core/CHANGELOG.md | 22 +-- .../stream_chat_localizations/pubspec.yaml | 2 +- 5 files changed, 103 insertions(+), 134 deletions(-) diff --git a/packages/stream_chat/CHANGELOG.md b/packages/stream_chat/CHANGELOG.md index 2a012d79..ad5b8823 100644 --- a/packages/stream_chat/CHANGELOG.md +++ b/packages/stream_chat/CHANGELOG.md @@ -1,3 +1,17 @@ +## 7.0.0 + +- 🛑️ Breaking + +- Removed deprecated `channelQuery.sort` property. Use `channelStateSort` instead. +- Removed deprecated `RetryPolicy.retryTimeout` property. Use `delayFactor` instead. +- Removed deprecated `StreamChatNetworkError.fromDioError` constructor. Use `StreamChatNetworkError.fromDioException` + instead. +- Removed deprecated `MessageSendingStatus` enum. Use `MessageState` instead. + +🔄 Changed + +- Updated minimum supported `SDK` version to Flutter 3.13/Dart 3.1 + # 6.10.0 🐞 Fixed @@ -14,11 +28,6 @@ - [[#1724]](https://github.com/GetStream/stream-chat-flutter/issues/1724) Fixed sendFile error on `AttachmentFile` with `bytes` and no `name`. -## 7.0.0-beta.3 - -- Included the changes from version [6.8.0](#670). -- Updated minimum supported `SDK` version to Dart 3.1 - ## 6.8.0 🐞 Fixed @@ -34,10 +43,6 @@ - Updated minimum supported `SDK` version to Dart 3.0 -## 7.0.0-beta.2 - -- Included the changes from version [6.7.0](#670). - ## 6.7.0 ✅ Added @@ -50,20 +55,6 @@ should have the Create System Message permission. Server-side system messages don't need that permission. ``` -## 7.0.0-beta.1 - -🛑️ Breaking - -- Removed deprecated `channelQuery.sort` property. Use `channelStateSort` instead. -- Removed deprecated `RetryPolicy.retryTimeout` property. Use `delayFactor` instead. -- Removed deprecated `StreamChatNetworkError.fromDioError` constructor. Use `StreamChatNetworkError.fromDioException` - instead. -- Removed deprecated `MessageSendingStatus` enum. Use `MessageState` instead. - -🔄 Changed - -- Updated minimum supported `SDK` version to Dart 3.0 - ## 6.6.0 🔄 Changed diff --git a/packages/stream_chat_flutter/CHANGELOG.md b/packages/stream_chat_flutter/CHANGELOG.md index afc5cdc0..da95b5e9 100644 --- a/packages/stream_chat_flutter/CHANGELOG.md +++ b/packages/stream_chat_flutter/CHANGELOG.md @@ -1,96 +1,4 @@ -# 6.12.0 - -🐞 Fixed - -- [[#1759]](https://github.com/GetStream/stream-chat-flutter/issues/1759) Fixed - The Reaction Picker is not being removed when I set showReactionPicker to false. - -# 6.11.0 - -🐞 Fixed - -- [[#1740]](https://github.com/GetStream/stream-chat-flutter/issues/1740) Fixed - Plugin `video_player:macos` has multiple possible implementations. - -# 6.10.0 - -🐞 Fixed - -- [[#1721]](https://github.com/GetStream/stream-chat-flutter/issues/1721) - Fixed `StreamMessageInput.allowedAttachmentPickerTypes` not working on mobile devices. - -✅ Added - -- Added support for overriding the `MessageWidget.onReactionsHover` callback. - > **Note** - > Used only in desktop devices (web and desktop). - -## 7.0.0-beta.4 - -- Included the changes from version [6.9.0](#681). -- Updated minimum supported `SDK` version to Flutter 3.13/Dart 3.1 -- Updated `stream_chat_flutter_core` dependency - to [`7.0.0-beta.3`](https://pub.dev/packages/stream_chat_flutter_core/changelog). - -## 6.9.0 - -🐞 Fixed - -- [[#1702]](https://github.com/GetStream/stream-chat-flutter/issues/1702) - Fixed `Message.replaceMentions` not treating `@usernames` as mentions. -- [[#1694]](https://github.com/GetStream/stream-chat-flutter/issues/1694) Fixed Video player buttons - getting covered by bottom toolbar. - -✅ Added - -- Added support for listening error events in AttachmentPickerBottomSheet. -- Added support for overriding the `MessageWidget.onReactionTap` callback. -- Added support for `StreamMessageInput.contentInsertionConfiguration` to specify the content - insertion configuration. - [#1613](https://github.com/GetStream/stream-chat-flutter/issues/1613) - - ```dart - StreamMessageInput( - ..., - contentInsertionConfiguration: ContentInsertionConfiguration( - onContentInserted: (content) { - // Do something with the content. - controller.addAttachment(...); - }, - ), - ) - ``` - -🔄 Changed - -- Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 -- Updated `stream_chat_flutter_core` dependency - to [`6.8.0`](https://pub.dev/packages/stream_chat_flutter_core/changelog). -- Updated jiffy dependency to ^6.2.1. - -## 7.0.0-beta.3 - -- Included the changes from version [6.8.1](#681). - -## 6.8.1 - -🐞 Fixed - -- Fixed `StreamMessageInput` always sending message as `system`. - -## 7.0.0-beta.2 - -- Updated `stream_chat_flutter_core` dependency - to [`7.0.0-beta.2`](https://pub.dev/packages/stream_chat_flutter_core/changelog). - -## 6.8.0 - -🔄 Changed - -- Updated `stream_chat_flutter_core` dependency - to [`6.7.0`](https://pub.dev/packages/stream_chat_flutter_core/changelog). - -## 7.0.0-beta.1 +## 7.0.0 🛑️ Breaking @@ -135,8 +43,86 @@ 🔄 Changed -- Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 - Updated `jiffy` dependency to `^6.2.1`. +- Updated minimum supported `SDK` version to Flutter 3.13/Dart 3.1 +- Updated `stream_chat_flutter_core` dependency + to [`7.0.0`](https://pub.dev/packages/stream_chat_flutter_core/changelog). + +# 6.12.0 + +🐞 Fixed + +- [[#1759]](https://github.com/GetStream/stream-chat-flutter/issues/1759) Fixed + The Reaction Picker is not being removed when I set showReactionPicker to false. + +# 6.11.0 + +🐞 Fixed + +- [[#1740]](https://github.com/GetStream/stream-chat-flutter/issues/1740) Fixed + Plugin `video_player:macos` has multiple possible implementations. + +# 6.10.0 + +🐞 Fixed + +- [[#1721]](https://github.com/GetStream/stream-chat-flutter/issues/1721) + Fixed `StreamMessageInput.allowedAttachmentPickerTypes` not working on mobile devices. + +✅ Added + +- Added support for overriding the `MessageWidget.onReactionsHover` callback. + > **Note** + > Used only in desktop devices (web and desktop). + +## 6.9.0 + +🐞 Fixed + +- [[#1702]](https://github.com/GetStream/stream-chat-flutter/issues/1702) + Fixed `Message.replaceMentions` not treating `@usernames` as mentions. +- [[#1694]](https://github.com/GetStream/stream-chat-flutter/issues/1694) Fixed Video player buttons + getting covered by bottom toolbar. + +✅ Added + +- Added support for listening error events in AttachmentPickerBottomSheet. +- Added support for overriding the `MessageWidget.onReactionTap` callback. +- Added support for `StreamMessageInput.contentInsertionConfiguration` to specify the content + insertion configuration. + [#1613](https://github.com/GetStream/stream-chat-flutter/issues/1613) + + ```dart + StreamMessageInput( + ..., + contentInsertionConfiguration: ContentInsertionConfiguration( + onContentInserted: (content) { + // Do something with the content. + controller.addAttachment(...); + }, + ), + ) + ``` + +🔄 Changed + +- Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 +- Updated `stream_chat_flutter_core` dependency + to [`6.8.0`](https://pub.dev/packages/stream_chat_flutter_core/changelog). +- Updated jiffy dependency to ^6.2.1. + +## 6.8.1 + +🐞 Fixed + +- Fixed `StreamMessageInput` always sending message as `system`. + +## 6.8.0 + +🔄 Changed + +- Updated `stream_chat_flutter_core` dependency + to [`6.7.0`](https://pub.dev/packages/stream_chat_flutter_core/changelog). ## 6.7.0 diff --git a/packages/stream_chat_flutter/pubspec.yaml b/packages/stream_chat_flutter/pubspec.yaml index ab595838..51fd40cd 100644 --- a/packages/stream_chat_flutter/pubspec.yaml +++ b/packages/stream_chat_flutter/pubspec.yaml @@ -39,7 +39,7 @@ dependencies: rxdart: ^0.27.7 share_plus: ^7.1.0 shimmer: ^3.0.0 - stream_chat_flutter_core: ^7.0.0-beta.3 + stream_chat_flutter_core: ^7.0.0 synchronized: ^3.1.0 thumblr: ^0.0.4 url_launcher: ^6.1.12 diff --git a/packages/stream_chat_flutter_core/CHANGELOG.md b/packages/stream_chat_flutter_core/CHANGELOG.md index ea65f16c..4cdd1ddf 100644 --- a/packages/stream_chat_flutter_core/CHANGELOG.md +++ b/packages/stream_chat_flutter_core/CHANGELOG.md @@ -1,3 +1,10 @@ +## 7.0.0 + +- 🛑 **BREAKING** Removed deprecated `StreamChannelListController.sort` parameter. + Use `StreamChannelListController.channelStateSort` instead. +- Updated minimum supported `SDK` version to Flutter 3.13/Dart 3.1 +- Updated `stream_chat` dependency to [`7.0.0`](https://pub.dev/packages/stream_chat/changelog). + ## 6.11.0 🐞 Fixed @@ -13,30 +20,15 @@ - Added support for `StreamChannel.loadingBuilder` and `StreamChannel.errorBuilder` to customize loading and error states. -## 7.0.0-beta.3 - -- Updated minimum supported `SDK` version to Flutter 3.13/Dart 3.1 -- Updated `stream_chat` dependency to [`7.0.0-beta.3`](https://pub.dev/packages/stream_chat/changelog). - ## 6.8.0 - Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 - Updated `stream_chat` dependency to [`6.8.0`](https://pub.dev/packages/stream_chat/changelog). -## 7.0.0-beta.2 - -- Updated `stream_chat` dependency to [`7.0.0-beta.2`](https://pub.dev/packages/stream_chat/changelog). - ## 6.7.0 - Updated `stream_chat` dependency to [`6.7.0`](https://pub.dev/packages/stream_chat/changelog). -## 7.0.0-beta.1 - -- 🛑 **BREAKING** Removed deprecated `StreamChannelListController.sort` parameter. - Use `StreamChannelListController.channelStateSort` instead. -- Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 - ## 6.6.0 - Updated `stream_chat` dependency to [`6.6.0`](https://pub.dev/packages/stream_chat/changelog). diff --git a/packages/stream_chat_localizations/pubspec.yaml b/packages/stream_chat_localizations/pubspec.yaml index ab1cf1ef..ada1f25e 100644 --- a/packages/stream_chat_localizations/pubspec.yaml +++ b/packages/stream_chat_localizations/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_chat_localizations description: The Official localizations for Stream Chat Flutter, a service for building chat applications -version: 6.0.0 +version: 7.0.0 homepage: https://github.com/GetStream/stream-chat-flutter repository: https://github.com/GetStream/stream-chat-flutter issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues