Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions dogfooding/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: flutter_dogfooding
version: 2.2.1+1
version: 2.2.3+1
publish_to: none
description: Flutter Dogfooding App to showcase Video SDK.

Expand Down Expand Up @@ -37,11 +37,11 @@ dependencies:
share_plus: ^11.0.0
shared_preferences: ^2.5.3
stream_chat_flutter: ^9.17.0
stream_video_filters: ^1.2.2
stream_video_flutter: ^1.2.2
stream_video_noise_cancellation: ^1.2.2
stream_video_push_notification: ^1.2.2
stream_video_screen_sharing: ^1.2.2
stream_video_filters: ^1.2.3
stream_video_flutter: ^1.2.3
stream_video_noise_cancellation: ^1.2.3
stream_video_push_notification: ^1.2.3
stream_video_screen_sharing: ^1.2.3

dependency_overrides:
stream_video:
Expand Down
10 changes: 5 additions & 5 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ command:
share_plus: ^11.0.0
stream_chat_flutter: ^9.17.0
stream_webrtc_flutter: ^2.2.4
stream_video: ^1.2.2
stream_video_flutter: ^1.2.2
stream_video_noise_cancellation: ^1.2.2
stream_video_push_notification: ^1.2.2
stream_video_screen_sharing: ^1.2.2
stream_video: ^1.2.3
stream_video_flutter: ^1.2.3
stream_video_noise_cancellation: ^1.2.3
stream_video_push_notification: ^1.2.3
stream_video_screen_sharing: ^1.2.3

scripts:
postclean:
Expand Down
4 changes: 1 addition & 3 deletions packages/stream_video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
## Upcoming
## 1.2.3

### ⚡ Performance

* Improved `call.leave()` performance

### 🐞 Fixed

* Fixed race condition where remote tracks could arrive before participant join events, causing track state to be lost.
* Improved reconnection reliability:
* Added exponential backoff with jitter to fast reconnect attempts.
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/lib/globals.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:stream_webrtc_flutter/stream_webrtc_flutter.dart' as webrtc;
import 'protobuf/video/sfu/models/models.pb.dart';

const String streamSdkName = 'stream-flutter';
const String streamVideoVersion = '1.2.2';
const String streamVideoVersion = '1.2.3';
const String openapiModelsVersion = '202.0.0';
const String protocolModelsVersion = '1.40.1';
const String androidWebRTCVersion = webrtc.androidWebRTCVersion;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import 'package:stream_webrtc_flutter/stream_webrtc_flutter.dart' as rtc;
import 'package:stream_webrtc_flutter/stream_webrtc_flutter.dart';

import '../../stream_video.dart';
import '../webrtc/model/stats/rtc_audio_source.dart';
import '../webrtc/model/stats/rtc_stats_mapper.dart';

class AudioRecognitionWebRTC implements AudioRecognition {
Expand Down
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: 1.2.2
version: 1.2.3
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
2 changes: 0 additions & 2 deletions packages/stream_video/test/src/call/call_leave_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import 'dart:async';

import 'package:flutter_test/flutter_test.dart';
import 'package:internet_connection_checker_plus/internet_connection_checker_plus.dart';
import 'package:mocktail/mocktail.dart';
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_filters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.2.3
* Sync version with `stream_video_flutter` 1.2.3

## 1.2.2
* Sync version with `stream_video_flutter` 1.2.2

Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_filters/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: stream_video_filters
description: The Official package for Stream Video, providing video filters
feature for video calls.
version: 1.2.2
version: 1.2.3
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 @@ -14,7 +14,7 @@ dependencies:
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.2
stream_video: ^1.2.2
stream_video: ^1.2.3
stream_webrtc_flutter: ^2.2.4

dev_dependencies:
Expand Down
7 changes: 6 additions & 1 deletion packages/stream_video_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
## Upcoming
## 1.2.3

### ⚡ Performance
* Improved `call.leave()` performance

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

### 🐞 Fixed
* Fixed race condition where remote tracks could arrive before participant join events, causing track state to be lost.
* Improved reconnection reliability:
* Added exponential backoff with jitter to fast reconnect attempts.
* Fixed fast reconnect deadline check to correctly trigger fallback to rejoin.
* Fixed network availability verification during subsequent fast reconnect attempts.
* Added `reconnectReason` to reconnect details for sfu logs.
* Fixed race condition where automatic ICE restart could interfere with fast reconnect, causing subscriber video to not recover.
* [iOS] Fixed audio session not being released when leaving a call, which prevented other audio packages from using the microphone.
* [iOS] Fixed CallKit event suppression to avoid repeated mute toggle loops.
* [Android] Fixed issues when accepting incoming calls from detached state (app exited via back button).
* [Android] Fixed incoming call notifications not showing when the app is in a detached state (e.g., after pressing the back button).
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:
rxdart: ^0.28.0
share_plus: ^11.0.0
shared_preferences: ^2.5.3
stream_video: ^1.2.2
stream_video_flutter: ^1.2.2
stream_video_push_notification: ^1.2.2
stream_video: ^1.2.3
stream_video_flutter: ^1.2.3
stream_video_push_notification: ^1.2.3
stream_webrtc_flutter: ^2.2.4

dependency_overrides:
Expand Down
4 changes: 2 additions & 2 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: 1.2.2
version: 1.2.3
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 @@ -24,7 +24,7 @@ dependencies:
plugin_platform_interface: ^2.1.8
rate_limiter: ^1.0.0
rxdart: ^0.28.0
stream_video: ^1.2.2
stream_video: ^1.2.3
stream_webrtc_flutter: ^2.2.4
visibility_detector: ^0.4.0+2

Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_noise_cancellation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.2.3
* Sync version with `stream_video_flutter` 1.2.3

## 1.2.2
* Sync version with `stream_video_flutter` 1.2.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ environment:
dependencies:
flutter:
sdk: flutter
stream_video: ^1.2.2
stream_video_noise_cancellation: ^1.2.2
stream_video: ^1.2.3
stream_video_noise_cancellation: ^1.2.3

dev_dependencies:
flutter_test:
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_noise_cancellation/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: stream_video_noise_cancellation
description: The Official package for Stream Video, providing noise cancellation
feature for video and audio calls.
version: 1.2.2
version: 1.2.3
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 @@ -14,7 +14,7 @@ dependencies:
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.2
stream_video: ^1.2.2
stream_video: ^1.2.3
stream_webrtc_flutter: ^2.2.4

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video_push_notification/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Upcoming
## 1.2.3

### ✅ Added
* Added `includesCallsInRecents` to iOS push configuration to control whether CallKit calls appear in Recents.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ environment:
dependencies:
flutter:
sdk: flutter
stream_video: ^1.2.2
stream_video_push_notification: ^1.2.2
stream_video: ^1.2.3
stream_video_push_notification: ^1.2.3

dev_dependencies:
flutter_test:
Expand Down
6 changes: 3 additions & 3 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: 1.2.2
version: 1.2.3
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 @@ -21,8 +21,8 @@ dependencies:
plugin_platform_interface: ^2.1.8
rxdart: ^0.28.0
shared_preferences: ^2.5.3
stream_video: ^1.2.2
stream_video_flutter: ^1.2.2
stream_video: ^1.2.3
stream_video_flutter: ^1.2.3
stream_webrtc_flutter: ^2.2.4
uuid: ^4.5.1

Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_screen_sharing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.2.3
* Sync version with `stream_video_flutter` 1.2.3

## 1.2.2
* Sync version with `stream_video_flutter` 1.2.2

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video_screen_sharing/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: stream_video_screen_sharing
description: >
Official Screen Sharing Plugin for Stream Video Flutter that enables sharing
device screens during video calls.
version: 1.2.2
version: 1.2.3
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
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ packages:
sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
url: "https://pub.dev"
source: hosted
version: "1.2.2"
Copy link
Member

@xsahil03x xsahil03x Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems unrelated and theres no version: 1.2.3 available

version: "1.2.3"
typed_data:
dependency: transitive
description:
Expand Down
Loading