Skip to content

Commit a7894b9

Browse files
committed
Release v0.11.0
1 parent 0623534 commit a7894b9

File tree

14 files changed

+124
-47
lines changed

14 files changed

+124
-47
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.10.4+1
2+
version: 1.11.0+1
33
publish_to: none
44
description: Flutter Dogfooding App to showcase Video SDK.
55

@@ -37,10 +37,10 @@ dependencies:
3737
share_plus: ^11.0.0
3838
shared_preferences: ^2.5.3
3939
stream_chat_flutter: ^9.17.0
40-
stream_video_flutter: ^0.10.4
41-
stream_video_noise_cancellation: ^0.10.4
42-
stream_video_push_notification: ^0.10.4
43-
stream_video_screen_sharing: ^0.10.4
40+
stream_video_flutter: ^0.11.0
41+
stream_video_noise_cancellation: ^0.11.0
42+
stream_video_push_notification: ^0.11.0
43+
stream_video_screen_sharing: ^0.11.0
4444

4545
dependency_overrides:
4646
stream_video:

melos.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ command:
2323
share_plus: ^11.0.0
2424
stream_chat_flutter: ^9.17.0
2525
stream_webrtc_flutter: ^1.0.12
26-
stream_video: ^0.10.4
27-
stream_video_flutter: ^0.10.4
28-
stream_video_noise_cancellation: ^0.10.4
29-
stream_video_push_notification: ^0.10.4
30-
stream_video_screen_sharing: ^0.10.4
26+
stream_video: ^0.11.0
27+
stream_video_flutter: ^0.11.0
28+
stream_video_noise_cancellation: ^0.11.0
29+
stream_video_push_notification: ^0.11.0
30+
stream_video_screen_sharing: ^0.11.0
3131

3232
scripts:
3333
postclean:

packages/stream_video/CHANGELOG.md

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,45 @@
1-
## Upcoming
1+
## 0.11.0
22

33
🚧 Build breaking changes
44

5-
> Note: This release has breaking changes for Android.
6-
> - compileSDK 36 for Android part
5+
> **Important:** This release includes breaking changes for Android development.
6+
>
7+
> **Android Requirements:**
8+
> - Minimum compileSDK 36
79
> - Android Gradle Plugin >=8.12.1
810
> - Gradle wrapper >=8.13
911
> - Kotlin 2.2.0
1012
1113
* Updated minimum Flutter version to 3.32.0
12-
* Updated minimum supported dart SDK version to 3.8.0
14+
* Updated minimum supported Dart SDK version to 3.8.0
1315

1416
🚧 Breaking changes
15-
* `Call.stats` payload changed. It now emits
16-
`({ PeerConnectionStatsBundle publisherStatsBundle, PeerConnectionStatsBundle subscriberStatsBundle })`
17-
instead of the previous
18-
`({ CallStats publisherStats, CallStats subscriberStats })`.
19-
- The record field names have changed and the element types are different.
20-
* Stats-related fields were removed from `CallState` (e.g., `publisherStats`, `subscriberStats`, `latencyHistory`).
21-
- Use `call.stats` for periodic WebRTC stats updates, or
22-
- Access `call.statsReporter?.currentMetrics` for the latest aggregated metrics instead.
17+
18+
* **`Call.stats` payload structure changed**
19+
- **Before:** `({ CallStats publisherStats, CallStats subscriberStats })`
20+
- **Now:** `({ PeerConnectionStatsBundle publisherStatsBundle, PeerConnectionStatsBundle subscriberStatsBundle })`
21+
- The record field names and element types have changed to provide more detailed WebRTC statistics
22+
23+
* **Stats-related fields removed from `CallState`**
24+
- Removed: `publisherStats`, `subscriberStats`, `latencyHistory`
25+
- For periodic WebRTC stats: Use `call.stats` stream
26+
- For latest aggregated metrics: Use `call.statsReporter?.currentMetrics`
2327

2428
✅ Added
25-
* `StatsReporter` is now exposed on `Call` as `call.statsReporter`, providing `currentMetrics` — a consolidated view of publisher/subscriber WebRTC quality, client environment, and rolling histories (latency, battery level, thermal status).
26-
* Battery level and device thermal status are now tracked and available via `call.statsReporter?.currentMetrics`.
29+
30+
- New `call.statsReporter` property provides access to `currentMetrics`
31+
- Battery level tracking now available via `call.statsReporter?.currentMetrics`
32+
- Device thermal status monitoring for better call quality optimization
2733

2834
🔄 Changed
29-
* `Call.stats` continues to emit periodically, but the record field names/types changed as noted under breaking changes.
35+
36+
- `Call.stats` record field names and types updated as noted in breaking changes section
3037

