Skip to content
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/packages
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 091acc58aca3
Choose a base ref
...
head repository: flutter/packages
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1e5019501fe2
Choose a head ref
  • 4 commits
  • 38 files changed
  • 4 contributors

Commits on Feb 10, 2026

  1. Roll Flutter from e8f9dc50356d to 9bda20a11f1e (34 revisions) (#10992)

    Roll Flutter from e8f9dc50356d to 9bda20a11f1e (34 revisions)
    
    flutter/flutter@e8f9dc5...9bda20a
    
    2026-02-10 [email protected] Remove Material import from focus_traversal_test.dart (flutter/flutter#180994)
    2026-02-10 [email protected] Roll Skia from 6e217430c052 to cffb3bf918df (1 revision) (flutter/flutter#182131)
    2026-02-10 [email protected] Encourage splitting large test files in testing documentation 2 (flutter/flutter#182051)
    2026-02-10 [email protected] refactor: migrate CupertinoPageTransitionsBuilder to cupertino folder (flutter/flutter#179776)
    2026-02-10 [email protected] Delete the last remaining skia only fragment shader tests (flutter/flutter#182127)
    2026-02-10 [email protected] [a11y][android] Set new CheckState APIs for android API 36  (flutter/flutter#182113)
    2026-02-10 [email protected] Add missing dependencies to framework_tests_misc_leak_tracking (flutter/flutter#181929)
    2026-02-10 [email protected] Roll Dart SDK from eee0e2e11174 to 69eb951f8f7e (2 revisions) (flutter/flutter#182128)
    2026-02-10 [email protected] Marks Linux_android_emu android_display_cutout to be flaky (flutter/flutter#181901)
    2026-02-10 [email protected] Bump Dart to 3.10 (flutter/flutter#174066)
    2026-02-10 [email protected] Roll Skia from d4b7e24a209b to 6e217430c052 (6 revisions) (flutter/flutter#182126)
    2026-02-09 [email protected] Intercept UIScene device log and print a guided warning (flutter/flutter#181515)
    2026-02-09 [email protected] Introduce ScrollCacheExtent and also fixes unbound shrinkwrap cache ex… (flutter/flutter#181092)
    2026-02-09 [email protected] [Android] Add mechanism for setting Android engine flags via Android manifest (take 2) (flutter/flutter#181632)
    2026-02-09 [email protected] Fix wrong comment about default impeller value (flutter/flutter#181831)
    2026-02-09 [email protected] fix build fail for wayland only platform (flutter/flutter#182057)
    2026-02-09 [email protected] [AGP 9] Added Warning Against Updating to AGP 9 (flutter/flutter#181977)
    2026-02-09 [email protected] Updated Shaderc dep (flutter/flutter#180976)
    2026-02-09 [email protected] Refactor accessibility guidelines out to widget layer (flutter/flutter#181672)
    2026-02-09 [email protected] Roll Skia from 68dff53238e5 to d4b7e24a209b (2 revisions) (flutter/flutter#182087)
    2026-02-09 [email protected] fix: OutlineInputBorder not respecting BorderSide stroke alignment (flutter/flutter#180487)
    2026-02-09 [email protected] Adds opengles to engine dart tests (flutter/flutter#181933)
    2026-02-09 [email protected] Add command to build a Swift Package for Add to App and generate FlutterPluginRegistrant (flutter/flutter#181224)
    2026-02-09 [email protected] Remove unused constant in `bundle.dart` (flutter/flutter#182023)
    2026-02-09 [email protected] Roll Fuchsia Linux SDK from iqtwdXlgKIyZkL5Li... to 7BGf7mPQvgLi7Axb6... (flutter/flutter#182082)
    2026-02-09 [email protected] Remove unused getters in `user_messages.dart` (flutter/flutter#181867)
    2026-02-09 [email protected] Roll Packages from 7805d3e to 3d5eaa5 (3 revisions) (flutter/flutter#182083)
    2026-02-09 [email protected] Roll Skia from 5d891cd7fb7f to 68dff53238e5 (1 revision) (flutter/flutter#182080)
    2026-02-09 [email protected] Update example description (flutter/flutter#182067)
    2026-02-09 [email protected] Roll Dart SDK from 965b51c219d3 to eee0e2e11174 (1 revision) (flutter/flutter#182073)
    2026-02-09 [email protected] Roll Skia from 9533d7533d59 to 5d891cd7fb7f (6 revisions) (flutter/flutter#182070)
    2026-02-09 [email protected] Add a new flutter cli command, running-apps, using mDNS app discovery (flutter/flutter#180098)
    2026-02-09 [email protected] Roll Skia from b7db9f35f0f2 to 9533d7533d59 (2 revisions) (flutter/flutter#182069)
    2026-02-08 [email protected] Improve FlWindowMonitor API (flutter/flutter#181885)
    
    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
    Please CC [email protected],[email protected] on the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Packages: https://github.com/flutter/flutter/issues/new/choose
    
    To report a problem with the AutoRoller itself, please file a bug:
    https://issues.skia.org/issues/new?component=1389291&template=1850622
    
    ...
    engine-flutter-autoroll authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    8efc4da View commit details
    Browse the repository at this point in the history
  2. [google_maps_flutter] Fix custom marker icons on iOS (#10993)

    In #10863 I intermediated asset loading through an asset loader, so that individual controllers weren't using the plugin registrar directly. In doing that, I just updated the types of the ivars, but—incorrectly—not their memory models.
    
    Registrar references are generally `weak` to avoid possible cycles (the registrar may internally be the same thing in the engine that owns the plugin instance), so the result was a weak reference to the new wrapper object. However, unlike the registrar, which has an externally enforced lifetime longer than the plugin, the wrapper was just an object created locally during map controller initialization, so was invalidated almost as soon as it was passed in. This fixes the controllers to keep strong references to the wrapper (which doesn't own anything, and has a weak registrar pointer, so can't create any cycles).
    
    Fixes flutter/flutter#182149
    
    ## Pre-Review Checklist
    
    [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
    stuartmorgan-g authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    0e9252d View commit details
    Browse the repository at this point in the history
  3. [google_sign_in_ios][UIScene] Migrate to UIScene (#10960)

    Addresses flutter/flutter#174412
    
    ## Pre-Review Checklist
    LouiseHsu authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    20c0712 View commit details
    Browse the repository at this point in the history
  4. [google_maps_flutter_web] Add Advanced markers support (web) (#9773)

    This PR adds Advanced markers support to the web implementation of `google_maps_flutter`.
    Approved combined PR: #7882
    Approved and merged platform interface PR: #9737
    Issue: [#155526](flutter/flutter#155526)
    
    ## Pre-Review Checklist
    aednlaxer authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    1e50195 View commit details
    Browse the repository at this point in the history
Loading