Skip to content

Commit 099667f

Browse files
authored
chore(repo): release v8.2.0 (#2047)
1 parent 4afc504 commit 099667f

File tree

11 files changed

+43
-21
lines changed

11 files changed

+43
-21
lines changed

packages/stream_chat/CHANGELOG.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
## Upcoming
1+
## 8.2.0
22

33
✅ Added
4-
- Added user blocking to the client.
5-
6-
🐞 Fixed
74

8-
- Fixed locale conversion in jiffy.
5+
- Added user blocking to the client.
96

107
## 8.1.0
118

129
✅ Added
10+
1311
- Added `httpClientAdapter` to `StreamHttpClient` that enables the use native http implementations
1412

1513
🔄 Changed
@@ -35,20 +33,24 @@
3533
## 7.2.1
3634

3735
✅ Added
36+
3837
- Added `voiceRecording` attachment type
3938

4039
## 7.2.0-hotfix.1
4140

42-
- Version to keep in sync with the rest of the packages
43-
41+
- Version to keep in sync with the rest of the packages
42+
4443
## 7.2.0
4544

4645
✅ Added
47-
- Added `markUnread` method to `Channel` that marks messages from the provided message id onwards as unread
46+
47+
- Added `markUnread` method to `Channel` that marks messages from the provided message id onwards as
48+
unread
4849

4950
## 7.1.0
5051

5152
🐞 Fixed
53+
5254
- Fixes a thread message causing reply messages on the main thread to be considered deleted
5355

5456
## 7.0.2
@@ -68,7 +70,7 @@
6870
**might** produce a **breaking change** if you your code depends in `UUID` `3.x.x` directly or indirectly.
6971

7072
## 7.0.0
71-
73+
7274
- 🛑️ Breaking
7375

7476
- Removed deprecated `channelQuery.sort` property. Use `channelStateSort` instead.

packages/stream_chat/lib/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ import 'package:stream_chat/src/client/client.dart';
33
/// Current package version
44
/// Used in [StreamChatClient] to build the `x-stream-client` header
55
// ignore: constant_identifier_names
6-
const PACKAGE_VERSION = '8.1.0';
6+
const PACKAGE_VERSION = '8.2.0';

packages/stream_chat/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_chat
22
homepage: https://getstream.io/
33
description: The official Dart client for Stream Chat, a service for building chat applications.
4-
version: 8.1.0
4+
version: 8.2.0
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
77

packages/stream_chat_flutter/CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
1-
## Upcoming
1+
## 8.2.0
22

33
✅ Added
44

5+
- Added `onThreadTap` parameter to `MessageWidgetContent` to enable thread tap action.
56
- Messages by default now show an "Edited" label if text is edited. Use `showEditedLabel` to disable this functionality.
67

8+
🐞 Fixed
9+
10+
- Fixed locale conversion in jiffy.
11+
12+
🔄 Changed
13+
14+
- Updated `stream_chat_flutter_core` dependency to [`8.2.0`](https://pub.dev/packages/stream_chat/changelog).
15+
716
## 8.1.0
817

918
🐞 Fixed
@@ -21,7 +30,6 @@
2130

2231
- Fixed null errors in web from markdown.
2332
- Fixed bug causing background events to be sent in foreground.
24-
- Added `onThreadTap` parameter to `MessageWidgetContent` to enable thread tap action.
2533

2634
## 7.3.0
2735

packages/stream_chat_flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_chat_flutter
22
homepage: https://github.com/GetStream/stream-chat-flutter
33
description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter.
4-
version: 8.1.0
4+
version: 8.2.0
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
77

@@ -41,7 +41,7 @@ dependencies:
4141
rxdart: ^0.28.0
4242
share_plus: ^10.0.2
4343
shimmer: ^3.0.0
44-
stream_chat_flutter_core: ^8.1.0
44+
stream_chat_flutter_core: ^8.2.0
4545
synchronized: ^3.1.0+1
4646
thumblr: ^0.0.4
4747
url_launcher: ^6.3.0

packages/stream_chat_flutter_core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 8.2.0
2+
3+
- Updated `stream_chat` dependency to [`8.2.0`](https://pub.dev/packages/stream_chat/changelog).
4+
15
## 8.1.0
26

37
🔄 Changed

packages/stream_chat_flutter_core/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_chat_flutter_core
22
homepage: https://github.com/GetStream/stream-chat-flutter
33
description: Stream Chat official Flutter SDK Core. Build your own chat experience using Dart and Flutter.
4-
version: 8.1.0
4+
version: 8.2.0
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
77

@@ -17,7 +17,7 @@ dependencies:
1717
freezed_annotation: ^2.4.1
1818
meta: ^1.9.1
1919
rxdart: ^0.28.0
20-
stream_chat: ^8.1.0
20+
stream_chat: ^8.2.0
2121

2222
dev_dependencies:
2323
build_runner: ^2.4.9

packages/stream_chat_localizations/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 8.2.0
2+
3+
- Updated `stream_chat_flutter` dependency to [`8.2.0`](https://pub.dev/packages/stream_chat/changelog).
4+
15
## 8.1.0
26

37
- Updated `stream_chat_flutter` dependency to [`8.1.0`](https://pub.dev/packages/stream_chat/changelog).

packages/stream_chat_localizations/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_chat_localizations
22
description: The Official localizations for Stream Chat Flutter, a service for building chat applications
3-
version: 8.1.0
3+
version: 8.2.0
44
homepage: https://github.com/GetStream/stream-chat-flutter
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
@@ -14,7 +14,7 @@ dependencies:
1414
sdk: flutter
1515
flutter_localizations:
1616
sdk: flutter
17-
stream_chat_flutter: ^8.1.0
17+
stream_chat_flutter: ^8.2.0
1818

1919
dev_dependencies:
2020
flutter_test:

packages/stream_chat_persistence/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 8.2.0
2+
3+
- Updated `stream_chat` dependency to [`8.2.0`](https://pub.dev/packages/stream_chat/changelog).
4+
15
## 8.1.0
26

37
- Updated `stream_chat` dependency to [`8.1.0`](https://pub.dev/packages/stream_chat/changelog).

0 commit comments

Comments
 (0)