Ian Hickson
8a01c9b707
Use toStringAsFixed in DecorationImage.toString ( #131026 )
...
This makes the output less sensitive on JS int vs double shenanigans.
2023-07-24 19:59:06 +00:00
engine-flutter-autoroll
c53cfc555e
Roll Flutter Engine from aa876f6bec69 to 2b8d83fa20e3 (3 revisions) ( #131207 )
...
aa876f6bec...2b8d83fa20
2023-07-24 zanderso@users.noreply.github.com Revert "Remove more calls to SkCanvas::flush() and SkSurface::flush()" (flutter/engine#43957 )
2023-07-24 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from A02P1GsGg001-Mpn3... to DOxjABQZ-mA_9Lllw... (flutter/engine#43953 )
2023-07-24 kjlubick@users.noreply.github.com Remove more calls to SkCanvas::flush() and SkSurface::flush() (flutter/engine#43902 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from A02P1GsGg001 to DOxjABQZ-mA_
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 bdero@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://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
2023-07-24 19:44:22 +00:00
Taha Tesser
5554b0eeb3
Fix M3 TimePicker dial background uses incorrect color ( #131045 )
...
fixes [Material3: TimePicker clock dial use wrong spec color and its web spec has a mistake](https://github.com/flutter/flutter/issues/118657 )
### Description
This PR fixes the default color used for the Material 3 dial background.
### Code sample
<details>
<summary>expand to view the code sample</summary>
```dart
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
final ThemeData theme = ThemeData(useMaterial3: true);
return MaterialApp(
debugShowCheckedModeBanner: false,
// theme: theme,
theme: theme.copyWith(
colorScheme: theme.colorScheme.copyWith(
surfaceVariant: const Color(0xffffbf00),
),
),
home: const Example(),
);
}
}
class Example extends StatelessWidget {
const Example({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Sample'),
),
body: Center(
child: ElevatedButton(
onPressed: () {
showTimePicker(
context: context,
initialTime: TimeOfDay.now(),
);
},
child: const Text('Open Time Picker'),
),
),
);
}
}
```
</details>
### Default dial background color
| Before | After |
| --------------- | --------------- |
| <img src="https://github.com/flutter/flutter/assets/48603081/59514586-60c6-489f-b024-f659a26fa1e7 " /> | <img src="https://github.com/flutter/flutter/assets/48603081/75c3c360-df2b-47c8-8187-136ff6d963b6 " /> |
### Custom color scheme
| Before | After |
| --------------- | --------------- |
| <img src="https://github.com/flutter/flutter/assets/48603081/666dd2fc-7ee2-4268-9af0-923019adfccd " /> | <img src="https://github.com/flutter/flutter/assets/48603081/f32dc39e-a43f-4a63-a6e4-9df479b723ed " /> |
2023-07-24 18:30:23 +00:00
Bruno Leroux
97e0a0589e
Fix floating SnackBar throws when FAB is on the top ( #129274 )
...
## Description
This PR updates how a floating snack bar is positionned when a `Scaffold` defines a FAB with `Scaffold.floatingActionButtonLocation` sets to one of the top locations.
**Before this PR:**
- When a FAB location is set to the top of the `Scaffold`, a floating `SnackBar` can't be displayed and an assert throws in debug mode.
**After this PR:**
- When a FAB location is set to the top of the `Scaffold`, a floating `SnackBar` will be displayed at the bottom of the screen, above a `NavigationBar` for instance (the top FAB is ignored when computing the floating snack bar position).

## Motivation
This is a edge case related to a discrepancy between the Material spec and the Flutter `Scaffold` customizability:
- Material spec states that a floating `SnackBar` should be displayed above a FAB. But, in Material spec, FABs are expected to be on the bottom.
- Since https://github.com/flutter/flutter/issues/51465 , Flutter `Scaffold` makes it valid to show a FAB on the top of the `Scaffold`.
## Related Issue
fixes https://github.com/flutter/flutter/issues/128150
## Tests
Adds 1 test.
2023-07-24 18:25:04 +00:00
Michael Goderbauer
283437a2d2
Update link to unbounded constraints error ( #131205 )
...
Fixes https://github.com/flutter/flutter/issues/130805 .
2023-07-24 18:23:49 +00:00
Tae Hyung Kim
8a37b8ba35
Optimize SliverMainAxisGroup/SliverCrossAxisGroup paint function ( #129310 )
...
This PR changes the paint functions for SliverMainAxisGroup and SliverCrossAxisGroup so that only visible slivers are painted.
Fixes https://github.com/flutter/flutter/issues/129214 .
2023-07-24 18:19:03 +00:00
Sabin Neupane
c65cab8fa3
[DropdownMenu] Close menu after editing is complete ( #130710 )
...
Fixes : #130674
Before: The dropdown menu was not closed if empty text was provided
After: The dropdown menu is closed even if empty text is provided
https://github.com/flutter/flutter/assets/61322712/fccac501-9fca-4f60-8a94-abfc50552ec9
*If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].*
2023-07-24 18:15:53 +00:00
Christopher Fujino
43afac1e29
Reduce usage of testUsingContext ( #131078 )
...
Part of https://github.com/flutter/flutter/issues/47161
2023-07-24 17:22:25 +00:00
engine-flutter-autoroll
f2ba0a2b0a
Roll Packages from 2266a7618ee3 to 8028cafa1f0c (13 revisions) ( #131196 )
...
2266a7618e...8028cafa1f
2023-07-24 engine-flutter-autoroll@skia.org Roll Flutter from a8c8c5598c85 to d7ed5dc2e212 (7 revisions) (flutter/packages#4556 )
2023-07-23 engine-flutter-autoroll@skia.org Roll Flutter from e8b397caca6f to a8c8c5598c85 (11 revisions) (flutter/packages#4552 )
2023-07-22 engine-flutter-autoroll@skia.org Roll Flutter from 9cfbf6b9fd40 to e8b397caca6f (12 revisions) (flutter/packages#4550 )
2023-07-21 stuartmorgan@google.com [ci] Clean up except exclusion list (flutter/packages#4547 )
2023-07-21 47866232+chunhtai@users.noreply.github.com [go_router] Replaces uri related properties in GoRouterState (flutter/packages#4392 )
2023-07-21 10687576+bparrishMines@users.noreply.github.com [webview_flutter_wkwebview] Updates pigeon version to `10.1.4` (flutter/packages#4548 )
2023-07-21 tarrinneal@gmail.com [pigeon] Adds package name to method channel. (flutter/packages#4443 )
2023-07-21 stuartmorgan@google.com [ci] Migrate remaing unblocked repo checks to LUCI (flutter/packages#4543 )
2023-07-21 stuartmorgan@google.com [go_router] Remove unused dependency (flutter/packages#4545 )
2023-07-21 engine-flutter-autoroll@skia.org Roll Flutter from d07e8aece184 to 9cfbf6b9fd40 (58 revisions) (flutter/packages#4544 )
2023-07-21 43640732+dancamdev@users.noreply.github.com Adding myself and Michele to AUTHORS (flutter/packages#4527 )
2023-07-21 32538273+ValentinVignal@users.noreply.github.com [go_router_builder] Removes `path_to_regexp` from the dependencies (flutter/packages#4524 )
2023-07-21 rexios@rexios.dev [google_maps_flutter_web] Adds options for gesture handling and tilt controls. (flutter/packages#4521 )
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://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
2023-07-24 16:28:23 +00:00
Lexycon
2a1f26c4e1
Fix material date picker behavior when changing year ( #130486 )
...
This PR changes the material date picker behavior when changing the year so that it matches the native picker and the material component guideline. (#81547 )
See material component guideline for the date picker: [Material component date-picker behavior](https://m3.material.io/components/date-pickers/guidelines#1531a81f-4052-4a75-a20d-228c7e110156 )
See also: [Material components android discussion](https://github.com/material-components/material-components-android/issues/1723 )
When selecting another year in the native picker, the same day will be selected (by respecting the boundaries of the date picker). The current material date picker does not select any day when changing the year. This will lead to confusion if the user presses OK and the year does not get updated.
So here is my suggestion:
It will try to preselect the day like the native picker:
- respecting the boundaries of the date picker (firstDate, lastDate)
- changing from leapyear 29th february will set 28th february if not a leapyear is selected
- only set the day if it is selectable (selectableDayPredicate)
The calendar shown in the recording was setup with this parameters:
```
firstDate: DateTime(2016, DateTime.june, 9),
initialDate: DateTime(2018, DateTime.may, 4),
lastDate: DateTime(2021, DateTime.january, 15),
```
https://github.com/flutter/flutter/assets/13588771/3041c296-b9d0-4078-88cd-d1135fc343b3
Fixes #81547
2023-07-24 16:03:05 +00:00
Jason Simmons
9690ef58cf
Update Gallery demo app themes for Material3 compatibility ( #131093 )
2023-07-24 15:06:07 +00:00
engine-flutter-autoroll
d7ed5dc2e2
Roll Flutter Engine from 4734a709cbf2 to aa876f6bec69 (2 revisions) ( #131190 )
...
4734a709cb...aa876f6bec
2023-07-24 skia-flutter-autoroll@skia.org Roll ANGLE from 430a4f559cbc to e28575f66ae5 (1 revision) (flutter/engine#43951 )
2023-07-24 skia-flutter-autoroll@skia.org Roll Skia from 860f12775838 to a56bc23bfec7 (1 revision) (flutter/engine#43950 )
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 bdero@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://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
2023-07-24 14:27:39 +00:00
Martin Kustermann
9c10151508
Use utf8.encode() instead of longer const Utf8Encoder.convert() ( #130567 )
...
The change in [0] has propagated now everywhere, so we can use
`utf8.encode()` instead of the longer `const Utf8Encoder.convert()`.
Also it cleans up code like
```
TypedData bytes;
bytes.buffer.asByteData();
```
as that is not guaranteed to be correct, the correct version would be
```
TypedData bytes;
bytes.buffer.asByteData(bytes.offsetInBytes, bytes.lengthInBytes);
```
a shorter hand for that is:
```
TypedData bytes;
ByteData.sublistView(bytes);
```
[0] https://github.com/dart-lang/sdk/issues/52801
2023-07-24 11:26:05 +02:00
engine-flutter-autoroll
acdd96b2f9
Roll Flutter Engine from 402bceec81f4 to 4734a709cbf2 (2 revisions) ( #131175 )
...
402bceec81...4734a709cb
2023-07-24 skia-flutter-autoroll@skia.org Roll Skia from db314e2867bc to 860f12775838 (1 revision) (flutter/engine#43947 )
2023-07-24 skia-flutter-autoroll@skia.org Roll Skia from f512e7eedaef to db314e2867bc (1 revision) (flutter/engine#43945 )
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 bdero@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://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
2023-07-24 08:41:07 +00:00
engine-flutter-autoroll
e57c0effb7
Roll Flutter Engine from c2c54f6406df to 402bceec81f4 (1 revision) ( #131174 )
...
c2c54f6406...402bceec81
2023-07-24 skia-flutter-autoroll@skia.org Roll Skia from ce49fc71bc7c to f512e7eedaef (1 revision) (flutter/engine#43944 )
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 bdero@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://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
2023-07-24 06:43:23 +00:00
engine-flutter-autoroll
47315808bd
Roll Flutter Engine from 35eab1bcf335 to c2c54f6406df (2 revisions) ( #131173 )
...
35eab1bcf3...c2c54f6406
2023-07-24 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from Xm1-SWnXPhSRxNol-... to hUgYN9tEps515M1lg... (flutter/engine#43941 )
2023-07-24 chinmaygarde@google.com [Impeller] Fix typo in help for compiler switches. (flutter/engine#43937 )
Also rolling transitive DEPS:
fuchsia/sdk/core/mac-amd64 from Xm1-SWnXPhSR to hUgYN9tEps51
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 bdero@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://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
2023-07-24 04:13:35 +00:00
engine-flutter-autoroll
2b9ec67e8c
Roll Flutter Engine from 2ec1183e0dc3 to 35eab1bcf335 (1 revision) ( #131169 )
...
2ec1183e0d...35eab1bcf3
2023-07-24 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from ybLfhFrKOi6jaYUv7... to A02P1GsGg001-Mpn3... (flutter/engine#43940 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from ybLfhFrKOi6j to A02P1GsGg001
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 bdero@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://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
2023-07-24 02:55:23 +00:00
engine-flutter-autoroll
bae6546915
Roll Flutter Engine from b314a29830f8 to 2ec1183e0dc3 (1 revision) ( #131167 )
...
b314a29830...2ec1183e0d
2023-07-24 skia-flutter-autoroll@skia.org Roll Skia from 964f26400b7a to ce49fc71bc7c (1 revision) (flutter/engine#43939 )
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 bdero@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://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
2023-07-24 01:45:06 +00:00
engine-flutter-autoroll
a8c8c5598c
Roll Flutter Engine from 46aab05450d9 to b314a29830f8 (1 revision) ( #131159 )
...
46aab05450...b314a29830
2023-07-23 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from EpYT1-xhJrcojs93J... to Xm1-SWnXPhSRxNol-... (flutter/engine#43934 )
Also rolling transitive DEPS:
fuchsia/sdk/core/mac-amd64 from EpYT1-xhJrco to Xm1-SWnXPhSR
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 bdero@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://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
2023-07-23 14:24:38 +00:00
engine-flutter-autoroll
31e46c5bb7
Roll Flutter Engine from b56ecc7bf721 to 46aab05450d9 (1 revision) ( #131153 )
...
b56ecc7bf7...46aab05450
2023-07-23 skia-flutter-autoroll@skia.org Roll Skia from dba4713e79b2 to 964f26400b7a (1 revision) (flutter/engine#43933 )
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 bdero@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://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
2023-07-23 10:28:23 +00:00
engine-flutter-autoroll
23d9a6299b
Roll Flutter Engine from 265c2c681ab8 to b56ecc7bf721 (1 revision) ( #131148 )
...
265c2c681a...b56ecc7bf7
2023-07-23 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from UA1voLfMc1q4Lpc3f... to ybLfhFrKOi6jaYUv7... (flutter/engine#43932 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from UA1voLfMc1q4 to ybLfhFrKOi6j
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 bdero@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://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
2023-07-23 07:59:24 +00:00
engine-flutter-autoroll
bf7029dd37
Roll Flutter Engine from b8017629f974 to 265c2c681ab8 (1 revision) ( #131143 )
...
b8017629f9...265c2c681a
2023-07-23 skia-flutter-autoroll@skia.org Roll Skia from 6f9ee612c32e to dba4713e79b2 (1 revision) (flutter/engine#43931 )
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 bdero@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://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
2023-07-23 05:49:23 +00:00
engine-flutter-autoroll
fa356ab9f1
Roll Flutter Engine from 46ef96dc4b9f to b8017629f974 (1 revision) ( #131142 )
...
46ef96dc4b...b8017629f9
2023-07-23 skia-flutter-autoroll@skia.org Roll ANGLE from 938ee1e80fc8 to 430a4f559cbc (1 revision) (flutter/engine#43930 )
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 bdero@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://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
2023-07-23 04:33:37 +00:00
engine-flutter-autoroll
101f3f5e44
Roll Flutter Engine from 4ad970f718e8 to 46ef96dc4b9f (1 revision) ( #131139 )
...
4ad970f718...46ef96dc4b
2023-07-22 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from UgZ9epS2Jkz7Yrymp... to EpYT1-xhJrcojs93J... (flutter/engine#43928 )
Also rolling transitive DEPS:
fuchsia/sdk/core/mac-amd64 from UgZ9epS2Jkz7 to EpYT1-xhJrco
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 bdero@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://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
2023-07-23 01:25:23 +00:00
engine-flutter-autoroll
6ff87d0cf2
Roll Flutter Engine from 30f0f6b2abde to 4ad970f718e8 (1 revision) ( #131136 )
...
30f0f6b2ab...4ad970f718
2023-07-22 bdero@google.com [Impeller] Fix text glyph bounds on Android. (flutter/engine#43919 )
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 bdero@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://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
2023-07-22 23:09:36 +00:00
engine-flutter-autoroll
2171a00120
Roll Flutter Engine from 8e8e4577b01b to 30f0f6b2abde (1 revision) ( #131135 )
...
8e8e4577b0...30f0f6b2ab
2023-07-22 skia-flutter-autoroll@skia.org Roll Skia from 0d3c35804162 to 6f9ee612c32e (1 revision) (flutter/engine#43926 )
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 bdero@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://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
2023-07-22 21:45:41 +00:00
engine-flutter-autoroll
2ec2d79eeb
Roll Flutter Engine from 7cea0b59494c to 8e8e4577b01b (1 revision) ( #131134 )
...
7cea0b5949...8e8e4577b0
2023-07-22 bdero@google.com [Impeller] Propagate PopulateGlyphAtlas through filters. (flutter/engine#43920 )
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 bdero@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://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
2023-07-22 20:09:29 +00:00
engine-flutter-autoroll
ea1bf240a5
Roll Flutter Engine from 7d8c0e38f7ea to 7cea0b59494c (1 revision) ( #131131 )
...
7d8c0e38f7...7cea0b5949
2023-07-22 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from LZJYHQeLdXALTMMmj... to UA1voLfMc1q4Lpc3f... (flutter/engine#43925 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from LZJYHQeLdXAL to UA1voLfMc1q4
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 bdero@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://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
2023-07-22 19:12:40 +00:00
engine-flutter-autoroll
bf94af1906
Roll Flutter Engine from 481684a6e276 to 7d8c0e38f7ea (1 revision) ( #131128 )
...
481684a6e2...7d8c0e38f7
2023-07-22 skia-flutter-autoroll@skia.org Roll Skia from 85e8d8403b45 to 0d3c35804162 (1 revision) (flutter/engine#43924 )
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 bdero@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://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
2023-07-22 16:45:11 +00:00
Polina Cherkasova
e8b397caca
Setup leak tracking regression for material. ( #130169 )
2023-07-22 06:45:27 -07:00
engine-flutter-autoroll
d4608046cd
Roll Flutter Engine from 6344b17a2e03 to 481684a6e276 (2 revisions) ( #131118 )
...
6344b17a2e...481684a6e2
2023-07-22 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from rMFZIJYvVmXEBGCay... to UgZ9epS2Jkz7Yrymp... (flutter/engine#43922 )
2023-07-22 skia-flutter-autoroll@skia.org Roll Skia from 80e101dc5813 to 85e8d8403b45 (1 revision) (flutter/engine#43921 )
Also rolling transitive DEPS:
fuchsia/sdk/core/mac-amd64 from rMFZIJYvVmXE to UgZ9epS2Jkz7
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 bdero@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://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
2023-07-22 11:39:22 +00:00
engine-flutter-autoroll
fd2e6b8cd3
Roll Flutter Engine from b47cf14fda0e to 6344b17a2e03 (1 revision) ( #131114 )
...
b47cf14fda...6344b17a2e
2023-07-22 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from gpjF3QRGg_KH0guW5... to LZJYHQeLdXALTMMmj... (flutter/engine#43917 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from gpjF3QRGg_KH to LZJYHQeLdXAL
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 bdero@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://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
2023-07-22 08:54:21 +00:00
engine-flutter-autoroll
6b97716d11
Roll Flutter Engine from 840bcc3449ff to b47cf14fda0e (3 revisions) ( #131109 )
...
840bcc3449...b47cf14fda
2023-07-22 jonahwilliams@google.com [Impeller] size command pools to npot of command count. (flutter/engine#43903 )
2023-07-22 skia-flutter-autoroll@skia.org Roll Skia from c79c781a3ce3 to 80e101dc5813 (1 revision) (flutter/engine#43914 )
2023-07-22 skia-flutter-autoroll@skia.org Roll Skia from 359d4726e423 to c79c781a3ce3 (2 revisions) (flutter/engine#43913 )
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 bdero@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://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
2023-07-22 04:18:14 +00:00
engine-flutter-autoroll
3e67e1998f
Roll Flutter Engine from 2d8cff44261b to 840bcc3449ff (11 revisions) ( #131101 )
...
2d8cff4426...840bcc3449
2023-07-21 skia-flutter-autoroll@skia.org Roll ANGLE from f586ec98d924 to 938ee1e80fc8 (1 revision) (flutter/engine#43912 )
2023-07-21 skia-flutter-autoroll@skia.org Roll ANGLE from 085f25bbb1e3 to f586ec98d924 (1 revision) (flutter/engine#43908 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from WH3AaCa4DtVERww1v... to rMFZIJYvVmXEBGCay... (flutter/engine#43907 )
2023-07-21 jason-simmons@users.noreply.github.com [Impeller] Do not use clear color optimization if the subpass is being collapsed into its parent (flutter/engine#43878 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 2e28fe9de378 to 359d4726e423 (1 revision) (flutter/engine#43906 )
2023-07-21 bdero@google.com [Impeller] Disable color attachment removal for clips on VK (flutter/engine#43905 )
2023-07-21 bdero@google.com [Impeller] Add a way to query the gfx backend type. (flutter/engine#43837 )
2023-07-21 skia-flutter-autoroll@skia.org Roll ANGLE from 82d68c577b1d to 085f25bbb1e3 (1 revision) (flutter/engine#43904 )
2023-07-21 skia-flutter-autoroll@skia.org Roll ANGLE from 2e190280f5c5 to 82d68c577b1d (1 revision) (flutter/engine#43901 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 497326dc66cd to 2e28fe9de378 (2 revisions) (flutter/engine#43900 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 1f84e9d51bba to 497326dc66cd (1 revision) (flutter/engine#43899 )
Also rolling transitive DEPS:
fuchsia/sdk/core/mac-amd64 from WH3AaCa4DtVE to rMFZIJYvVmXE
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 bdero@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://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
2023-07-22 00:45:07 +00:00
Michael Goderbauer
9a726e8542
Remove obsolete work around for shadow drawing ( #131066 )
...
Fixes https://github.com/flutter/flutter/issues/130737 .
2023-07-21 22:59:01 +00:00
engine-flutter-autoroll
99a4f7e1f9
Manual roll Flutter Engine from acb5d0640b6c to 2d8cff44261b (3 revisions) ( #131092 )
...
Manual roll requested by zra@google.com
acb5d0640b...2d8cff4426
2023-07-21 ychris@google.com Refactor: fix typo "setup" -> "set up" (flutter/engine#43824 )
2023-07-21 jonahwilliams@google.com [engine] disable picture complexity raster caching (flutter/engine#43897 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from e3d13d1b1c42 to 1f84e9d51bba (1 revision) (flutter/engine#43896 )
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 bdero@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://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
2023-07-21 22:39:17 +00:00
Polina Cherkasova
30c005f7f4
Upgrade to newer leak_tracker. ( #131085 )
2023-07-21 14:26:42 -07:00
engine-flutter-autoroll
65c77f4857
Manual roll Flutter Engine from f5c1650c7acc to acb5d0640b6c (10 revisions) ( #131070 )
...
Manual roll requested by zra@google.com
f5c1650c7a...acb5d0640b
2023-07-21 zanderso@users.noreply.github.com Revert Dart (flutter/engine#43895 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from CWNVmH6f_iryKU05E... to gpjF3QRGg_KH0guW5... (flutter/engine#43894 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 8388ec4d242c to e3d13d1b1c42 (1 revision) (flutter/engine#43893 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Dart SDK from 6e79151ce988 to 921613a055ff (1 revision) (flutter/engine#43892 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 3dd45617581b to 8388ec4d242c (1 revision) (flutter/engine#43891 )
2023-07-21 skia-flutter-autoroll@skia.org Roll ANGLE from b60068009dca to 2e190280f5c5 (2 revisions) (flutter/engine#43890 )
2023-07-21 skia-flutter-autoroll@skia.org Roll ANGLE from f2e0f8a0b236 to b60068009dca (1 revision) (flutter/engine#43887 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Dart SDK from 8662af7d9aa3 to 6e79151ce988 (2 revisions) (flutter/engine#43885 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from -SaPL-46jpiYbnCAu... to WH3AaCa4DtVERww1v... (flutter/engine#43884 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 4857e876d8cf to 3dd45617581b (1 revision) (flutter/engine#43883 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from CWNVmH6f_iry to gpjF3QRGg_KH
fuchsia/sdk/core/mac-amd64 from -SaPL-46jpiY to WH3AaCa4DtVE
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 bdero@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://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
2023-07-21 21:05:50 +00:00
Valentin Vignal
be7c7e3e45
Suggest a potential valid name for the flutter project when using flutter create
( #130900 )
...
Fixes https://github.com/flutter/flutter/issues/109775
*If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].*
2023-07-21 19:09:25 +00:00
Dan Field
764095ce1a
[CI/FTL] Oriole to Panther, presubmit false ( #130912 )
...
Alternative to https://github.com/flutter/flutter/pull/130868
Oriole is the Pixel 6, Panther is the Pixel 7. Panther is more available in FTL at this point.
There's less value in running this on presubmit, since those can spawn many jobs multiple times over as people push new commits to branches. Let's just run it post submit to avoid overloading the capacity of FTL.
2023-07-21 18:21:22 +00:00
Pierre-Louis
0919fb86f1
Improve handling of certain icons in RTL ( #130979 )
...
Fixes https://github.com/flutter/flutter/issues/130978
## 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] 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
2023-07-21 19:07:39 +02:00
engine-flutter-autoroll
9cfbf6b9fd
Roll Packages from 674179f97bda to 2266a7618ee3 (6 revisions) ( #131058 )
...
674179f97b...2266a7618e
2023-07-21 49699333+dependabot[bot]@users.noreply.github.com Bump github/codeql-action from 2.20.4 to 2.21.0 (flutter/packages#4525 )
2023-07-20 34871572+gmackall@users.noreply.github.com [url_launcher_android] Set `buildFeatures.buildConfig` to true for compatibility with AGP 8.0+ (flutter/packages#4535 )
2023-07-20 59682979+utamori@users.noreply.github.com [go_router] fix error handling page link (flutter/packages#4296 )
2023-07-20 stuartmorgan@google.com [plugin_platform_interface] Adopt code-excerpts (flutter/packages#4534 )
2023-07-20 stuartmorgan@google.com [ci] Simplify Dockerfile (flutter/packages#4530 )
2023-07-20 stuartmorgan@google.com [ci] Enable Windows Dart unit test sharding (flutter/packages#4528 )
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://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
2023-07-21 15:54:06 +00:00
hangyu
aafdbc6d12
Add tests for navigation_drawer_theme_test.dart ( #130465 )
...
fixes: https://github.com/flutter/flutter/issues/129618
2023-07-21 10:38:54 +00:00
engine-flutter-autoroll
d67d2c3d2d
Roll Flutter Engine from f812cf373b6b to f5c1650c7acc (1 revision) ( #131037 )
...
f812cf373b...f5c1650c7a
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 3dce2d4ee4f3 to 4857e876d8cf (1 revision) (flutter/engine#43882 )
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 bdero@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://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
2023-07-21 08:04:31 +00:00
engine-flutter-autoroll
9e8ee3061c
Roll Flutter Engine from 264685f0aecb to f812cf373b6b (1 revision) ( #131032 )
...
264685f0ae...f812cf373b
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 31b0ed0c0054 to 3dce2d4ee4f3 (1 revision) (flutter/engine#43880 )
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 bdero@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://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
2023-07-21 07:11:23 +00:00
engine-flutter-autoroll
f629809938
Roll Flutter Engine from 8ff10f5a7667 to 264685f0aecb (1 revision) ( #131031 )
...
8ff10f5a76...264685f0ae
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from bae54bbf49bd to 31b0ed0c0054 (1 revision) (flutter/engine#43879 )
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 bdero@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://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
2023-07-21 06:09:23 +00:00
engine-flutter-autoroll
5c86e4d798
Roll Flutter Engine from b5a6b1c9cba5 to 8ff10f5a7667 (5 revisions) ( #131029 )
...
b5a6b1c9cb...8ff10f5a76
2023-07-21 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from hVAAd2NqYOjUF_I99... to CWNVmH6f_iryKU05E... (flutter/engine#43877 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Dart SDK from 1df95f328d0c to 8662af7d9aa3 (1 revision) (flutter/engine#43876 )
2023-07-21 ian@hixie.ch Add a breadcrumb for people who want to run the web tests (flutter/engine#43865 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 049f389db75b to bae54bbf49bd (2 revisions) (flutter/engine#43875 )
2023-07-21 skia-flutter-autoroll@skia.org Roll Skia from 6f2b2e94ebbd to 049f389db75b (1 revision) (flutter/engine#43873 )
Also rolling transitive DEPS:
fuchsia/sdk/core/linux-amd64 from hVAAd2NqYOjU to CWNVmH6f_iry
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 bdero@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://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
2023-07-21 04:11:27 +00:00
engine-flutter-autoroll
83e5aca1c9
Roll Flutter Engine from 218b71cd7a45 to b5a6b1c9cba5 (1 revision) ( #131025 )
...
218b71cd7a...b5a6b1c9cb
2023-07-20 dnfield@google.com [Impeller] [Vulkan] Add reset command buffer bit to command pools. (flutter/engine#43867 )
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 bdero@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://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
2023-07-21 01:26:17 +00:00
engine-flutter-autoroll
a6750235e8
Roll Flutter Engine from ab7d424d4467 to 218b71cd7a45 (2 revisions) ( #131024 )
...
ab7d424d44...218b71cd7a
2023-07-20 skia-flutter-autoroll@skia.org Roll Skia from 981146e6305d to 6f2b2e94ebbd (3 revisions) (flutter/engine#43871 )
2023-07-20 skia-flutter-autoroll@skia.org Roll Skia from 100d0f858f02 to 981146e6305d (3 revisions) (flutter/engine#43866 )
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 bdero@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://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
2023-07-21 00:37:24 +00:00
stuartmorgan
273441eef2
Use downgraded analyze for flutter/packages ( #130878 )
...
Add the `--downgrade` flag to the flutter/packages analyze test, so that it won't get the latest version of dependencies, avoiding out-of-band failures in flutter/flutter due to package publishing events.
Fixes https://github.com/flutter/flutter/issues/129633
2023-07-21 00:14:02 +00:00