Skip to content
Closed
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
4 changes: 4 additions & 0 deletions packages/video_player/video_player/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

* Updates minimum supported SDK version to Flutter 3.32/Dart 3.8.

## 2.10.2

* Fixes a `MediaCodecVideoRenderer` crash on some Android devices by updating platform dependencies to their latest stable versions.

## 2.10.1

* Fixes a bug where the `VideoPlayer` widget and `VideoProgressIndicator` widget would stop updating after GlobalKey reparenting.
Expand Down
10 changes: 5 additions & 5 deletions packages/video_player/video_player/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for displaying inline video with other Flutter
widgets on Android, iOS, macOS and web.
repository: https://github.com/flutter/packages/tree/main/packages/video_player/video_player
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
version: 2.10.1
version: 2.10.2

environment:
sdk: ^3.8.0
Expand All @@ -25,10 +25,10 @@ dependencies:
flutter:
sdk: flutter
html: ^0.15.0
video_player_android: ^2.8.1
video_player_avfoundation: ^2.7.0
video_player_platform_interface: ^6.3.0
video_player_web: ^2.1.0
video_player_android: ^2.8.17

Choose a reason for hiding this comment

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

high

It seems the version for video_player_android is not the latest available in this branch. The pubspec.yaml for video_player_android indicates version 2.8.18, but this file updates the dependency to ^2.8.17. To ensure the latest fixes are included, this should be updated to ^2.8.18.

  video_player_android: ^2.8.18

video_player_avfoundation: ^2.8.6
video_player_platform_interface: ^6.6.0
video_player_web: ^2.4.0

dev_dependencies:
flutter_test:
Expand Down