[path_provider, video_player] Tweak pubspecs to pass bulk analysis. (#2959)

diff --git a/packages/path_provider/path_provider_macos/example/pubspec.yaml b/packages/path_provider/path_provider_macos/example/pubspec.yaml
index 1ba991d..aaa6842 100644
--- a/packages/path_provider/path_provider_macos/example/pubspec.yaml
+++ b/packages/path_provider/path_provider_macos/example/pubspec.yaml
@@ -4,7 +4,11 @@
 dependencies:
   flutter:
     sdk: flutter
-  path_provider: any
+  path_provider: ^1.6.14
+
+# path_provider_macos is endorsed, so we need to add it to dependency_overrides
+# to depend on it from path:
+dependency_overrides:
   path_provider_macos:
     path: ../
 
diff --git a/packages/video_player/video_player/CHANGELOG.md b/packages/video_player/video_player/CHANGELOG.md
index 1fdfad6..ccc5a63 100644
--- a/packages/video_player/video_player/CHANGELOG.md
+++ b/packages/video_player/video_player/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.10.12+1
+
+* Depend on the version of `video_player_platform_interface` that contains the new `VideoPlayerOptions` class.
+
 ## 0.10.12
 
 * Introduce VideoPlayerOptions to set the audio mix mode.
diff --git a/packages/video_player/video_player/pubspec.yaml b/packages/video_player/video_player/pubspec.yaml
index a62f6f0..d107264 100644
--- a/packages/video_player/video_player/pubspec.yaml
+++ b/packages/video_player/video_player/pubspec.yaml
@@ -4,7 +4,7 @@
 # 0.10.y+z is compatible with 1.0.0, if you land a breaking change bump
 # the version to 2.0.0.
 # See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
-version: 0.10.12
+version: 0.10.12+1
 homepage: https://github.com/flutter/plugins/tree/master/packages/video_player/video_player
 
 flutter:
@@ -19,8 +19,8 @@
         default_package: video_player_web
 
 dependencies:
-  meta: "^1.0.5"
-  video_player_platform_interface: ^2.0.0
+  meta: ^1.0.5
+  video_player_platform_interface: ^2.1.0
   # The design on https://flutter.dev/go/federated-plugins was to leave
   # this constraint as "any". We cannot do it right now as it fails pub publish
   # validation, so we set a ^ constraint.