Skip to content

Commit eae88cd

Browse files
committed
chore(repo): Release 8.0.0-beta.3 (#1914)
1 parent 83638a8 commit eae88cd

File tree

17 files changed

+43
-41
lines changed

17 files changed

+43
-41
lines changed

README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,6 @@ Stream allows developers to rapidly deploy scalable feeds and chat messaging wit
1818

1919
**V4 Migration Guide**
2020

21-
> [!WARNING]
22-
> Flutter `> = v3.16.x` uses material 3 by default which breaks the UI of some of the components.
23-
> If you want to use these versions, you need to set the `useMaterial3` parameter to `false`
24-
> in the `ThemeData`.
25-
>
26-
> eg.
27-
>
28-
> ```dart
29-
> MaterialApp(
30-
> theme: ThemeData(
31-
> useMaterial3: false,
32-
> ),
33-
> ...
34-
> );
35-
> ```
36-
>
37-
> `StreamChat` widget overrides the `useMaterial3` parameter to `false` by default
38-
> so if you are using `StreamChat` widget, you **don't** need to set it manually.
39-
4021
For upgrading from V6 to V7, please refer to the [V4 Migration Guide](https://getstream.io/chat/docs/sdk/flutter/guides/migration_guide_7_0/)
4122

4223
## Sample apps and demos

packages/stream_chat/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 8.0.0-beta.3
2+
3+
- Aligned version with other Stream Chat packages
4+
15
## 8.0.0-beta.2
26

37
- Aligned version with other Stream Chat packages

packages/stream_chat/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
cupertino_icons: ^1.0.5
1313
flutter:
1414
sdk: flutter
15-
stream_chat: ^7.2.0-hotfix.1
15+
stream_chat: ^8.0.0-beta.3
1616

1717
flutter:
1818
uses-material-design: true

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.0.0-beta.2';
6+
const PACKAGE_VERSION = '8.0.0-beta.3';

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.0.0-beta.2
4+
version: 8.0.0-beta.3
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: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
## Unreleased
1+
## 8.0.0-beta.3
22

3+
🐞 Fixed
34
- Migrate to Material 3 and remove `useMaterial3` flag interception.
5+
6+
🔄 Changed
7+
- Updated `stream_chat_flutter_core` dependency to [`8.0.0-beta.3`](https://pub.dev/packages/stream_chat_flutter_core/changelog).
8+
9+
🛑️ Breaking
10+
- Updated `connectivity_plus` library to `>= 6.0.0`.
411

512
## 8.0.0-beta.2
613

packages/stream_chat_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515
responsive_builder: ^0.7.0
16-
stream_chat_flutter: ^7.2.0-hotfix.1
17-
stream_chat_localizations: ^7.2.0-hotfix.1
18-
stream_chat_persistence: ^7.2.0-hotfix.1
16+
stream_chat_flutter: ^8.0.0-beta.3
17+
stream_chat_localizations: ^8.0.0-beta.3
18+
stream_chat_persistence: ^8.0.0-beta.3
1919

2020
flutter:
2121
uses-material-design: true

packages/stream_chat_flutter/pubspec.yaml

Lines changed: 4 additions & 3 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.0.0-beta.2
4+
version: 8.0.0-beta.3
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
77

@@ -39,7 +39,7 @@ dependencies:
3939
rxdart: ^0.27.7
4040
share_plus: ">=7.1.0 <9.0.0"
4141
shimmer: ^3.0.0
42-
stream_chat_flutter_core: ^8.0.0-beta.2
42+
stream_chat_flutter_core: ^8.0.0-beta.3
4343
synchronized: ^3.1.0
4444
thumblr: ^0.0.4
4545
url_launcher: ^6.1.12
@@ -75,4 +75,5 @@ dev_dependencies:
7575
sdk: flutter
7676
golden_toolkit: ^0.15.0
7777
mocktail: ^1.0.0
78-
path: ^1.8.3
78+
path: ^1.8.3
79+
connectivity_plus_platform_interface: ^2.0.0

packages/stream_chat_flutter_core/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## Unreleased
1+
## 8.0.0-beta.3
22

33
- 🛑 **BREAKING** Updated `connectivity_plus` library to `>= 6.0.0`.
4+
- Updated `stream_chat` dependency to [`8.0.0-beta.3`](https://pub.dev/packages/stream_chat/changelog).
45

56
## 8.0.0-beta.2
67

packages/stream_chat_flutter_core/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
cupertino_icons: ^1.0.3
1212
flutter:
1313
sdk: flutter
14-
stream_chat_flutter_core: ^7.2.0-hotfix.1
14+
stream_chat_flutter_core: ^8.0.0-beta.3
1515

1616
flutter:
1717
uses-material-design: true

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.0.0-beta.2
4+
version: 8.0.0-beta.3
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.27.7
20-
stream_chat: ^8.0.0-beta.2
20+
stream_chat: ^8.0.0-beta.3
2121

2222
dev_dependencies:
2323
build_runner: ^2.4.6

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.0.0-beta.3
2+
3+
* Updated `stream_chat_flutter` dependency to [`8.0.0-beta.3`](https://pub.dev/packages/stream_chat_flutter/changelog).
4+
15
## 8.0.0-beta.2
26

37
* Updated `stream_chat_flutter` dependency to [`8.0.0-beta.2`](https://pub.dev/packages/stream_chat_flutter/changelog).

packages/stream_chat_localizations/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ dependencies:
1212
cupertino_icons: ^1.0.3
1313
flutter:
1414
sdk: flutter
15-
stream_chat_flutter: ^7.2.0-hotfix.1
16-
stream_chat_localizations: ^7.2.0-hotfix.1
15+
stream_chat_flutter: ^8.0.0-beta.3
16+
stream_chat_localizations: ^8.0.0-beta.3
1717

1818
flutter:
1919
uses-material-design: true

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.0.0-beta.2
3+
version: 8.0.0-beta.3
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.0.0-beta.2
17+
stream_chat_flutter: ^8.0.0-beta.3
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.0.0-beta.3
2+
3+
- Updated `stream_chat` dependency to [`8.0.0-beta.3`](https://pub.dev/packages/stream_chat/changelog).
4+
15
## 8.0.0-beta.2
26

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

packages/stream_chat_persistence/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies:
1111
cupertino_icons: ^1.0.3
1212
flutter:
1313
sdk: flutter
14-
stream_chat: ^7.2.0-hotfix.1
15-
stream_chat_persistence: ^7.2.0-hotfix.1
14+
stream_chat: ^8.0.0-beta.3
15+
stream_chat_persistence: ^8.0.0-beta.3
1616

1717
flutter:
1818
uses-material-design: true

packages/stream_chat_persistence/pubspec.yaml

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

@@ -18,7 +18,7 @@ dependencies:
1818
path: ^1.8.3
1919
path_provider: ^2.1.0
2020
sqlite3_flutter_libs: ^0.5.15
21-
stream_chat: ^8.0.0-beta.2
21+
stream_chat: ^8.0.0-beta.3
2222

2323
dev_dependencies:
2424
build_runner: ^2.4.6

0 commit comments

Comments
 (0)