Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dogfooding/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: flutter_dogfooding
version: 1.8.3+1
version: 1.8.4+1
publish_to: none
description: Flutter Dogfooding App to showcase Video SDK.

Expand Down Expand Up @@ -34,9 +34,9 @@ dependencies:
share_plus: ^10.0.2
shared_preferences: ^2.3.2
stream_chat_flutter: ^9.6.0
stream_video_flutter: ^0.8.3
stream_video_push_notification: ^0.8.3
stream_video_screen_sharing: ^0.8.3
stream_video_flutter: ^0.8.4
stream_video_push_notification: ^0.8.4
stream_video_screen_sharing: ^0.8.4

dependency_overrides:
just_audio_web: ^0.4.13
Expand Down
11 changes: 7 additions & 4 deletions packages/stream_video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
## Unreleased
## 0.8.4

🐞 Fixed
* (iOS) Fixed an issue where PiP will not stop when bringing app back to foreground
🔄 Changed
* Updated the `device_info_plus` dependency to support a wider range of versions and resolve potential conflicts.
* Deprecated the `setParticipantPinned()` method in the `Call` class — use `setParticipantPinnedLocally()` instead.
* Replaced the `isPinned` parameter in `CallParticipantState` with a `pin` object, which now differentiates between local and remote pinning.

✅ Added
* Added `membersLimit` parameter to `getOrCreate()` and `join()` methods in `Call` class to limit number of members listed in the response.
* Introduced a `membersLimit` parameter in the `getOrCreate()` and `join()` methods of the `Call` class to limit the number of members included in the response.
* Added `setParticipantPinnedForEveryone()`, allowing users with the required permissions to pin participants for all. The `setParticipantPinned()` method has been replaced with `setParticipantPinnedLocally()`, which, as before, only pins participants locally.

🔄 Changed
* Update stream_webrtc_flutter and device_info_plus dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/lib/globals.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:meta/meta.dart';

const String streamSdkName = 'stream-flutter';
const String streamVideoVersion = '0.8.3';
const String streamVideoVersion = '0.8.4';
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.8.3
version: 0.8.4
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand Down
12 changes: 9 additions & 3 deletions packages/stream_video_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
## Unreleased
## 0.8.4

🐞 Fixed
* (iOS) Fixed an issue where PiP will not stop when bringing app back to foreground
* (iOS) Fixed an issue where Picture-in-Picture (PiP) would not stop when bringing the app back to the foreground.

🔄 Changed
* Updated the `device_info_plus` dependency to support a wider range of versions and resolve potential conflicts.
* Deprecated the `setParticipantPinned()` method in the `Call` class — use `setParticipantPinnedLocally()` instead.
* Replaced the `isPinned` parameter in `CallParticipantState` with a `pin` object, which now differentiates between local and remote pinning.

✅ Added
* Added `membersLimit` parameter to `getOrCreate()` and `join()` methods in `Call` class to limit number of members listed in the response.
* Introduced a `membersLimit` parameter in the `getOrCreate()` and `join()` methods of the `Call` class to limit the number of members included in the response.
* Added `setParticipantPinnedForEveryone()`, allowing users with the required permissions to pin participants for all. The `setParticipantPinned()` method has been replaced with `setParticipantPinnedLocally()`, which, as before, only pins participants locally.

🔄 Changed
* Update stream_webrtc_flutter and device_info_plus dependencies
Expand Down
6 changes: 3 additions & 3 deletions packages/stream_video_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ dependencies:
path_provider: ^2.1.0
share_plus: ^10.0.2
shared_preferences: ^2.2.0
stream_video: ^0.8.3
stream_video_flutter: ^0.8.3
stream_video_push_notification: ^0.8.3
stream_video: ^0.8.4
stream_video_flutter: ^0.8.4
stream_video_push_notification: ^0.8.4
stream_webrtc_flutter: ^0.12.12+2

dependency_overrides:
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.8.3
version: 0.8.4
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand All @@ -23,7 +23,7 @@ dependencies:
permission_handler: ^11.3.1
plugin_platform_interface: ^2.1.8
rate_limiter: ^1.0.0
stream_video: ^0.8.3
stream_video: ^0.8.4
stream_webrtc_flutter: ^0.12.12+2
visibility_detector: ^0.4.0+2

Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_push_notification/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.8.4
* Sync version with `stream_video_flutter` 0.8.4

## 0.8.3
* Sync version with `stream_video_flutter` 0.8.3

Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_push_notification/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.8.3
version: 0.8.4
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand All @@ -21,7 +21,7 @@ dependencies:
meta: ^1.9.1
plugin_platform_interface: ^2.1.8
rxdart: ^0.28.0
stream_video: ^0.8.3
stream_video: ^0.8.4
uuid: ^4.2.1
shared_preferences: ^2.3.2
stream_webrtc_flutter: ^0.12.12+2
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_screen_sharing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.8.4
* Sync version with `stream_video_flutter` 0.8.4

## 0.8.3
* Sync version with `stream_video_flutter` 0.8.3

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video_screen_sharing/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: stream_video_screen_sharing
description: >
Official Screen Sharing Plugin for Stream Video Flutter that enables sharing device screens
during video calls.
version: 0.8.3
version: 0.8.4
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand Down