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

[video_player] Endorse macOS #5021

Merged
merged 2 commits into from
Sep 28, 2023

Conversation

stuartmorgan
Copy link
Contributor

@stuartmorgan stuartmorgan commented Sep 28, 2023

Endorses the macOS implementation of video_player, updating the constraint of the existing video_player_avfoundation dependency to ensure macOS support is present. Adds macOS support to the example, and adds macOS discussion to the README.

This is the first macOS plugin with multiple integration test files, which turned up a bug in flutter test, so this also includes a repo tooling change to work around that bug for now by running each integration test file separately on macOS (as we already have to do with flutter drive on web).

Fixes flutter/flutter#41688

Pre-launch Checklist

  • I read the Contributor Guide and followed the process outlined there for submitting PRs.
  • I read the Tree Hygiene wiki page, which explains my responsibilities.
  • I read and followed the relevant style guides and ran the auto-formatter. (Unlike the flutter/flutter repo, the flutter/packages repo does use dart format.)
  • I signed the CLA.
  • The title of the PR starts with the name of the package surrounded by square brackets, e.g. [shared_preferences]
  • I listed at least one issue that this PR fixes in the description above.
  • I updated pubspec.yaml with an appropriate new version according to the pub versioning philosophy, or this PR is exempt from version changes.
  • I updated CHANGELOG.md to add a description of the change, following repository CHANGELOG style.
  • I updated/added relevant documentation (doc comments with ///).
  • I added new tests to check the change I am making, or this PR is test-exempt.
  • All existing and new tests are passing.

Endorses the macOS implementation of `video_player`, updating the
constraint of the existing `video_player_avfoundation` dependency to
ensure macOS support is present. Adds macOS support to the example, and
adds macOS discussion to the README.

Fixes flutter/flutter#41688
@flutter-dashboard
Copy link

It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie or stuartmorgan on the #hackers channel in Chat (don't just cc them here, they won't see it! Use Discord!).

If you are not sure if you need tests, consider this rule of thumb: the purpose of a test is to make sure someone doesn't accidentally revert the fix. Ask yourself, is there anything in your PR that you feel it is important we not accidentally revert back to how it was before your fix?

Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing.

@stuartmorgan

This comment was marked as outdated.

@stuartmorgan stuartmorgan added the autosubmit Merge PR when tree becomes green via auto submit App label Sep 28, 2023
@stuartmorgan
Copy link
Contributor Author

Overriding stale commit queue check.

@stuartmorgan stuartmorgan added the emergency Override tree-status signal (land even with closed tree), combine with the autosubmit label. label Sep 28, 2023
@auto-submit auto-submit bot merged commit d0e9a0e into flutter:main Sep 28, 2023
engine-flutter-autoroll added a commit to engine-flutter-autoroll/flutter that referenced this pull request Sep 29, 2023
auto-submit bot pushed a commit to flutter/flutter that referenced this pull request Sep 29, 2023
flutter/packages@c070b0a...d0e9a0e

2023-09-28 stuartmorgan@google.com [video_player] Endorse macOS (flutter/packages#5021)
2023-09-28 engine-flutter-autoroll@skia.org Manual roll Flutter from f92884c to ff4a0f6 (107 revisions) (flutter/packages#5011)
2023-09-28 stuartmorgan@google.com [camera] Fix Android autofocus state reading (flutter/packages#5025)
2023-09-28 engine-flutter-autoroll@skia.org Roll Flutter (stable) from 12fccda to ead4559 (1 revision) (flutter/packages#5022)
2023-09-28 49699333+dependabot[bot]@users.noreply.github.com Bump github/codeql-action from 2.21.8 to 2.21.9 (flutter/packages#5020)

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/flutter-packages-flutter-autoroll
Please CC flutter-ecosystem@google.com,rmistry@google.com on the revert to ensure that a human
is aware of the problem.

To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose

To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
@stuartmorgan stuartmorgan deleted the video-player-endorse-macos branch September 29, 2023 19:30
Mairramer pushed a commit to Mairramer/flutter that referenced this pull request Oct 10, 2023
flutter/packages@c070b0a...d0e9a0e

2023-09-28 stuartmorgan@google.com [video_player] Endorse macOS (flutter/packages#5021)
2023-09-28 engine-flutter-autoroll@skia.org Manual roll Flutter from f92884c to ff4a0f6 (107 revisions) (flutter/packages#5011)
2023-09-28 stuartmorgan@google.com [camera] Fix Android autofocus state reading (flutter/packages#5025)
2023-09-28 engine-flutter-autoroll@skia.org Roll Flutter (stable) from 12fccda to ead4559 (1 revision) (flutter/packages#5022)
2023-09-28 49699333+dependabot[bot]@users.noreply.github.com Bump github/codeql-action from 2.21.8 to 2.21.9 (flutter/packages#5020)

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/flutter-packages-flutter-autoroll
Please CC flutter-ecosystem@google.com,rmistry@google.com on the revert to ensure that a human
is aware of the problem.

To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose

To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
HugoOlthof pushed a commit to moneybird/packages that referenced this pull request Dec 13, 2023
Endorses the macOS implementation of `video_player`, updating the constraint of the existing `video_player_avfoundation` dependency to ensure macOS support is present. Adds macOS support to the example, and adds macOS discussion to the README.

This is the first macOS plugin with multiple integration test files, which turned up a bug in `flutter test`, so this also includes a repo tooling change to work around that bug for now by running each integration test file separately on macOS (as we already have to do with `flutter drive` on web).

Fixes flutter/flutter#41688
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
autosubmit Merge PR when tree becomes green via auto submit App emergency Override tree-status signal (land even with closed tree), combine with the autosubmit label. p: video_player platform-macos
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[video_player] Add macOS support
2 participants