Skip to content

Commit aee41e9

Browse files
authored
Release v0.5.4 (#766)
1 parent 0fd06bb commit aee41e9

File tree

11 files changed

+42
-13
lines changed

11 files changed

+42
-13
lines changed

dogfooding/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ dependencies:
3131
share_plus: ^10.0.2
3232
shared_preferences: ^2.3.2
3333
stream_chat_flutter: ^8.1.0
34-
stream_video_flutter: ^0.5.3
35-
stream_video_push_notification: ^0.5.3
36-
stream_video_screen_sharing: ^0.5.3
34+
stream_video_flutter: ^0.5.4
35+
stream_video_push_notification: ^0.5.4
36+
stream_video_screen_sharing: ^0.5.4
3737
uni_links: ^0.5.1
3838

3939
dependency_overrides:

packages/stream_video/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
🚧 Breaking changes
77
* The regular push notification handling has been removed from iOS, providing more control over the implementation. VoIP push notifications will continue to be handled as before. For more details, refer to the documentation.
88

9+
* Dependency updates
10+
* Flutter SDK constraint updated to >=3.22.0 (Dart SDK to >=3.4.0 <4.0.0)
11+
* `internet_connection_checker` updated from ^1.0.0+1 to ^2.0.0
12+
* `rxdart` updated from ^0.27.7 to ^0.28.0
13+
* `web` updated from ^0.5.1 to ^1.0.0
14+
* `web_socket_channel` updated from ^2.4.0 to ^3.0.1
15+
916
## 0.5.3
1017

1118
🐞 Fixed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
3-
const String streamVideoVersion = '0.5.3';
3+
const String streamVideoVersion = '0.5.4';
44
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
55
const String iosWebRTCVersion = 'libwebrtc-m125.6422.04';

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.5.3
4+
version: 0.5.4
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@
66
🚧 Breaking changes
77
* The regular push notification handling has been removed from iOS, providing more control over the implementation. VoIP push notifications will continue to be handled as before. For more details, refer to the documentation.
88

9+
* Dependency updates
10+
* **Flutter SDK** constraint updated to >=3.22.0 (**Dart SDK** to >=3.4.0 <4.0.0)
11+
* **internet_connection_checker** updated from ^1.0.0+1 to ^2.0.0
12+
* **rxdart** updated from ^0.27.7 to ^0.28.0
13+
* **web** updated from ^0.5.1 to ^1.0.0
14+
* **web_socket_channel** updated from ^2.4.0 to ^3.0.1
15+
* **firebase_core updated** from ^2.15.1 to ^3.4.0
16+
* **firebase_messaging** updated from ^14.5.0 to ^15.1.1
17+
* **share_plus** updated from ^7.1.0 to ^10.0.2
18+
* **json_annotation** updated from ^4.8.0 to ^4.9.0
19+
920
## 0.5.3
1021

1122
🐞 Fixed

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
path_provider: ^2.1.0
2929
share_plus: ^10.0.2
3030
shared_preferences: ^2.2.0
31-
stream_video: ^0.5.3
32-
stream_video_flutter: ^0.5.3
33-
stream_video_push_notification: ^0.5.3
31+
stream_video: ^0.5.4
32+
stream_video_flutter: ^0.5.4
33+
stream_video_push_notification: ^0.5.4
3434

3535
dependency_overrides:
3636
stream_video:

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.5.3
4+
version: 0.5.4
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
@@ -20,7 +20,7 @@ dependencies:
2020
permission_handler: ^11.3.1
2121
plugin_platform_interface: ^2.1.8
2222
rate_limiter: ^1.0.0
23-
stream_video: ^0.5.3
23+
stream_video: ^0.5.4
2424
visibility_detector: ^0.4.0+2
2525

2626
dependency_overrides:

packages/stream_video_push_notification/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.5.4
2+
3+
* Dependency updates
4+
* **Flutter SDK** constraint updated to >=3.22.0 (**Dart SDK** to >=3.4.0 <4.0.0)
5+
* **json_annotation** updated from ^4.8.0 to ^4.9.0
6+
* **firebase_core updated** from ^2.15.1 to ^3.4.0
7+
* **firebase_messaging** updated from ^14.5.0 to ^15.1.1
8+
19
## 0.5.3
210
* Sync version with `stream_video_flutter` 0.5.3
311

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.5.3
4+
version: 0.5.4
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
@@ -22,7 +22,7 @@ dependencies:
2222
meta: ^1.9.1
2323
plugin_platform_interface: ^2.1.8
2424
rxdart: ^0.28.0
25-
stream_video: ^0.5.3
25+
stream_video: ^0.5.4
2626
uuid: ^4.2.1
2727

2828
dev_dependencies:

packages/stream_video_screen_sharing/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.5.4
2+
* **Flutter SDK** constraint updated to >=3.22.0 (**Dart SDK** to >=3.4.0 <4.0.0)
3+
14
## 0.5.3
25
* Sync version with `stream_video_flutter` 0.5.3
36

0 commit comments

Comments
 (0)