Skip to content

Commit e3827bd

Browse files
authored
Release v.0.9.0 (#922)
1 parent e1d79f3 commit e3827bd

File tree

17 files changed

+77
-27
lines changed

17 files changed

+77
-27
lines changed

dogfooding/pubspec.yaml

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

@@ -34,10 +34,10 @@ dependencies:
3434
share_plus: ^10.0.2
3535
shared_preferences: ^2.3.2
3636
stream_chat_flutter: ^9.6.0
37-
stream_video_flutter: ^0.8.4
38-
stream_video_push_notification: ^0.8.4
39-
stream_video_screen_sharing: ^0.8.4
40-
stream_video_noise_cancellation: ^0.8.4
37+
stream_video_flutter: ^0.9.0
38+
stream_video_push_notification: ^0.9.0
39+
stream_video_screen_sharing: ^0.9.0
40+
stream_video_noise_cancellation: ^0.9.0
4141

4242
dependency_overrides:
4343
just_audio_web: ^0.4.13

packages/stream_video/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 0.9.0
2+
3+
✅ Added
4+
* Introducing noise cancellation support to enhance call audio quality. Implement this feature easily by following our [documentation](https://getstream.io/video/docs/flutter/guides/noise-cancellation/).
5+
* Added `networkMonitorSettings` to `StreamVideoOptions` for configuring network monitoring, including customization of test URLs for connection checks.
6+
7+
🚧 (Breaking Changes)
8+
* Improved `setScreenShareEnabled` method in `CallSession` class to return the screen sharing track.
9+
* Relocated `callPreferences` property from `CallStateNotifier` to `CallState` for better state management.
10+
* Increased minimum platform requirements
11+
* **Android:** Minimum SDK 21 (Android 5.0 Lollipop)
12+
* **iOS:** iOS 14.0 or higher
13+
14+
🐞 Fixed
15+
* Enhanced fast reconnect flow for more reliable connection recovery during network interruptions.
16+
* Resolved an issue where video tracks weren't properly subscribed when participants joined calls.
17+
* Fixed multi-device support to properly handle when the same user joins from multiple devices.
18+
* Corrected screen sharing source switching when changing between multiple sources.
19+
* Fixed a bug where `CallPreferences` could be ignored when accepting a ringing call.
20+
* (Android) Resolved compatibility issues with `battery_plus` plugin on older Android devices.
21+
* (Web) Fixed screen sharing termination when using browser UI controls to stop sharing.
22+
123
## 0.8.4
224

325
🔄 Changed

packages/stream_video/lib/globals.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import 'package:meta/meta.dart';
22

33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.8.4';
5-
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
6-
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';
4+
const String streamVideoVersion = '0.9.0';
5+
const String androidWebRTCVersion = '1.3.8';
6+
const String iosWebRTCVersion = '125.6422.65';
77

88
const String streamDefaultUserAgent =
99
'stream-video-flutter-v$streamVideoVersion';

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.4
4+
version: 0.9.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: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1-
## Unreleased
1+
## 0.9.0
2+
3+
✅ Added
4+
* Introducing noise cancellation support to enhance call audio quality. Implement this feature easily by following our [documentation](https://getstream.io/video/docs/flutter/guides/noise-cancellation/).
5+
* Added `networkMonitorSettings` to `StreamVideoOptions` for configuring network monitoring, including customization of test URLs for connection checks.
26

37
🚧 (Breaking Changes)
4-
* Updated the `onCallDisconnected` callback in `StreamCallContainer`: It now includes a `DisconnectReason` parameter that specifies the reason for the disconnection.
8+
* Enhanced the `onCallDisconnected` callback in `StreamCallContainer` to include a `CallDisconnectedProperties` parameter with detailed disconnection reason information.
9+
* Improved `setScreenShareEnabled` method in `CallSession` class to return the screen sharing track.
10+
* Relocated `callPreferences` property from `CallStateNotifier` to `CallState` for better state management.
11+
* Increased minimum platform requirements
12+
* **Android:** Minimum SDK 21 (Android 5.0 Lollipop)
13+
* **iOS:** iOS 14.0 or higher
14+
15+
🐞 Fixed
16+
* Enhanced fast reconnect flow for more reliable connection recovery during network interruptions.
17+
* Resolved an issue where video tracks weren't properly subscribed when participants joined calls.
18+
* Fixed multi-device support to properly handle when the same user joins from multiple devices.
19+
* Corrected screen sharing source switching when changing between multiple sources.
20+
* Fixed a bug where `CallPreferences` could be ignored when accepting a ringing call.
21+
* (Android) Resolved compatibility issues with `battery_plus` plugin on older Android devices.
22+
* (Web) Fixed screen sharing termination when using browser UI controls to stop sharing.
23+
* (iOS) Synchronized CallKit microphone mute state with the actual call mute state.
524

625
## 0.8.4
726

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.4
31-
stream_video_flutter: ^0.8.4
32-
stream_video_push_notification: ^0.8.4
30+
stream_video: ^0.9.0
31+
stream_video_flutter: ^0.9.0
32+
stream_video_push_notification: ^0.9.0
3333
stream_webrtc_flutter: ^1.0.1
3434

3535
dependency_overrides:

packages/stream_video_flutter/ios/stream_video_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_flutter'
7-
s.version = '0.8.3'
7+
s.version = '0.9.0'
88
s.summary = 'Official Flutter Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Flutter Plugin for 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.8.4
4+
version: 0.9.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
@@ -23,7 +23,7 @@ dependencies:
2323
permission_handler: ^11.3.1
2424
plugin_platform_interface: ^2.1.8
2525
rate_limiter: ^1.0.0
26-
stream_video: ^0.8.4
26+
stream_video: ^0.9.0
2727
stream_webrtc_flutter: ^1.0.1
2828
visibility_detector: ^0.4.0+2
2929

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
## 0.0.1
1+
## 0.9.0
22

3-
* TODO: Describe initial release.
3+
✅ Added
4+
* Introducing noise cancellation support to enhance call audio quality. Implement this feature easily by following our [documentation](https://getstream.io/video/docs/flutter/guides/noise-cancellation/).

packages/stream_video_noise_cancellation/ios/stream_video_noise_cancellation.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_noise_cancellation'
7-
s.version = '0.8.3'
7+
s.version = '0.9.0'
88
s.summary = 'Official Noise Cancellation Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Noise Cancellation Plugin for Stream Video.

0 commit comments

Comments
 (0)