Skip to content

Commit

Permalink
Release v0.5.0 (#727)
Browse files Browse the repository at this point in the history
* Release v0.5.0

* tweaks

* tweaks

* changelog tweaks
  • Loading branch information
Brazol authored Aug 5, 2024
1 parent 091b012 commit 2781d81
Show file tree
Hide file tree
Showing 11 changed files with 64 additions and 17 deletions.
6 changes: 3 additions & 3 deletions dogfooding/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ dependencies:
share_plus: ^8.0.3
shared_preferences: ^2.2.0
stream_chat_flutter: ^8.0.0
stream_video_flutter: ^0.4.4
stream_video_push_notification: ^0.4.4
stream_video_screen_sharing: ^0.4.4
stream_video_flutter: ^0.5.0
stream_video_push_notification: ^0.5.0
stream_video_screen_sharing: ^0.5.0
uni_links: ^0.5.1

dev_dependencies:
Expand Down
20 changes: 20 additions & 0 deletions packages/stream_video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.5.0

✅ Added
* Picture in Picture (PiP) is now also supported on iOS. For more information, refer to the [documentation](https://getstream.io/video/docs/flutter/advanced/picture_in_picture/)

🐞 Fixed
* Fixed an issue where the microphone was being muted when the app was running in the background on Android versions greater than 14.

🚧 Breaking changes
* The implementation of `BroadcastSampleHandler`, used for `broadcast` screen-sharing mode on iOS is now moved from `stream_video_flutter` package to a separate [stream_video_screen_sharing](https://pub.dev/packages/stream_video_screen_sharing) package.
Migration steps:
- Add `stream_video_screen_sharing` dependency to your `pubspec.yaml` file
- Replace the import in `SampleHandler.swift` file from `stream_video_flutter` to `stream_video_screen_sharing`
- Replace the dependancy added to the extension target in `Podfile` file from `stream_video_flutter` to `stream_video_screen_sharing`

For complete screen-sharing guide please refer to the [documentaiton](https://getstream.io/video/docs/flutter/advanced/screen_sharing/)

* Previously deprecated `String` `type` parameters in `makeCall()` and `getCallRingingState()` methods are now removed. Use `StreamCallType` `callType` parameter now.
* Previously deprecated `events` and `coordinatorEvents` streams are now removed from `Call` class. Use `callEvents` instead.

## 0.4.4

✅ Added
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/lib/version.g.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is generated. Do not manually edit.
/// Current package version.
const String streamVideoVersion = '0.4.4';
const String streamVideoVersion = '0.5.0';
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
const String iosWebRTCVersion = 'libwebrtc-m125.6422.04';
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.4.4
version: 0.5.0
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
20 changes: 20 additions & 0 deletions packages/stream_video_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.5.0

✅ Added
* Picture in Picture (PiP) is now also supported on iOS. For more information, refer to the [documentation](https://getstream.io/video/docs/flutter/advanced/picture_in_picture/)

🐞 Fixed
* Fixed an issue where the microphone was being muted when the app was running in the background on Android versions greater than 14.

🚧 Breaking changes
* The implementation of `BroadcastSampleHandler`, used for `broadcast` screen-sharing mode on iOS is now moved from `stream_video_flutter` package to a separate [stream_video_screen_sharing](https://pub.dev/packages/stream_video_screen_sharing) package.
Migration steps:
- Add `stream_video_screen_sharing` dependency to your `pubspec.yaml` file
- Replace the import in `SampleHandler.swift` file from `stream_video_flutter` to `stream_video_screen_sharing`
- Replace the dependancy added to the extension target in `Podfile` file from `stream_video_flutter` to `stream_video_screen_sharing`

For complete screen-sharing guide please refer to the [documentaiton](https://getstream.io/video/docs/flutter/advanced/screen_sharing/)

* Previously deprecated `String` `type` parameters in `makeCall()` and `getCallRingingState()` methods are now removed. Use `StreamCallType` `callType` parameter now.
* Previously deprecated `events` and `coordinatorEvents` streams are now removed from `Call` class. Use `callEvents` instead.

## 0.4.4

✅ Added
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 @@ -28,9 +28,9 @@ dependencies:
path_provider: ^2.1.0
share_plus: ^7.1.0
shared_preferences: ^2.2.0
stream_video: ^0.4.4
stream_video_flutter: ^0.4.4
stream_video_push_notification: ^0.4.4
stream_video: ^0.5.0
stream_video_flutter: ^0.5.0
stream_video_push_notification: ^0.5.0

dependency_overrides:
stream_video:
Expand Down
6 changes: 3 additions & 3 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.4.4
version: 0.5.0
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 @@ -19,7 +19,7 @@ dependencies:
flutter_webrtc: ^0.11.6
plugin_platform_interface: ^2.1.7
rate_limiter: ^1.0.0
stream_video: ^0.4.4
stream_video: ^0.5.0
visibility_detector: ^0.4.0+2

dependency_overrides:
Expand Down Expand Up @@ -53,6 +53,6 @@ flutter:
topics:
- video
- audio
- audioroom
- screen-sharing
- webrtc
- livestream
5 changes: 5 additions & 0 deletions packages/stream_video_push_notification/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.5.0

🐞 Fixed
* Fixed an issue where the microphone was being muted when the app was running in the background on Android versions greater than 14.

## 0.4.4
* Sync version with `stream_video_flutter` 0.4.4

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.4.4
version: 0.5.0
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 @@ -22,7 +22,7 @@ dependencies:
meta: ^1.9.1
plugin_platform_interface: ^2.1.6
rxdart: ^0.27.7
stream_video: ^0.4.4
stream_video: ^0.5.0
uuid: ^4.2.1

dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_screen_sharing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## 0.4.3
* Screen sharing package added with `BroadcastSampleHandler` implementation for iOS broadcast extension
## 0.5.0
* Screen sharing package added with `BroadcastSampleHandler` implementation for iOS broadcast extension.
6 changes: 4 additions & 2 deletions packages/stream_video_screen_sharing/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: stream_video_screen_sharing
description: "Official Screen Sharing Plugin for Stream Video Flutter."
version: 0.4.3
homepage:
version: 0.5.0
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

environment:
sdk: '>=3.3.3 <4.0.0'
Expand Down

0 comments on commit 2781d81

Please sign in to comment.