37577 Commits

Author SHA1 Message Date
engine-flutter-autoroll
30efa60cf3
Roll Flutter Engine from eaed54aa67e7 to ef568c309df5 (1 revision) (#137078)
eaed54aa67...ef568c309d

2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from 49fa29c8b153 to d27ff651a99b (1 revision) (flutter/engine#47227)

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 jimgraham@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
2023-10-23 20:07:14 +00:00
engine-flutter-autoroll
5ceb7284bc
Roll Flutter Engine from 79c32970b20e to eaed54aa67e7 (2 revisions) (#137074)
79c32970b2...eaed54aa67

2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from acbc278f7600 to 49fa29c8b153 (1 revision) (flutter/engine#47226)
2023-10-23 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from nGgFMB0Tjnpr-pvTY... to a3CcHQHJIAEr-O2R0... (flutter/engine#47225)

Also rolling transitive DEPS:
  fuchsia/sdk/core/mac-amd64 from nGgFMB0Tjnpr to a3CcHQHJIAEr

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 jimgraham@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
2023-10-23 18:28:36 +00:00
engine-flutter-autoroll
3ad1d5a819
Roll Flutter Engine from 1dc66e8f2fba to 79c32970b20e (4 revisions) (#137068)
1dc66e8f2f...79c32970b2

2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from 47c408712efd to acbc278f7600 (3 revisions) (flutter/engine#47223)
2023-10-23 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from qCxi4ThERe1MpDT9C... to uW96BsI9g7PF2on-4... (flutter/engine#47222)
2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from 90658830b8ce to 47c408712efd (1 revision) (flutter/engine#47221)
2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from bce627e38d25 to 90658830b8ce (3 revisions) (flutter/engine#47220)

Also rolling transitive DEPS:
  fuchsia/sdk/core/linux-amd64 from qCxi4ThERe1M to uW96BsI9g7PF

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 jimgraham@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
2023-10-23 17:42:07 +00:00
LongCatIsLooong
117c7097ca
Fix TextStyle terminology (#137000)
cascading -> inheritance
2023-10-23 17:15:10 +00:00
Tirth
2de1af40f3
Add InputDatePickerFormField.focusNode prop (#136673)
Adds `focusNode` prop to `InputDatePickerFormField` widget.

Fixes #105881
2023-10-23 17:15:08 +00:00
flutter-pub-roller-bot
aea562114c
Roll pub packages (#137067)
This PR was generated by `flutter update-packages --force-upgrade`.
2023-10-23 16:42:07 +00:00
Taha Tesser
6c3010e7e1
Add delete button support to FilterChip (#136645)
fixes [`FilterChip` should have `DeletableChipAttributes`/`trailing` to match Material 3 spec.](https://github.com/flutter/flutter/issues/135595)

### 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) {
    return  MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(useMaterial3: true),
      home: const Example(),
    );
  }
}

class Example extends StatelessWidget {
  const Example({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text('FilterChip'),
            const SizedBox(height: 8),
            FilterChip(
              avatar: const Icon(Icons.favorite_rounded),
              label: const Text('FilterChip'),
              selected: true,
              showCheckmark: false,
              onSelected: (bool value) {},
              onDeleted: () {},
              deleteButtonTooltipMessage: 'Delete Me!',
            ),
            const SizedBox(height: 16),
            FilterChip(
              avatar: const Icon(Icons.favorite_rounded),
              label: const Text('FilterChip'),
              onSelected: (bool value) {},
              onDeleted: () {},
            ),
            const SizedBox(height: 48),
            const Text('FilterChip.elevated'),
            const SizedBox(height: 8),
            FilterChip.elevated(
              avatar: const Icon(Icons.favorite_rounded),
              label: const Text('FilterChip'),
              selected: true,
              showCheckmark: false,
              onSelected: (bool value) {},
              onDeleted: () {},
            ),
            const SizedBox(height: 16),
            FilterChip.elevated(
              avatar: const Icon(Icons.favorite_rounded),
              label: const Text('FilterChip'),
              onSelected: (bool value) {},
              onDeleted: () {},
            ),
          ],
        ),
      ),
    );
  }
}
```

</details>

### Before

Not possible to add delete button

### After 
![Screenshot 2023-10-16 at 17 56 51](https://github.com/flutter/flutter/assets/48603081/ad751ef9-c2bc-4184-ae5f-4d1017eff664)
2023-10-23 16:19:25 +00:00
Taha Tesser
5e8b5f4ea2
Update ColorScheme.fromSwatch docs for Material 3 (#136816)
part of [Clarify ColorScheme fromSwatch/fromSeed usage](https://github.com/flutter/flutter/issues/132584)
2023-10-23 15:57:44 +00:00
chunhtai
e8691444a2
Reland "Fixes ability to call nextFocus() on a node to focus its desc… (#136898)
…endant" (#136894)"

This reverts commit c2bd2c1175f5b81e9543955760aec5b876b4e57e.

fixes https://github.com/flutter/flutter/issues/134854

This is a straight reland, the internal test is testing a wrong behave. https://critique.corp.google.com/cl/575028981
2023-10-23 15:56:06 +00:00
LongCatIsLooong
af129b61c5
OverlayPortal.overlayChild contributes semantics to OverlayPortal instead of Overlay (#134921)
Fixes https://github.com/flutter/flutter/issues/134456
2023-10-23 15:45:46 +00:00
engine-flutter-autoroll
6dc5d2fdf0
Roll Packages from be915be92708 to 4bf51144c295 (12 revisions) (#137062)
be915be927...4bf51144c2

2023-10-23 PROGrand@users.noreply.github.com [camera] CameraPlatform.createCameraWithSettings (flutter/packages#3615)
2023-10-23 49699333+dependabot[bot]@users.noreply.github.com Bump github/codeql-action from 2.22.3 to 2.22.4 (flutter/packages#5201)
2023-10-22 engine-flutter-autoroll@skia.org Roll Flutter from 6f4850d74d1a to 823e08353dd8 (3 revisions) (flutter/packages#5198)
2023-10-21 49699333+dependabot[bot]@users.noreply.github.com Bump actions/checkout from 4.1.0 to 4.1.1 (flutter/packages#5167)
2023-10-21 engine-flutter-autoroll@skia.org Roll Flutter from 0883cb2e962d to 6f4850d74d1a (24 revisions) (flutter/packages#5196)
2023-10-21 50643541+Mairramer@users.noreply.github.com [ios_platform_images]  migrate objC to swift (flutter/packages#4847)
2023-10-20 49699333+dependabot[bot]@users.noreply.github.com [in_app_pur]: Bump org.json:json from 20230618 to 20231013 in /packages/in_app_purchase/in_app_purchase_android/example/android/app (flutter/packages#5149)
2023-10-20 49699333+dependabot[bot]@users.noreply.github.com [in_app_pur]: Bump org.json:json from 20230618 to 20231013 in /packages/in_app_purchase/in_app_purchase_android/android (flutter/packages#5150)
2023-10-20 tarrinneal@gmail.com [quick_actions] convert to pigeon (flutter/packages#5159)
2023-10-20 737941+loic-sharma@users.noreply.github.com [ci] Add build-only Windows Arm64 tests (flutter/packages#5142)
2023-10-20 43759233+kenzieschmoll@users.noreply.github.com Add '--no-tree-shake-icons' option to `BenchmarkServer` (flutter/packages#5186)
2023-10-20 engine-flutter-autoroll@skia.org Roll Flutter from c2bd2c1175f5 to 0883cb2e962d (24 revisions) (flutter/packages#5192)

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
2023-10-23 15:42:25 +00:00
engine-flutter-autoroll
0f5bf521b2
Roll Flutter Engine from 8820a419c800 to 1dc66e8f2fba (1 revision) (#137055)
8820a419c8...1dc66e8f2f

2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from 3f7302e44c94 to bce627e38d25 (1 revision) (flutter/engine#47215)

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 jimgraham@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
2023-10-23 08:46:09 +00:00
engine-flutter-autoroll
4d6df1d450
Roll Flutter Engine from e2abdeb650f8 to 8820a419c800 (1 revision) (#137051)
e2abdeb650...8820a419c8

2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from a0515f94dfee to 3f7302e44c94 (3 revisions) (flutter/engine#47214)

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 jimgraham@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
2023-10-23 07:20:20 +00:00
engine-flutter-autoroll
4aee432c7a
Roll Flutter Engine from 39f78ce1884d to e2abdeb650f8 (1 revision) (#137050)
39f78ce188...e2abdeb650

2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from 2476ef80672f to a0515f94dfee (1 revision) (flutter/engine#47213)

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 jimgraham@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
2023-10-23 06:38:26 +00:00
engine-flutter-autoroll
f459e4acdb
Roll Flutter Engine from 4899344c34d9 to 39f78ce1884d (1 revision) (#137048)
4899344c34...39f78ce188

2023-10-23 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from kUMDo17HHiZKJNlp4... to nGgFMB0Tjnpr-pvTY... (flutter/engine#47212)

Also rolling transitive DEPS:
  fuchsia/sdk/core/mac-amd64 from kUMDo17HHiZK to nGgFMB0Tjnpr

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 jimgraham@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
2023-10-23 05:36:41 +00:00
engine-flutter-autoroll
ade09942f9
Roll Flutter Engine from 9d05b061e245 to 4899344c34d9 (1 revision) (#137046)
9d05b061e2...4899344c34

2023-10-23 skia-flutter-autoroll@skia.org Roll Skia from fbc238393b47 to 2476ef80672f (1 revision) (flutter/engine#47210)

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 jimgraham@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
2023-10-23 04:43:29 +00:00
engine-flutter-autoroll
46dbcc3456
Roll Flutter Engine from cde34b8182b1 to 9d05b061e245 (1 revision) (#137044)
cde34b8182...9d05b061e2

2023-10-23 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from V4q-PLgyTbkCdf8Zo... to qCxi4ThERe1MpDT9C... (flutter/engine#47211)

Also rolling transitive DEPS:
  fuchsia/sdk/core/linux-amd64 from V4q-PLgyTbkC to qCxi4ThERe1M

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 jimgraham@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
2023-10-23 04:03:11 +00:00
Todd Volkert
cb9a3f698c
Add timeline events for post frame callbacks (#136435)
Before this change, long-running post-frame callbacks wouldn't show up in the timeline at all.  This adds a timeline event for post-frame callbacks, with a debug flag that will add timeline events for each individual callback.

#testexempt -- we have no way to test calls to the timeline.
2023-10-22 20:46:21 +00:00
engine-flutter-autoroll
024e0da440
Roll Flutter Engine from b8d702c0e0d7 to cde34b8182b1 (1 revision) (#137038)
b8d702c0e0...cde34b8182

2023-10-22 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from IT8jf11vpF3Bot8HH... to kUMDo17HHiZKJNlp4... (flutter/engine#47203)

Also rolling transitive DEPS:
  fuchsia/sdk/core/mac-amd64 from IT8jf11vpF3B to kUMDo17HHiZK

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 jimgraham@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
2023-10-22 17:04:33 +00:00
engine-flutter-autoroll
5f4cea8ec3
Roll Flutter Engine from f3c7a50bc83f to b8d702c0e0d7 (1 revision) (#137035)
f3c7a50bc8...b8d702c0e0

2023-10-22 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from 00DU5P-zlAl6661kG... to V4q-PLgyTbkCdf8Zo... (flutter/engine#47202)

Also rolling transitive DEPS:
  fuchsia/sdk/core/linux-amd64 from 00DU5P-zlAl6 to V4q-PLgyTbkC

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 jimgraham@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
2023-10-22 16:00:24 +00:00
engine-flutter-autoroll
823e08353d
Roll Flutter Engine from 94f504f2b2a4 to f3c7a50bc83f (1 revision) (#137031)
94f504f2b2...f3c7a50bc8

2023-10-22 skia-flutter-autoroll@skia.org Roll Skia from 150d46055e1b to fbc238393b47 (1 revision) (flutter/engine#47201)

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 jimgraham@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
2023-10-22 15:20:24 +00:00
engine-flutter-autoroll
f902e9a142
Roll Flutter Engine from 90995c7f9c1b to 94f504f2b2a4 (1 revision) (#137028)
90995c7f9c...94f504f2b2

2023-10-22 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from PfonQwPSPnS7KBNLw... to IT8jf11vpF3Bot8HH... (flutter/engine#47199)

Also rolling transitive DEPS:
  fuchsia/sdk/core/mac-amd64 from PfonQwPSPnS7 to IT8jf11vpF3B

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 jimgraham@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
2023-10-22 03:54:38 +00:00
engine-flutter-autoroll
167061edf7
Roll Flutter Engine from 11f87dce1017 to 90995c7f9c1b (1 revision) (#137027)
11f87dce10...90995c7f9c

2023-10-22 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from 2vdBWAlJ_jVZXn8sK... to 00DU5P-zlAl6661kG... (flutter/engine#47198)

Also rolling transitive DEPS:
  fuchsia/sdk/core/linux-amd64 from 2vdBWAlJ_jVZ to 00DU5P-zlAl6

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 jimgraham@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
2023-10-22 02:40:11 +00:00
engine-flutter-autoroll
6f4850d74d
Roll Flutter Engine from a12116df3859 to 11f87dce1017 (1 revision) (#137017)
a12116df38...11f87dce10

2023-10-21 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from cDqSrhjbSlSnSQsEw... to PfonQwPSPnS7KBNLw... (flutter/engine#47197)

Also rolling transitive DEPS:
  fuchsia/sdk/core/mac-amd64 from cDqSrhjbSlSn to PfonQwPSPnS7

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 jimgraham@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
2023-10-21 15:22:24 +00:00
engine-flutter-autoroll
025550f26a
Roll Flutter Engine from 755c477c96e7 to a12116df3859 (1 revision) (#137013)
755c477c96...a12116df38

2023-10-21 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from vlmJ760j9c7Ng4Psy... to 2vdBWAlJ_jVZXn8sK... (flutter/engine#47196)

Also rolling transitive DEPS:
  fuchsia/sdk/core/linux-amd64 from vlmJ760j9c7N to 2vdBWAlJ_jVZ

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 jimgraham@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
2023-10-21 13:57:05 +00:00
engine-flutter-autoroll
67f5b92059
Roll Flutter Engine from 4f9f4013c3b3 to 755c477c96e7 (1 revision) (#137008)
4f9f4013c3...755c477c96

2023-10-21 skia-flutter-autoroll@skia.org Roll Skia from 51ac1b742c16 to 150d46055e1b (1 revision) (flutter/engine#47194)

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 jimgraham@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
2023-10-21 11:36:22 +00:00
Binni Goel
2ec771aa9c
Test cover painting for memory leaks (#136696) 2023-10-20 21:11:47 -07:00
engine-flutter-autoroll
6db6a5a1b5
Roll Flutter Engine from 2e5fb647a76f to 4f9f4013c3b3 (2 revisions) (#136999)
2e5fb647a7...4f9f4013c3

2023-10-21 skia-flutter-autoroll@skia.org Roll Skia from e8c78601ecf6 to 51ac1b742c16 (1 revision) (flutter/engine#47188)
2023-10-21 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from VTlSkkxOaJrlxj_vv... to cDqSrhjbSlSnSQsEw... (flutter/engine#47187)

Also rolling transitive DEPS:
  fuchsia/sdk/core/mac-amd64 from VTlSkkxOaJrl to cDqSrhjbSlSn

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 jimgraham@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
2023-10-21 03:18:34 +00:00
engine-flutter-autoroll
b0d188d1ea
Roll Flutter Engine from e4fc0c4e2b97 to 2e5fb647a76f (3 revisions) (#136995)
e4fc0c4e2b...2e5fb647a7

2023-10-21 jonahwilliams@google.com [Impeller] Fix cmd pool reset from background thread. (flutter/engine#47184)
2023-10-20 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from tcVA-iW-vOHPnwh_P... to vlmJ760j9c7Ng4Psy... (flutter/engine#47181)
2023-10-20 30870216+gaaclarke@users.noreply.github.com [Impeller] increased padding for blurs (flutter/engine#47176)

Also rolling transitive DEPS:
  fuchsia/sdk/core/linux-amd64 from tcVA-iW-vOHP to vlmJ760j9c7N

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 jimgraham@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
2023-10-21 01:48:10 +00:00
engine-flutter-autoroll
38b3d541a3
Roll Flutter Engine from 9796817fb6e2 to e4fc0c4e2b97 (1 revision) (#136993)
9796817fb6...e4fc0c4e2b

2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from cf2131f85d57 to e8c78601ecf6 (1 revision) (flutter/engine#47178)

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 jimgraham@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
2023-10-21 00:27:32 +00:00
engine-flutter-autoroll
df602da850
Roll Flutter Engine from 4a65910f0ab2 to 9796817fb6e2 (2 revisions) (#136990)
4a65910f0a...9796817fb6

2023-10-20 jiahaog@users.noreply.github.com Update buildroot to remove `-Wno-c99-designator` (flutter/engine#47145)
2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from ca69b04f7dd2 to cf2131f85d57 (2 revisions) (flutter/engine#47173)

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 jimgraham@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
2023-10-20 22:56:11 +00:00
chunhtai
ffc042326a
Adds more a11y use cases (#136761) 2023-10-20 22:54:27 +00:00
Harry Terkelsen
464e751a78
Reland "Use Layer.toImage for golden tests on CanvasKit" (#136918)
Relands https://github.com/flutter/flutter/pull/135249

A golden test was failing in post submit in the previous PR
2023-10-20 15:45:26 -07:00
dependabot[bot]
9beb98aabf
Bump github/codeql-action from 2.22.3 to 2.22.4 (#136985)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.3 to 2.22.4.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/github/codeql-action/blob/main/CHANGELOG.md">github/codeql-action's changelog</a>.</em></p>
<blockquote>
<h1>CodeQL Action Changelog</h1>
<p>See the <a href="https://github.com/github/codeql-action/releases">releases page</a> for the relevant changes to the CodeQL CLI and language packs.</p>
<h2>[UNRELEASED]</h2>
<p>No user facing changes.</p>
<h2>2.22.4 - 20 Oct 2023</h2>
<ul>
<li>Update default CodeQL bundle version to 2.15.1. <a href="https://redirect.github.com/github/codeql-action/pull/1953">#1953</a></li>
<li>Users will begin to see warnings on Node.js 16 deprecation in their Actions logs on code scanning runs starting October 23, 2023.
<ul>
<li>All code scanning workflows should continue to succeed regardless of the warning.</li>
<li>The team at GitHub maintaining the CodeQL Action is aware of the deprecation timeline and actively working on creating another version of the CodeQL Action, v3, that will bump us to Node 20.</li>
<li>For more information, and to communicate with the maintaining team, please use <a href="https://redirect.github.com/github/codeql-action/issues/1959">this issue</a>.</li>
</ul>
</li>
</ul>
<h2>2.22.3 - 13 Oct 2023</h2>
<ul>
<li>Provide an authentication token when downloading the CodeQL Bundle from the API of a GitHub Enterprise Server instance. <a href="https://redirect.github.com/github/codeql-action/pull/1945">#1945</a></li>
</ul>
<h2>2.22.2 - 12 Oct 2023</h2>
<ul>
<li>Update default CodeQL bundle version to 2.15.0. <a href="https://redirect.github.com/github/codeql-action/pull/1938">#1938</a></li>
<li>Improve the log output when an error occurs in an invocation of the CodeQL CLI. <a href="https://redirect.github.com/github/codeql-action/pull/1927">#1927</a></li>
</ul>
<h2>2.22.1 - 09 Oct 2023</h2>
<ul>
<li>Add a workaround for Python 3.12, which is not supported in CodeQL CLI version 2.14.6 or earlier. If you are running an analysis on Windows and using Python 3.12 or later, the CodeQL Action will switch to running Python 3.11. In this case, if Python 3.11 is not found, then the workflow will fail. <a href="https://redirect.github.com/github/codeql-action/pull/1928">#1928</a></li>
</ul>
<h2>2.22.0 - 06 Oct 2023</h2>
<ul>
<li>The CodeQL Action now requires CodeQL version 2.10.5 or later. For more information, see the corresponding changelog entry for CodeQL Action version 2.21.8. <a href="https://redirect.github.com/github/codeql-action/pull/1907">#1907</a></li>
<li>The CodeQL Action no longer runs ML-powered queries. For more information, including details on our investment in AI-powered security technology, see <a href="https://github.blog/changelog/2023-09-29-codeql-code-scanning-deprecates-ml-powered-alerts/">&quot;CodeQL code scanning deprecates ML-powered alerts.&quot;</a> <a href="https://redirect.github.com/github/codeql-action/pull/1910">#1910</a></li>
<li>Fix a bug which prevented tracing of projects using Go 1.21 and above on Linux. <a href="https://redirect.github.com/github/codeql-action/pull/1909">#1909</a></li>
</ul>
<h2>2.21.9 - 27 Sep 2023</h2>
<ul>
<li>Update default CodeQL bundle version to 2.14.6. <a href="https://redirect.github.com/github/codeql-action/pull/1897">#1897</a></li>
<li>We are rolling out a feature in October 2023 that will improve the success rate of C/C++ autobuild. <a href="https://redirect.github.com/github/codeql-action/pull/1889">#1889</a></li>
<li>We are rolling out a feature in October 2023 that will provide specific file coverage information for C and C++, Java and Kotlin, and JavaScript and TypeScript. Currently file coverage information for each of these pairs of languages is grouped together. <a href="https://redirect.github.com/github/codeql-action/pull/1903">#1903</a></li>
<li>Add a warning to help customers avoid inadvertently analyzing the same CodeQL language in multiple matrix jobs. <a href="https://redirect.github.com/github/codeql-action/pull/1901">#1901</a></li>
</ul>
<h2>2.21.8 - 19 Sep 2023</h2>
<ul>
<li>Add a deprecation warning for customers using CodeQL version 2.10.4 and earlier. These versions of CodeQL were discontinued on 12 September 2023 alongside GitHub Enterprise Server 3.6, and will be unsupported by the next minor release of the CodeQL Action. <a href="https://redirect.github.com/github/codeql-action/pull/1884">#1884</a>
<ul>
<li>If you are using one of these versions, please update to CodeQL CLI version 2.10.5 or later. For instance, if you have specified a custom version of the CLI using the 'tools' input to the 'init' Action, you can remove this input to use the default version.</li>
<li>Alternatively, if you want to continue using a version of the CodeQL CLI between 2.9.5 and 2.10.4, you can replace <code>github/codeql-action/*@v2</code> by <code>github/codeql-action/*@v2.21.7</code> in your code scanning workflow to ensure you continue using this version of the CodeQL Action.</li>
</ul>
</li>
<li>Enable the following language aliases when using CodeQL 2.14.4 and later: <code>c-cpp</code> for C/C++ analysis, <code>java-kotlin</code> for Java/Kotlin analysis, and <code>javascript-typescript</code> for JavaScript/TypeScript analysis. <a href="https://redirect.github.com/github/codeql-action/pull/1883">#1883</a></li>
</ul>
<h2>2.21.7 - 14 Sep 2023</h2>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="49abf0ba24"><code>49abf0b</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/1961">#1961</a> from github/update-v2.22.4-63470275e</li>
<li><a href="907abca61b"><code>907abca</code></a> Update changelog for v2.22.4</li>
<li><a href="63470275e7"><code>6347027</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/1953">#1953</a> from github/update-bundle/codeql-bundle-v2.15.1</li>
<li><a href="b98a636a6b"><code>b98a636</code></a> Merge branch 'main' into update-bundle/codeql-bundle-v2.15.1</li>
<li><a href="4a368f64ad"><code>4a368f6</code></a> Add announcement on Node 16 deprecation (<a href="https://redirect.github.com/github/codeql-action/issues/1960">#1960</a>)</li>
<li><a href="77bbb99abd"><code>77bbb99</code></a> Bump urllib3 in /python-setup/tests/poetry/python-3.8 (<a href="https://redirect.github.com/github/codeql-action/issues/1957">#1957</a>)</li>
<li><a href="a75a0d5716"><code>a75a0d5</code></a> Bump urllib3 in /python-setup/tests/poetry/requests-3 (<a href="https://redirect.github.com/github/codeql-action/issues/1956">#1956</a>)</li>
<li><a href="aa55b87f87"><code>aa55b87</code></a> Bump urllib3 in /python-setup/tests/pipenv/requests-3 (<a href="https://redirect.github.com/github/codeql-action/issues/1955">#1955</a>)</li>
<li><a href="b6b0833c3d"><code>b6b0833</code></a> Bump urllib3 in /python-setup/tests/pipenv/python-3.8 (<a href="https://redirect.github.com/github/codeql-action/issues/1954">#1954</a>)</li>
<li><a href="0132448784"><code>0132448</code></a> Add changelog note</li>
<li>Additional commits viewable in <a href="0116bc2df5...49abf0ba24">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github/codeql-action&package-manager=github_actions&previous-version=2.22.3&new-version=2.22.4)](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>
2023-10-20 22:32:02 +00:00
Robert Ancell
849ff0d029
Add missing call to parent method of GApplication::shutdown, implement GApplication::startup (#136836)
Fixes a warning introduced in https://github.com/flutter/flutter/pull/136780 and adds the other related function.
2023-10-20 22:19:57 +00:00
engine-flutter-autoroll
f47192ffbe
Roll Flutter Engine from b27e1b38375b to 4a65910f0ab2 (5 revisions) (#136987)
b27e1b3837...4a65910f0a

2023-10-20 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Multiview pipeline" (flutter/engine#47174)
2023-10-20 dkwingsmt@users.noreply.github.com Multiview pipeline (flutter/engine#44473)
2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from 9ffd5ef9a9ed to ca69b04f7dd2 (1 revision) (flutter/engine#47171)
2023-10-20 john@johnmccutchan.com Lower the severity of a log message (flutter/engine#47172)
2023-10-20 mdebbar@google.com [web] Remove workaround for safely removing slots on Safari (flutter/engine#47169)

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 jimgraham@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
2023-10-20 22:16:39 +00:00
Michael Goderbauer
997a94fd1f
Bump dartdoc to 7.0.1 and clean-up (#136975)
These warnings/errors have been removed from dartdoc. Removing them from the flutter config as well.

Also fixes CI to actually test doc generation for all documented packages and on dartdoc config changes.
2023-10-20 22:13:28 +00:00
LongCatIsLooong
5f477642c4
RenderEditable WidgetSpan intrinsics (#136979)
Update the `RenderEditable` implementation to match `RenderParagraph`. Fixes https://github.com/flutter/flutter/issues/136596
2023-10-20 21:32:19 +00:00
engine-flutter-autoroll
78b754e592
Roll Flutter Engine from d46933e6772e to b27e1b38375b (9 revisions) (#136982)
d46933e677...b27e1b3837

2023-10-20 47866232+chunhtai@users.noreply.github.com Add link support in web accessibility (flutter/engine#46117)
2023-10-20 mdebbar@google.com [web] Support `flutterViewId` in platform view messages (flutter/engine#46891)
2023-10-20 jacksongardner@google.com Fix async image loading issues in skwasm. (flutter/engine#47117)
2023-10-20 flar@google.com Add option to save Impeller failure images in rendertests (flutter/engine#47142)
2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from b960e9140f56 to 9ffd5ef9a9ed (3 revisions) (flutter/engine#47167)
2023-10-20 chris@bracken.jp [macOS] Eliminate extraneous loadView calls (flutter/engine#47166)
2023-10-20 skia-flutter-autoroll@skia.org Roll Dart SDK from ba96a157a8eb to 53fee35b299f (1 revision) (flutter/engine#47165)
2023-10-20 jonahwilliams@google.com [Impeller] GPU Tracer for GLES. (flutter/engine#47080)
2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from de628929015d to b960e9140f56 (2 revisions) (flutter/engine#47164)

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 jimgraham@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
2023-10-20 21:13:38 +00:00
flutter-pub-roller-bot
d7c82888c3
Roll pub packages (#136924)
This PR was generated by `flutter update-packages --force-upgrade`.
2023-10-20 20:36:29 +00:00
Kevin Chisholm
f68612e770
[docs] Expand categories for automated release notes (#136967)
Updates release.yml to expand categories for automated release notes utilizing updated labels. 

For more information on automated release notes see: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes

CC: @MaryaBelanger @atsansone
2023-10-20 20:33:15 +00:00
engine-flutter-autoroll
6b78b72618
Roll Flutter Engine from 21b5c3771ee1 to d46933e6772e (3 revisions) (#136973)
21b5c3771e...d46933e677

2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from 461218cee44c to de628929015d (1 revision) (flutter/engine#47161)
2023-10-20 mdebbar@google.com [web] Make HotRestartCacheHandler standalone (flutter/engine#46906)
2023-10-20 mdebbar@google.com [web] Attach pointer event listeners in the bubble phase (flutter/engine#47121)

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 jimgraham@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
2023-10-20 20:27:15 +00:00
Jonah Williams
841cc675b3
[Impeller] add OpenGL GPU tracing to devicelab tests. (#136974)
Adds the metadata key required to enable OpenGLES GPU tracing. This is off by default because the API crashes on some GPU models, but it should be safe on the Pixel 7 (others TBD based on testing results).
2023-10-20 20:23:25 +00:00
engine-flutter-autoroll
abd9374feb
Roll Flutter Engine from f9d1dbc39f4c to 21b5c3771ee1 (1 revision) (#136969)
f9d1dbc39f...21b5c3771e

2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from 04a9f72abd87 to 461218cee44c (1 revision) (flutter/engine#47160)

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 jimgraham@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
2023-10-20 17:41:27 +00:00
Daco Harkes
0a18aa4667
Default NativeAssets Darwin and IOS target archs if missing (#136948)
Make the `NativeAssets` target consistent with `build_info.dart`'s
documentation on missing `IosArchs` or `DarwinArchs`.

Bug:

* https://github.com/flutter/flutter/issues/136931

Also, updates the doc to reflect that MacOS is by default built for both
x64 and arm64. The PR making universal binaries the default didn't
update the doc comment.

* https://github.com/flutter/flutter/pull/100271

Please note that these defines are handled inconsistently in
`flutter_tools`. In some places they default to what's specified in the
doc-comment. In other places a `MissingDefineException` is thrown. I
believe the code around `build_info.dart` and the `environment` could
benefit from a wrapping so that defaults or missing definitions are
handled consistently in the code base.

## 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 `///`).
- [ ] I added new tests to check the change I am making, or this PR is
[test-exempt].
- [ ] All existing and new tests are passing.

<!-- 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-10-20 09:28:52 -07:00
engine-flutter-autoroll
ddbf09c21c
Roll Flutter Engine from 6d1e9eec0841 to f9d1dbc39f4c (1 revision) (#136966)
6d1e9eec08...f9d1dbc39f

2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from 24abc105675c to 04a9f72abd87 (1 revision) (flutter/engine#47159)

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 jimgraham@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
2023-10-20 16:26:26 +00:00
engine-flutter-autoroll
6366c1f69c
Roll Flutter Engine from 9b88ff83fd82 to 6d1e9eec0841 (2 revisions) (#136965)
9b88ff83fd...6d1e9eec08

2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from e836c3aa2b98 to 24abc105675c (1 revision) (flutter/engine#47156)
2023-10-20 skia-flutter-autoroll@skia.org Roll Fuchsia Mac SDK from jkQctnDMmHydahKfZ... to VTlSkkxOaJrlxj_vv... (flutter/engine#47155)

Also rolling transitive DEPS:
  fuchsia/sdk/core/mac-amd64 from jkQctnDMmHyd to VTlSkkxOaJrl

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 jimgraham@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
2023-10-20 15:43:17 +00:00
engine-flutter-autoroll
0883cb2e96
Roll Packages from 09c6b1152070 to be915be92708 (6 revisions) (#136964)
09c6b11520...be915be927

2023-10-20 737941+loic-sharma@users.noreply.github.com [ci] Finalize migration to x64 specific Windows platform (flutter/packages#5174)
2023-10-19 15619084+vashworth@users.noreply.github.com [image_picker_ios] Update UITests for Xcode 15/iOS 17 (flutter/packages#5176)
2023-10-19 stuartmorgan@google.com [ci] Add emulator tests on older Android version (flutter/packages#4616)
2023-10-19 engine-flutter-autoroll@skia.org Roll Flutter from 189196d104e2 to c2bd2c1175f5 (11 revisions) (flutter/packages#5183)
2023-10-19 stuartmorgan@google.com [tool] Fix `filter-packages-to` when everything is changed (flutter/packages#5182)
2023-10-19 tarrinneal@gmail.com [pigeon] add flutter api protocol (flutter/packages#5181)

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
2023-10-20 15:38:15 +00:00
engine-flutter-autoroll
483ac618b6
Roll Flutter Engine from de780872533c to 9b88ff83fd82 (4 revisions) (#136959)
de78087253...9b88ff83fd

2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from 17f05db514c3 to e836c3aa2b98 (1 revision) (flutter/engine#47154)
2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from 5291f485514f to 17f05db514c3 (4 revisions) (flutter/engine#47151)
2023-10-20 skia-flutter-autoroll@skia.org Roll Fuchsia Linux SDK from eKYGl_wBcnT-n0J8n... to tcVA-iW-vOHPnwh_P... (flutter/engine#47149)
2023-10-20 skia-flutter-autoroll@skia.org Roll Dart SDK from aadeeb497dbe to ba96a157a8eb (1 revision) (flutter/engine#47147)

Also rolling transitive DEPS:
  fuchsia/sdk/core/linux-amd64 from eKYGl_wBcnT- to tcVA-iW-vOHP

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 jimgraham@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
2023-10-20 13:43:25 +00:00
engine-flutter-autoroll
72e454d913
Roll Flutter Engine from 1e107c21328a to de780872533c (1 revision) (#136952)
1e107c2132...de78087253

2023-10-20 skia-flutter-autoroll@skia.org Roll Skia from 1d63da5da8e8 to 5291f485514f (3 revisions) (flutter/engine#47143)

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 jimgraham@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
2023-10-20 11:55:26 +00:00