Skip to content

Commit 58cd024

Browse files
authored
Release v1.3.1 (#1192)
1 parent 7e0a27d commit 58cd024

22 files changed

Lines changed: 51 additions & 34 deletions

File tree

dogfooding/pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_dogfooding
2-
version: 2.2.3+1
2+
version: 2.3.1+1
33
publish_to: none
44
description: Flutter Dogfooding App to showcase Video SDK.
55

@@ -37,11 +37,11 @@ dependencies:
3737
share_plus: ^11.0.0
3838
shared_preferences: ^2.5.3
3939
stream_chat_flutter: ^9.17.0
40-
stream_video_filters: ^1.3.0
41-
stream_video_flutter: ^1.3.0
42-
stream_video_noise_cancellation: ^1.3.0
43-
stream_video_push_notification: ^1.3.0
44-
stream_video_screen_sharing: ^1.3.0
40+
stream_video_filters: ^1.3.1
41+
stream_video_flutter: ^1.3.1
42+
stream_video_noise_cancellation: ^1.3.1
43+
stream_video_push_notification: ^1.3.1
44+
stream_video_screen_sharing: ^1.3.1
4545

4646
dependency_overrides:
4747
stream_video:

melos.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ command:
2323
share_plus: ^11.0.0
2424
stream_chat_flutter: ^9.17.0
2525
stream_webrtc_flutter: ^2.2.6
26-
stream_video_flutter: ^1.3.0
27-
stream_video_noise_cancellation: ^1.3.0
28-
stream_video_push_notification: ^1.3.0
29-
stream_video_screen_sharing: ^1.3.0
26+
stream_video_flutter: ^1.3.1
27+
stream_video_noise_cancellation: ^1.3.1
28+
stream_video_push_notification: ^1.3.1
29+
stream_video_screen_sharing: ^1.3.1
3030

3131
scripts:
3232
postclean:

packages/stream_video/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Upcoming
1+
## 1.3.1
22

33
### 🐞 Fixed
44
* Reverted iOS audio session release on call leave ([#1155](https://github.com/GetStream/stream-video-flutter/pull/1155)) due to reports of broken audio playout on some iOS sessions.

packages/stream_video/lib/globals.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'package:stream_webrtc_flutter/stream_webrtc_flutter.dart' as webrtc;
44
import 'protobuf/video/sfu/models/models.pb.dart';
55

66
const String streamSdkName = 'stream-flutter';
7-
const String streamVideoVersion = '1.3.0';
7+
const String streamVideoVersion = '1.3.1';
88
const String openapiModelsVersion = '219.11.0';
99
const String protocolModelsVersion = '1.46.1';
1010
const String androidWebRTCVersion = webrtc.androidWebRTCVersion;

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: 1.3.0
4+
version: 1.3.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_filters/CHANGELOG.md

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

packages/stream_video_filters/ios/stream_video_filters.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_filters'
7-
s.version = '0.9.6'
7+
s.version = '1.3.1'
88
s.summary = 'Official Video Filters Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Video Filters Plugin for Stream Video.

packages/stream_video_filters/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_filters
22
description: The Official package for Stream Video, providing video filters
33
feature for video calls.
4-
version: 1.3.0
4+
version: 1.3.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
@@ -14,7 +14,7 @@ dependencies:
1414
flutter:
1515
sdk: flutter
1616
plugin_platform_interface: ^2.0.2
17-
stream_video: ^1.3.0
17+
stream_video: ^1.3.1
1818
stream_webrtc_flutter: ^2.2.6
1919

2020
dev_dependencies:

packages/stream_video_flutter/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.3.1
2+
3+
### 🐞 Fixed
4+
* Reverted iOS audio session release on call leave ([#1155](https://github.com/GetStream/stream-video-flutter/pull/1155)) due to reports of broken audio playout on some iOS sessions.
5+
* Improved SFU join, recovery and migration logic to reduce failed joins with reconnect loops when joining full or shutting-down SFU
6+
* Fixed race condition in `Call.join` when another connect is already in progress, with proper timeout handling.
7+
* Fixed `consumeAndAcceptActiveCall` to ensure the coordinator WS is connected before consuming incoming calls during cold start.
8+
19
## 1.3.0
210

311
### ✅ Added

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ dependencies:
2828
rxdart: ^0.28.0
2929
share_plus: ^11.0.0
3030
shared_preferences: ^2.5.3
31-
stream_video: ^1.3.0
32-
stream_video_flutter: ^1.3.0
33-
stream_video_push_notification: ^1.3.0
31+
stream_video: ^1.3.1
32+
stream_video_flutter: ^1.3.1
33+
stream_video_push_notification: ^1.3.1
3434
stream_webrtc_flutter: ^2.2.6
3535

3636
dependency_overrides:

0 commit comments

Comments
 (0)