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: 0a0e3d205ca3
Choose a base ref
...
head repository: flutter/plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9fdc899b72ca
Choose a head ref
  • 8 commits
  • 220 files changed
  • 5 contributors

Commits on Jan 9, 2023

  1. [tool] Don't add Guava in the all-packages app (#6747)

    It's not clear why we are adding an outdated version of Guava; it is
    likely cruft, so this test removing it.
    stuartmorgan-g authored Jan 9, 2023
    Configuration menu
    Copy the full SHA
    d03de2f View commit details
    Browse the repository at this point in the history
  2. [local_auth]: Bump espresso-core (#6925)

    Bumps espresso-core from 3.2.0 to 3.5.1.
    
    ---
    updated-dependencies:
    - dependency-name: androidx.test.espresso:espresso-core
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 9, 2023
    Configuration menu
    Copy the full SHA
    d485c7e View commit details
    Browse the repository at this point in the history
  3. [webview_flutter_platform_interface] Improves error message when `Web…

    …ViewPlatform.instance` is null (#6938)
    
    * add assertion
    
    * formatting
    bparrishMines authored Jan 9, 2023
    Configuration menu
    Copy the full SHA
    a47e719 View commit details
    Browse the repository at this point in the history
  4. [google_maps]: Bump espresso-core from 3.4.0 to 3.5.1 in /packages/go…

    …ogle_maps_flutter/google_maps_flutter_android/android (#6937)
    
    * [google_maps]: Bump espresso-core
    
    Bumps espresso-core from 3.4.0 to 3.5.1.
    
    ---
    updated-dependencies:
    - dependency-name: androidx.test.espresso:espresso-core
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * Changelog and version bump
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Gary Qian <[email protected]>
    dependabot[bot] and GaryQian authored Jan 9, 2023
    Configuration menu
    Copy the full SHA
    7132dac View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. [espresso]: Bump truth from 1.4.0 to 1.5.0 in /packages/espresso/andr…

    …oid (#6707)
    
    Bumps truth from 1.4.0 to 1.5.0.
    
    ---
    updated-dependencies:
    - dependency-name: androidx.test.ext:truth
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 10, 2023
    Configuration menu
    Copy the full SHA
    dc3287c View commit details
    Browse the repository at this point in the history
  2. [camera]: Bump camerax_version from 1.3.0-alpha01 to 1.3.0-alpha02 in…

    … /packages/camera/camera_android_camerax/android (#6828)
    
    * [camera]: Bump camerax_version
    
    Bumps `camerax_version` from 1.3.0-alpha01 to 1.3.0-alpha02.
    
    Updates `camera-core` from 1.3.0-alpha01 to 1.3.0-alpha02
    
    Updates `camera-camera2` from 1.3.0-alpha01 to 1.3.0-alpha02
    
    Updates `camera-lifecycle` from 1.3.0-alpha01 to 1.3.0-alpha02
    
    ---
    updated-dependencies:
    - dependency-name: androidx.camera:camera-core
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: androidx.camera:camera-camera2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: androidx.camera:camera-lifecycle
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * Add changelog change
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: camsim99 <[email protected]>
    dependabot[bot] and camsim99 authored Jan 10, 2023
    Configuration menu
    Copy the full SHA
    1de6477 View commit details
    Browse the repository at this point in the history
  3. [shared_preferences] Merge iOS and macOS implementations (#6920)

    This merges `shared_preferences_ios` and `shared_preferences_macos` into a new `shared_preferences_foundations` that replaces both of those packages, as described in flutter/flutter#117941:
    - Renames `shared_preferences_macos` to `shared_prefrences_foundation`, since the macOS implementation is the Swift implementation, which is what we want to use going forward.
    - Moves the implementation files to a shared directory (called `darwin/` in anticipation of flutter/flutter#115337), adjusting the code and podspec slightly to make it iOS-compatible
    - Adds iOS support to the example, via `flutter create`-ing a new iOS example and wiring it up to use the existing native unit test. (This was done instead of moving the example from `shared_preferences_ios` since it seemed better to have the example be in Swift as well now.)
    - Removes `shared_preferences_ios`.
    
    Once this lands and has been published, a follow-up will update `shared_preferences` to use this new package instead of the other two, and the old ones will be marked as deprecated on pub.dev.
    
    Part of flutter/flutter#117941
    stuartmorgan-g authored Jan 10, 2023
    Configuration menu
    Copy the full SHA
    fb40581 View commit details
    Browse the repository at this point in the history
  4. [various] Enable avoid_dynamic_calls (#6834)

    * Enable the option
    
    * Fix camera
    
    * Fix webview
    
    * Remove unnecessary 'call's from camera tests
    
    * Fix maps
    
    * Fix sign-in
    
    * fix image_picker
    
    * Fix IAP
    
    * Fix shared_preferences
    
    * Fix url_launcher_android
    
    * Version bumps
    
    * Fix tool
    
    * Re-apply webview test fix
    
    * Re-bump versions
    
    * Fix one new tool issue
    stuartmorgan-g authored Jan 10, 2023
    Configuration menu
    Copy the full SHA
    9fdc899 View commit details
    Browse the repository at this point in the history
Loading