Nate
5d1bfdcb87
Control flow collections: flutter_tools/
( #147450 )
...
This pull request aims for improved readability, based on issue #146600 .
```dart
// before
List<SupportedPlatform> getSupportedPlatforms({bool includeRoot = false}) {
final List<SupportedPlatform> platforms = includeRoot
? <SupportedPlatform>[SupportedPlatform.root]
: <SupportedPlatform>[];
if (android.existsSync()) {
platforms.add(SupportedPlatform.android);
}
if (ios.exists) {
platforms.add(SupportedPlatform.ios);
}
if (web.existsSync()) {
platforms.add(SupportedPlatform.web);
}
if (macos.existsSync()) {
platforms.add(SupportedPlatform.macos);
}
if (linux.existsSync()) {
platforms.add(SupportedPlatform.linux);
}
if (windows.existsSync()) {
platforms.add(SupportedPlatform.windows);
}
if (fuchsia.existsSync()) {
platforms.add(SupportedPlatform.fuchsia);
}
return platforms;
}
// after
List<SupportedPlatform> getSupportedPlatforms({bool includeRoot = false}) {
return <SupportedPlatform>[
if (includeRoot) SupportedPlatform.root,
if (android.existsSync()) SupportedPlatform.android,
if (ios.exists) SupportedPlatform.ios,
if (web.existsSync()) SupportedPlatform.web,
if (macos.existsSync()) SupportedPlatform.macos,
if (linux.existsSync()) SupportedPlatform.linux,
if (windows.existsSync()) SupportedPlatform.windows,
if (fuchsia.existsSync()) SupportedPlatform.fuchsia,
];
}
```
2024-05-02 22:19:18 +00:00
Nate
7436cc25eb
Add default arguments to AnimatedPhysicalModel
( #147424 )
...
Currently, `PhysicalModel` has [default arguments](2e806700b9/packages/flutter/lib/src/widgets/basic.dart (L1093)
) for `shape` and `elevation`, but `AnimatedPhysicalModel` [does not](2e806700b9/packages/flutter/lib/src/widgets/implicit_animations.dart (L1998)
).
This pull request makes both classes consistent.
2024-05-02 21:59:07 +00:00
engine-flutter-autoroll
9d007937c6
Roll Flutter Engine from 9982b5ffd913 to 5088f63ecee2 (3 revisions) ( #147740 )
...
9982b5ffd9...5088f63ece
2024-05-02 skia-flutter-autoroll@skia.org Roll Skia from a0f0c08f31d8 to 894919003036 (2 revisions) (flutter/engine#52522 )
2024-05-02 skia-flutter-autoroll@skia.org Roll Skia from 4dbf9ad5fa1e to a0f0c08f31d8 (3 revisions) (flutter/engine#52521 )
2024-05-02 skia-flutter-autoroll@skia.org Roll Skia from d37c4d0c5e5d to 4dbf9ad5fa1e (3 revisions) (flutter/engine#52520 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 21:04:15 +00:00
LongCatIsLooong
f76eda1e7f
_RenderDecorator.computeDryBaseline
(#146365 )
...
Depends on https://github.com/flutter/flutter/pull/146363
No test because the consistency of the `computeDryBaseline` implementations is checked at paint time.
2024-05-02 20:56:11 +00:00
engine-flutter-autoroll
21da3a8063
Roll Flutter Engine from e1126e59b698 to 9982b5ffd913 (1 revision) ( #147727 )
...
e1126e59b6...9982b5ffd9
2024-05-02 aam@google.com Use new Dart_PortEx api to ensure SendPort can be rebuild properly. (flutter/engine#52498 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 18:44:08 +00:00
Yegor
1d0e798c21
[web] increase chromedriver logging level ( #147687 )
...
This can help debugging https://github.com/flutter/flutter/issues/146189
2024-05-02 10:16:37 -07:00
engine-flutter-autoroll
da05147d6a
Roll Flutter Engine from 1fb36ac9d718 to e1126e59b698 (1 revision) ( #147720 )
...
1fb36ac9d7...e1126e59b6
2024-05-02 skia-flutter-autoroll@skia.org Roll Dart SDK from faabc0c9861c to 040d3f6c4c45 (1 revision) (flutter/engine#52518 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 16:42:41 +00:00
engine-flutter-autoroll
bf7191fd38
Roll Flutter Engine from b989d239e281 to 1fb36ac9d718 (2 revisions) ( #147713 )
...
b989d239e2...1fb36ac9d7
2024-05-02 skia-flutter-autoroll@skia.org Roll Skia from 6c41182ab9bb to d37c4d0c5e5d (1 revision) (flutter/engine#52517 )
2024-05-02 skia-flutter-autoroll@skia.org Roll Dart SDK from c34adf6abcca to faabc0c9861c (1 revision) (flutter/engine#52515 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 13:51:48 +00:00
engine-flutter-autoroll
13a05def83
Roll Flutter Engine from 3c9c2ce8369e to b989d239e281 (1 revision) ( #147711 )
...
3c9c2ce836...b989d239e2
2024-05-02 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from PIHl-e41i3mzbriG1... to cScmnvKM3py9E2087... (flutter/engine#52516 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from PIHl-e41i3mz to cScmnvKM3py9
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 aaclarke@google.com ,rmistry@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
2024-05-02 12:22:29 +00:00
engine-flutter-autoroll
07123b61b0
Roll Flutter Engine from 58b031c096ea to 3c9c2ce8369e (2 revisions) ( #147703 )
...
58b031c096...3c9c2ce836
2024-05-02 skia-flutter-autoroll@skia.org Roll Skia from 7c68b9c33b08 to 6c41182ab9bb (2 revisions) (flutter/engine#52513 )
2024-05-02 skia-flutter-autoroll@skia.org Roll Dart SDK from 30b5422ec1b2 to c34adf6abcca (1 revision) (flutter/engine#52512 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 09:10:24 +00:00
engine-flutter-autoroll
9f3be7dfd9
Roll Flutter Engine from fc28057dbd4d to 58b031c096ea (1 revision) ( #147701 )
...
fc28057dbd...58b031c096
2024-05-02 skia-flutter-autoroll@skia.org Roll Skia from 97aa3f4cf290 to 7c68b9c33b08 (1 revision) (flutter/engine#52511 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 08:15:02 +00:00
engine-flutter-autoroll
d34d4cd125
Roll Flutter Engine from bfc6787eedc3 to fc28057dbd4d (1 revision) ( #147700 )
...
bfc6787eed...fc28057dbd
2024-05-02 jonahwilliams@google.com [Impeller] allow for one more active swapchain image. (flutter/engine#52505 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 07:08:30 +00:00
engine-flutter-autoroll
70f4a6301e
Roll Flutter Engine from 7cbef71f4f54 to bfc6787eedc3 (1 revision) ( #147699 )
...
7cbef71f4f...bfc6787eed
2024-05-02 ian@hixie.ch Remove rasterizerTracingThreshold, checkerboardRasterCacheImages, and checkerboardOffscreenLayers, etc (flutter/engine#52446 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 06:27:04 +00:00
engine-flutter-autoroll
6ce591f7ea
Roll Flutter Engine from 90ce9e5959fc to 7cbef71f4f54 (1 revision) ( #147696 )
...
90ce9e5959...7cbef71f4f
2024-05-02 skia-flutter-autoroll@skia.org Roll Skia from 81ccf3ab27ee to 97aa3f4cf290 (1 revision) (flutter/engine#52508 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 05:33:40 +00:00
engine-flutter-autoroll
4b691f7739
Roll Flutter Engine from 78dced50c467 to 90ce9e5959fc (1 revision) ( #147695 )
...
78dced50c4...90ce9e5959
2024-05-02 skia-flutter-autoroll@skia.org Roll Dart SDK from 04d373e0a99d to 30b5422ec1b2 (1 revision) (flutter/engine#52507 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 04:47:16 +00:00
Andrew Kolos
13beab1ecc
add verbose logging to select hot reload/hot restart tests ( #147673 )
...
In service of https://github.com/flutter/flutter/issues/146879 and https://github.com/flutter/flutter/issues/145812 . In these issues, we see what appears to be the flutter tool getting stuck somewhere during hot reload. It may help if we knew were exactly where we are getting stuck (preparing assets, writing them to device, etc.).
This PR adds a new parameter to `FlutterTestDriver::run`, `verbose`. When verbose is set, `FlutterTestDriver` will run `flutter` with `--verbose` in its tests. Keep in mind that `FlutterTestDriver` only prints logs from `flutter` when a test fails, so this shouldn't spam the logs of passing tests.
This PR sets the parameter when invoking the flaky tests from https://github.com/flutter/flutter/issues/146879 and #145812 , so we should see more detailed logs in future flakes.
While this is a low risk PR, you can verify the change by intentionally breaking hot reload code, clearing the cached tool binaries, and then running either of these tests.
2024-05-02 04:03:32 +00:00
engine-flutter-autoroll
bda9eef950
Roll Flutter Engine from 3087ec1adddd to 78dced50c467 (3 revisions) ( #147693 )
...
3087ec1add...78dced50c4
2024-05-02 bdero@google.com et phone home (flutter/engine#52506 )
2024-05-02 ditman@gmail.com [web] Expose browser_detection through ui_web. (flutter/engine#52380 )
2024-05-02 jonahwilliams@google.com [Impeller] remove incremental allocation during filled path tessellation. (flutter/engine#52401 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 03:43:37 +00:00
auto-submit[bot]
706f39b0a0
Reverts "Implement computeDryBaseline for RenderWrap
( #146260 )" ( #147692 )
...
Reverts: flutter/flutter#146260
Initiated by: chingjun
Reason for reverting: Broke internal tests. See b/338308016
Original PR Author: LongCatIsLooong
Reviewed By: {goderbauer}
This change reverts the following previous change:
2024-05-02 02:26:28 +00:00
engine-flutter-autoroll
8025af0aa6
Roll Flutter Engine from f56c20c6ac67 to 3087ec1adddd (2 revisions) ( #147688 )
...
f56c20c6ac...3087ec1add
2024-05-02 jacksongardner@google.com [skwasm] Don't mark the backend texture as mipmapped, since it isn't. (flutter/engine#52501 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Skia from 36ec16922dad to 81ccf3ab27ee (1 revision) (flutter/engine#52504 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 01:55:14 +00:00
Greg Spencer
2e78ed0ff9
Allow explicit exclusion of packages from pinned packages in flutter update-packages --force-update
( #147679 )
...
## Description
This introduces a list of packages that we will explicitly not pin. It is to be used for things where the package isn't actually published, but is a transitive dependency of another package included in the SDK. This happens with the `macros` package, for instance, which depends on the private, unpublished, `_macros` package where the SDK does some tricky things to depend on it (it depends on "any", but ships it as part of the SDK).
Also ran `flutter update-packages --force-update` to update all of the pubspec files.
## Related Issues
- Fixes #147656
## Tests
- Added a test that makes sure that explicitly unpinned packages don't show up in the pinned list.
2024-05-02 01:16:54 +00:00
LongCatIsLooong
ab8ecd5e74
Implement getDryBaseline for Stack and Overlay ( #146253 )
2024-05-02 00:31:12 +00:00
engine-flutter-autoroll
603416233c
Roll Flutter Engine from 2d73fa207927 to f56c20c6ac67 (2 revisions) ( #147681 )
...
2d73fa2079...f56c20c6ac
2024-05-01 skia-flutter-autoroll@skia.org Roll Dart SDK from f5a429107c87 to 04d373e0a99d (2 revisions) (flutter/engine#52503 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Skia from 553b6e2eddc5 to 36ec16922dad (2 revisions) (flutter/engine#52502 )
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 aaclarke@google.com ,rmistry@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
2024-05-02 00:18:22 +00:00
Polina Cherkasova
5eb1807464
Update selectable_text_test.dart ( #147677 )
...
Fix leak introduced by https://github.com/flutter/flutter/pull/147341
2024-05-02 00:03:15 +00:00
engine-flutter-autoroll
7203af3e2f
Roll Flutter Engine from c536a14052e5 to 2d73fa207927 (2 revisions) ( #147678 )
...
c536a14052...2d73fa2079
2024-05-01 magder@google.com Migrate PlatformMessageHandlerIos to ARC (flutter/engine#52226 )
2024-05-01 47866232+chunhtai@users.noreply.github.com macOS fluttertextinputplugin drops selector called if no client (flutter/engine#52495 )
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 aaclarke@google.com ,rmistry@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
2024-05-01 23:24:41 +00:00
LongCatIsLooong
88ffd89685
Implement computeDryBaseline for RenderWrap
( #146260 )
2024-05-01 22:39:08 +00:00
engine-flutter-autoroll
730167eb38
Roll Flutter Engine from 842cf254ec58 to c536a14052e5 (1 revision) ( #147675 )
...
842cf254ec...c536a14052
2024-05-01 skia-flutter-autoroll@skia.org Roll Skia from 0b31f64bd8d8 to 553b6e2eddc5 (5 revisions) (flutter/engine#52500 )
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 aaclarke@google.com ,rmistry@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
2024-05-01 22:37:15 +00:00
dependabot[bot]
ffbeb5a39c
Bump codecov/codecov-action from 4.3.0 to 4.3.1 ( #147674 )
...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action ) from 4.3.0 to 4.3.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-action/releases ">codecov/codecov-action's releases</a>.</em></p>
<blockquote>
<h2>v4.3.1</h2>
<h2>What's Changed</h2>
<ul>
<li>build(deps-dev): bump typescript from 5.4.4 to 5.4.5 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1370 ">codecov/codecov-action#1370</a></li>
<li>fix: more verbose log message when failing to import pgp key by <a href="https://github.com/ReenigneArcher "><code>@âReenigneArcher</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1371 ">codecov/codecov-action#1371</a></li>
<li>build(deps-dev): bump <code>@âtypescript-eslint/eslint-plugin</code> from 7.6.0 to 7.7.0 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1374 ">codecov/codecov-action#1374</a></li>
<li>build(deps-dev): bump <code>@âtypescript-eslint/parser</code> from 7.6.0 to 7.7.0 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1375 ">codecov/codecov-action#1375</a></li>
<li>build(deps): bump actions/checkout from 4.1.2 to 4.1.3 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1382 ">codecov/codecov-action#1382</a></li>
<li>build(deps): bump github/codeql-action from 3.24.10 to 3.25.1 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1381 ">codecov/codecov-action#1381</a></li>
<li>build(deps): bump actions/upload-artifact from 4.3.1 to 4.3.2 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1380 ">codecov/codecov-action#1380</a></li>
<li>build(deps-dev): bump <code>@âtypescript-eslint/parser</code> from 7.7.0 to 7.7.1 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1384 ">codecov/codecov-action#1384</a></li>
<li>build(deps-dev): bump <code>@âtypescript-eslint/eslint-plugin</code> from 7.7.0 to 7.7.1 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1383 ">codecov/codecov-action#1383</a></li>
<li>Update README.md to point to docs about tokenless by <a href="https://github.com/rohan-at-sentry "><code>@ârohan-at-sentry</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1395 ">codecov/codecov-action#1395</a></li>
<li>build(deps): bump actions/upload-artifact from 4.3.2 to 4.3.3 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1393 ">codecov/codecov-action#1393</a></li>
<li>build(deps): bump actions/checkout from 4.1.3 to 4.1.4 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1392 ">codecov/codecov-action#1392</a></li>
<li>build(deps): bump github/codeql-action from 3.25.1 to 3.25.3 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1391 ">codecov/codecov-action#1391</a></li>
<li>style: Node Packages by <a href="https://github.com/marcobiedermann "><code>@âmarcobiedermann</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1394 ">codecov/codecov-action#1394</a></li>
<li>build(deps-dev): bump <code>@âtypescript-eslint/eslint-plugin</code> from 7.7.1 to 7.8.0 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1402 ">codecov/codecov-action#1402</a></li>
<li>build(deps-dev): bump <code>@âtypescript-eslint/parser</code> from 7.7.1 to 7.8.0 by <a href="https://github.com/dependabot "><code>@âdependabot</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1401 ">codecov/codecov-action#1401</a></li>
<li>docs: Type Annotations by <a href="https://github.com/marcobiedermann "><code>@âmarcobiedermann</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1397 ">codecov/codecov-action#1397</a></li>
<li>docs: main branch by <a href="https://github.com/marcobiedermann "><code>@âmarcobiedermann</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1396 ">codecov/codecov-action#1396</a></li>
<li>fix: bypass token checks for forks and OIDC by <a href="https://github.com/thomasrockhu-codecov "><code>@âthomasrockhu-codecov</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1404 ">codecov/codecov-action#1404</a></li>
<li>chore(release): 4.3.1. by <a href="https://github.com/thomasrockhu-codecov "><code>@âthomasrockhu-codecov</code></a> in <a href="https://redirect.github.com/codecov/codecov-action/pull/1405 ">codecov/codecov-action#1405</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ReenigneArcher "><code>@âReenigneArcher</code></a> made their first contribution in <a href="https://redirect.github.com/codecov/codecov-action/pull/1371 ">codecov/codecov-action#1371</a></li>
<li><a href="https://github.com/rohan-at-sentry "><code>@ârohan-at-sentry</code></a> made their first contribution in <a href="https://redirect.github.com/codecov/codecov-action/pull/1395 ">codecov/codecov-action#1395</a></li>
<li><a href="https://github.com/marcobiedermann "><code>@âmarcobiedermann</code></a> made their first contribution in <a href="https://redirect.github.com/codecov/codecov-action/pull/1394 ">codecov/codecov-action#1394</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/codecov/codecov-action/compare/v4.3.0...v4.3.1 ">https://github.com/codecov/codecov-action/compare/v4.3.0...v4.3.1 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="5ecb98a3c6
"><code>5ecb98a</code></a> chore(release): 4.3.1. (<a href="https://redirect.github.com/codecov/codecov-action/issues/1405 ">#1405</a>)</li>
<li><a href="5a299d1127
"><code>5a299d1</code></a> fix: bypass token checks for forks and OIDC (<a href="https://redirect.github.com/codecov/codecov-action/issues/1404 ">#1404</a>)</li>
<li><a href="dad251dcaf
"><code>dad251d</code></a> docs: main branch (<a href="https://redirect.github.com/codecov/codecov-action/issues/1396 ">#1396</a>)</li>
<li><a href="e8bbe5fc01
"><code>e8bbe5f</code></a> docs: Type Annotations (<a href="https://redirect.github.com/codecov/codecov-action/issues/1397 ">#1397</a>)</li>
<li><a href="a6fd87fc19
"><code>a6fd87f</code></a> build(deps-dev): bump <code>@âtypescript-eslint/parser</code> from 7.7.1 to 7.8.0 (<a href="https://redirect.github.com/codecov/codecov-action/issues/1401 ">#1401</a>)</li>
<li><a href="76c8cd6163
"><code>76c8cd6</code></a> build(deps-dev): bump <code>@âtypescript-eslint/eslint-plugin</code> from 7.7.1 to 7.8.0 (#...</li>
<li><a href="1290bddc88
"><code>1290bdd</code></a> style: Node Packages (<a href="https://redirect.github.com/codecov/codecov-action/issues/1394 ">#1394</a>)</li>
<li><a href="951ef79006
"><code>951ef79</code></a> build(deps): bump github/codeql-action from 3.25.1 to 3.25.3 (<a href="https://redirect.github.com/codecov/codecov-action/issues/1391 ">#1391</a>)</li>
<li><a href="bb71c1ba2f
"><code>bb71c1b</code></a> build(deps): bump actions/checkout from 4.1.3 to 4.1.4 (<a href="https://redirect.github.com/codecov/codecov-action/issues/1392 ">#1392</a>)</li>
<li><a href="acc5d43cad
"><code>acc5d43</code></a> build(deps): bump actions/upload-artifact from 4.3.2 to 4.3.3 (<a href="https://redirect.github.com/codecov/codecov-action/issues/1393 ">#1393</a>)</li>
<li>Additional commits viewable in <a href="84508663e9...5ecb98a3c6
">compare view</a></li>
</ul>
</details>
<br />
[](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>
2024-05-01 22:19:20 +00:00
Ian Hickson
db4dfa0dde
Remove obsolete performance analysis tools. ( #147663 )
...
We're unlikely to support these reliably going forward.
2024-05-01 22:05:02 +00:00
engine-flutter-autoroll
74771f12af
Roll Flutter Engine from 5129b4919434 to 842cf254ec58 (3 revisions) ( #147670 )
...
5129b49194...842cf254ec
2024-05-01 chinmaygarde@google.com [Impeller] Wire up hardware buffer backed swapchains on Android. (flutter/engine#52087 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Skia from bfbd738fb97b to 0b31f64bd8d8 (3 revisions) (flutter/engine#52492 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Dart SDK from d946408c559a to f5a429107c87 (2 revisions) (flutter/engine#52487 )
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 aaclarke@google.com ,rmistry@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
2024-05-01 21:42:24 +00:00
PurplePolyhedron
68f8b536e2
fix DropdownMenu overflow ( #147233 )
...
fix `DropdownMenu` overflow issue in https://github.com/flutter/flutter/issues/147076 and https://github.com/flutter/flutter/issues/147173
However I believe the the menu placement issue in https://github.com/flutter/flutter/issues/147076 is a separate issue. It is not fixed here.
fixes https://github.com/flutter/flutter/issues/147173
2024-05-01 21:24:58 +00:00
Yegor
f256f68831
[web] remove platform_messages_integration test ( #147654 )
...
This functionality is already fully covered by https://github.com/flutter/engine/blob/main/lib/web_ui/test/engine/platform_views/message_handler_test.dart
This might help with https://github.com/flutter/flutter/issues/146189 a little.
2024-05-01 21:12:01 +00:00
Renzo Olivares
5181086fac
Fix TextField
horizontal drag conflicts ( #147341 )
...
Currently on iOS `TextField` horizontal drag gestures will have precedence over parent horizontal drag gestures when competing with each other because the default `touchSlop` value used by `TextField` to calculate whether the threshold for a drag has been met is the same as the one used by parent horizontal drag gestures like `PageView`, and other `Scrollable`s. The default value is `18.0`, and because the `TextField` receives the `PointerEvent` first in this scenario, it always declares victory before any parent horizontal drag gestures has the chance to.
Native iOS behavior: The parent horizontal drag gestures will always win unless the drag originated on the cursor (collapsed selection), in that case the TextField cursor drag gestures will win.
This change:
* Introduces `BaseTapAndDragGestureRecognizer.eagerVictoryOnDrag` which can be used to configure the recognizer to declare victory immediately when it detects a drag, or when disabled it will wait until it is the last recognizer in the arena before declaring victory. The default behavior is that it declares victory immediately when the drag is detected.
* Eliminates the iOS cursor drag logic from `TextSelectionGestureDetector`, this logic is now delegated to the selection handle overlay which already had this logic in place.
* Enables iOS cursor to always beat other drag gestures by setting the touch slop lower.
* Disables `eagerVictoryOnDrag` for iOS to allow for parent drag gestures to win and match native behavior.
Fixes #124421 , Fixes #130198 , Fixes #142624 , Fixes #142447 , Fixes #127017
2024-05-01 20:51:54 +00:00
Nate
586e1fce1b
flutter/lib/src/
: refactoring if-chains into switch expressions (#147472 )
...
Cleans up some code by porting if chains to switch statements.
2024-05-01 12:58:35 -07:00
auto-submit[bot]
5a41e1edac
Reverts "Draggable feedback positioning ( #145647 )" ( #147658 )
...
Reverts: flutter/flutter#145647
Initiated by: jmagman
Reason for reverting: Failing draggable_test in post-submit.
Original PR Author: timcreatedit
Reviewed By: {justinmc, goderbauer}
This change reverts the following previous change:
We changed the coordinates used to position the `Draggable` feedback by transforming them into the `Overlay`s coordinate space. This has no influence on any untransformed `Overlay`, most Flutter apps should be not affected.
This PR fixes the positioning of the feedback in transformed context (see #145639 for before video):
https://github.com/flutter/flutter/assets/42270125/df34e198-0667-453d-a27a-a79b2e2825a1
- fixes #145639
2024-05-01 18:26:27 +00:00
engine-flutter-autoroll
71a29452c0
Roll Flutter Engine from 0014e0353aa9 to 5129b4919434 (1 revision) ( #147655 )
...
0014e0353a...5129b49194
2024-05-01 30870216+gaaclarke@users.noreply.github.com [Impeller] Implements retry for `Picture.toImage` (flutter/engine#52470 )
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 aaclarke@google.com ,rmistry@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
2024-05-01 17:35:06 +00:00
Yegor
ba6302e2d5
add lang attribute to the a11y_assessments app ( #147586 )
...
Since the app is used to assess Flutter's overall accessibility, the app
should follow at many guidelines as possible, including setting the
`lang` attribute.
Fixes b/338044851
2024-05-01 10:29:17 -07:00
Tim Lehmann
5f9e069111
Draggable feedback positioning ( #145647 )
...
Fixes a calculation in Draggable that was previously wrong when the target was transformed.
2024-05-01 09:56:23 -07:00
engine-flutter-autoroll
b974dcb490
Roll Flutter Engine from 0ce67714ce4c to 0014e0353aa9 (13 revisions) ( #147649 )
...
0ce67714ce...0014e0353a
2024-05-01 john@johnmccutchan.com Fix et run (flutter/engine#52477 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Skia from 5f4ebd628994 to bfbd738fb97b (2 revisions) (flutter/engine#52479 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from HP2saK9sVOtKvpquC... to PIHl-e41i3mzbriG1... (flutter/engine#52480 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Skia from a6bc04f984d2 to 5f4ebd628994 (1 revision) (flutter/engine#52478 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Dart SDK from c88854d4282c to d946408c559a (1 revision) (flutter/engine#52476 )
2024-05-01 chinmaygarde@google.com [Impeller] Document the EGL toolkit. (flutter/engine#52469 )
2024-05-01 jacksongardner@google.com [skwasm] Change default `FilterQuality` to `None` for image shaders. (flutter/engine#52468 )
2024-05-01 skia-flutter-autoroll@skia.org Roll Dart SDK from 3f649c97a08c to c88854d4282c (1 revision) (flutter/engine#52475 )
2024-04-30 skia-flutter-autoroll@skia.org Roll Skia from 30aaaef0390d to a6bc04f984d2 (1 revision) (flutter/engine#52471 )
2024-04-30 skia-flutter-autoroll@skia.org Roll Skia from 85ec65ecd5ec to 30aaaef0390d (4 revisions) (flutter/engine#52466 )
2024-04-30 skia-flutter-autoroll@skia.org Roll Dart SDK from 7a517de88964 to 3f649c97a08c (1 revision) (flutter/engine#52465 )
2024-04-30 skia-flutter-autoroll@skia.org Roll Skia from 77350e051f71 to 85ec65ecd5ec (2 revisions) (flutter/engine#52464 )
2024-04-30 skia-flutter-autoroll@skia.org Roll Skia from 8f2d039e1190 to 77350e051f71 (1 revision) (flutter/engine#52460 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from HP2saK9sVOtK to PIHl-e41i3mz
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 aaclarke@google.com ,rmistry@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
2024-05-01 16:41:22 +00:00
Kostia Sokolovskyi
32ea4b3c46
Add test for animated_fractionally_sized_box.0.dart API example. ( #146721 )
...
This PR contributes to https://github.com/flutter/flutter/issues/130459
### Description
- Adds `examples/api/test/widgets/implicit_animations/animated_fractionally_sized_box.0_test.dart` test
2024-05-01 16:03:12 +00:00
engine-flutter-autoroll
a1cb040511
Roll Packages from cc47b06b438d to aea93d2a515c (5 revisions) ( #147647 )
...
cc47b06b43...aea93d2a51
2024-04-30 15619084+vashworth@users.noreply.github.com Skip podspec Swift Search Path validation if only swift file is Package.swift (flutter/packages#6627 )
2024-04-30 ditman@gmail.com [go_router_builder] Tweaks for latest analyzer-6.5.0 (flutter/packages#6632 )
2024-04-30 engine-flutter-autoroll@skia.org Roll Flutter from db8c475cac11 to b597dd24cb97 (23 revisions) (flutter/packages#6631 )
2024-04-30 44902066+waleedf112@users.noreply.github.com [flutter_adaptive_scaffold] use `MediaQuery.sizeOf` instead of `MediaQuery.of` to prevent unnecessary rebuilds (flutter/packages#6544 )
2024-04-30 34871572+gmackall@users.noreply.github.com [image_picker] Update documentation to note that Photo Picker use is non-optional on Android 13+ (flutter/packages#6569 )
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 ,rmistry@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
2024-05-01 16:03:09 +00:00
Ellet
8bf614f181
Update reorderable_list.dart to use Dart 3 return switch statement for consistency ( #147505 )
...
*Update `reorderable_list.dart` from `widgets` to use Dart 3 return switch statement syntax for consistency.*
This just a syntax change to match the rest of the functions in this file
2024-05-01 16:03:08 +00:00
Kostia Sokolovskyi
d33bb8fa5e
Add tests for single_activator.0.dart API example. ( #147426 )
...
This PR contributes to https://github.com/flutter/flutter/issues/130459
### Description
- Fixes name of the `examples/api/lib/widgets/shortcuts/single_activator.single_activator.0.dart`
- Adds tests for `examples/api/lib/widgets/shortcuts/single_activator.0.dart`
2024-05-01 14:52:57 +00:00
Kishan Dhankecha
2867ac7885
Added missing code block language in docs ( #147481 )
...
- added language for all code blocks
- replaced `bash` or `shell` with `sh` for consistency.
- added `sh` and `console` in the GitHub template link generator.
- updated test for GitHub template.
2024-05-01 14:44:27 +00:00
Zachary Anderson
cb2197e9b3
Move docs_test and docs_publish to bringup ( #147645 )
...
For https://github.com/flutter/flutter/issues/147609 to unblock the
tree.
@gspencergoog @jason-simmons
2024-05-01 07:41:55 -07:00
auto-submit[bot]
abbaaea8a1
Reverts "Fix memory leak in TabPageSelector
( #147403 )" ( #147622 )
...
Reverts: flutter/flutter#147403
Initiated by: chingjun
Reason for reverting: Causing an internal test to fail, see b/338159496 for details
Original PR Author: ValentinVignal
Reviewed By: {polina-c}
This change reverts the following previous change:
Part of https://github.com/flutter/flutter/issues/141198
2024-05-01 05:32:19 +00:00
chunhtai
3e399c1578
Revert "add a new PopScope.onPopWithResultInvoke widget to replace Po… ( #147597 )
...
…pScope.onPopInvoke (#147016 )"
This reverts commit 8031a3e30cf4adc13bedea0aa44c05a1cf8aa852.
Needs to migrate flutter_eval
## 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/wiki/Tree-hygiene#overview
[Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene
[test-exempt]:
https://github.com/flutter/flutter/wiki/Tree-hygiene#tests
[Flutter Style Guide]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
[Features we expect every widget to implement]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#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/wiki/Tree-hygiene#handling-breaking-changes
[Discord]: https://github.com/flutter/flutter/wiki/Chat
[Data Driven Fixes]:
https://github.com/flutter/flutter/wiki/Data-driven-Fixes
2024-04-30 13:25:24 -07:00
Andrew Kolos
ce822ec8bb
include exception details in tool exit displayed when adb call fails ( #147498 )
...
Fixes #125971
2024-04-30 17:38:21 +00:00
Valentin Vignal
af270935bb
Fix memory leak in TabPageSelector
( #147403 )
2024-04-30 10:35:22 -07:00
engine-flutter-autoroll
b597dd24cb
Roll Flutter Engine from 2c1517bbf555 to 0ce67714ce4c (1 revision) ( #147585 )
...
2c1517bbf5...0ce67714ce
2024-04-30 skia-flutter-autoroll@skia.org Roll Skia from 459555f490bf to 8f2d039e1190 (1 revision) (flutter/engine#52458 )
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 aaclarke@google.com ,rmistry@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
2024-04-30 17:26:16 +00:00
engine-flutter-autoroll
456f0101fd
Roll Packages from 87a7c51cc633 to cc47b06b438d (5 revisions) ( #147580 )
...
87a7c51cc6...cc47b06b43
2024-04-30 joonas.kerttula@codemate.com [google_maps_flutter_web] Add marker clustering support (flutter/packages#6187 )
2024-04-30 joonas.kerttula@codemate.com [google_maps_flutter_android] Add marker clustering support (flutter/packages#6185 )
2024-04-29 32538273+ValentinVignal@users.noreply.github.com [go_router] Don't log if `hierarchicalLoggingEnabled` is `true` (flutter/packages#6019 )
2024-04-29 43054281+camsim99@users.noreply.github.com [file_selector_android] Update `LICENSE` file to include newly added licensed code (flutter/packages#6626 )
2024-04-29 43054281+camsim99@users.noreply.github.com [file_selector_android] Modifies `getDirectoryPath`, `openFile`, `openFiles` to return file/directory paths instead of URIs (flutter/packages#6438 )
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 ,rmistry@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
2024-04-30 16:04:09 +00:00