Skip to content

Commit 2781d81

Browse files
authored
Release v0.5.0 (#727)
* Release v0.5.0 * tweaks * tweaks * changelog tweaks
1 parent 091b012 commit 2781d81

File tree

11 files changed

+64
-17
lines changed

11 files changed

+64
-17
lines changed

dogfooding/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ dependencies:
2929
share_plus: ^8.0.3
3030
shared_preferences: ^2.2.0
3131
stream_chat_flutter: ^8.0.0
32-
stream_video_flutter: ^0.4.4
33-
stream_video_push_notification: ^0.4.4
34-
stream_video_screen_sharing: ^0.4.4
32+
stream_video_flutter: ^0.5.0
33+
stream_video_push_notification: ^0.5.0
34+
stream_video_screen_sharing: ^0.5.0
3535
uni_links: ^0.5.1
3636

3737
dev_dependencies:

packages/stream_video/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.5.0
2+
3+
✅ Added
4+
* Picture in Picture (PiP) is now also supported on iOS. For more information, refer to the [documentation](https://getstream.io/video/docs/flutter/advanced/picture_in_picture/)
5+
6+
🐞 Fixed
7+
* Fixed an issue where the microphone was being muted when the app was running in the background on Android versions greater than 14.
8+
9+
🚧 Breaking changes
10+
* The implementation of `BroadcastSampleHandler`, used for `broadcast` screen-sharing mode on iOS is now moved from `stream_video_flutter` package to a separate [stream_video_screen_sharing](https://pub.dev/packages/stream_video_screen_sharing) package.
11+
Migration steps:
12+
- Add `stream_video_screen_sharing` dependency to your `pubspec.yaml` file
13+
- Replace the import in `SampleHandler.swift` file from `stream_video_flutter` to `stream_video_screen_sharing`
14+
- Replace the dependancy added to the extension target in `Podfile` file from `stream_video_flutter` to `stream_video_screen_sharing`
15+
16+
For complete screen-sharing guide please refer to the [documentaiton](https://getstream.io/video/docs/flutter/advanced/screen_sharing/)
17+
18+
* Previously deprecated `String` `type` parameters in `makeCall()` and `getCallRingingState()` methods are now removed. Use `StreamCallType` `callType` parameter now.
19+
* Previously deprecated `events` and `coordinatorEvents` streams are now removed from `Call` class. Use `callEvents` instead.
20+
121
## 0.4.4
222

323
✅ Added
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
3-
const String streamVideoVersion = '0.4.4';
3+
const String streamVideoVersion = '0.5.0';
44
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
55
const String iosWebRTCVersion = 'libwebrtc-m125.6422.04';

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.4.4
4+
version: 0.5.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: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.5.0
2+
3+
✅ Added
4+
* Picture in Picture (PiP) is now also supported on iOS. For more information, refer to the [documentation](https://getstream.io/video/docs/flutter/advanced/picture_in_picture/)
5+
6+
🐞 Fixed
7+
* Fixed an issue where the microphone was being muted when the app was running in the background on Android versions greater than 14.
8+
9+
🚧 Breaking changes
10+
* The implementation of `BroadcastSampleHandler`, used for `broadcast` screen-sharing mode on iOS is now moved from `stream_video_flutter` package to a separate [stream_video_screen_sharing](https://pub.dev/packages/stream_video_screen_sharing) package.
11+
Migration steps:
12+
- Add `stream_video_screen_sharing` dependency to your `pubspec.yaml` file
13+
- Replace the import in `SampleHandler.swift` file from `stream_video_flutter` to `stream_video_screen_sharing`
14+
- Replace the dependancy added to the extension target in `Podfile` file from `stream_video_flutter` to `stream_video_screen_sharing`
15+
16+
For complete screen-sharing guide please refer to the [documentaiton](https://getstream.io/video/docs/flutter/advanced/screen_sharing/)
17+
18+
* Previously deprecated `String` `type` parameters in `makeCall()` and `getCallRingingState()` methods are now removed. Use `StreamCallType` `callType` parameter now.
19+
* Previously deprecated `events` and `coordinatorEvents` streams are now removed from `Call` class. Use `callEvents` instead.
20+
121
## 0.4.4
222

323
✅ Added

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ dependencies:
2828
path_provider: ^2.1.0
2929
share_plus: ^7.1.0
3030
shared_preferences: ^2.2.0
31-
stream_video: ^0.4.4
32-
stream_video_flutter: ^0.4.4
33-
stream_video_push_notification: ^0.4.4
31+
stream_video: ^0.5.0
32+
stream_video_flutter: ^0.5.0
33+
stream_video_push_notification: ^0.5.0
3434

3535
dependency_overrides:
3636
stream_video:

packages/stream_video_flutter/pubspec.yaml

Lines changed: 3 additions & 3 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.4.4
4+
version: 0.5.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
@@ -19,7 +19,7 @@ dependencies:
1919
flutter_webrtc: ^0.11.6
2020
plugin_platform_interface: ^2.1.7
2121
rate_limiter: ^1.0.0
22-
stream_video: ^0.4.4
22+
stream_video: ^0.5.0
2323
visibility_detector: ^0.4.0+2
2424

2525
dependency_overrides:
@@ -53,6 +53,6 @@ flutter:
5353
topics:
5454
- video
5555
- audio
56-
- audioroom
56+
- screen-sharing
5757
- webrtc
5858
- livestream

packages/stream_video_push_notification/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5.0
2+
3+
🐞 Fixed
4+
* Fixed an issue where the microphone was being muted when the app was running in the background on Android versions greater than 14.
5+
16
## 0.4.4
27
* Sync version with `stream_video_flutter` 0.4.4
38

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.4.4
4+
version: 0.5.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
@@ -22,7 +22,7 @@ dependencies:
2222
meta: ^1.9.1
2323
plugin_platform_interface: ^2.1.6
2424
rxdart: ^0.27.7
25-
stream_video: ^0.4.4
25+
stream_video: ^0.5.0
2626
uuid: ^4.2.1
2727

2828
dev_dependencies:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
## 0.4.3
2-
* Screen sharing package added with `BroadcastSampleHandler` implementation for iOS broadcast extension
1+
## 0.5.0
2+
* Screen sharing package added with `BroadcastSampleHandler` implementation for iOS broadcast extension.

0 commit comments

Comments
 (0)