3138
🐞 Fixed
32-
* Fixed an issue where the leave call operation could fail if the there were some issues in parsing custom data.
33-
* Fixed an issue where the Android audio configuration could not be applied correctly for participants joining the call
39+
40+
- Fixed leave call operation failures when parsing custom data encounters issues
41+
- [Android] Fixed custom Android audio configuration application for participants joining calls
42+
- [Android] Fixed video rendering issue where background textures were incorrectly blended with video content on devices using Impeller rendering engine
3443

3544
## 0.10.4
3645

packages/stream_video/lib/globals.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:meta/meta.dart';
22

33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.10.4';
4+
const String streamVideoVersion = '0.11.0';
55
const String openapiModelsVersion = '190.7.0';
66
const String protocolModelsVersion = '1.40.1';
77
const String androidWebRTCVersion = '1.3.8';

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.10.4
4+
version: 0.11.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: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,45 @@
1-
## Unreleased
1+
## 0.11.0
2+
3+
🚧 Build breaking changes
4+
5+
> **Important:** This release includes breaking changes for Android development.
6+
>
7+
> **Android Requirements:**
8+
> - Minimum compileSDK 36
9+
> - Android Gradle Plugin >=8.12.1
10+
> - Gradle wrapper >=8.13
11+
> - Kotlin 2.2.0
212
313
* Updated minimum Flutter version to 3.32.0
4-
* Updated minimum supported dart SDK version to 3.8.0
14+
* Updated minimum supported Dart SDK version to 3.8.0
15+
16+
🚧 Breaking changes
17+
18+
* **`Call.stats` payload structure changed**
19+
- **Before:** `({ CallStats publisherStats, CallStats subscriberStats })`
20+
- **Now:** `({ PeerConnectionStatsBundle publisherStatsBundle, PeerConnectionStatsBundle subscriberStatsBundle })`
21+
- The record field names and element types have changed to provide more detailed WebRTC statistics
22+
23+
* **Stats-related fields removed from `CallState`**
24+
- Removed: `publisherStats`, `subscriberStats`, `latencyHistory`
25+
- For periodic WebRTC stats: Use `call.stats` stream
26+
- For latest aggregated metrics: Use `call.statsReporter?.currentMetrics`
27+
28+
✅ Added
29+
30+
- New `call.statsReporter` property provides access to `currentMetrics`
31+
- Battery level tracking now available via `call.statsReporter?.currentMetrics`
32+
- Device thermal status monitoring for better call quality optimization
33+
34+
🔄 Changed
35+
36+
- `Call.stats` record field names and types updated as noted in breaking changes section
37+
38+
🐞 Fixed
39+
40+
- Fixed leave call operation failures when parsing custom data encounters issues
41+
- [Android] Fixed custom Android audio configuration application for participants joining calls
42+
- [Android] Fixed video rendering issue where background textures were incorrectly blended with video content on devices using Impeller rendering engine
543

644
## 0.10.4
745

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: ^11.0.0
2929
shared_preferences: ^2.5.3
30-
stream_video: ^0.10.4
31-
stream_video_flutter: ^0.10.4
32-
stream_video_push_notification: ^0.10.4
30+
stream_video: ^0.11.0
31+
stream_video_flutter: ^0.11.0
32+
stream_video_push_notification: ^0.11.0
3333
stream_webrtc_flutter: ^1.0.12
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.10.4
4+
version: 0.11.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
permission_handler: ^12.0.1
2323
plugin_platform_interface: ^2.1.8
2424
rate_limiter: ^1.0.0
25-
stream_video: ^0.10.4
25+
stream_video: ^0.11.0
2626
stream_webrtc_flutter: ^1.0.12
2727
visibility_detector: ^0.4.0+2
2828

packages/stream_video_noise_cancellation/CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
1-
## Unreleased
1+
## 0.11.0
2+
3+
🚧 Build breaking changes
4+
5+
> **Important:** This release includes breaking changes for Android development.
6+
>
7+
> **Android Requirements:**
8+
> - Minimum compileSDK 36
9+
> - Android Gradle Plugin >=8.12.1
10+
> - Gradle wrapper >=8.13
11+
> - Kotlin 2.2.0
212
313
* Updated minimum Flutter version to 3.32.0
4-
* Updated minimum supported dart SDK version to 3.8.0
14+
* Updated minimum supported Dart SDK version to 3.8.0
515

616
## 0.10.4
717
* Sync version with `stream_video_flutter` 0.10.4

packages/stream_video_noise_cancellation/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_noise_cancellation
22
description: The Official package for Stream Video, providing noise cancellation
33
feature for video and audio calls.
4-
version: 0.10.4
4+
version: 0.11.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
@@ -14,7 +14,7 @@ dependencies:
1414
flutter:
1515
sdk: flutter
1616
plugin_platform_interface: ^2.0.2
17-
stream_video: ^0.10.4
17+
stream_video: ^0.11.0
1818
stream_webrtc_flutter: ^1.0.12
1919

2020
dev_dependencies:

0 commit comments

Comments
 (0)