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

Commits on Jun 28, 2023

  1. Removes deprecated APIs from AnimationBuilder (#129657)

    Removes deprecated APIs from AnimationBuilder.
    
    Resolves #129653
    pdblasi-google authored Jun 28, 2023
    Configuration menu
    Copy the full SHA
    af09b57 View commit details
    Browse the repository at this point in the history
  2. Roll pub packages (#129380)

    This PR was generated by `flutter update-packages --force-upgrade`.
    fluttergithubbot authored Jun 28, 2023
    Configuration menu
    Copy the full SHA
    ba63688 View commit details
    Browse the repository at this point in the history
  3. mark autoroller flaky (#129745)

    Unblock tree while I investigate: #129744
    christopherfujino authored Jun 28, 2023
    Configuration menu
    Copy the full SHA
    c1b764a View commit details
    Browse the repository at this point in the history
  4. RTL InputDecoration fix (#129661)

    Fixes InputDecoration (TextField) layout when 1. RTL 2. prefixIcon and 3. left/right contentPadding is asymmetric.
    justinmc authored Jun 28, 2023
    Configuration menu
    Copy the full SHA
    c751166 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2023

  1. Skwasm benchmarks. (#129681)

    This enables benchmarks for the Skwasm renderer, compiled with
    dart2wasm.
    
    Platform views aren't supported in Skwasm yet, so we are skipping those
    benchmarks for now.
    eyebrowsoffire authored Jun 29, 2023
    Configuration menu
    Copy the full SHA
    1b887c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b47ba1 View commit details
    Browse the repository at this point in the history
  3. Roll Flutter Engine from 4e49b9deb72d to d5c25ead07e9 (7 revisions) (#…

    …129750)
    
    flutter/engine@4e49b9d...d5c25ea
    
    2023-06-29 [email protected] [Impeller] Add a
    missing method to the Context mock (flutter/engine#43326)
    2023-06-29 [email protected] [Impeller]
    Collapse DrawRects into clear colors optimization (flutter/engine#43168)
    2023-06-29 [email protected] [Impeller] Add trace events to Vulkan
    texture and buffer lifecycle events. (flutter/engine#43321)
    2023-06-29 [email protected] Roll Dart SDK from
    5a59cd06e49d to a7151d73b88d (2 revisions) (flutter/engine#43318)
    2023-06-28 [email protected] [Impeller] Fix advanced CPU blend modes
    (flutter/engine#43294)
    2023-06-28 [email protected] Roll Fuchsia Linux SDK from
    10hNrVMjnCypybnz2... to fxCNy4QivAngZXkvM... (flutter/engine#43314)
    2023-06-28 [email protected] Roll Skia from 0b4f472a8c44 to
    26fa4b343fd3 (2 revisions) (flutter/engine#43306)
    
    Also rolling transitive DEPS:
      fuchsia/sdk/core/linux-amd64 from 10hNrVMjnCyp to fxCNy4QivAng
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/flutter-engine-flutter-autoroll
    Please CC [email protected],[email protected],[email protected] 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://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored Jun 29, 2023
    Configuration menu
    Copy the full SHA
    328d4d4 View commit details
    Browse the repository at this point in the history
  4. Fix typos in ListTile examples. (#129606)

    Fix typos.
    
    *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].*
    crazytan authored Jun 29, 2023
    Configuration menu
    Copy the full SHA
    87194a2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5951f9d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cd97b43 View commit details
    Browse the repository at this point in the history
  7. Update RadioListTile tests to M3 (#129718)

    This updates the `RadioListTile` test which was modified in #128839
    
    ### Description
    - Update the layout to the proper order `MaterialApp` -> `Material` -> `RadioListTile`
    - Add M3 overlay test. (fixed problem faced in #128839)
    - Separate the M2  overlay test.
    TahaTesser authored Jun 29, 2023
    Configuration menu
    Copy the full SHA
    f3a7485 View commit details
    Browse the repository at this point in the history
  8. Add locale-specific DateTime formatting syntax (#129573)

    Based on the [message format
    syntax](https://unicode-org.github.io/icu/userguide/format_parse/messages/#examples)
    for
    [ICU4J](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/text/MessageFormat.html).
    This adds new syntax to the current Flutter messageFormat parser which
    should allow developers to add locale-specific date formatting.
    
    ## Usage example
    ```
      "datetimeTest": "Today is {today, date, ::yMd}",
      "@datetimeTest": {
        "placeholders": {
          "today": {
            "description": "The date placeholder",
            "type": "DateTime"
          }
        }
      }
    ```
    compiles to
    ```
      String datetimeTest(DateTime today) {
        String _temp0 = intl.DateFormat.yMd(localeName).format(today);
        return 'Today is $_temp0';
      }
    ```
    
    Fixes #127304.
    thkim1011 authored Jun 29, 2023
    Configuration menu
    Copy the full SHA
    ff838bc View commit details
    Browse the repository at this point in the history
Loading