Skip to content

Commit 39218c5

Browse files
Brazolrenefloor
andauthored
Release v0.8.0 (#858)
* Release v0.8.0 * Apply suggestions from code review Co-authored-by: Rene Floor <[email protected]> * changelog tweak --------- Co-authored-by: Rene Floor <[email protected]>
1 parent 2121e0c commit 39218c5

File tree

11 files changed

+36
-16
lines changed

11 files changed

+36
-16
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.7.2+1
2+
version: 1.8.0+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.7.2
38-
stream_video_push_notification: ^0.7.2
39-
stream_video_screen_sharing: ^0.7.2
37+
stream_video_flutter: ^0.8.0
38+
stream_video_push_notification: ^0.8.0
39+
stream_video_screen_sharing: ^0.8.0
4040

4141
dependency_overrides:
4242
just_audio_web: ^0.4.13

packages/stream_video/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## Unreleased
1+
## 0.8.0
2+
3+
* Updated minimum Flutter version to 3.27.4
24

35
✅ Added
46
- Introduced `disposeAfterResolvingRinging()` and `consumeAndAcceptActiveCall()` methods in `StreamVideo` to simplify the ringing flow implementation.
@@ -7,6 +9,9 @@
79
🔄 Changed
810
- Deprecated the `backgroundVoipCallHandler` parameter in `StreamVideoPushNotificationManager`, as it is no longer required for iOS ringing to function in a terminated state.
911

12+
🐞 Fixed
13+
- **(Windows/Linux)** Fixes compilation issues caused by `stream_webrtc_flutter` package.
14+
1015
## 0.7.2
1116

1217
🐞 Fixed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.7.2';
4+
const String streamVideoVersion = '0.8.0';
55
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
66
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';

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.7.2
4+
version: 0.8.0
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## Upcoming
1+
## 0.8.0
2+
3+
* Updated minimum Flutter version to 3.27.4
4+
* Note: If you updated Flutter version and are using `flutterfire_cli` for push notifications you might need to reactivate it by running: `dart pub global activate flutterfire_cli`.
25

36
✅ Added
47
* Introduced `disposeAfterResolvingRinging()` and `consumeAndAcceptActiveCall()` methods in `StreamVideo` to simplify the ringing flow implementation.
@@ -9,6 +12,7 @@
912

1013
🐞 Fixed
1114
* Center alignment of buttons in `StreamLobbyVideo` to support more screen sizes.
15+
* **(Windows/Linux)** Fixes compilation issues caused by `stream_webrtc_flutter` package.
1216

1317
🚧 (Breaking) Picture-in-Picture (PiP) Improvements & Fixes
1418
* **Fixed:** PiP not working on Android 15.

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.7.2
31-
stream_video_flutter: ^0.7.2
32-
stream_video_push_notification: ^0.7.2
30+
stream_video: ^0.8.0
31+
stream_video_flutter: ^0.8.0
32+
stream_video_push_notification: ^0.8.0
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.7.2
4+
version: 0.8.0
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.7.2
23+
stream_video: ^0.8.0
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.8.0
2+
3+
* Updated minimum Flutter version to 3.27.4
4+
* Note: If you updated Flutter version and are using `flutterfire_cli` for push notifications you might need to reactivate it by running: `dart pub global activate flutterfire_cli`.
5+
6+
🐞 Fixed
7+
- **(Windows/Linux)** Fixes compilation issues caused by `stream_webrtc_flutter` package.
8+
19
## 0.7.2
210

311
🐞 Fixed

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.7.2
4+
version: 0.8.0
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.7.2
24+
stream_video: ^0.8.0
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.0
2+
* Sync version with `stream_video_flutter` 0.8.0
3+
14
## 0.7.2
25
* Sync version with `stream_video_flutter` 0.7.2
36

0 commit comments

Comments
 (0)