diff --git a/dogfooding/pubspec.yaml b/dogfooding/pubspec.yaml index 08a7f179..ae74a8fb 100644 --- a/dogfooding/pubspec.yaml +++ b/dogfooding/pubspec.yaml @@ -1,5 +1,5 @@ name: flutter_dogfooding -version: 1.7.1+1 +version: 1.7.2+1 publish_to: none description: Flutter Dogfooding App to showcase Video SDK. @@ -34,9 +34,9 @@ dependencies: share_plus: ^10.0.2 shared_preferences: ^2.3.2 stream_chat_flutter: ^9.0.0 - stream_video_flutter: ^0.7.1 - stream_video_push_notification: ^0.7.1 - stream_video_screen_sharing: ^0.7.1 + stream_video_flutter: ^0.7.2 + stream_video_push_notification: ^0.7.2 + stream_video_screen_sharing: ^0.7.2 dependency_overrides: just_audio_web: ^0.4.13 diff --git a/packages/stream_video/CHANGELOG.md b/packages/stream_video/CHANGELOG.md index fb85f831..924e6065 100644 --- a/packages/stream_video/CHANGELOG.md +++ b/packages/stream_video/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.7.2 + +🐞 Fixed +* Resolved an issue where accepting a second call while already on a call would not open the call screen correctly. +* **(Web)** Fixed web compilation issues. +* **(Web)** Addressed an issue where `battery_plus` and `thermal` packages were erroneously called on web. +* **(iOS)** Fixed an issue where Picture-in-Picture mode was not ended when the call ended. +* **(iOS)** Resolved an issue where CallKit calls sometimes were not terminated when the Stream call ended. +* **(iOS)** Fixed a missing app icon on the CallKit screen when the app was in a terminated state. + +🔄 Changed +* Deprecated the `handleVoipPushNotification()` method in the `StreamVideo` class. Use `handleRingingFlowNotifications()` instead. + ## 0.7.1 🐞 Fixed diff --git a/packages/stream_video/lib/version.g.dart b/packages/stream_video/lib/version.g.dart index c6874e9b..e7b0b5fe 100644 --- a/packages/stream_video/lib/version.g.dart +++ b/packages/stream_video/lib/version.g.dart @@ -1,6 +1,6 @@ // This file is generated. Do not manually edit. /// Current package version. const String streamSdkName = 'stream-flutter'; -const String streamVideoVersion = '0.7.1'; +const String streamVideoVersion = '0.7.2'; const String androidWebRTCVersion = 'libwebrtc-m125.6422.03'; const String iosWebRTCVersion = 'libwebrtc-m125.6422.06'; diff --git a/packages/stream_video/pubspec.yaml b/packages/stream_video/pubspec.yaml index 3c8fbfab..e2c9a1a8 100644 --- a/packages/stream_video/pubspec.yaml +++ b/packages/stream_video/pubspec.yaml @@ -1,7 +1,7 @@ name: stream_video description: The Official Low-level Client for Stream Video, a service for building video calls, audio rooms, and live-streaming applications. -version: 0.7.1 +version: 0.7.2 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues diff --git a/packages/stream_video_flutter/CHANGELOG.md b/packages/stream_video_flutter/CHANGELOG.md index 634e3250..bd122f80 100644 --- a/packages/stream_video_flutter/CHANGELOG.md +++ b/packages/stream_video_flutter/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.7.2 + +🐞 Fixed +* Resolved an issue where accepting a second call while already on a call would not open the call screen correctly. [#840](https://github.com/GetStream/stream-video-flutter/pull/840) and [#834](https://github.com/GetStream/stream-video-flutter/pull/834) +* **(Web)** Fixed web compilation issues. [#832](https://github.com/GetStream/stream-video-flutter/pull/832) +* **(Web)** Addressed an issue where `battery_plus` and `thermal` packages were erroneously called on web. [#837](https://github.com/GetStream/stream-video-flutter/pull/837) +* **(iOS)** Fixed an issue where Picture-in-Picture mode was not ended when the call ended. [#840](https://github.com/GetStream/stream-video-flutter/pull/840) +* **(iOS)** Resolved an issue where CallKit calls sometimes were not terminated when the Stream call ended. [#840](https://github.com/GetStream/stream-video-flutter/pull/840) +* **(iOS)** Fixed a missing app icon on the CallKit screen when the app was in a terminated state. [#841](https://github.com/GetStream/stream-video-flutter/pull/841) + +🔄 Changed +* Deprecated the `handleVoipPushNotification()` method in the `StreamVideo` class. Use `handleRingingFlowNotifications()` instead. + ## 0.7.1 🐞 Fixed diff --git a/packages/stream_video_flutter/example/pubspec.yaml b/packages/stream_video_flutter/example/pubspec.yaml index 9e0d562f..434a160e 100644 --- a/packages/stream_video_flutter/example/pubspec.yaml +++ b/packages/stream_video_flutter/example/pubspec.yaml @@ -27,9 +27,9 @@ dependencies: path_provider: ^2.1.0 share_plus: ^10.0.2 shared_preferences: ^2.2.0 - stream_video: ^0.7.1 - stream_video_flutter: ^0.7.1 - stream_video_push_notification: ^0.7.1 + stream_video: ^0.7.2 + stream_video_flutter: ^0.7.2 + stream_video_push_notification: ^0.7.2 stream_webrtc_flutter: ^0.12.5+2 dependency_overrides: diff --git a/packages/stream_video_flutter/pubspec.yaml b/packages/stream_video_flutter/pubspec.yaml index 79883b0d..eb5944c0 100644 --- a/packages/stream_video_flutter/pubspec.yaml +++ b/packages/stream_video_flutter/pubspec.yaml @@ -1,7 +1,7 @@ name: stream_video_flutter description: The Official UI package for Stream Video, a service for building video calls, audio rooms, and live-streaming applications. -version: 0.7.1 +version: 0.7.2 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues @@ -20,7 +20,7 @@ dependencies: permission_handler: ^11.3.1 plugin_platform_interface: ^2.1.8 rate_limiter: ^1.0.0 - stream_video: ^0.7.1 + stream_video: ^0.7.2 stream_webrtc_flutter: ^0.12.5+2 visibility_detector: ^0.4.0+2 diff --git a/packages/stream_video_push_notification/CHANGELOG.md b/packages/stream_video_push_notification/CHANGELOG.md index dc32a4bd..661a7f70 100644 --- a/packages/stream_video_push_notification/CHANGELOG.md +++ b/packages/stream_video_push_notification/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.7.2 + +🐞 Fixed +* Resolved an issue where accepting a second call while already on a call would not open the call screen correctly. +* **(iOS)** Resolved an issue where CallKit calls sometimes were not terminated when the Stream call ended. +* **(iOS)** Fixed a missing app icon on the CallKit screen when the app was in a terminated state. + ## 0.7.1 * Sync version with `stream_video_flutter` 0.7.1 diff --git a/packages/stream_video_push_notification/pubspec.yaml b/packages/stream_video_push_notification/pubspec.yaml index b400ad2e..b7cfba7e 100644 --- a/packages/stream_video_push_notification/pubspec.yaml +++ b/packages/stream_video_push_notification/pubspec.yaml @@ -1,7 +1,7 @@ name: stream_video_push_notification description: Adds push notification support for Stream Video, a service for building video calls, audio rooms, and live-streaming applications. -version: 0.7.1 +version: 0.7.2 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues @@ -21,7 +21,7 @@ dependencies: meta: ^1.9.1 plugin_platform_interface: ^2.1.8 rxdart: ^0.28.0 - stream_video: ^0.7.1 + stream_video: ^0.7.2 uuid: ^4.2.1 shared_preferences: ^2.3.2 stream_webrtc_flutter: ^0.12.5+2 diff --git a/packages/stream_video_screen_sharing/CHANGELOG.md b/packages/stream_video_screen_sharing/CHANGELOG.md index 678edb68..f936b846 100644 --- a/packages/stream_video_screen_sharing/CHANGELOG.md +++ b/packages/stream_video_screen_sharing/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.7.2 +* Sync version with `stream_video_flutter` 0.7.2 + ## 0.7.1 * Sync version with `stream_video_flutter` 0.7.1 diff --git a/packages/stream_video_screen_sharing/pubspec.yaml b/packages/stream_video_screen_sharing/pubspec.yaml index f3d89212..b2769dce 100644 --- a/packages/stream_video_screen_sharing/pubspec.yaml +++ b/packages/stream_video_screen_sharing/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_video_screen_sharing description: "Official Screen Sharing Plugin for Stream Video Flutter." -version: 0.7.1 +version: 0.7.2 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues