Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.5.1 #745

Merged
merged 3 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/stream_video_flutter_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: stream_video_flutter_workflow

env:
FLUTTER_CHANNEL: stable
FLUTTER_VERSION: 3.19.5
FLUTTER_VERSION: 3.22.3
ENV_PROPERTIES: ${{ secrets.ENV_PROPERTIES }}

on:
Expand Down
12 changes: 0 additions & 12 deletions dogfooding/lib/app/app_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ class _StreamDogFoodingAppContentState
extends State<StreamDogFoodingAppContent> {
late final _userAuthController = locator.get<UserAuthController>();

late final _logger = taggedLogger(tag: 'StreamDogFoodingAppContent');
late final _router = initRouter(_userAuthController);

final _compositeSubscription = CompositeSubscription();
Expand Down Expand Up @@ -388,14 +387,3 @@ class _StreamDogFoodingAppContentState
);
}
}

extension on Subscriptions {
void addAll<T>(Iterable<StreamSubscription<T>?> subscriptions) {
for (var i = 0; i < subscriptions.length; i++) {
final subscription = subscriptions.elementAt(i);
if (subscription == null) continue;

add(i + 100, subscription);
}
}
}
2 changes: 1 addition & 1 deletion dogfooding/lib/widgets/environment_switcher.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class _EnvironmentSwitcherState extends State<EnvironmentSwitcher> {
style: const MenuStyle(
alignment: Alignment.bottomLeft,
backgroundColor:
MaterialStatePropertyAll(AppColorPalette.backgroundColor),
WidgetStatePropertyAll(AppColorPalette.backgroundColor),
),
alignmentOffset: const Offset(-70, 0),
builder: (
Expand Down
6 changes: 3 additions & 3 deletions dogfooding/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ dependencies:
share_plus: ^8.0.3
shared_preferences: ^2.2.0
stream_chat_flutter: ^8.0.0
stream_video_flutter: ^0.5.0
stream_video_push_notification: ^0.5.0
stream_video_screen_sharing: ^0.5.0
stream_video_flutter: ^0.5.1
stream_video_push_notification: ^0.5.1
stream_video_screen_sharing: ^0.5.1
uni_links: ^0.5.1

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

✅ Added
* Added `backstage` parameter to `call.getOtCreate()` method with backstage settings. For more information, refer to the [documentation](https://getstream.io/video/docs/flutter/joining-and-creating-calls/#backstage-setup)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
// ignore_for_file: comment_references

import 'package:stream_video/open_api/video/coordinator/api.dart';

import '../../open_api/video/coordinator/api.dart' as open;
import '../models/call_cid.dart';
import '../models/call_metadata.dart';
Expand Down Expand Up @@ -67,7 +65,7 @@ abstract class CoordinatorClient {
bool? notify,
bool? video,
DateTime? startsAt,
CallSettingsRequest? settingsOverride,
open.CallSettingsRequest? settingsOverride,
Map<String, Object> custom = const {},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,13 @@ import '../../errors/video_error.dart';
import '../../errors/video_error_composer.dart';
import '../../latency/latency_service.dart';
import '../../location/location_service.dart';
import '../../logger/impl/tagged_logger.dart';
import '../../models/call_cid.dart';
import '../../models/call_created_data.dart';
import '../../models/call_metadata.dart';
import '../../models/call_permission.dart';
import '../../models/call_reaction.dart';
import '../../models/call_received_created_data.dart';
import '../../models/call_received_data.dart';
import '../../models/call_settings.dart';
import '../../models/guest_created_data.dart';
import '../../models/push_device.dart';
import '../../models/push_provider.dart';
import '../../models/queried_calls.dart';
import '../../models/queried_members.dart';
import '../../models/user_info.dart';
import '../../retry/retry_policy.dart';
import '../../shared_emitter.dart';
import '../../state_emitter.dart';
import '../../token/token.dart';
import '../../token/token_manager.dart';
import '../../utils/none.dart';
import '../../utils/result.dart';
import '../../utils/standard.dart';
import '../coordinator_client.dart';
import '../models/coordinator_connection_state.dart';
import '../models/coordinator_events.dart';
import '../models/coordinator_models.dart';
import 'coordinator_ws.dart';
import 'open_api_extensions.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/lib/version.g.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is generated. Do not manually edit.
/// Current package version.
const String streamVideoVersion = '0.5.0';
const String streamVideoVersion = '0.5.1';
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
const String iosWebRTCVersion = 'libwebrtc-m125.6422.04';
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: 0.5.0
version: 0.5.1
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 packages/stream_video_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Upcoming
## 0.5.1

✅ Added
* Added `backstage` parameter to `call.getOtCreate()` method with backstage settings. For more information, refer to the [documentation](https://getstream.io/video/docs/flutter/joining-and-creating-calls/#backstage-setup)
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:
path_provider: ^2.1.0
share_plus: ^7.1.0
shared_preferences: ^2.2.0
stream_video: ^0.5.0
stream_video_flutter: ^0.5.0
stream_video_push_notification: ^0.5.0
stream_video: ^0.5.1
stream_video_flutter: ^0.5.1
stream_video_push_notification: ^0.5.1

dependency_overrides:
stream_video:
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: 0.5.0
version: 0.5.1
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 @@ -19,7 +19,7 @@ dependencies:
flutter_webrtc: ^0.11.6
plugin_platform_interface: ^2.1.7
rate_limiter: ^1.0.0
stream_video: ^0.5.0
stream_video: ^0.5.1
visibility_detector: ^0.4.0+2

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

## 0.5.0

🐞 Fixed
Expand Down
4 changes: 2 additions & 2 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: 0.5.0
version: 0.5.1
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 @@ -22,7 +22,7 @@ dependencies:
meta: ^1.9.1
plugin_platform_interface: ^2.1.6
rxdart: ^0.27.7
stream_video: ^0.5.0
stream_video: ^0.5.1
uuid: ^4.2.1

dev_dependencies:
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,2 +1,5 @@
## 0.5.1
* Sync version with `stream_video_flutter` 0.5.1

## 0.5.0
* Screen sharing package added with `BroadcastSampleHandler` implementation for iOS broadcast extension.
2 changes: 1 addition & 1 deletion packages/stream_video_screen_sharing/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stream_video_screen_sharing
description: "Official Screen Sharing Plugin for Stream Video Flutter."
version: 0.5.0
version: 0.5.1
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
Loading