Skip to content

Commit 399dbbe

Browse files
authored
Release v0.5.2 (#752)
* Release v0.5.2 * dep fix
1 parent 0dc51cd commit 399dbbe

File tree

11 files changed

+38
-13
lines changed

11 files changed

+38
-13
lines changed

dogfooding/pubspec.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ dependencies:
2626
google_sign_in: ^6.1.4
2727
http: ^1.1.0
2828
path_provider: ^2.1.0
29+
permission_handler: ^11.3.1
2930
rxdart: ^0.27.7
3031
share_plus: ^8.0.3
3132
shared_preferences: ^2.2.0
3233
stream_chat_flutter: ^8.0.0
33-
stream_video_flutter: ^0.5.1
34-
stream_video_push_notification: ^0.5.1
35-
stream_video_screen_sharing: ^0.5.1
34+
stream_video_flutter: ^0.5.2
35+
stream_video_push_notification: ^0.5.2
36+
stream_video_screen_sharing: ^0.5.2
3637
uni_links: ^0.5.1
3738

3839
dev_dependencies:

packages/stream_video/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5.2
2+
3+
🔄 Changed
4+
* `SortParam` changed to `SortParamRequest` in `queryMembers()` method inside `Call` and `StreamVideo` class
5+
16
## 0.5.1
27

38
✅ 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.5.1';
3+
const String streamVideoVersion = '0.5.2';
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.5.1
4+
version: 0.5.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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.5.2
2+
3+
🐞 Fixed
4+
* Fixed CallKit integration on iOS when app is in a terminated state. It now correctly openes the app when the call is accepted.
5+
* Fixed `onLeaveCallTap` callback in `StreamCallContent`. It's now correctly handled.
6+
* (Android) Prevented the app from crashing when microphone permission is not granted and actove call foreground services is started. The service will now not start if no permission is granted.
7+
* (Android) Marked the active call notification channel's lockscreen visibility as public to ensure it shows when the Android device is locked.
8+
9+
🔄 Changed
10+
* `SortParam` changed to `SortParamRequest` in `queryMembers()` method inside `Call` and `StreamVideo` class
11+
112
## 0.5.1
213

314
✅ 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.5.1
32-
stream_video_flutter: ^0.5.1
33-
stream_video_push_notification: ^0.5.1
31+
stream_video: ^0.5.2
32+
stream_video_flutter: ^0.5.2
33+
stream_video_push_notification: ^0.5.2
3434

3535
dependency_overrides:
3636
stream_video:

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.5.1
4+
version: 0.5.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.7
2222
rate_limiter: ^1.0.0
23-
stream_video: ^0.5.1
23+
stream_video: ^0.5.2
2424
visibility_detector: ^0.4.0+2
2525

2626
dependency_overrides:

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.2
2+
3+
🐞 Fixed
4+
* Fixed CallKit integration on iOS when app is in a terminated state. It now correctly openes the app when the call is accepted.
5+
16
## 0.5.1
27
* Sync version with `stream_video_flutter` 0.5.1
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.5.1
4+
version: 0.5.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
@@ -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.5.1
25+
stream_video: ^0.5.2
2626
uuid: ^4.2.1
2727

2828
dev_dependencies:

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.5.2
2+
* Sync version with `stream_video_flutter` 0.5.2
3+
14
## 0.5.1
25
* Sync version with `stream_video_flutter` 0.5.1
36

0 commit comments

Comments
 (0)