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: fb03253e32ce
Choose a base ref
...
head repository: flutter/flutter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47018b17c33b
Choose a head ref
  • 12 commits
  • 81 files changed
  • 12 contributors

Commits on Mar 27, 2026

  1. Filter out .appex extension processes from LLDB attachment on iOS 17+ (

    …#183724)
    
    Fixes #183263
    
    On iOS 17+, `flutter run` uses `devicectl` for process discovery. When
    an app has an embedded extension (e.g. WidgetKit), both the main app and
    extension processes match the `installationURL` because the extension
    lives inside the `.app` bundle at `PlugIns/*.appex/`. `.firstOrNull`
    picks whichever appears first in the process list — if the extension has
    a lower PID, LLDB attaches to the wrong process, causing `flutter run`
    to hang or fail.
    
    This adds a filter to exclude `.appex` processes from the matching,
    ensuring LLDB always attaches to the main app.
    
    ### Changes
    - `core_devices.dart`: Added `!process.executable!.contains('.appex')`
    filter to process matching
    - `core_devices_test.dart`: Added test verifying extension processes are
    skipped when both main app and extension are running
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [AI contribution guidelines] and understand my
    responsibilities, or I am not using AI tools.
    - [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.
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [AI contribution guidelines]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#ai-contribution-guidelines
    [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: Elijah Okoroh <okorohelijah@google.com>
    Silfalion and okorohelijah authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    94b22e4 View commit details
    Browse the repository at this point in the history
  2. Add foundation for uber SDF shader and Contents (#183864)

    issues: #183036
    
    This implements the basic foundation for the UberSDF work. There are
    improvements we will want to make on it but everything implemented here
    is behind flags in `main` and has golden tests.
    
    Right now it is using a stand-in implementation of the sdf renderer that
    doesn't incorporate all the work we've done for the circle sdf renderer.
    
    It also doesn't render gradients yet in this pr, that is happening in
    #184090
    
    Design doc:
    -
    https://docs.google.com/document/d/166uRQBoKfraIibNKYxrewzVcmflqIWde80uB7L5bJSs/edit?tab=t.0
    
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [AI contribution guidelines] and understand my
    responsibilities, or I am not using AI tools.
    - [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].
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code
    Assist for
    GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code).
    Comments from the `gemini-code-assist` bot should not be taken as
    authoritative feedback from the Flutter team. If you find its comments
    useful you can update your code accordingly, but if you are unsure or
    disagree with the feedback, please feel free to wait for a Flutter team
    member's review for guidance on which automated comments should be
    addressed.
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [AI contribution guidelines]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#ai-contribution-guidelines
    [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: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
    gaaclarke and gemini-code-assist[bot] authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    72cfdc7 View commit details
    Browse the repository at this point in the history
  3. [Flutter GPU] Improve context initialization error messages (#183986)

    When Flutter GPU initialization fails because Impeller is not enabled,
    display a specific error message about enabling Impeller rather than the
    generic "Flutter GPU must be enabled" message.
    
    Resolves #173648
    bdero authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    dfa596d View commit details
    Browse the repository at this point in the history
  4. feat(web): unify CanvasKit and Skwasm garbage collection (#183867)

    Introduce a shared memory management system in
    `lib/src/engine/native_memory.dart` that both CanvasKit and Skwasm
    renderers now utilize. This unification replaces renderer-specific
    finalization logic with a consistent, efficient, and type-safe approach.
    
    Key changes:
    - Created `NativeMemoryFinalizer`, `UniqueRef`, and `CountedRef` as
    generic base classes for native resource management.
    - Refactored CanvasKit to use `CkUniqueRef` and `CkCountedRef`, which
    specialize the base classes for Skia objects.
    - Refactored Skwasm to use the unified `UniqueRef` and `CountedRef`
    abstractions, enabling proper `ui.Image` and `ui.Picture` cloning via
    reference counting.
    - Improved efficiency by using tokens to detach manually disposed
    objects from the `DomFinalizationRegistry`.
    - Added a `Finalizer` interface to support mocking and verification of
    finalization behavior in tests.
    - Comprehensive test coverage across generic engine logic and
    renderer-specific implementations.
    
    Testing:
    - Generic memory management tests: `test/engine/native_memory_test.dart`
    - CanvasKit-specific tests: `test/canvaskit/native_memory_test.dart`
    - Skwasm-specific tests: `test/skwasm/native_memory_test.dart`
    
    Fixes #175628
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [AI contribution guidelines] and understand my
    responsibilities, or I am not using AI tools.
    - [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].
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code
    Assist for
    GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code).
    Comments from the `gemini-code-assist` bot should not be taken as
    authoritative feedback from the Flutter team. If you find its comments
    useful you can update your code accordingly, but if you are unsure or
    disagree with the feedback, please feel free to wait for a Flutter team
    member's review for guidance on which automated comments should be
    addressed.
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [AI contribution guidelines]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#ai-contribution-guidelines
    [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
    harryterkelsen authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    d14f52f View commit details
    Browse the repository at this point in the history
  5. [a11y] fix selected tristate flags mismatch (#184223)

    fix #184058 
    The issue and solution was both pointed out in
    #184058
    
    
    ## Pre-launch Checklist
    
    - [ ] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [ ] I read the [AI contribution guidelines] and understand my
    responsibilities, or I am not using AI tools.
    - [ ] 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].
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code
    Assist for
    GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code).
    Comments from the `gemini-code-assist` bot should not be taken as
    authoritative feedback from the Flutter team. If you find its comments
    useful you can update your code accordingly, but if you are unsure or
    disagree with the feedback, please feel free to wait for a Flutter team
    member's review for guidance on which automated comments should be
    addressed.
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [AI contribution guidelines]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#ai-contribution-guidelines
    [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
    hannah-hyj authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    d04108d View commit details
    Browse the repository at this point in the history
  6. Enables sdf lines for metalsdf (#183809)

    fixes #183810
    
    SDF lines were behind a flag.  This enables them for the sdf renderer.
    
    testing: covered by existing golden tests
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [AI contribution guidelines] and understand my
    responsibilities, or I am not using AI tools.
    - [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].
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code
    Assist for
    GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code).
    Comments from the `gemini-code-assist` bot should not be taken as
    authoritative feedback from the Flutter team. If you find its comments
    useful you can update your code accordingly, but if you are unsure or
    disagree with the feedback, please feel free to wait for a Flutter team
    member's review for guidance on which automated comments should be
    addressed.
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [AI contribution guidelines]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#ai-contribution-guidelines
    [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
    gaaclarke authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    109d5d8 View commit details
    Browse the repository at this point in the history
  7. feat: add infinite carousel support (#175710)

    Add infinite carousel
    
    fixes: #161369 
    
    ## 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.
    
    ---------
    
    Co-authored-by: Qun Cheng <36861262+QuncCccccc@users.noreply.github.com>
    rkishan516 and QuncCccccc authored Mar 27, 2026
    Configuration menu
    Copy the full SHA
    2e6220e View commit details
    Browse the repository at this point in the history
  8. Roll Dart SDK from dfd1f8af3c52 to 0fd5bfa82b49 (2 revisions) (#184262)

    https://dart.googlesource.com/sdk.git/+log/dfd1f8af3c52..0fd5bfa82b49
    
    2026-03-27 dart-internal-merge@dart-ci-internal.iam.gserviceaccount.com
    Version 3.12.0-295.0.dev
    2026-03-27 dart-internal-merge@dart-ci-internal.iam.gserviceaccount.com
    Version 3.12.0-294.0.dev
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/dart-sdk-flutter
    Please CC codefu@google.com,dart-vm-team@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 Mar 27, 2026
    Configuration menu
    Copy the full SHA
    45c0b8f View commit details
    Browse the repository at this point in the history
  9. Roll Fuchsia Linux SDK from BIlBJNOlKjQeRFoFy... to frhWUlenso4IDnSyF…

    …... (#184266)
    
    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 codefu@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 Mar 27, 2026
    Configuration menu
    Copy the full SHA
    b397827 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2026

  1. For ShapeBorder instances with preferPaintInterior=true, use paintInt…

    …erior rather than drawing the path from getOuterPath. (#184258)
    
    For ShapeBorder instances with preferPaintInterior=true, use
    paintInterior rather than drawing the path from getOuterPath.
    
    From
    https://api.flutter.dev/flutter/painting/ShapeBorder/paintInterior.html:
    > On
    [ShapeBorder](https://api.flutter.dev/flutter/painting/ShapeBorder-class.html)
    subclasses whose
    [preferPaintInterior](https://api.flutter.dev/flutter/painting/ShapeBorder/preferPaintInterior.html)
    method returns true, this should be faster than using
    [Canvas.drawPath](https://api.flutter.dev/flutter/dart-ui/Canvas/drawPath.html)
    with the path provided by
    [getOuterPath](https://api.flutter.dev/flutter/painting/ShapeBorder/getOuterPath.html).
    
    >
    [paintInterior](https://api.flutter.dev/flutter/painting/ShapeBorder/paintInterior.html)
    is semantically equivalent to (i.e. renders the same pixels as) calling
    [Canvas.drawPath](https://api.flutter.dev/flutter/dart-ui/Canvas/drawPath.html)
    with the same
    [Paint](https://api.flutter.dev/flutter/dart-ui/Paint-class.html) and
    the [Path](https://api.flutter.dev/flutter/dart-ui/Path-class.html)
    returned from
    [getOuterPath](https://api.flutter.dev/flutter/painting/ShapeBorder/getOuterPath.html)
    
    Part of #183044
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [AI contribution guidelines] and understand my
    responsibilities, or I am not using AI tools.
    - [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].
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code
    Assist for
    GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code).
    Comments from the `gemini-code-assist` bot should not be taken as
    authoritative feedback from the Flutter team. If you find its comments
    useful you can update your code accordingly, but if you are unsure or
    disagree with the feedback, please feel free to wait for a Flutter team
    member's review for guidance on which automated comments should be
    addressed.
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
    [AI contribution guidelines]:
    https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#ai-contribution-guidelines
    [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
    b-luk authored Mar 28, 2026
    Configuration menu
    Copy the full SHA
    bfe5141 View commit details
    Browse the repository at this point in the history
  2. Roll Skia from 8c705ac86366 to f04d09d10759 (5 revisions) (#184263)

    https://skia.googlesource.com/skia.git/+log/8c705ac86366..f04d09d10759
    
    2026-03-27 fmalita@google.com Use a local data copy for strike
    deserialization
    2026-03-27 kdlee@chromium.org Terracotta-Phase-1: Reorder member
    destruction
    2026-03-27 jsimmons@google.com Add a cache of font variation typefaces
    to SkParagraph's FontCollection
    2026-03-27
    louhi-prod-1-6316342352543744@louhi-prod-1.iam.gserviceaccount.com
    Update fiddler-base for 93dc3a99a732
    2026-03-27 zengyonghust@gmail.com Avoid duplicate calls to the same
    logic code.
    
    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 codefu@google.com,kjlubick@google.com,michaelludwig@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 Mar 28, 2026
    Configuration menu
    Copy the full SHA
    1784bfa View commit details
    Browse the repository at this point in the history
  3. Roll Fuchsia GN SDK from JLBh4Z9PKsjIJcqDU... to SEfYx3xgueX3aFAY3... (

    …#184169)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/fuchsia-gn-sdk-flutter
    Please CC chrome-fuchsia-engprod@google.com,codefu@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
    
    Co-authored-by: zijiehe@ <68449066+zijiehe-google-com@users.noreply.github.com>
    Configuration menu
    Copy the full SHA
    47018b1 View commit details
    Browse the repository at this point in the history
Loading