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/flutter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 83082c19b727
Choose a base ref
...
head repository: flutter/flutter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 992ad7489c38
Choose a head ref
  • 17 commits
  • 37 files changed
  • 11 contributors

Commits on May 9, 2025

  1. Roll Packages from ab44c26de098 to 7814fabbfb7a (4 revisions) (#168597)

    flutter/packages@ab44c26...7814fab
    
    2025-05-08 40433176+KevynSM@users.noreply.github.com [go_router] Fix
    requestFocus propagation to Navigator (flutter/packages#9177)
    2025-05-08 65381000+raju8000@users.noreply.github.com
    [go_router_builder] Fixes an deprecated warning for using
    withNullability (flutter/packages#9158)
    2025-05-08 engine-flutter-autoroll@skia.org Roll Flutter from
    b0f5c8c to 02d8c1a (19 revisions) (flutter/packages#9230)
    2025-05-08 43054281+camsim99@users.noreply.github.com
    [camera_android_camerax] Fix camera preview rotation for landscape
    oriented devices (flutter/packages#9097)
    
    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 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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 9, 2025
    Configuration menu
    Copy the full SHA
    f394cc9 View commit details
    Browse the repository at this point in the history
  2. Roll Fuchsia Linux SDK from mqhX1OP8ezmialgqA... to F2xwL6WosfD7ETcPm…

    …... (#168587)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/fuchsia-linux-sdk-flutter
    Please CC jimgraham@google.com,zra@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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 9, 2025
    Configuration menu
    Copy the full SHA
    dc17024 View commit details
    Browse the repository at this point in the history
  3. [web] more cleanup of unused APIs (#168524)

    One API only existed for tests.
    Also removed an unused class
    kevmoo authored May 9, 2025
    Configuration menu
    Copy the full SHA
    4cad7a7 View commit details
    Browse the repository at this point in the history
  4. Roll Skia from efccaeb08b8d to 0d16b74f74a5 (6 revisions) (#168569)

    https://skia.googlesource.com/skia.git/+log/efccaeb08b8d..0d16b74f74a5
    
    2025-05-08 skia-autoroll@skia-public.iam.gserviceaccount.com Roll
    skottie-base from 375561920728 to 6f141efaf8cb
    2025-05-08 skia-autoroll@skia-public.iam.gserviceaccount.com Roll
    jsfiddle-base from 552d94229577 to 85c7d3d4b62f
    2025-05-08 skia-autoroll@skia-public.iam.gserviceaccount.com Roll
    debugger-app-base from 7f477239b384 to f4f588b1198d
    2025-05-08 skia-autoroll@skia-public.iam.gserviceaccount.com Roll
    shaders-base from 3a63c1930823 to 1cdf37f3bad8
    2025-05-08 robertphillips@google.com Revert "[Fontations] Avoid
    redundant path retrieval"
    2025-05-08 skia-autoroll@skia-public.iam.gserviceaccount.com Manual roll
    ANGLE from df8a704788de to c03307f471f4 (7 revisions)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/skia-flutter-autoroll
    Please CC
    jimgraham@google.com,kjlubick@google.com,robertphillips@google.com on
    the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Skia: https://bugs.chromium.org/p/skia/issues/entry
    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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 9, 2025
    Configuration menu
    Copy the full SHA
    5e64293 View commit details
    Browse the repository at this point in the history
  5. Fix ListTile overwriting parent IconButtonTheme for its children (#16…

    …7727) (#168480)
    
    ### Description
    
    ListTile was recreating its own IconButtonThemeData—discarding any
    styles inherited from an existing IconButtonTheme above it. This change
    makes ListTile merge its theme data with the inherited one instead of
    replacing it, so child IconButtons now correctly pick up parent styling
    
    issue: #167727
    
    ---
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [Tree Hygiene] wiki page, which explains my
    responsibilities.
    - [x] I read and followed the [Flutter Style Guide], including [Features
    we expect every widget to implement].
    - [x] I signed the [CLA].
    - [x] I listed at least one issue that this PR fixes in the description
    above.
    - [x] I updated/added relevant documentation (doc comments with `///`).
    - [x] I added new tests to check the change I am making, or this PR is
    [test-exempt].
    - [x] I followed the [breaking change policy] and added [Data Driven
    Fixes] where supported.
    - [x] All existing and new tests are passing.
    
    If you need help, consider asking for advice on the #hackers-new channel
    on [Discord].
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [Tree Hygiene]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    [test-exempt]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
    [Flutter Style Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
    [Features we expect every widget to implement]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
    [CLA]: https://cla.developers.google.com/
    [flutter/tests]: https://github.com/flutter/tests
    [breaking change policy]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
    [Discord]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
    [Data Driven Fixes]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
    ayyoub-coder authored May 9, 2025
    Configuration menu
    Copy the full SHA
    c82cf49 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e3d5758 View commit details
    Browse the repository at this point in the history
  7. add missing lockfiles not checked in from running generate_gradle_loc…

    …kfiles.dart (#168600)
    
    <!--
    Thanks for filing a pull request!
    Reviewers are typically assigned within a week of filing a request.
    To learn more about code review, see our documentation on Tree Hygiene:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    -->
    
    These are generated files from using generate_gradle_lockfiles.dart
    --no-gradle-generation
    
    They require no unit tests but a follow up PR will address adding a CI
    that tests if there are any lockfiles that need to be added.
    
    Partially addresses #163228
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [Tree Hygiene] wiki page, which explains my
    responsibilities.
    - [x] I read and followed the [Flutter Style Guide], including [Features
    we expect every widget to implement].
    - [x] I signed the [CLA].
    - [x] I listed at least one issue that this PR fixes in the description
    above.
    - [x] I updated/added relevant documentation (doc comments with `///`).
    - [x] I added new tests to check the change I am making, or this PR is
    [test-exempt].
    - [x] I followed the [breaking change policy] and added [Data Driven
    Fixes] where supported.
    - [x] All existing and new tests are passing.
    
    If you need help, consider asking for advice on the #hackers-new channel
    on [Discord].
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [Tree Hygiene]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    [test-exempt]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
    [Flutter Style Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
    [Features we expect every widget to implement]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
    [CLA]: https://cla.developers.google.com/
    [flutter/tests]: https://github.com/flutter/tests
    [breaking change policy]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
    [Discord]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
    [Data Driven Fixes]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
    ash2moon authored May 9, 2025
    Configuration menu
    Copy the full SHA
    0145faf View commit details
    Browse the repository at this point in the history
  8. Roll Skia from 0d16b74f74a5 to 7f7555536e3c (5 revisions) (#168609)

    https://skia.googlesource.com/skia.git/+log/0d16b74f74a5..7f7555536e3c
    
    2025-05-09
    recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com
    Roll recipe dependencies (trivial).
    2025-05-09 drott@chromium.org Reland "[Fontations] Avoid redundant path
    retrieval"
    2025-05-09 fmalita@google.com [path] Add fill type utils
    2025-05-09 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ANGLE
    from c03307f471f4 to b729fb74e68b (6 revisions)
    2025-05-09
    recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com
    Roll recipe dependencies (trivial).
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/skia-flutter-autoroll
    Please CC
    jimgraham@google.com,kjlubick@google.com,robertphillips@google.com on
    the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Skia: https://bugs.chromium.org/p/skia/issues/entry
    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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 9, 2025
    Configuration menu
    Copy the full SHA
    63007ea View commit details
    Browse the repository at this point in the history
  9. Remove old link for java gradle incompatibility (#168561)

    We don't need this link anymore, and the current instructions already
    tell users what to do.
    
    Fixes flutter/website#11530
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [Tree Hygiene] wiki page, which explains my
    responsibilities.
    - [x] I read and followed the [Flutter Style Guide], including [Features
    we expect every widget to implement].
    - [x] I signed the [CLA].
    - [x] I listed at least one issue that this PR fixes in the description
    above.
    - [x] I updated/added relevant documentation (doc comments with `///`).
    - [x] I added new tests to check the change I am making, or this PR is
    [test-exempt].
    - [x] I followed the [breaking change policy] and added [Data Driven
    Fixes] where supported.
    - [x] All existing and new tests are passing.
    
    If you need help, consider asking for advice on the #hackers-new channel
    on [Discord].
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [Tree Hygiene]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    [test-exempt]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
    [Flutter Style Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
    [Features we expect every widget to implement]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
    [CLA]: https://cla.developers.google.com/
    [flutter/tests]: https://github.com/flutter/tests
    [breaking change policy]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
    [Discord]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
    [Data Driven Fixes]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
    
    Co-authored-by: Gray Mackall <mackall@google.com>
    gmackall and Gray Mackall authored May 9, 2025
    Configuration menu
    Copy the full SHA
    d8571fd View commit details
    Browse the repository at this point in the history
  10. Fix: Impeller playground's points should be draggable (#168351)

    This PR fixes the issue that `PlaygroundPoint`s can't be dragged in
    playgrounds.
    
    The issue was introduced in flutter/engine#56734
    by me where I incorrectly removed these static keywords.
    
    ## 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 [Flutter Style Guide], including [Features
    we expect every widget to implement].
    - [ ] I signed the [CLA].
    - [ ] I listed at least one issue that this PR fixes in the description
    above.
    - [ ] 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].
    - [ ] I followed the [breaking change policy] and added [Data Driven
    Fixes] where supported.
    - [ ] All existing and new tests are passing.
    
    If you need help, consider asking for advice on the #hackers-new channel
    on [Discord].
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [Tree Hygiene]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    [test-exempt]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
    [Flutter Style Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
    [Features we expect every widget to implement]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
    [CLA]: https://cla.developers.google.com/
    [flutter/tests]: https://github.com/flutter/tests
    [breaking change policy]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
    [Discord]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
    [Data Driven Fixes]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
    dkwingsmt authored May 9, 2025
    Configuration menu
    Copy the full SHA
    70619a1 View commit details
    Browse the repository at this point in the history
  11. Roll Skia from 7f7555536e3c to 12dbc34d742e (1 revision) (#168614)

    https://skia.googlesource.com/skia.git/+log/7f7555536e3c..12dbc34d742e
    
    2025-05-09 jvanverth@google.com Disable desk_motionmark_paths.svg on
    AndroidOne and JioNext.
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/skia-flutter-autoroll
    Please CC
    jimgraham@google.com,kjlubick@google.com,robertphillips@google.com on
    the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Skia: https://bugs.chromium.org/p/skia/issues/entry
    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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 9, 2025
    Configuration menu
    Copy the full SHA
    ca4c5c6 View commit details
    Browse the repository at this point in the history
  12. Add CupertinoSlider haptic feedback (#167362)

    <!--
    Thanks for filing a pull request!
    Reviewers are typically assigned within a week of filing a request.
    To learn more about code review, see our documentation on Tree Hygiene:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    -->
    
    Fixes #165847
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [Tree Hygiene] wiki page, which explains my
    responsibilities.
    - [x] I read and followed the [Flutter Style Guide], including [Features
    we expect every widget to implement].
    - [x] I signed the [CLA].
    - [x] I listed at least one issue that this PR fixes in the description
    above.
    - [x] I updated/added relevant documentation (doc comments with `///`).
    - [x] I added new tests to check the change I am making, or this PR is
    [test-exempt].
    - [x] I followed the [breaking change policy] and added [Data Driven
    Fixes] where supported.
    - [x] All existing and new tests are passing.
    alex-medinsh authored May 9, 2025
    Configuration menu
    Copy the full SHA
    7592aea View commit details
    Browse the repository at this point in the history
  13. Add Option to disable full selection on focus on TextField, TextFormF…

    …ield, and EditableText (#163491)
    
    This allows overriding the default behavior of highlighting all the text
     on focus when using web or desktop
    
    <!--
    Thanks for filing a pull request!
    Reviewers are typically assigned within a week of filing a request.
    To learn more about code review, see our documentation on Tree Hygiene:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    -->
    
    This is adding a field to EditableText, TextField, and TextFormField to
    disable highlighting the entire field on web and desktop when it
    receives focus. The field is called highlightAllOnFocus. It does nothing
    on other platforms because the other platforms don't highlight the
    entire field on focus.
    
    Note: I am not attached to this variable name, but it was the best I
    could think of... But I am very open to better suggestions 😆
    
    Thank you for everything!
    
    Issue: #163399
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [Tree Hygiene] wiki page, which explains my
    responsibilities.
    - [x] I read and followed the [Flutter Style Guide], including [Features
    we expect every widget to implement].
    - [x] I signed the [CLA].
    - [x] I listed at least one issue that this PR fixes in the description
    above.
    - [x] I updated/added relevant documentation (doc comments with `///`).
    - [x] I added new tests to check the change I am making, or this PR is
    [test-exempt].
    - [x] I followed the [breaking change policy] and added [Data Driven
    Fixes] where supported.
    - [x] All existing and new tests are passing.
    
    If you need help, consider asking for advice on the #hackers-new channel
    on [Discord].
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [Tree Hygiene]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
    [test-exempt]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
    [Flutter Style Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
    [Features we expect every widget to implement]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
    [CLA]: https://cla.developers.google.com/
    [flutter/tests]: https://github.com/flutter/tests
    [breaking change policy]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
    [Discord]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
    [Data Driven Fixes]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
    camfrandsen authored May 9, 2025
    Configuration menu
    Copy the full SHA
    687dcd9 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2025

  1. Roll Skia from 12dbc34d742e to 645404ec2d60 (1 revision) (#168621)

    https://skia.googlesource.com/skia.git/+log/12dbc34d742e..645404ec2d60
    
    2025-05-09 nscobie@google.com Replace scroggo with egdaniel in
    OWNERS_build_files.android
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/skia-flutter-autoroll
    Please CC
    jimgraham@google.com,kjlubick@google.com,robertphillips@google.com on
    the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Skia: https://bugs.chromium.org/p/skia/issues/entry
    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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 10, 2025
    Configuration menu
    Copy the full SHA
    b2e0bf3 View commit details
    Browse the repository at this point in the history
  2. Roll Skia from 645404ec2d60 to 0feee17aeaca (1 revision) (#168624)

    https://skia.googlesource.com/skia.git/+log/645404ec2d60..0feee17aeaca
    
    2025-05-10
    recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com
    Roll recipe dependencies (trivial).
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/skia-flutter-autoroll
    Please CC
    jimgraham@google.com,kjlubick@google.com,robertphillips@google.com on
    the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Skia: https://bugs.chromium.org/p/skia/issues/entry
    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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 10, 2025
    Configuration menu
    Copy the full SHA
    1c1219e View commit details
    Browse the repository at this point in the history
  3. delete stale references/includes to classes no longer used (#168616)

    Simple code pruning. While scanning the sources for unused code I found
    a few stale references to classes that were already no longer being
    used.
    flar authored May 10, 2025
    Configuration menu
    Copy the full SHA
    8ee8eaa View commit details
    Browse the repository at this point in the history
  4. Roll Fuchsia Linux SDK from F2xwL6WosfD7ETcPm... to VIG5-P9wwXgQkCkeX…

    …... (#168633)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/fuchsia-linux-sdk-flutter
    Please CC jimgraham@google.com,zra@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://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored May 10, 2025
    Configuration menu
    Copy the full SHA
    992ad74 View commit details
    Browse the repository at this point in the history
Loading