Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: flutter/plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1a56bb2
Choose a base ref
...
head repository: flutter/plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 19468e0
Choose a head ref
  • 12 commits
  • 32 files changed
  • 6 contributors

Commits on Dec 13, 2021

  1. [video_player] Fix a flaky test (#4611)

    The 'reports buffering status' test was written in an unnecessary complicated way that used pairs of completers and booleans that tracked the same thing, and more importantly had a bug (hidden by the fact that this package is still on legacy analysis options) where the `await` statements weren't actually doing anything, because they were not actually `await`ing futures.
    
    This fixes the lack of awaits—which should fix the flake—and removes the unnecessary booleans.
    
    Fixes flutter/flutter#94775
    stuartmorgan-g authored Dec 13, 2021
    Configuration menu
    Copy the full SHA
    bfa3438 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2021

  1. Configuration menu
    Copy the full SHA
    453089d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    910055b View commit details
    Browse the repository at this point in the history
  3. [flutter_plugin_tools] Auto-retry failed FTL tests (#4610)

    Currently the flake situation for Firebase Test Lab tests is very bad,
    and the task running those tests are some of the slowest tasks in the
    CI. Re-running failed tests is slow, manual work that is signficantly
    affecting productivity.
    
    There are plans to actually address the flake in the short-to-medium
    term, but in the immediate term this will improve the CI situation, as
    well as reducing the drag on engineering time that could be spent on the
    root causes.
    
    Part of flutter/flutter#95063
    stuartmorgan-g authored Dec 15, 2021
    Configuration menu
    Copy the full SHA
    92539fc View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2021

  1. Configuration menu
    Copy the full SHA
    ee97b65 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2021

  1. Configuration menu
    Copy the full SHA
    73cb8a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d383fad View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2021

  1. [ci] Move Android build-all CI to heavy workload (#4624)

    This task's memory usage is very close to the 4GB limit of the light-workload machines, and sometimes goes over and causes flaky failures.
    stuartmorgan-g authored Dec 19, 2021
    Configuration menu
    Copy the full SHA
    29b6373 View commit details
    Browse the repository at this point in the history
  2. [video_player] Remove test code from platform interface (#4589)

    This is a breaking change to video_player_platform_interface to remove Pigeon mocks from the public interface. These should never have been there, as tests in packages outside of the platform interface should be mocking the platform interface rather than the method channel, but the app-facing tests weren't rewritten when they should have been so they ended up published to support the legacy tests. This creates an unwanted non-dev dependency on `flutter_test`, in addition to promoting an anti-pattern.
    
    While making the breaking change, this also adopts `PlatformInterface`, removing `isMock` in favor of the standard mixin pattern provided by the base class.
    
    Part of flutter/flutter#83562
    stuartmorgan-g authored Dec 19, 2021
    Configuration menu
    Copy the full SHA
    6531740 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2021

  1. Configuration menu
    Copy the full SHA
    3972212 View commit details
    Browse the repository at this point in the history
  2. [video_player] Add 5.0 interface support (#4627)

    Allows the other video_player packages to use either 4.x or 5.x of
    `video_player_platform_interface`, since the only breaking change
    doesn't affect them (as it just removes test code that they no longer
    use). This allows clients of `video_player` to no longer have a
    transitive dependency on test packages, but doesn't create any version
    lock with any unendorsed implementations that might exist.
    
    Fixes flutter/flutter#83562
    stuartmorgan-g authored Dec 20, 2021
    Configuration menu
    Copy the full SHA
    c9c234a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    19468e0 View commit details
    Browse the repository at this point in the history
Loading