Skip to content

Commit 689e662

Browse files
authored
Release v0.7.1 (#829)
1 parent d81f476 commit 689e662

File tree

12 files changed

+40
-22
lines changed

12 files changed

+40
-22
lines changed

dogfooding/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_dogfooding
2-
version: 1.7.0+1
2+
version: 1.7.1+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.0.0
37-
stream_video_flutter: ^0.7.0
38-
stream_video_push_notification: ^0.7.0
39-
stream_video_screen_sharing: ^0.7.0
37+
stream_video_flutter: ^0.7.1
38+
stream_video_push_notification: ^0.7.1
39+
stream_video_screen_sharing: ^0.7.1
4040

4141
dependency_overrides:
4242
wakelock_plus: ^1.2.9

packages/stream_video/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.7.1
2+
3+
🐞 Fixed
4+
* Resolved an issue where media tracks were not being disabled or enabled correctly.
5+
* Fixed a problem causing anonymous users to fail when connecting and joining calls.
6+
17
## 0.7.0
28

39
🚧 Breaking changes
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.7.0';
4+
const String streamVideoVersion = '0.7.1';
55
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
66
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';

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.7.0
4+
version: 0.7.1
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: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1+
## 0.7.1
2+
3+
🐞 Fixed
4+
* Resolved an issue where media tracks were not being disabled or enabled correctly. [#828](https://github.com/GetStream/stream-video-flutter/pull/828)
5+
* Fixed a problem causing anonymous users to fail when connecting and joining calls. [#827](https://github.com/GetStream/stream-video-flutter/pull/827)
6+
17
## 0.7.0
28

39
🚧 Breaking changes
4-
* The package is now compatible with Gradle 8. The minimum required Java version is now 17. https://github.com/GetStream/stream-video-flutter/pull/820
5-
* Updated the `flutter_callkit_incoming` package to version 2.5.0, which also requires Java 17. https://github.com/GetStream/stream-video-flutter/pull/820
10+
* The package is now compatible with Gradle 8. The minimum required Java version is now 17. [#820](https://github.com/GetStream/stream-video-flutter/pull/820)
11+
* Updated the `flutter_callkit_incoming` package to version 2.5.0, which also requires Java 17. [#820](https://github.com/GetStream/stream-video-flutter/pull/820)
612
* The `resolution` parameter of `Call.setPreferredIncomingVideoResolution()` method changed type from `VideoResolution` to `VideoDimension`.
713
* The `Call.onPermissionRequest` callback changed the event type passed as an argument from `CoordinatorCallPermissionRequestEvent` to `StreamCallPermissionRequestEvent`
814

915
✅ Added
10-
* Added out-of-the-box support for blur background filters and image filters. As well as the option to create custom video filters. For complete documentation of those features please check [here.](https://getstream.io/video/docs/flutter/advanced/apply-video-filters/) https://github.com/GetStream/stream-video-flutter/pull/799
11-
* Added support for Closed Captions. https://github.com/GetStream/stream-video-flutter/pull/796
16+
* Added out-of-the-box support for blur background filters and image filters. As well as the option to create custom video filters. For complete documentation of those features please check [here.](https://getstream.io/video/docs/flutter/advanced/apply-video-filters/) [#799](https://github.com/GetStream/stream-video-flutter/pull/799)
17+
* Added support for Closed Captions. [#796](https://github.com/GetStream/stream-video-flutter/pull/796)
1218
* Listen to the `Call.closedCaptions` stream to overlay captions during your call.
1319
* Use `CallPreferences` to configure:
1420
* `closedCaptionsVisibilityDurationMs` for controlling how long captions are displayed.
@@ -17,11 +23,11 @@
1723
* Learn More:
1824
* Check the [guide](https://getstream.io/video/docs/flutter/closed-captions/) for integration steps.
1925
* Explore the [cookbook](https://getstream.io/video/docs/flutter/ui-cookbook/closed-captions/) for UI tips.
20-
* Dynamic codec negotiation during calls. https://github.com/GetStream/stream-video-flutter/pull/811
26+
* Dynamic codec negotiation during calls. [#811](https://github.com/GetStream/stream-video-flutter/pull/811)
2127

2228
🐞 Fixed
23-
* Fixed issues when ending the call while in Picture in Picture mode on Android. https://github.com/GetStream/stream-video-flutter/pull/822
24-
* Fixes rejecting ringing call when CallEnd, instead of CallDecline, event is triggered by CallKit during ringing. https://github.com/GetStream/stream-video-flutter/pull/824
29+
* Fixed issues when ending the call while in Picture in Picture mode on Android. [#822](https://github.com/GetStream/stream-video-flutter/pull/822)
30+
* Fixes rejecting ringing call when CallEnd, instead of CallDecline, event is triggered by CallKit during ringing. [#824](https://github.com/GetStream/stream-video-flutter/pull/824)
2531

2632
## 0.6.1
2733

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.7.0
31-
stream_video_flutter: ^0.7.0
32-
stream_video_push_notification: ^0.7.0
30+
stream_video: ^0.7.1
31+
stream_video_flutter: ^0.7.1
32+
stream_video_push_notification: ^0.7.1
3333
stream_webrtc_flutter: ^0.12.5+1
3434

3535
dependency_overrides:

packages/stream_video_flutter/lib/src/utils/extensions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extension ListAt<T extends Object> on List<T> {
3333

3434
/// Extensions on [Iterable].
3535
extension IterableExtension<T> on Iterable<T> {
36-
/// Insert any item<T> inBetween the list items
36+
/// Insert any [item] inBetween the list items
3737
List<T> insertBetween(T item) => expand((e) sync* {
3838
yield item;
3939
yield e;

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.7.0
4+
version: 0.7.1
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
@@ -20,7 +20,7 @@ dependencies:
2020
permission_handler: ^11.3.1
2121
plugin_platform_interface: ^2.1.8
2222
rate_limiter: ^1.0.0
23-
stream_video: ^0.7.0
23+
stream_video: ^0.7.1
2424
stream_webrtc_flutter: ^0.12.5+1
2525
visibility_detector: ^0.4.0+2
2626

packages/stream_video_push_notification/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.7.1
2+
* Sync version with `stream_video_flutter` 0.7.1
3+
14
## 0.7.0
25

36
🚧 Breaking changes

packages/stream_video_push_notification/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.7.0
4+
version: 0.7.1
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.7.0
24+
stream_video: ^0.7.1
2525
uuid: ^4.2.1
2626
shared_preferences: ^2.3.2
2727
stream_webrtc_flutter: ^0.12.5+1

0 commit comments

Comments
 (0)