Skip to content

Commit 2acac74

Browse files
authored
Release v0.8.2 (#880)
* Release v0.8.2 * tweak
1 parent 8666e00 commit 2acac74

File tree

11 files changed

+30
-22
lines changed

11 files changed

+30
-22
lines changed

dogfooding/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_dogfooding
2-
version: 1.8.1+1
2+
version: 1.8.2+1
33
publish_to: none
44
description: Flutter Dogfooding App to showcase Video SDK.
55

@@ -34,9 +34,9 @@ dependencies:
3434
share_plus: ^10.0.2
3535
shared_preferences: ^2.3.2
3636
stream_chat_flutter: ^9.4.0
37-
stream_video_flutter: ^0.8.1
38-
stream_video_push_notification: ^0.8.1
39-
stream_video_screen_sharing: ^0.8.1
37+
stream_video_flutter: ^0.8.2
38+
stream_video_push_notification: ^0.8.2
39+
stream_video_screen_sharing: ^0.8.2
4040

4141
dependency_overrides:
4242
just_audio_web: ^0.4.13

packages/stream_video/CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
## Unreleased
1+
## 0.8.2
22

33
✅ Added
44
* Added `CallPreferences? preferences` parameter to `consumeIncomingCall()` method in `StreamVideo` to make it possible to configure the consumed call.
55

6+
🐞 Fixed
7+
* Fixed remote participant roles array being empty after joining the call.
8+
* Fixed and issue with `thermal` package throwing exception on Android 9 and lower.
9+
610
## 0.8.1
711

812
✅ Added
913
* Introduced the `onCallDisconnected` callback in `StreamCallContainer`, enabling customization of the default behavior, which invokes `Navigator.pop` upon call disconnection.
1014
* Made `registerDevice()` and `unregisterDevice()` methods publicly available in `PushNotificationManager`.
1115

12-
🐞 Fixed
13-
* Fixed remote participant roles array being empty after joining the call.
14-
1516
## 0.8.0
1617

1718
* Updated minimum Flutter version to 3.27.4

packages/stream_video/lib/globals.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:meta/meta.dart';
22

33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.8.1';
4+
const String streamVideoVersion = '0.8.2';
55
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
66
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';
77

packages/stream_video/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video
22
description: The Official Low-level Client for Stream Video, a service for
33
building video calls, audio rooms, and live-streaming applications.
4-
version: 0.8.1
4+
version: 0.8.2
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

packages/stream_video_flutter/CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
## Unreleased
1+
## 0.8.2
22

33
✅ Added
44
* Added `CallPreferences? preferences` parameter to `consumeIncomingCall()` method in `StreamVideo` to make it possible to configure the consumed call.
55

6+
🐞 Fixed
7+
* Fixed remote participant roles array being empty after joining the call.
8+
* Fixed and issue with `thermal` package throwing exception on Android 9 and lower.
9+
610
## 0.8.1
711

812
✅ Added
913
* Introduced the `onCallDisconnected` callback in `StreamCallContainer`, enabling customization of the default behavior, which invokes `Navigator.pop` upon call disconnection.
1014
* Made `registerDevice()` and `unregisterDevice()` methods publicly available in `PushNotificationManager`.
1115

12-
🐞 Fixed
13-
* Fixed remote participant roles array being empty after joining the call.
14-
1516
## 0.8.0
1617

1718
* Updated minimum Flutter version to 3.27.4

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ dependencies:
2727
path_provider: ^2.1.0
2828
share_plus: ^10.0.2
2929
shared_preferences: ^2.2.0
30-
stream_video: ^0.8.1
31-
stream_video_flutter: ^0.8.1
32-
stream_video_push_notification: ^0.8.1
30+
stream_video: ^0.8.2
31+
stream_video_flutter: ^0.8.2
32+
stream_video_push_notification: ^0.8.2
3333
stream_webrtc_flutter: ^0.12.9+1
3434

3535
dependency_overrides:

packages/stream_video_flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_flutter
22
description: The Official UI package for Stream Video, a service for building
33
video calls, audio rooms, and live-streaming applications.
4-
version: 0.8.1
4+
version: 0.8.2
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
@@ -20,7 +20,7 @@ dependencies:
2020
permission_handler: ^11.3.1
2121
plugin_platform_interface: ^2.1.8
2222
rate_limiter: ^1.0.0
23-
stream_video: ^0.8.1
23+
stream_video: ^0.8.2
2424
stream_webrtc_flutter: ^0.12.9+1
2525
visibility_detector: ^0.4.0+2
2626

packages/stream_video_push_notification/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.8.2
2+
* Sync version with `stream_video_flutter` 0.8.2
3+
14
## 0.8.1
25
* Sync version with `stream_video_flutter` 0.8.1
36

packages/stream_video_push_notification/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_push_notification
22
description: Adds push notification support for Stream Video, a service for
33
building video calls, audio rooms, and live-streaming applications.
4-
version: 0.8.1
4+
version: 0.8.2
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
@@ -21,7 +21,7 @@ dependencies:
2121
meta: ^1.9.1
2222
plugin_platform_interface: ^2.1.8
2323
rxdart: ^0.28.0
24-
stream_video: ^0.8.1
24+
stream_video: ^0.8.2
2525
uuid: ^4.2.1
2626
shared_preferences: ^2.3.2
2727
stream_webrtc_flutter: ^0.12.9+1

packages/stream_video_screen_sharing/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.8.2
2+
* Sync version with `stream_video_flutter` 0.8.2
3+
14
## 0.8.1
25
* Sync version with `stream_video_flutter` 0.8.1
36

0 commit comments

Comments
 (0)