Skip to content

Commit 774e8d3

Browse files
authored
release: v0.3.2 (#581)
1 parent d81d0ed commit 774e8d3

File tree

9 files changed

+47
-20
lines changed

9 files changed

+47
-20
lines changed

dogfooding/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ dependencies:
2828
share_plus: ^7.1.0
2929
shared_preferences: ^2.2.0
3030
stream_chat_flutter: ^8.0.0-beta.1
31-
stream_video_flutter: ^0.3.1
32-
stream_video_push_notification: ^0.3.1
31+
stream_video_flutter: ^0.3.2
32+
stream_video_push_notification: ^0.3.2
3333
uni_links: ^0.5.1
3434

3535
dev_dependencies:

packages/stream_video/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.3.2
2+
3+
🐞 Fixed
4+
5+
* Various fixes to call ringing and push notifications.
6+
- Fixes call ringing cancellation when app is terminated on iOS (requires additional setup - check Step 6 of the [APNS integration](https://getstream.io/video/docs/flutter/advanced/adding_ringing_and_callkit/#integrating-apns-for-ios)) in our documentation.
7+
- Fixes late push notification handling on Android, where already ended call was ringing if the device was offline and the push was delivered with a delay.
8+
- Fixes call ringing cancellation when caller timed out while calling
9+
* Fixed action tap callback on Android call notification.
10+
* Fixes possible crashes for Android SDKs versions <26.
11+
* Fixed screen sharing on iOS when screen sharing mode was switched between `in-app` and `broadcast`.
12+
* Changed the version range of `intl` package to >=0.18.1 <=0.19.0 because it was causing isses with other packages.
13+
14+
✅ Added
15+
16+
* Added `custom` field to `CallParticipantState` with custom user data.
17+
118
## 0.3.1
219

320
* Important: Fixes crash for CallKit on iOS.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
3-
const String streamVideoVersion = '0.3.1';
3+
const String streamVideoVersion = '0.3.2';

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.3.1
4+
version: 0.3.2
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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
## Upcoming
1+
## 0.3.2
22

33
🐞 Fixed
44

5-
* Various fixes to call ringing and push notifications
6-
- fixes call ringing cancelation when app is terminated on iOS (requires additional setup - check Step 6 of the [APNS integration](https://getstream.io/video/docs/flutter/advanced/adding_ringing_and_callkit/#integrating-apns-for-ios)) in our documentations
7-
- fixes late push notification handling on Android, where already ended call was ringing if the device was offline and the push was delivered with a delay
8-
- fixes call ringing cancelation when caller timed out while calling
9-
* Fixed background image for incoming/outgoing call screens when `participant.image` is invalid
10-
* Fixed action tap callback on Android call notification
11-
* Fixes possible crashes for Android SDKs versions <26
12-
* Fixed screen sharing on iOS when screen sharing mode was switched between `in-app` and `broadcast`
13-
* Changed the version range of `intl` package to >=0.18.1 <=0.19.0 because it was causing isses with other packages
5+
* Various fixes to call ringing and push notifications.
6+
- Fixes call ringing cancellation when app is terminated on iOS (requires additional setup - check Step 6 of the [APNS integration](https://getstream.io/video/docs/flutter/advanced/adding_ringing_and_callkit/#integrating-apns-for-ios)) in our documentation.
7+
- Fixes late push notification handling on Android, where already ended call was ringing if the device was offline and the push was delivered with a delay.
8+
- Fixes call ringing cancellation when caller timed out while calling
9+
* Fixed action tap callback on Android call notification.
10+
* Fixed background image for incoming/outgoing call screens when `participant.image` is invalid.
11+
* Fixes possible crashes for Android SDKs versions <26.
12+
* Fixed screen sharing on iOS when screen sharing mode was switched between `in-app` and `broadcast`.
13+
* Changed the version range of `intl` package to >=0.18.1 <=0.19.0 because it was causing isses with other packages.
1414

1515
✅ Added
1616

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ dependencies:
2424
intl: ^0.19.0
2525
path_provider: ^2.1.0
2626
share_plus: ^7.1.0
27-
stream_video: ^0.3.1
28-
stream_video_flutter: ^0.3.1
27+
stream_video: ^0.3.2
28+
stream_video_flutter: ^0.3.2
2929

3030
dev_dependencies:
3131
build_runner: ^2.4.6

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.3.1
4+
version: 0.3.2
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
@@ -19,7 +19,7 @@ dependencies:
1919
flutter_webrtc: ^0.9.47
2020
plugin_platform_interface: ^2.1.7
2121
rate_limiter: ^1.0.0
22-
stream_video: ^0.3.1
22+
stream_video: ^0.3.2
2323
visibility_detector: ^0.4.0+2
2424

2525
dev_dependencies:

packages/stream_video_push_notification/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.3.2
2+
3+
🐞 Fixed
4+
5+
* Various fixes to call ringing and push notifications.
6+
- Fixes call ringing cancellation when app is terminated on iOS (requires additional setup - check Step 6 of the [APNS integration](https://getstream.io/video/docs/flutter/advanced/adding_ringing_and_callkit/#integrating-apns-for-ios)) in our documentation.
7+
- Fixes late push notification handling on Android, where already ended call was ringing if the device was offline and the push was delivered with a delay.
8+
- Fixes call ringing cancellation when caller timed out while calling
9+
* Fixed action tap callback on Android call notification.
10+
111
## 0.3.1
212

313
* Important: Fixes crash for CallKit on iOS.

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.3.1
4+
version: 0.3.2
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.6
2323
rxdart: ^0.27.7
24-
stream_video: ^0.3.1
24+
stream_video: ^0.3.2
2525
uuid: ^4.2.1
2626

2727
dev_dependencies:

0 commit comments

Comments
 (0)