Skip to content
Snippets Groups Projects
  1. Nov 02, 2024
  2. Nov 01, 2024
    • engine-flutter-autoroll's avatar
      Roll Flutter from 0fe615343bd9 to f86b77721524 (16 revisions) (#8000) · 1d00782b
      engine-flutter-autoroll authored
      https://github.com/flutter/flutter/compare/0fe615343bd9...f86b77721524
      
      2024-11-01 engine-flutter-autoroll@skia.org Roll Packages from 7cc1caa0 to 796afa35 (15 revisions) (flutter/flutter#158003)
      2024-11-01 fluttergithubbot@gmail.com Marks Linux_pixel_7pro service_extensions_test to be flaky (flutter/flutter#157853)
      2024-11-01 engine-flutter-autoroll@skia.org Roll Flutter Engine from 0a0d5c9be6ff to 3a090b46dd35 (1 revision) (flutter/flutter#157994)
      2024-11-01 engine-flutter-autoroll@skia.org Roll Flutter Engine from bacc5e1e73b7 to 0a0d5c9be6ff (3 revisions) (flutter/flutter#157991)
      2024-11-01 32538273+ValentinVignal@users.noreply.github.com Add test for `interactive_viewer.transformation_controller.0.dart` (flutter/flutter#157986)
      2024-11-01 engine-flutter-autoroll@skia.org Roll Flutter Engine from d7e928911ac2 to bacc5e1e73b7 (1 revision) (flutter/flutter#157982)
      2024-11-01 32538273+ValentinVignal@users.noreply.github.com Add test for `notification.0.dart` (flutter/flutter#157909)
      2024-11-01 lammenspaolo@gmail.com performance: Override .elementAt in CachingIterable (flutter/flutter#152477)
      2024-11-01 engine-flutter-autoroll@skia.org Roll Flutter Engine from cd46383cd55e to d7e928911ac2 (4 revisions) (flutter/flutter#157978)
      2024-11-01 engine-flutter-autoroll@skia.org Roll Flutter Engine from bb77cf867aef to cd46383cd55e (11 revisions) (flutter/flutter#157972)
      2024-11-01 matanlurey@users.noreply.github.com Add a warning/additional handlers for parsing`synthetic-package`. (flutter/flutter#157934)
      2024-10-31 engine-flutter-autoroll@skia.org Roll Flutter Engine from f2154ef3e31c to bb77cf867aef (6 revisions) (flutter/flutter#157960)
      2024-10-31 matanlurey@users.noreply.github.com Renames `injectBuildTimePluginFilesForWebPlatform` and removes unused named parameter. (flutter/flutter#157944)
      2024-10-31 jonahwilliams@google.com [flutter_driver] use mostly public screenshot API. (flutter/flutter#157888)
      2024-10-31 sarbagyastha@gmail.com Made insetPadding configurable for Date Picker Dialog (flutter/flutter#155651)
      2024-10-31 bruno.leroux@gmail.com Fix showSnackBar can't access useMaterial3 from the theme (flutter/flutter#157707)
      
      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 stuartmorgan@google.com,tarrinneal@google.com 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
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
      1d00782b
    • Kevin Moore's avatar
    • stuartmorgan's avatar
      [google_maps_flutter] Update Android for non-nullable generics (#7990) · 796afa35
      stuartmorgan authored
      Now that Pigeon supports non-nullable generics, update the Pigeon definition to remove all the unnecessary nullability in generics.
      
      This is largely a no-op for non-test code because these types are mostly for passing from Dart to Java, and Java doesn't support non-nullable generics so nothing changes on the native side.
      
      Part of https://github.com/flutter/flutter/issues/155891
    • stuartmorgan's avatar
      [various] Minor cleanup in recently imported packages (#7995) · 02b20bf2
      stuartmorgan authored
      Fixes a few minor things from the recent import of dnfield's vector-graphics-related packages:
      - Fixes a bad copy/paste in the `path_parsing` CHANGELOG so future versions of the CHANGELOG will be less confusing.
      - Removes a coverage link from the `flutter_svg` README that is no longer correct.
      - Disabled publishing of `vector_graphics*` until a new versioning plan is made.
      
      Because these are extremely minor, I'm overriding our usual versioning policy; it's fine for the CHANGELOG and README fixes to go out the next time we happen to publish rather than immediately.
      02b20bf2
    • stuartmorgan's avatar
      [go_router] Update example app to Kotlin 1.9.0 (#7997) · 53469f31
      stuartmorgan authored
      The tree is currently closed on an out-of-band failure in the build of
      this example app:
      
      e:
      .../transformed/jetified-kotlin-stdlib-1.9.24.jar!/META-INF/kotlin-stdlib-jdk7.kotlin_module:
      Module was compiled with an incompatible version of Kotlin. The binary
      version of its metadata is 1.9.0, expected version is 1.7.1.
      e:
      /b/s/w/ir/cache/gradle/caches/transforms-4/6cce2b947fc9e43cca6b44ff30180b61/transformed/jetified-kotlin-stdlib-1.9.24.jar!/META-INF/kotlin-stdlib-jdk8.kotlin_module:
      Module was compiled with an incompatible version of Kotlin. The binary
      version of its metadata is 1.9.0, expected version is 1.7.1.
      e:
      .../transformed/jetified-kotlin-stdlib-1.9.24.jar!/META-INF/kotlin-stdlib.kotlin_module:
      Module was compiled with an incompatible version of Kotlin. The binary
      version of its metadata is 1.9.0, expected version is 1.7.1.
      e:
      .../transformed/jetified-annotation-jvm-1.9.1.jar!/META-INF/annotation.kotlin_module:
      Module was compiled with an incompatible version of Kotlin. The binary
      version of its metadata is 1.9.0, expected version is 1.7.1.
      
      It appears that this is caused by
      https://github.com/flutter/packages/pull/7986 as this example app does
      depend on `url_launcher`, and that PR therefore change a transitive
      dependency of this example app, and as Reid discovered that version bump
      [changed the Kotlin
      
      version](https://android.googlesource.com/platform/frameworks/support/+log/2e6556166965445a8a129114765a3903c063735c..87b88ad088cc9b18d4ab75611fc8b74e8b01c24a/annotation)
      
      There was a Flutter Fix that contained the correct instructions for
      resolving this, which is what this PR does.
      53469f31
  3. Oct 31, 2024
    • engine-flutter-autoroll's avatar
      Manual roll Flutter from fe71cadf1959 to 0fe615343bd9 (18 revisions) (#7989) · ee43c7eb
      engine-flutter-autoroll authored
      Manual roll requested by tarrinneal@google.com
      
      https://github.com/flutter/flutter/compare/fe71cadf1959...0fe615343bd9
      
      2024-10-31 engine-flutter-autoroll@skia.org Roll Flutter Engine from c40b0b602822 to f2154ef3e31c (8 revisions) (flutter/flutter#157926)
      2024-10-31 47866232+chunhtai@users.noreply.github.com Hides added routes before top-most route finishes pushing (flutter/flutter#156104)
      2024-10-31 26356162+BenjiFarquhar@users.noreply.github.com Fix cursor on hover expand/collapse icon (#155207) (flutter/flutter#155209)
      2024-10-31 32538273+ValentinVignal@users.noreply.github.com Add test for `media_query_data.system_gesture_insets.0.dart` (flutter/flutter#157854)
      2024-10-31 matanlurey@users.noreply.github.com Add and plumb `useImplicitPubspecResolution` across `flutter_tools`. (flutter/flutter#157879)
      2024-10-31 engine-flutter-autoroll@skia.org Roll Flutter Engine from 090c33aeae83 to c40b0b602822 (1 revision) (flutter/flutter#157896)
      2024-10-31 engine-flutter-autoroll@skia.org Roll Flutter Engine from 9295eeb6d3ce to 090c33aeae83 (4 revisions) (flutter/flutter#157893)
      2024-10-30 engine-flutter-autoroll@skia.org Roll Flutter Engine from 2bd854e23b61 to 9295eeb6d3ce (5 revisions) (flutter/flutter#157882)
      2024-10-30 louisehsu@google.com Adds a new helpful tool exit message for SocketExceptions thrown during mdns discovery (flutter/flutter#157638)
      2024-10-30 miechoo@users.noreply.github.com Fix `GlowingOverscrollIndicator` examples (flutter/flutter#155203)
      2024-10-30 engine-flutter-autoroll@skia.org Roll Flutter Engine from 906a7ad88052 to 2bd854e23b61 (1 revision) (flutter/flutter#157878)
      2024-10-30 34871572+gmackall@users.noreply.github.com Upgrade templates to AGP 8.7/Gradle 8.10.2 (flutter/flutter#157872)
      2024-10-30 engine-flutter-autoroll@skia.org Roll Flutter Engine from 57ed5d338e7e to 906a7ad88052 (13 revisions) (flutter/flutter#157875)
      2024-10-30 tessertaha@gmail.com Update Material 3  `LinearProgressIndicator` for new visual style (flutter/flutter#154817)
      2024-10-30 engine-flutter-autoroll@skia.org Roll Flutter Engine from 999797a2f690 to 57ed5d338e7e (5 revisions) (flutter/flutter#157833)
      2024-10-30 matanlurey@users.noreply.github.com Add hidden `--no-implicit-pubspec-resolution` flag for one stable release. (flutter/flutter#157635)
      2024-10-30 engine-flutter-autoroll@skia.org Roll Packages from 028027e6 to 7cc1caa0 (5 revisions) (flutter/flutter#157864)
      2024-10-30 stuartmorgan@google.com Mention partial PRs in the contributing docs (flutter/flutter#157863)
      
      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 stuartmorgan@google.com,tarrinneal@google.com 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
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
      ee43c7eb
    • Kevin Moore's avatar
      [vector_garphics] fix execution on the web with WebAssembly (#7991) · 2fd909bc
      Kevin Moore authored
      The `dart.library.html` variable is not available with wasm
      Since the web version is (currently) a no-op, flip the condition to
      check for dart:io instead
    • dependabot[bot]'s avatar
      [url_launcher]: Bump androidx.annotation:annotation from 1.9.0 to 1.9.1 in... · 7287c7b7
      dependabot[bot] authored
      [url_launcher]: Bump androidx.annotation:annotation from 1.9.0 to 1.9.1 in /packages/url_launcher/url_launcher_android/android (#7986)
      
      Bumps androidx.annotation:annotation from 1.9.0 to 1.9.1.
      
      [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.annotation:annotation&package-manager=gradle&previous-version=1.9.0&new-version=1.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
      
      Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
      
      ---
      
      <details>
      <summary>Dependabot commands and options</summary>
      <br />
      
      You can trigger Dependabot actions by commenting on this PR:
      - `@dependabot rebase` will rebase this PR
      - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
      - `@dependabot merge` will merge this PR after your CI passes on it
      - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
      - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
      - `@dependabot reopen` will reopen this PR if it is closed
      - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
      - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
      - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
      - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
      - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
      
      </details>
    • stuartmorgan's avatar
      [flutter_svg] Initial import (#7944) · dcf47df8
      stuartmorgan authored
      Imports https://github.com/dnfield/flutter_svg into this repository,
      with history, and updates it to follow repository conventions:
      
      - Updates min SDKs.
      - Removes analysis options and fixes resulting warnings.
      - Autoformats.
      - Updates pubspecs to follow repo standard.
      - Updates repo tooling to allow the `flutter_svg_test` non-dev
        dependency on `flutter_test`.
      - Adds repo metadata.
      - Adds METADATA files.
      - Bumps versions and slightly relax version constraints for
        vector_graphics* to allow the new versions.
      2 tags
      dcf47df8
    • stuartmorgan's avatar
      [vector_graphics] Initial import (#7941) · 92238bf6
      stuartmorgan authored
      Imports https://github.com/dnfield/vector_graphics into this repository,
      with history, and updates it to follow repository conventions:
      - Adds missing licence headers.
      - Removes analysis options and fixes resulting warnings.
      - Updates min SDKs.
      - Autoformats.
      - Updates pubspecs to follow repo standard, including updating the
      metadata
        to point to the Flutter repositories.
      - Allows `xml` as a pinned dependency, and relaxes the pinning
      requirement
        in the repo tools to allow an explicit, inclusive-endpoint range.
      - Skips some unit tests on unsupported platforms.
      - Adds repo metadata.
      - Bumps versions and slightly relax version constraints to allow the new
        versions.
      3 tags
      92238bf6
  4. Oct 30, 2024
  5. Oct 29, 2024
    • Matan Lurey's avatar
      Bump `path_provider_android` to `^2.2.5` due to Android v1 embedder. (#7935) · d13a53bb
      Matan Lurey authored
      https://github.com/flutter/engine/pull/52022 removed the Android v1 embedder.
      
      I'm seeing locally that older versions of `path_provider_android` fail due to missing symbols:
      ```txt
      flutter run                   
      Launching lib/main.dart on sdk gphone64 arm64 in debug mode...
      You are applying Flutter's main Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/to/flutter-gradle-plugin-apply
      
      Warning: This project is still reading the deprecated '.flutter-plugins. file.
      In an upcoming stable release support for this file will be completely removed and your build will fail.
      See https:/flutter.dev/to/flutter-plugins-configuration.
      /Users/matanl/.pub-cache/hosted/pub.dev/path_provider_android-2.2.2/android/src/main/java/io/flutter/plugins/pathprovider/PathProviderPlugin.java:39: error: cannot find symbol
            @NonNull io.flutter.plugin.common.PluginRegistry.Registrar registrar) {
                                                            ^
        symbol:   class Registrar
        location: interface PluginRegistry
      1 error
      
      FAILURE: Build failed with an exception.
      ```
      
      To be a good citizen, let's make sure users of `path_provider` get a good `path_provider_android`.
    • engine-flutter-autoroll's avatar
      Roll Flutter from 3fb95c7dd21d to 42132e879b42 (19 revisions) (#7958) · f6154280
      engine-flutter-autoroll authored
      https://github.com/flutter/flutter/compare/3fb95c7dd21d...42132e879b42
      
      2024-10-29 34871572+gmackall@users.noreply.github.com Reland "Upgrade tests to AGP 8.7/Gradle 8.10.2/Kotlin 1.8.10" (flutter/flutter#157617)
      2024-10-29 jonahwilliams@google.com [impeller] re-enable impeller shard. (flutter/flutter#157806)
      2024-10-29 engine-flutter-autoroll@skia.org Roll Flutter Engine from 4cb4478016b5 to 725c8e4bc379 (1 revision) (flutter/flutter#157808)
      2024-10-29 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Avoid labeling 'context' PRs as 'text-input' (#157650)" (flutter/flutter#157812)
      2024-10-29 engine-flutter-autoroll@skia.org Roll Flutter Engine from b95da8106b98 to 4cb4478016b5 (1 revision) (flutter/flutter#157792)
      2024-10-29 koji.wakamiya@gmail.com Remove unused import from kt plugin template (flutter/flutter#157220)
      2024-10-29 engine-flutter-autoroll@skia.org Roll Flutter Engine from 5fa7a123b14a to b95da8106b98 (1 revision) (flutter/flutter#157787)
      2024-10-29 tessertaha@gmail.com Fix `TabBar` tab icons not respecting custom `IconTheme` (flutter/flutter#157724)
      2024-10-29 engine-flutter-autoroll@skia.org Roll Flutter Engine from 0c8f0bf4d740 to 5fa7a123b14a (1 revision) (flutter/flutter#157780)
      2024-10-29 105786499+syedaniq@users.noreply.github.com Allow customizing entry mode icons in TimePicker (flutter/flutter#157151)
      2024-10-29 32538273+ValentinVignal@users.noreply.github.com Add test for `focus_scope.0.dart` (flutter/flutter#157772)
      2024-10-29 32538273+ValentinVignal@users.noreply.github.com Add test for `page_storage.0.dart` (flutter/flutter#157770)
      2024-10-29 engine-flutter-autoroll@skia.org Roll Flutter Engine from c05af6f939fc to 0c8f0bf4d740 (1 revision) (flutter/flutter#157774)
      2024-10-29 engine-flutter-autoroll@skia.org Roll Flutter Engine from b394e0c98fa0 to c05af6f939fc (1 revision) (flutter/flutter#157767)
      2024-10-29 32538273+ValentinVignal@users.noreply.github.com Add test for `nested_scroll_view_state.0.dart` (flutter/flutter#157714)
      2024-10-29 zanderso@users.noreply.github.com Pin Mac tool_integration_test shards to arm64 (flutter/flutter#157760)
      2024-10-29 engine-flutter-autoroll@skia.org Roll Flutter Engine from ed587dcf61fd to b394e0c98fa0 (4 revisions) (flutter/flutter#157766)
      2024-10-28 engine-flutter-autoroll@skia.org Roll Flutter Engine from 70671baabbba to ed587dcf61fd (10 revisions) (flutter/flutter#157751)
      2024-10-28 engine-flutter-autoroll@skia.org Roll Flutter Engine from 23b2c6d3b3b1 to 70671baabbba (1 revision) (flutter/flutter#157740)
      
      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 stuartmorgan@google.com,tarrinneal@google.com 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
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
      f6154280
    • stuartmorgan's avatar
      [webview_flutter] Fix macOS 14+ test hangs (#7953) · ab404b55
      stuartmorgan authored
      Starting in macOS 14, webview_flutter integration tests hang due to being unable to connect to the test server. Based on local experimentation, in appears that we are not able to connect when binding to the "any" address, which gives us an IP address of 0.0.0.0, but using the loopback address (which is all we should need; the point is to accept local connections from the test itself) does work.
      
      Since our test fleet is a mixed macOS 13/14 fleet, this should fix flaky timeouts of macOS platform tests in CI, in addition to fixing local runs.
      
      Fixes https://github.com/flutter/flutter/issues/157449
      ab404b55
    • stuartmorgan's avatar
      [various] Remove multiDexEnabled (#7956) · 028027e6
      stuartmorgan authored
      We had manually added `multiDexEnabled` to various plugin example apps over time to fix build failures, but it's not needed for plugins with a `minSdk` of 20+ ([reference](https://developer.android.com/build/multidex)), and Flutter (and thus all of our plugins) requires 21+, so the setting is just cruft.
      028027e6
    • Stuart Morgan's avatar
      [flutter_svg] Initial import · 760b8df4
      Stuart Morgan authored
      Imports https://github.com/dnfield/flutter_svg into this repository,
      with history, and updates it to follow repository conventions:
      - Updates min SDKs.
      - Removes analysis options and fixes resulting warnings.
      - Autoformats.
      - Updates pubspecs to follow repo standard.
      - Updates repo tooling to allow the `flutter_svg_test` non-dev
        dependency on `flutter_test`.
      - Adds repo metadata.
      - Adds METADATA files.
      - Adds commemoration to README.
      - Updates example app Android build files to current standards.
      - Bumps versions and slightly relax version constraints for
        vector_graphics* to allow the new versions.
      - Moves gitignore of golden test diffs into the package.
      760b8df4
  6. Oct 28, 2024
    • engine-flutter-autoroll's avatar
      Roll Flutter from 5a11904383d1 to 3fb95c7dd21d (16 revisions) (#7948) · 85c4934b
      engine-flutter-autoroll authored
      https://github.com/flutter/flutter/compare/5a11904383d1...3fb95c7dd21d
      
      2024-10-28 engine-flutter-autoroll@skia.org Roll Flutter Engine from bf5bfeebf89f to 23b2c6d3b3b1 (3 revisions) (flutter/flutter#157736)
      2024-10-28 magder@google.com Avoid labeling 'context' PRs as 'text-input' (flutter/flutter#157650)
      2024-10-28 32538273+ValentinVignal@users.noreply.github.com Add test for `restorable_route_future.0.dart` (flutter/flutter#157708)
      2024-10-28 reidbaker@google.com Update .ci.yaml have android sdk be 35v1 (flutter/flutter#157621)
      2024-10-28 engine-flutter-autoroll@skia.org Roll Flutter Engine from 2522789c4199 to bf5bfeebf89f (1 revision) (flutter/flutter#157713)
      2024-10-28 32538273+ValentinVignal@users.noreply.github.com Add test for `restoration_mixin.0.dart` (flutter/flutter#157709)
      2024-10-28 32538273+ValentinVignal@users.noreply.github.com Add test for `navigator.restorable_push_replacement.0.dart` (flutter/flutter#157704)
      2024-10-28 32538273+ValentinVignal@users.noreply.github.com Add test for `focus_node.unfocus.0.dart` (flutter/flutter#157673)
      2024-10-28 engine-flutter-autoroll@skia.org Roll Flutter Engine from 9226b089d634 to 2522789c4199 (2 revisions) (flutter/flutter#157710)
      2024-10-28 32538273+ValentinVignal@users.noreply.github.com Add tests for `navigator_state.restorable_push.0.dart` (flutter/flutter#157667)
      2024-10-28 engine-flutter-autoroll@skia.org Roll Flutter Engine from 10e50bd42c42 to 9226b089d634 (1 revision) (flutter/flutter#157702)
      2024-10-28 32538273+ValentinVignal@users.noreply.github.com Add test for `navigator_state.restorable_push_replacement.0.dart` (flutter/flutter#157668)
      2024-10-28 srawlins@google.com Remove unsafe_html lint rule (flutter/flutter#157531)
      2024-10-27 engine-flutter-autoroll@skia.org Roll Flutter Engine from 3162aaad0086 to 10e50bd42c42 (1 revision) (flutter/flutter#157690)
      2024-10-27 ybz975218925@gmail.com Fix Scaffold extend body (flutter/flutter#157441)
      2024-10-26 engine-flutter-autoroll@skia.org Roll Flutter Engine from c9b8ac96f6ce to 3162aaad0086 (3 revisions) (flutter/flutter#157681)
      
      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 stuartmorgan@google.com,tarrinneal@google.com 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
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
      85c4934b
    • Stuart Morgan's avatar
      Update vector_graphics to match repo conventions · a1bfadf6
      Stuart Morgan authored
      - Add missing licence headers.
      - Remove analysis options fix new warnings.
      - Update min SDKs.
      - Autoformat.
      - Update pubspecs to follow repo standard.
        - Includes removing dependency overrides for inter-package path
          pinning as a default state; this can be added temporarily in PRs
          with repo tooling.
      - Allow xml dependency, and relax the pinning requirement to allow an
        explicit, inclusive-endpoint range.
      - Skip tests on unsupported platforms.
      - Switch vector_graphics_codec from flutter_test to test.
      - Add repo metadata.
      - Add commemoration to the README.
      - Add AUTHORS files.
      - Bump versions and slightly relax version constraints to allow the new
        versions.
      a1bfadf6
    • Maurice Parrish's avatar
      [interactive_media_ads] Adds internal wrapper for iOS native... · c658ca2d
      Maurice Parrish authored
      [interactive_media_ads] Adds internal wrapper for iOS native `IMACompanionAdSlot` and `IMACompanionDelegate` (#7889)
      
    • Stuart Morgan's avatar
      [flutter_svg] Repository merge · c6d2d826
      Stuart Morgan authored
      Initial merge commit from dnfield/flutter_svg with no changes other than
      file locations.
      c6d2d826
    • Stuart Morgan's avatar
  7. Oct 27, 2024
  8. Oct 26, 2024
    • engine-flutter-autoroll's avatar
      Roll Flutter from 4faa4a415ec9 to 5a11904383d1 (67 revisions) (#7937) · 4fd562d6
      engine-flutter-autoroll authored
      Roll Flutter from 4faa4a415ec9 to 5a11904383d1 (67 revisions)
      
      https://github.com/flutter/flutter/compare/4faa4a415ec9...5a11904383d1
      
      2024-10-26 30870216+gaaclarke@users.noreply.github.com Relands "Wide gamut framework gradient test (#153976)" (flutter/flutter#157643)
      2024-10-26 engine-flutter-autoroll@skia.org Roll Flutter Engine from 7c5c5fe5c84d to c9b8ac96f6ce (3 revisions) (flutter/flutter#157662)
      2024-10-26 32538273+ValentinVignal@users.noreply.github.com Add test for `navigator_state.restorable_push_and_remove_until.0.dart` (flutter/flutter#157595)
      2024-10-26 matanlurey@users.noreply.github.com Tighten up `throwToolExit`, explain when to use it. (flutter/flutter#157561)
      2024-10-26 matanlurey@users.noreply.github.com Remove extraneous `throw`. (flutter/flutter#157658)
      2024-10-26 32538273+ValentinVignal@users.noreply.github.com Add tests for `navigator.restorable_push.0.dart` (flutter/flutter#157492)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from 43e4d9a30666 to 7c5c5fe5c84d (1 revision) (flutter/flutter#157644)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from 5061358e255f to 43e4d9a30666 (1 revision) (flutter/flutter#157637)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from eb867e055790 to 5061358e255f (2 revisions) (flutter/flutter#157623)
      2024-10-25 polinach@google.com Create flutter specific leak troubleshooting guidance. (flutter/flutter#157396)
      2024-10-25 katelovett@google.com Update CupertinoNavigationBar to support large layout (flutter/flutter#157133)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from 38e9be1f74fa to eb867e055790 (3 revisions) (flutter/flutter#157613)
      2024-10-25 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Wide gamut framework gradient test (#153976)" (flutter/flutter#157615)
      2024-10-25 30870216+gaaclarke@users.noreply.github.com Wide gamut framework gradient test (flutter/flutter#153976)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from b413d9996c86 to 38e9be1f74fa (2 revisions) (flutter/flutter#157604)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Packages from a556f0f5 to e0c4f55c (2 revisions) (flutter/flutter#157605)
      2024-10-25 jonahwilliams@google.com Support backdrop key in flutter framework. (flutter/flutter#157278)
      2024-10-25 reidbaker@google.com Add 3.24.4 changelog to master (flutter/flutter#157600)
      2024-10-25 mohellebiabdessalem@gmail.com Update flutter.groovy to catch unknown task exception when finding api task (flutter/flutter#157282)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from c4b0184c8783 to b413d9996c86 (1 revision) (flutter/flutter#157580)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from b1c2ba8c4d52 to c4b0184c8783 (1 revision) (flutter/flutter#157578)
      2024-10-25 32538273+ValentinVignal@users.noreply.github.com Add test for `build_owner.0.dart` (flutter/flutter#157499)
      2024-10-25 32538273+ValentinVignal@users.noreply.github.com Add tests  for `focusable_action_detector.0.dart` (flutter/flutter#157575)
      2024-10-25 32538273+ValentinVignal@users.noreply.github.com Add test for `navigator.restorable_push_and_remove_until.0.dart` (flutter/flutter#157487)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from 29440ed1e225 to b1c2ba8c4d52 (1 revision) (flutter/flutter#157572)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from 88716d804aef to 29440ed1e225 (1 revision) (flutter/flutter#157569)
      2024-10-25 engine-flutter-autoroll@skia.org Roll Flutter Engine from b8b28c80a737 to 88716d804aef (2 revisions) (flutter/flutter#157567)
      2024-10-24 engine-flutter-autoroll@skia.org Roll Flutter Engine from 48ff670d256b to b8b28c80a737 (2 revisions) (flutter/flutter#157564)
      2024-10-24 matanlurey@users.noreply.github.com Use discenrable characters (replace `' 🙙 🙛 '` in error logs) (flutter/flutter#157548)
      2024-10-24 matanlurey@users.noreply.github.com Remove unused `PubDependenciesProjectValidator`. (flutter/flutter#157516)
      2024-10-24 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Upgrade tests to AGP 8.7/Gradle 8.10.2/Kotlin 1.8.10 (#157032)" (flutter/flutter#157559)
      2024-10-24 jonahwilliams@google.com Mark mac impeller as bringup. (flutter/flutter#157551)
      2024-10-24 tessertaha@gmail.com Deprecate `ThemeData.dialogBackgroundColor` in favor of `DialogThemeData.backgroundColor` (flutter/flutter#155072)
      2024-10-24 34871572+gmackall@users.noreply.github.com Upgrade tests to AGP 8.7/Gradle 8.10.2/Kotlin 1.8.10 (flutter/flutter#157032)
      2024-10-24 engine-flutter-autoroll@skia.org Roll Flutter Engine from 246344f26edc to 48ff670d256b (2 revisions) (flutter/flutter#157544)
      2024-10-24 matanlurey@users.noreply.github.com Allow opting out of `.flutter-plugins`, opt-out in `refreshPluginsList`. (flutter/flutter#157527)
      2024-10-24 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Reverts "Added a warning if `flutter.groovy` uses a `.flutter-plugins` file. (#157388)" (#157541)" (flutter/flutter#157549)
      2024-10-24 50643541+Mairramer@users.noreply.github.com Changes the offset computation to first item for RenderSliverMainAxisGroup (flutter/flutter#154688)
      2024-10-24 engine-flutter-autoroll@skia.org Roll Packages from 5e03bb1d to a556f0f5 (7 revisions) (flutter/flutter#157539)
      2024-10-24 737941+loic-sharma@users.noreply.github.com Add partial test for flutter build ios-framework on non-module (flutter/flutter#157482)
      2024-10-24 737941+loic-sharma@users.noreply.github.com Add example to SafeArea docs (flutter/flutter#157228)
      2024-10-24 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Added a warning if `flutter.groovy` uses a `.flutter-plugins` file. (#157388)" (flutter/flutter#157541)
      2024-10-24 matanlurey@users.noreply.github.com Added a warning if `flutter.groovy` uses a `.flutter-plugins` file. (flutter/flutter#157388)
      2024-10-24 engine-flutter-autoroll@skia.org Roll Flutter Engine from be56084344d1 to 246344f26edc (2 revisions) (flutter/flutter#157504)
      2024-10-24 104349824+huycozy@users.noreply.github.com Add ability to disable CupertinoSegmentedControl (flutter/flutter#152813)
      2024-10-24 tessertaha@gmail.com Update `Tab.height` parameter doc for tab height lower than default (flutter/flutter#157443)
      ...
      4fd562d6
  9. Oct 25, 2024
  10. Oct 24, 2024
Loading