Skip to content

Commit 9119d81

Browse files
authored
chore(repo): Release v1.2.3 (#1166)
* Release v1.2.3 * linter fixes * reverted unintended pubspec.lock change
1 parent 51cc267 commit 9119d81

20 files changed

Lines changed: 47 additions & 38 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.1+1
2+
version: 2.2.3+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.2.2
41-
stream_video_flutter: ^1.2.2
42-
stream_video_noise_cancellation: ^1.2.2
43-
stream_video_push_notification: ^1.2.2
44-
stream_video_screen_sharing: ^1.2.2
40+
stream_video_filters: ^1.2.3
41+
stream_video_flutter: ^1.2.3
42+
stream_video_noise_cancellation: ^1.2.3
43+
stream_video_push_notification: ^1.2.3
44+
stream_video_screen_sharing: ^1.2.3
4545

4646
dependency_overrides:
4747
stream_video:

melos.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ command:
2323
share_plus: ^11.0.0
2424
stream_chat_flutter: ^9.17.0
2525
stream_webrtc_flutter: ^2.2.4
26-
stream_video: ^1.2.2
27-
stream_video_flutter: ^1.2.2
28-
stream_video_noise_cancellation: ^1.2.2
29-
stream_video_push_notification: ^1.2.2
30-
stream_video_screen_sharing: ^1.2.2
26+
stream_video: ^1.2.3
27+
stream_video_flutter: ^1.2.3
28+
stream_video_noise_cancellation: ^1.2.3
29+
stream_video_push_notification: ^1.2.3
30+
stream_video_screen_sharing: ^1.2.3
3131

3232
scripts:
3333
postclean:

packages/stream_video/CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
## Upcoming
1+
## 1.2.3
22

33
### ⚡ Performance
4-
54
* Improved `call.leave()` performance
65

76
### 🐞 Fixed
8-
97
* Fixed race condition where remote tracks could arrive before participant join events, causing track state to be lost.
108
* Improved reconnection reliability:
119
* Added exponential backoff with jitter to fast reconnect attempts.

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.2.2';
7+
const String streamVideoVersion = '1.2.3';
88
const String openapiModelsVersion = '202.0.0';
99
const String protocolModelsVersion = '1.40.1';
1010
const String androidWebRTCVersion = webrtc.androidWebRTCVersion;

packages/stream_video/lib/src/audio_processing/audio_recognition_webrtc.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import 'package:stream_webrtc_flutter/stream_webrtc_flutter.dart' as rtc;
77
import 'package:stream_webrtc_flutter/stream_webrtc_flutter.dart';
88

99
import '../../stream_video.dart';
10-
import '../webrtc/model/stats/rtc_audio_source.dart';
1110
import '../webrtc/model/stats/rtc_stats_mapper.dart';
1211

1312
class AudioRecognitionWebRTC implements AudioRecognition {

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.2.2
4+
version: 1.2.3
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/test/src/call/call_leave_test.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import 'dart:async';
2-
31
import 'package:flutter_test/flutter_test.dart';
42
import 'package:internet_connection_checker_plus/internet_connection_checker_plus.dart';
53
import 'package:mocktail/mocktail.dart';

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.2.3
2+
* Sync version with `stream_video_flutter` 1.2.3
3+
14
## 1.2.2
25
* Sync version with `stream_video_flutter` 1.2.2
36

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.2.2
4+
version: 1.2.3
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.2.2
17+
stream_video: ^1.2.3
1818
stream_webrtc_flutter: ^2.2.4
1919

2020
dev_dependencies:

packages/stream_video_flutter/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1-
## Upcoming
1+
## 1.2.3
2+
3+
### ⚡ Performance
4+
* Improved `call.leave()` performance
25

36
### ✅ Added
47
* Added `includesCallsInRecents` to iOS push configuration to control whether CallKit calls appear in Recents.
58

69
### 🐞 Fixed
10+
* Fixed race condition where remote tracks could arrive before participant join events, causing track state to be lost.
711
* Improved reconnection reliability:
812
* Added exponential backoff with jitter to fast reconnect attempts.
913
* Fixed fast reconnect deadline check to correctly trigger fallback to rejoin.
1014
* Fixed network availability verification during subsequent fast reconnect attempts.
1115
* Added `reconnectReason` to reconnect details for sfu logs.
1216
* Fixed race condition where automatic ICE restart could interfere with fast reconnect, causing subscriber video to not recover.
17+
* [iOS] Fixed audio session not being released when leaving a call, which prevented other audio packages from using the microphone.
1318
* [iOS] Fixed CallKit event suppression to avoid repeated mute toggle loops.
1419
* [Android] Fixed issues when accepting incoming calls from detached state (app exited via back button).
1520
* [Android] Fixed incoming call notifications not showing when the app is in a detached state (e.g., after pressing the back button).

0 commit comments

Comments
 (0)