Skip to content

Commit 20cdb7d

Browse files
authored
Release v0.8.4 (#899)
1 parent 4c401e5 commit 20cdb7d

File tree

11 files changed

+36
-21
lines changed

11 files changed

+36
-21
lines changed

dogfooding/pubspec.yaml

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

@@ -34,9 +34,9 @@ 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.3
38-
stream_video_push_notification: ^0.8.3
39-
stream_video_screen_sharing: ^0.8.3
37+
stream_video_flutter: ^0.8.4
38+
stream_video_push_notification: ^0.8.4
39+
stream_video_screen_sharing: ^0.8.4
4040

4141
dependency_overrides:
4242
just_audio_web: ^0.4.13

packages/stream_video/CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
## Unreleased
1+
## 0.8.4
22

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

68
✅ Added
7-
* Added `membersLimit` parameter to `getOrCreate()` and `join()` methods in `Call` class to limit number of members listed in the response.
9+
* Introduced a `membersLimit` parameter in the `getOrCreate()` and `join()` methods of the `Call` class to limit the number of members included in the response.
10+
* 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.
811

912
🔄 Changed
1013
* Update stream_webrtc_flutter and device_info_plus dependencies

packages/stream_video/lib/globals.dart

+1-1
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.8.3';
4+
const String streamVideoVersion = '0.8.4';
55
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
66
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';
77

packages/stream_video/pubspec.yaml

+1-1
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.3
4+
version: 0.8.4
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

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
## Unreleased
1+
## 0.8.4
22

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

611
✅ Added
7-
* Added `membersLimit` parameter to `getOrCreate()` and `join()` methods in `Call` class to limit number of members listed in the response.
12+
* Introduced a `membersLimit` parameter in the `getOrCreate()` and `join()` methods of the `Call` class to limit the number of members included in the response.
13+
* 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.
814

915
🔄 Changed
1016
* Update stream_webrtc_flutter and device_info_plus dependencies

packages/stream_video_flutter/example/pubspec.yaml

+3-3
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.3
31-
stream_video_flutter: ^0.8.3
32-
stream_video_push_notification: ^0.8.3
30+
stream_video: ^0.8.4
31+
stream_video_flutter: ^0.8.4
32+
stream_video_push_notification: ^0.8.4
3333
stream_webrtc_flutter: ^0.12.12+2
3434

3535
dependency_overrides:

packages/stream_video_flutter/pubspec.yaml

+2-2
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.3
4+
version: 0.8.4
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.3
26+
stream_video: ^0.8.4
2727
stream_webrtc_flutter: ^0.12.12+2
2828
visibility_detector: ^0.4.0+2
2929

packages/stream_video_push_notification/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.8.4
2+
* Sync version with `stream_video_flutter` 0.8.4
3+
14
## 0.8.3
25
* Sync version with `stream_video_flutter` 0.8.3
36

packages/stream_video_push_notification/pubspec.yaml

+2-2
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.8.3
4+
version: 0.8.4
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
@@ -21,7 +21,7 @@ dependencies:
2121
meta: ^1.9.1
2222
plugin_platform_interface: ^2.1.8
2323
rxdart: ^0.28.0
24-
stream_video: ^0.8.3
24+
stream_video: ^0.8.4
2525
uuid: ^4.2.1
2626
shared_preferences: ^2.3.2
2727
stream_webrtc_flutter: ^0.12.12+2

packages/stream_video_screen_sharing/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.8.4
2+
* Sync version with `stream_video_flutter` 0.8.4
3+
14
## 0.8.3
25
* Sync version with `stream_video_flutter` 0.8.3
36

packages/stream_video_screen_sharing/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: stream_video_screen_sharing
22
description: >
33
Official Screen Sharing Plugin for Stream Video Flutter that enables sharing device screens
44
during video calls.
5-
version: 0.8.3
5+
version: 0.8.4
66
homepage: https://getstream.io/video/
77
repository: https://github.com/GetStream/stream-video-flutter
88
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

0 commit comments

Comments
 (0)