text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
---
title: Deprecated API removed after v2.5
description: >
After reaching end of life, the following deprecated APIs
were removed from Flutter.
---
## Summary
In accordance with Flutter's [Deprecation Policy][],
deprecated APIs that reached end of life after the
2.5 stable release have been removed.
All affected APIs have been compiled into this
primary source to aid in migration. A
[quick reference sheet][] is available as well.
[Deprecation Policy]: {{site.repo.flutter}}/wiki/Tree-hygiene#deprecation
[quick reference sheet]: /go/deprecations-removed-after-2-5
## Changes
This section lists the deprecations by affected class.
---
### `autovalidate` of `Form` & related classes
Supported by Flutter Fix: yes
`autovalidate` was deprecated in v1.19.
Use `autovalidateMode` instead.
Where `autovalidate` was true, replace with `AutovalidateMode.always`.
Where `autovalidate` was false, replace with `AutovalidateMode.disabled`.
This change allows more behaviors to be specified beyond the original binary
choice, adding `AutovalidateMode.onUserInteraction` as an additional option.
The following classes all have the same change of API:
- `Form`
- `FormField`
- `DropdownButtonFormField`
- `TextFormField`
**Migration guide**
[In-depth migration guide available][]
Code before migration:
```dart
const Form form = Form(autovalidate: true);
const Form form = Form(autovalidate: false);
final autoMode = form.autovalidate;
const FormField formField = FormField(autovalidate: true);
const FormField formField = FormField(autovalidate: false);
final autoMode = formField.autovalidate;
const TextFormField textFormField = TextFormField(autovalidate: true);
const TextFormField textFormField = TextFormField(autovalidate: false);
const DropdownButtonFormField dropDownButtonFormField = DropdownButtonFormField(autovalidate: true);
const DropdownButtonFormField dropdownButtonFormField = DropdownButtonFormField(autovalidate: false);
```
Code after migration:
```dart
const Form form = Form(autovalidateMode: AutovalidateMode.always);
const Form form = Form(autovalidateMode: AutovalidateMode.disabled);
final autoMode = form.autovalidateMode;
const FormField formField = FormField(autovalidateMode: AutovalidateMode.always);
const FormField formField = FormField(autovalidateMode: AutovalidateMode.disabled);
final autoMode = formField.autovalidateMode;
const TextFormField textFormField = TextFormField(autovalidateMode: AutovalidateMode.always);
const TextFormField textFormField = TextFormField(autovalidateMode: AutovalidateMode.disabled);
const DropdownButtonFormField dropDownButtonFormField = DropdownButtonFormField(autovalidateMode: AutovalidateMode.always);
const DropdownButtonFormField dropdownButtonFormField = DropdownButtonFormField(autovalidateMode: AutovalidateMode.disabled);
```
[In-depth migration guide available]: /release/breaking-changes/form-field-autovalidation-api
**References**
API documentation:
* [`Form`][]
* [`FormField`][]
* [`TextFormField`][]
* [`DropdownButtonFormField`][]
* [`AutovalidateMode`][]
Relevant issues:
* [Issue 56363]({{site.repo.flutter}}/issues/56363)
* [Issue 18885]({{site.repo.flutter}}/issues/18885)
* [Issue 15404]({{site.repo.flutter}}/issues/15404)
* [Issue 36154]({{site.repo.flutter}}/issues/36154)
* [Issue 48876]({{site.repo.flutter}}/issues/48876)
Relevant PRs:
* Deprecated in [#59766]({{site.repo.flutter}}/pull/59766)
* Removed in [#90292]({{site.repo.flutter}}/pull/90292)
[`Form`]: {{site.api}}/flutter/widgets/Form-class.html
[`FormField`]: {{site.api}}/flutter/widgets/FormField-class.html
[`TextFormField`]: {{site.api}}/flutter/material/TextFormField-class.html
[`DropdownButtonFormField`]: {{site.api}}/flutter/material/DropdownButtonFormField-class.html
[`AutovalidateMode`]: {{site.api}}/flutter/widgets/AutovalidateMode-class.html
---
### `FloatingHeaderSnapConfiguration.vsync`
Supported by Flutter Fix: no
The `TickerProvider` `vsync` property of `FloatingHeaderSnapConfiguration` was
deprecated in v1.19.
The `vsync` for the animation should instead be specified using
`SliverPersistentHeaderDelegate.vsync`.
**Migration guide**
Code before migration:
```dart
class MySliverPersistentHeaderDelegate extends SliverPersistentHeaderDelegate {
FloatingHeaderSnapConfiguration? get snapConfiguration => FloatingHeaderSnapConfiguration(vsync: myTickerProvider);
}
```
Code after migration:
```dart
class MySliverPersistentHeaderDelegate extends SliverPersistentHeaderDelegate {
FloatingHeaderSnapConfiguration? get snapConfiguration => FloatingHeaderSnapConfiguration();
TickerProvider? get vsync => myTickerProvider;
}
```
**References**
Design document:
* [Control SliverPersistentHeader's showOnScreen Behavior][]
API documentation:
* [`FloatingHeaderSnapConfiguration`][]
* [`SliverPersistentHeaderDelegate`][]
* [`TickerProvider`][]
Relevant issues:
* [Issue 25507]({{site.repo.flutter}}/issues/25507)
Relevant PRs:
* Deprecated in [#56413]({{site.repo.flutter}}/pull/56413)
* Removed in [#90293]({{site.repo.flutter}}/pull/90293)
[Control SliverPersistentHeader's showOnScreen Behavior]: https://docs.google.com/document/d/1BZhxy176uUnqOCnXdnHM1XetS9mw9WIyUAOE-dgVdUM/edit?usp=sharing
[`FloatingHeaderSnapConfiguration`]: {{site.api}}/flutter/rendering/FloatingHeaderSnapConfiguration-class.html
[`SliverPersistentHeaderDelegate`]: {{site.api}}/flutter/widgets/SliverPersistentHeaderDelegate-class.html
[`TickerProvider`]: {{site.api}}/flutter/scheduler/TickerProvider-class.html
---
### `AndroidViewController` & subclasses' `id`
Supported by Flutter Fix: yes
The `id` of `AndroidViewController`, `TextureAndroidViewController`, and
`SurfaceAndroidViewController`, was deprecated in v1.20.
For all of these use cases, `viewId` should be used instead.
**Migration guide**
Code before migration:
```dart
final SurfaceAndroidViewController surfaceController = SurfaceAndroidViewController(
viewId: 10,
viewType: 'FixTester',
layoutDirection: TextDirection.ltr,
);
int viewId = surfaceController.id;
final SurfaceAndroidViewController surfaceController = SurfaceAndroidViewController(
error: '',
);
final TextureAndroidViewController textureController = TextureAndroidViewController(
error: '',
);
final TextureAndroidViewController textureController = TextureAndroidViewController(
viewId: 10,
viewType: 'FixTester',
layoutDirection: TextDirection.ltr,
);
viewId = textureController.id;
```
Code after migration:
```dart
final SurfaceAndroidViewController surfaceController = SurfaceAndroidViewController(
viewId: 10,
viewType: 'FixTester',
layoutDirection: TextDirection.ltr,
);
int viewId = surfaceController.viewId;
final SurfaceAndroidViewController surfaceController = SurfaceAndroidViewController(
error: '',
);
final TextureAndroidViewController textureController = TextureAndroidViewController(
error: '',
);
final TextureAndroidViewController textureController = TextureAndroidViewController(
viewId: 10,
viewType: 'FixTester',
layoutDirection: TextDirection.ltr,
);
viewId = textureController.viewId;
```
**References**
Design document:
* [Flutter Hybrid Composition][]
API documentation:
* [`AndroidViewController`][]
* [`TextureAndroidViewController`][]
* [`SurfaceAndroidViewController`][]
Relevant issues:
* [Issue 55218]({{site.repo.flutter}}/issues/55218)
Relevant PRs:
* Deprecated in [#60320]({{site.repo.flutter}}/issues/60320)
* Removed in [#90294]({{site.repo.flutter}}/issues/90294)
[Flutter Hybrid Composition]: {{site.repo.flutter}}/wiki/Hybrid-Composition
[`AndroidViewController`]: {{site.api}}/flutter/services/AndroidViewController-class.html
[`TextureAndroidViewController`]: {{site.api}}/flutter/services/TextureAndroidViewController-class.html
[`SurfaceAndroidViewController`]: {{site.api}}/flutter/services/SurfaceAndroidViewController-class.html
---
### `BlacklistingTextInputFormatter` & `WhitelistingTextInputFormatter`
Supported by Flutter Fix: no
The entire classes of `BlacklistingTextInputFormatter` and
`WhitelistingTextInoutFormatter` were deprecated in v1.20.
Their functionality has been rewritten into a single class,
`FilteringTextInputFormatter`.
**Migration guide**
Code before migration:
```dart
formatter = BlacklistingTextInputFormatter(pattern, replacementString: 'replacedPattern');
formatter = BlacklistingTextInputFormatter.singleLineFormatter;
pattern = formatter.blacklistedPattern;
formatter = WhitelistingTextInputFormatter(pattern);
formatter = WhitelistingTextInputFormatter.digitsOnly;
pattern = formatter.whitelistedPattern;
```
Code after migration:
```dart
formatter = FilteringTextInputFormatter.deny(pattern, replacementString: 'replacedPattern');
formatter = FilteringTextInputFormatter.singleLineFormatter;
pattern = formatter.filterPattern;
formatter = FilteringTextInputFormatter.allow(pattern);
formatter = FilteringTextInputFormatter.digitsOnly;
pattern = formatter.filterPattern;
```
**References**
API documentation:
* [`FilteringTextInputFormatter`][]
Relevant PRs:
* Deprecated in [#59120]({{site.repo.flutter}}/issues/59120)
* Removed in [#90296]({{site.repo.flutter}}/issues/90296)
[`FilteringTextInputFormatter`]: {{site.api}}/flutter/services/FilteringTextInputFormatter-class.html
---
### `BottomNavigationBarItem.title`
Supported by Flutter Fix: yes
The `title` of `BottomNavigationBarItem` was deprecated in v1.19.
The `label` property should be used instead. This migration allows for better
text scaling, and presents built-in `Tooltip`s for the `BottomNavigationBarItem`
in the context of a `BottomNavigationBar`.
**Migration guide**
[In-depth migration guide available][]
Code before migration:
```dart
const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem(title: myTitle);
const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem();
bottomNavigationBarItem.title;
```
Code after migration:
```dart
const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem(label: myTitle);
const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem();
bottomNavigationBarItem.label;
```
**References**
Design document:
* [BottomNavigationBarItem title][]
API documentation:
* [`BottomNavigationBarItem`][]
* [`BottomNavigationBar`][]
* [`Tooltip`][]
Relevant PRs:
* Deprecated in [#59127]({{site.repo.flutter}}/issues/59127)
* Removed in [#90295]({{site.repo.flutter}}/issues/90295)
[In-depth migration guide available]: /release/breaking-changes/bottom-navigation-title-to-label
[BottomNavigationBarItem title]: /go/bottom-navigation-bar-title-deprecation
[`BottomNavigationBarItem`]: {{site.api}}/flutter/widgets/BottomNavigationBarItem-class.html
[`BottomNavigationBar`]: {{site.api}}/flutter/material/BottomNavigationBar-class.html
[`Tooltip`]: {{site.api}}/flutter/material/Tooltip-class.html
---
### `packageRoot` in `dart:core`, `dart:isolate`, and `package:platform`
The following APIs have been removed:
* [`Platform.packageRoot`][] in `dart:core`
* [`Isolate.packageRoot`][] in `dart:isolate`
* [`Platform.packageRoot`][] in `package:platform`
These APIs were marked deprecated [in Dart 2.0][dart-deprecated], and did not
work correctly in any Dart 2.x release.
**Migration guide**
These `packageRoot` APIs have been replaced by a new set of `packageConfig` APIs,
which you should migrate to.
* [`Platform.packageConfig`][] in `dart:core`
* [`Isolate.packageConfig`][] in `dart:isolate`
* [`Platform.packageConfig`][] in `package:platform`
If you are using the `package:platform` package, note that regardless of whether
you are using the `packageRoot` API or not, older versions of that package are
not compatible with Dart 2.16 and later, as they depend on the now removed
`packageRoot` API. You may see an error like this when attempting to run your
app:
```nocode
../../.pub-cache/hosted/pub.dartlang.org/platform-3.0.0/
lib/src/interface/local_platform.dart:46:19:
Error: Member not found: 'packageRoot'.
io.Platform.packageRoot; // ignore: deprecated_member_use
^^^^^^^^^^^
```
To resolve that, upgrade to version `3.1.0` or later of `package:platform` by
upgrading the constraint in your `pubspec.yaml` file:
```yaml
dependencies:
platform: ^3.1.0
```
**References**
Relevant PRs:
* Removed from the Dart libraries in [#47769][]
* Removed from `package:platform` in [PR #38][]
* Updated Flutter to use `package:platform` 3.1.0 in [PR #94603][]
[`Platform.packageRoot`]: {{site.dart.api}}/stable/2.15.1/dart-io/Platform/packageRoot.html
[`Isolate.packageRoot`]: {{site.dart.api}}/stable/2.15.1/dart-isolate/Isolate/packageRoot.html
[`Platform.packageRoot`]: {{site.pub-api}}/platform/3.0.0/platform/Platform/packageRoot.html
[dart-deprecated]: https://dart-review.googlesource.com/c/sdk/+/59100/16/CHANGELOG.md
[`Platform.packageConfig`]: {{site.dart.api}}/stable/2.15.1/dart-io/Platform/packageConfig.html
[`Isolate.packageConfig`]: {{site.dart.api}}/stable/2.15.1/dart-isolate/Isolate/packageConfig.html
[`Platform.packageConfig`]: {{site.pub-api}}/platform/3.0.0/platform/Platform/packageConfig.html
[#47769]: {{site.github}}/dart-lang/sdk/issues/47769
[PR #38]: {{site.github}}/google/platform.dart/pull/38
[PR #94603]: {{site.repo.flutter}}/pull/94603
---
## Timeline
In stable release: 2.10
| website/src/release/breaking-changes/2-5-deprecations.md/0 | {
"file_path": "website/src/release/breaking-changes/2-5-deprecations.md",
"repo_id": "website",
"token_count": 4224
} | 1,251 |
---
title: AndroidX migration
description: How to migrate existing Flutter projects to AndroidX.
---
{{site.alert.note}}
You might be directed to this page if Flutter detects
that your project doesn't use AndroidX.
{{site.alert.end}}
[AndroidX][] is a major improvement
to the original Android Support Library.
It provides the `androidx.*` package libraries,
unbundled from the platform API. This means that it
offers backward compatibility and is updated
more frequently than the Android platform.
[AndroidX]: {{site.android-dev}}/jetpack/androidx
## Common Questions
### How do I migrate my existing app, plugin or host-editable module project to AndroidX?
_You will need Android Studio 3.2 or higher.
If you don't have it installed,
you can download the latest version from the
[Android Studio][] site_.
1. Open Android Studio.
2. Select **Open an existing Android Studio Project**.
3. Open the `android` directory within your app.
4. Wait until the project has been synced successfully.
(This happens automatically once you open the project,
but if it doesn't, select **Sync Project with Gradle Files**
from the **File** menu).
5. Select **Migrate to AndroidX** from the Refactor menu.
6. If you are asked to backup the project before proceeding,
check **Backup project as Zip file**, then click **Migrate**.
Lastly, save the zip file in your location of preference.
<img
width="500"
style="border-radius: 12px;"
src="/assets/images/docs/androidx/migrate_prompt.png"
class="figure-img img-fluid"
alt="Select backup project as zip file" />
7. The refactoring preview shows the list of changes.
Finally, click **Do Refactor**:
<img
width="600"
style="border-radius: 12px;"
src="/assets/images/docs/androidx/do_androidx_refactor.png"
class="figure-img img-fluid"
alt="An animation of the bottom-up page transition on Android" />
8. That is it! You successfully migrated your project to AndroidX.
Finally, if you migrated a plugin,
publish the new AndroidX version to pub and update
your `CHANGELOG.md` to indicate that this new version
is compatible with AndroidX.
[Android Studio]: {{site.android-dev}}/studio
### What if I can't use Android Studio?
You can create a new project using the Flutter tool
and then move the Dart code and
assets to the new project.
To create a new project run:
```bash
flutter create -t <project-type> <new-project-path>
```
### Add to app
If your Flutter project is a module type for adding
to an existing Android app, and contains a
`.android` directory, add the following line to `pubspec.yaml`:
```yaml
module:
...
androidX: true # Add this line.
```
Finally, run `flutter clean`.
If your module contains an `android` directory instead,
then follow the steps in previous section.
### How do I know if my project is using AndroidX?
Starting from Flutter v1.12.13, new projects created with
`flutter create -t <project-type>`
use AndroidX by default.
Projects created prior to this Flutter version
mustn't depend on any [old build artifact][] or
[old Support Library class][].
[old build artifact]: {{site.android-dev}}/jetpack/androidx/migrate/artifact-mappings
[old Support Library class]: {{site.android-dev}}/jetpack/androidx/migrate/class-mappings
In an app or module project,
the file `android/gradle.properties`
or `.android/gradle.properties`
must contain:
```
android.useAndroidX=true
android.enableJetifier=true
```
### What if I don't migrate my app or module to AndroidX?
Your app might continue to work. However,
combining AndroidX and Support artifacts
is generally not recommended because it can
result in dependency conflicts or
other kind of Gradle failures.
As a result, as more plugins migrate to AndroidX,
plugins depending on Android core libraries are likely
to cause build failures.
### What if my app is migrated to AndroidX, but not all of the plugins I use?
The Flutter tool uses Jetifier to automatically
migrate Flutter plugins using the Support Library
to AndroidX, so you can use the same plugins even
if they haven't been migrated to AndroidX yet.
### I'm having issues migrating to AndroidX
[Open an issue on GitHub][] and add `[androidx-migration]`
to the title of the issue.
[Open an issue on GitHub]: {{site.repo.flutter}}/issues/new/choose
| website/src/release/breaking-changes/androidx-migration.md/0 | {
"file_path": "website/src/release/breaking-changes/androidx-migration.md",
"repo_id": "website",
"token_count": 1253
} | 1,252 |
---
title: TextField.canRequestFocus Deprecated
description: >
`TextField`'s `canRequestFocus` parameter is deprecated and replaced by the
`canRequestFocus` parameter of its `FocusNode`.
---
## Summary
`TextField.canRequestFocus` is deprecated. The same functionality can be
achieved by setting the `canRequestFocus` parameter of the `TextField`'s
`FocusNode`.
## Background
`TextField.canRequestFocus` was added to support `DropdownMenu`, which
has a `TextField` that sometimes isn't interactive. However, the same
functionality can be achieved by setting the `canRequestFocus` parameter of a
`TextField`'s `FocusNode`. `DropdownMenu` has been migrated to this approach,
and other use cases should follow the same pattern.
Apps that use `TextField.canRequestFocus` display the following error when run
in debug mode: "Use `focusNode` instead.". Specifically, this means that users
should pass a `FocusNode` to `TextField.focusNode` with the
`FocusNode.canRequestFocus` parameter set.
## Migration guide
To migrate, remove the `TextField.canRequestFocus` parameter. Create a
`FocusNode` with the `FocusNode.canRequestFocus` parameter set to the desired
value, and pass that to `TextField.focusNode`.
Code before migration:
```dart
class _MyWidgetState extends State<MyWidget> {
@override
Widget build(BuildContext context) {
TextField(
canRequestFocus: false,
);
}
}
```
Code after migration:
```dart
class _MyWidgetState extends State<MyWidget> {
final FocusNode _focusNode = FocusNode(canRequestFocus: false);
@override
Widget build(BuildContext context) {
return TextField(
focusNode: _focusNode,
);
}
}
```
## Timeline
Landed in version: Reverted, waiting to reland<br>
In stable release: not yet
## References
API documentation:
* [`DropdownMenu`][]
* [`FocusNode.canRequestFocus`][]
* [`TextField.canRequestFocus`][]
* [`TextField.focusNode`][]
Relevant issues:
* [Broken selection on TextField if canRequestFocus: false][]
* [DropdownMenu Disable text input][]
Relevant PRs:
* [Add requestFocusOnTap to DropdownMenu][]
* [Replace TextField.canRequestFocus with TextField.focusNode.canRequestFocus][]
[`DropdownMenu`]: {{site.api}}/flutter/material/DropdownMenu-class.html
[`FocusNode.canRequestFocus`]: {{site.api}}/flutter/widgets/FocusNode/canRequestFocus.html
[`TextField.canRequestFocus`]: {{site.api}}/flutter/material/TextField/canRequestFocus.html
[`TextField.focusNode`]: {{site.api}}/flutter/material/TextField/focusNode.html
[Broken selection on TextField if canRequestFocus: false]: {{site.repo.flutter}}/issues/130011
[DropdownMenu Disable text input]: {{site.repo.flutter}}/issues/116587
[Replace TextField.canRequestFocus with TextField.focusNode.canRequestFocus]: {{site.repo.flutter}}/pull/130164
[Add requestFocusOnTap to DropdownMenu]: {{site.repo.flutter}}/pull/117504
| website/src/release/breaking-changes/can-request-focus.md/0 | {
"file_path": "website/src/release/breaking-changes/can-request-focus.md",
"repo_id": "website",
"token_count": 885
} | 1,253 |
---
title: Updated EditableText scroll into view behavior
description: >
Improve EditableText selection scroll into view behavior to always
use the current selection extent.
---
## Summary
The `Editable.onCaretChanged` callback is removed. With this change,
`EditableText` behavior for scrolling the selection into view
changes.
## Context
Previously, upon scrolling into view to show user updates, `EditableText`
used multiple mechanisms to determine the extent of the selection or the
caret location.
## Description of change
By removing the `Editable.onCaretChanged` callback, `EditableText` will always
use the most up-to-date selection extent location when scrolling to show it.
Specifically, this improves scroll into view behavior after
changing selection from collapsed to non-collapsed using
`userUpdateTextEditingValue()`.
## Timeline
Landed in version: 3.12.0-4.0.pre<br>
In stable release: 3.13.0
## References
API documentation:
* [`EditableText`]({{site.api}}/flutter/widgets/EditableText-class.html)
Relevant PRs:
* [109114: Remove Editable.onCaretChanged callback]({{site.repo.flutter}}/pull/109114)
| website/src/release/breaking-changes/editable-text-scroll-into-view.md/0 | {
"file_path": "website/src/release/breaking-changes/editable-text-scroll-into-view.md",
"repo_id": "website",
"token_count": 313
} | 1,254 |
---
title: Breaking changes and migration guides
short-title: Breaking changes
description: A list of migration guides for breaking changes in Flutter.
---
As described in the [breaking change policy][],
on occasion we publish guides
for migrating code across a breaking change.
To be notified about future breaking changes,
join the groups [Flutter announce][] and [Dart announce][].
When facing Dart errors after upgrading Flutter,
consider using the [`dart fix`][] command
to automatically migrate your code.
Not every breaking change is supported in this way,
but many are.
To avoid being broken by future versions of Flutter,
consider submitting your tests to our [test registry].
The following guides are available. They are sorted by
release, and listed in alphabetical order:
[breaking change policy]: /release/compatibility-policy
[Flutter announce]: {{site.groups}}/forum/#!forum/flutter-announce
[Dart announce]: {{site.groups}}/a/dartlang.org/g/announce
[`dart fix`]: /tools/flutter-fix
[test registry]: {{site.github}}/flutter/tests
### Not yet released to stable
* [Stop generating AssetManifest.json][]
* [Rename `MemoryAllocations` to `FlutterMemoryAllocations`][]
* [Deprecate `TextField.canRequestFocus`][]
* [Nullable PageView.controller][]
[Stop generating AssetManifest.json]: /release/breaking-changes/asset-manifest-dot-json
[Rename `MemoryAllocations` to `FlutterMemoryAllocations`]: /release/breaking-changes/flutter-memory-allocations
[Deprecate `TextField.canRequestFocus`]: /release/breaking-changes/can-request-focus
[Nullable PageView.controller]: /release/breaking-changes/pageview-controller
### Released in Flutter 3.19
* [Deprecated API removed after v3.16][]
* [Migrate RawKeyEvent/RawKeyboard system to KeyEvent/HardwareKeyboard system][]
* [Deprecate imperative apply of Flutter's Gradle plugins][]
* [Default multitouch scrolling][]
* [Accessibility traversal order of tooltip changed][]
[Deprecated API removed after v3.16]: /release/breaking-changes/3-16-deprecations
[Migrate RawKeyEvent/RawKeyboard system to KeyEvent/HardwareKeyboard system]: /release/breaking-changes/key-event-migration
[Deprecate imperative apply of Flutter's Gradle plugins]: /release/breaking-changes/flutter-gradle-plugin-apply
[Default multitouch scrolling]: /release/breaking-changes/multi-touch-scrolling
[Accessibility traversal order of tooltip changed]: /release/breaking-changes/tooltip-semantics-order
### Released in Flutter 3.16
* [Migrating to Material 3][]
* [Migrate ShortcutActivator and ShortcutManager to KeyEvent system][]
* [The `ThemeData.useMaterial3` property is now set to true by default][]
* [Deprecated API removed after v3.13][]
* [Customize tabs alignment using the new `TabBar.tabAlignment` property][]
* [Deprecate `textScaleFactor` in favor of `TextScaler`][]
* [Android 14 nonlinear font scaling enabled][]
* [Deprecate `describeEnum` and update `EnumProperty` to be type strict][]
* [Deprecated just-in-time navigation pop APIs for Android Predictive Back][]
* [Deprecated `Paint.enableDithering`][]
* [Updated default text styles for menus][]
* [Windows: External windows should notify Flutter engine of lifecycle changes][]
* [Windows build path changed to add the target architecture][]
[Migrating to Material 3]: /release/breaking-changes/material-3-migration
[Migrate ShortcutActivator and ShortcutManager to KeyEvent system]: /release/breaking-changes/shortcut-key-event-migration
[The `ThemeData.useMaterial3` property is now set to true by default]: /release/breaking-changes/material-3-default
[Deprecated API removed after v3.13]: /release/breaking-changes/3-13-deprecations
[Customize tabs alignment using the new `TabBar.tabAlignment` property]: /release/breaking-changes/tab-alignment
[Deprecate `textScaleFactor` in favor of `TextScaler`]: /release/breaking-changes/deprecate-textscalefactor
[Android 14 nonlinear font scaling enabled]: /release/breaking-changes/android-14-nonlinear-text-scaling-migration
[Deprecate `describeEnum` and update `EnumProperty` to be type strict]: /release/breaking-changes/describe-enum
[Deprecated just-in-time navigation pop APIs for Android Predictive Back]: /release/breaking-changes/android-predictive-back
[Deprecated `Paint.enableDithering`]: /release/breaking-changes/paint-enableDithering
[Updated default text styles for menus]: /release/breaking-changes/menus-text-style
[Windows: External windows should notify Flutter engine of lifecycle changes]: /release/breaking-changes/win-lifecycle-process-function
[Windows build path changed to add the target architecture]: /release/breaking-changes/windows-build-architecture
### Released in Flutter 3.13
* [Added missing `dispose()` for some disposable objects in Flutter][]
* [Deprecated API removed after v3.10][]
* [Added AppLifecycleState.hidden][] enum value
* [Moved ReorderableListView's localized strings][] from material to widgets localizations
* [Removed `ignoringSemantics`][] properties
* [Deprecated `RouteInformation.location`][] and its related APIs
* [Updated EditableText scroll into view behavior][]
* [Migrate a Windows project to ensure the window is shown][]
* [Updated `Checkbox.fillColor` behavior][]
[Added missing `dispose()` for some disposable objects in Flutter]: /release/breaking-changes/dispose
[Deprecated API removed after v3.10]: /release/breaking-changes/3-10-deprecations
[Added AppLifecycleState.hidden]: /release/breaking-changes/add-applifecyclestate-hidden
[Moved ReorderableListView's localized strings]: /release/breaking-changes/material-localized-strings
[Removed `ignoringSemantics`]: /release/breaking-changes/ignoringsemantics-migration
[Deprecated `RouteInformation.location`]: /release/breaking-changes/route-information-uri
[Updated EditableText scroll into view behavior]: /release/breaking-changes/editable-text-scroll-into-view
[Migrate a Windows project to ensure the window is shown]: /release/breaking-changes/windows-show-window-migration
[Updated `Checkbox.fillColor` behavior]: /release/breaking-changes/checkbox-fillColor
### Released in Flutter 3.10
* [Dart 3 changes in Flutter v3.10 and later][]
* [Deprecated API removed after v3.7][]
* [Insert content text input client][]
* [Deprecated the window singleton][]
* [Resolve the Android Java Gradle error][]
* [Require one data variant for `ClipboardData` constructor][]
* ["Zone mismatch" message][]
[Dart 3 changes in Flutter v3.10 and later]: {{site.dart-site}}/resources/dart-3-migration
[Deprecated API removed after v3.7]: /release/breaking-changes/3-7-deprecations
[Insert Content Text Input Client]: /release/breaking-changes/insert-content-text-input-client
[Deprecated the window singleton]: /release/breaking-changes/window-singleton
[Resolve the Android Java Gradle error]: /release/breaking-changes/android-java-gradle-migration-guide
[Require one data variant for `ClipboardData` constructor]: /release/breaking-changes/clipboard-data-required
["Zone mismatch" message]: /release/breaking-changes/zone-errors
### Released in Flutter 3.7
* [Deprecated API removed after v3.3][]
* [Replaced parameters for customizing context menus with a generic widget builder][]
* [iOS FlutterViewController splashScreenView made nullable][]
* [Migrate `of` to non-nullable return values, and add `maybeOf`][]
* [Removed RouteSettings.copyWith][]
* [ThemeData's toggleableActiveColor property has been deprecated][]
* [Migrate a Windows project to support dark title bars][]
[Replaced parameters for customizing context menus with a generic widget builder]: /release/breaking-changes/context-menus
[Deprecated API removed after v3.3]: /release/breaking-changes/3-3-deprecations
[iOS FlutterViewController splashScreenView made nullable]: /release/breaking-changes/ios-flutterviewcontroller-splashscreenview-nullable
[Migrate `of` to non-nullable return values, and add `maybeOf`]: /release/breaking-changes/supplemental-maybeOf-migration
[Removed RouteSettings.copyWith]: /release/breaking-changes/routesettings-copywith-migration
[ThemeData's toggleableActiveColor property has been deprecated]: /release/breaking-changes/toggleable-active-color
[Migrate a Windows project to support dark title bars]: /release/breaking-changes/windows-dark-mode
### Released in Flutter 3.3
* [Adding ImageProvider.loadBuffer][]
* [Default PrimaryScrollController on Desktop][]
* [Trackpad gestures can trigger GestureRecognizer][]
* [Migrate a Windows project to set version information][]
[Adding ImageProvider.loadBuffer]: /release/breaking-changes/image-provider-load-buffer
[Default PrimaryScrollController on Desktop]: /release/breaking-changes/primary-scroll-controller-desktop
[Trackpad gestures can trigger GestureRecognizer]: /release/breaking-changes/trackpad-gestures
[Migrate a Windows project to set version information]: /release/breaking-changes/windows-version-information
### Released in Flutter 3
* [Deprecated API removed after v2.10][]
* [Migrate useDeleteButtonTooltip to deleteButtonTooltipMessage of Chips][]
* [Page transitions replaced by ZoomPageTransitionsBuilder][]
[Deprecated API removed after v2.10]: /release/breaking-changes/2-10-deprecations
[Page transitions replaced by ZoomPageTransitionsBuilder]: /release/breaking-changes/page-transition-replaced-by-ZoomPageTransitionBuilder
[Migrate useDeleteButtonTooltip to deleteButtonTooltipMessage of Chips]: /release/breaking-changes/chip-usedeletebuttontooltip-migration
### Released in Flutter 2.10
* [Deprecated API removed after v2.5][]
* [Raw images on Web uses correct origin and colors][]
* [Required Kotlin version][]
* [Scribble Text Input Client][]
[Deprecated API removed after v2.5]: /release/breaking-changes/2-5-deprecations
[Raw images on Web uses correct origin and colors]: /release/breaking-changes/raw-images-on-web-uses-correct-origin-and-colors
[Required Kotlin version]: /release/breaking-changes/kotlin-version
[Scribble Text Input Client]: /release/breaking-changes/scribble-text-input-client
### Released in Flutter 2.5
* [Default drag scrolling devices][]
* [Deprecated API removed after v2.2][]
* [Change the enterText method to move the caret to the end of the input text][]
* [GestureRecognizer cleanup][]
* [Introducing package:flutter_lints][]
* [Replace AnimationSheetBuilder.display with collate][]
* [ThemeData's accent properties have been deprecated][]
* [Transition of platform channel test interfaces to flutter_test package][]
* [Using HTML slots to render platform views in the web][]
* [Migrate a Windows project to the idiomatic run loop][]
[Change the enterText method to move the caret to the end of the input text]: /release/breaking-changes/enterText-trailing-caret
[Default drag scrolling devices]: /release/breaking-changes/default-scroll-behavior-drag
[Deprecated API removed after v2.2]: /release/breaking-changes/2-2-deprecations
[GestureRecognizer cleanup]: /release/breaking-changes/gesture-recognizer-add-allowed-pointer
[Introducing package:flutter_lints]: /release/breaking-changes/flutter-lints-package
[Replace AnimationSheetBuilder.display with collate]: /release/breaking-changes/animation-sheet-builder-display
[ThemeData's accent properties have been deprecated]: /release/breaking-changes/theme-data-accent-properties
[Transition of platform channel test interfaces to flutter_test package]: /release/breaking-changes/mock-platform-channels
[Using HTML slots to render platform views in the web]: /release/breaking-changes/platform-views-using-html-slots-web
[Migrate a Windows project to the idiomatic run loop]: /release/breaking-changes/windows-run-loop
### Reverted change in 2.2
The following breaking change was reverted in release 2.2:
<b>[Network Policy on iOS and Android][]</b><br>
: Introduced in version: 2.0.0<br>
Reverted in version: 2.2.0 (proposed)
[Network Policy on iOS and Android]: /release/breaking-changes/network-policy-ios-android
### Released in Flutter 2.2
* [Default Scrollbars on Desktop][]
[Default Scrollbars on Desktop]: /release/breaking-changes/default-desktop-scrollbars
### Released in Flutter 2
* [Added BuildContext parameter to TextEditingController.buildTextSpan][]
* [Android ActivityControlSurface attachToActivity signature change][]
* [Android FlutterMain.setIsRunningInRobolectricTest testing API removed][]
* [Clip behavior][]
* [Deprecated API removed after v1.22][]
* [Dry layout support for RenderBox][]
* [Eliminating nullOk Parameters][]
* [Material Chip button semantics][]
* [SnackBars managed by the ScaffoldMessenger][]
* [TextSelectionTheme migration][]
* [Transition of platform channel test interfaces to flutter_test package][]
* [Use maxLengthEnforcement instead of maxLengthEnforced][]
[Added BuildContext parameter to TextEditingController.buildTextSpan]: /release/breaking-changes/buildtextspan-buildcontext
[Android ActivityControlSurface attachToActivity signature change]: /release/breaking-changes/android-activity-control-surface-attach
[Android FlutterMain.setIsRunningInRobolectricTest testing API removed]: /release/breaking-changes/android-setIsRunningInRobolectricTest-removed
[Clip behavior]: /release/breaking-changes/clip-behavior
[Deprecated API removed after v1.22]: /release/breaking-changes/1-22-deprecations
[Dry layout support for RenderBox]: /release/breaking-changes/renderbox-dry-layout
[Eliminating nullOk Parameters]: /release/breaking-changes/eliminating-nullok-parameters
[Material Chip button semantics]: /release/breaking-changes/material-chip-button-semantics
[SnackBars managed by the ScaffoldMessenger]: /release/breaking-changes/scaffold-messenger
[TextSelectionTheme migration]: /release/breaking-changes/text-selection-theme
[Use maxLengthEnforcement instead of maxLengthEnforced]: /release/breaking-changes/use-maxLengthEnforcement-instead-of-maxLengthEnforced
[Transition of platform channel test interfaces to flutter_test package]: /release/breaking-changes/mock-platform-channels
### Released in Flutter 1.22
* [Android v1 embedding app and plugin creation deprecation][]
* [Cupertino icons 1.0.0][]
* [The new Form, FormField auto-validation API][]
[Android v1 embedding app and plugin creation deprecation]: /release/breaking-changes/android-v1-embedding-create-deprecation
[Cupertino icons 1.0.0]: /release/breaking-changes/cupertino-icons-1.0.0
[The new Form, FormField auto-validation API]: /release/breaking-changes/form-field-autovalidation-api
### Released in Flutter 1.20
* [Actions API revision][]
* [Adding TextInputClient.currentAutofillScope property][]
* [New Buttons and Button Themes][]
* [Dialogs' Default BorderRadius][]
* [More Strict Assertions in the Navigator and the Hero Controller Scope][]
* [The Route Transition record and Transition delegate updates][]
* [The RenderEditable needs to be laid out before hit testing][]
* [Reversing the dependency between the scheduler and services layer][]
* [Semantics Order of the Overlay Entries in Modal Routes][]
* [showAutocorrectionPromptRect method added to TextInputClient][]
* [TestWidgetsFlutterBinding.clock][]
* [TextField requires MaterialLocalizations][]
[Actions API revision]: /release/breaking-changes/actions-api-revision
[Adding TextInputClient.currentAutofillScope property]: /release/breaking-changes/add-currentAutofillScope-to-TextInputClient
[New Buttons and Button Themes]: /release/breaking-changes/buttons
[Dialogs' Default BorderRadius]: /release/breaking-changes/dialog-border-radius
[More Strict Assertions in the Navigator and the Hero Controller Scope]: /release/breaking-changes/hero-controller-scope
[Reversing the dependency between the scheduler and services layer]: /release/breaking-changes/services-scheduler-dependency-reversed
[The RenderEditable needs to be laid out before hit testing]: /release/breaking-changes/rendereditable-layout-before-hit-test
[Semantics Order of the Overlay Entries in Modal Routes]: /release/breaking-changes/modal-router-semantics-order
[showAutocorrectionPromptRect method added to TextInputClient]: /release/breaking-changes/add-showAutocorrectionPromptRect
[TestWidgetsFlutterBinding.clock]: /release/breaking-changes/test-widgets-flutter-binding-clock
[TextField requires MaterialLocalizations]: /release/breaking-changes/text-field-material-localizations
[The Route Transition record and Transition delegate updates]: /release/breaking-changes/route-transition-record-and-transition-delegate
### Released in Flutter 1.17
* [Adding 'linux' and 'windows' to TargetPlatform enum][]
* [Annotations return local position relative to object][]
* [Container color optimization][]
* [CupertinoTabBar requires Localizations parent][]
* [Generic type of ParentDataWidget changed to ParentData][]
* [ImageCache and ImageProvider changes][]
* [ImageCache large images][]
* [MouseTracker moved to rendering][]
* [MouseTracker no longer attaches annotations][]
* [Nullable CupertinoTheme.brightness][]
* [Rebuild optimization for OverlayEntries and Routes][]
* [Scrollable AlertDialog][]
* [TestTextInput state reset][]
* [TextInputClient currentTextEditingValue][]
* [The forgetChild() method must call super][]
* [The Route and Navigator refactoring][]
* [FloatingActionButton and ThemeData's accent properties][]
[Adding 'linux' and 'windows' to TargetPlatform enum]: /release/breaking-changes/target-platform-linux-windows
[Annotations return local position relative to object]: /release/breaking-changes/annotations-return-local-position-relative-to-object
[Container color optimization]: /release/breaking-changes/container-color
[CupertinoTabBar requires Localizations parent]: /release/breaking-changes/cupertino-tab-bar-localizations
[Generic type of ParentDataWidget changed to ParentData]: /release/breaking-changes/parent-data-widget-generic-type
[ImageCache and ImageProvider changes]: /release/breaking-changes/image-cache-and-provider
[ImageCache large images]: /release/breaking-changes/imagecache-large-images
[MouseTracker moved to rendering]: /release/breaking-changes/mouse-tracker-moved-to-rendering
[MouseTracker no longer attaches annotations]: /release/breaking-changes/mouse-tracker-no-longer-attaches-annotations
[Nullable CupertinoTheme.brightness]: /release/breaking-changes/nullable-cupertinothemedata-brightness
[Rebuild optimization for OverlayEntries and Routes]: /release/breaking-changes/overlay-entry-rebuilds
[Replace AnimationSheetBuilder.display with collate]: /release/breaking-changes/animation-sheet-builder-display
[Scrollable AlertDialog]: /release/breaking-changes/scrollable-alert-dialog
[TestTextInput state reset]: /release/breaking-changes/test-text-input
[TextInputClient currentTextEditingValue]: /release/breaking-changes/text-input-client-current-value
[The forgetChild() method must call super]: /release/breaking-changes/forgetchild-call-super
[The Route and Navigator refactoring]: /release/breaking-changes/route-navigator-refactoring
[FloatingActionButton and ThemeData's accent properties]: /release/breaking-changes/fab-theme-data-accent-properties
| website/src/release/breaking-changes/index.md/0 | {
"file_path": "website/src/release/breaking-changes/index.md",
"repo_id": "website",
"token_count": 5248
} | 1,255 |
---
title: Insecure HTTP connections are disabled by default on iOS and Android
description: >
Accessing a URL with HTTP protocol throws an exception unless
the domain is explicitly allowed by policy.
---
## Summary
If your code tries to open an HTTP connection to a host
on iOS or Android, a `StateException` is now thrown with
the following message:
```nocode
Insecure HTTP is not allowed by platform: <host>
```
Use HTTPS instead.
{{site.alert.important}}
This change over-restricted HTTP access on local networks beyond the
restrictions imposed by mobile platforms ([flutter/flutter#72723]({{site.repo.flutter}}/issues/72723)).
This change has since been reverted.
{{site.alert.end}}
## Context
Starting with Android [API 28][] and [iOS 9][],
these platforms disable insecure HTTP connections by default.
With this change Flutter also disables insecure connections on
mobile platforms. Other platforms (desktop, web, etc)
are not affected.
You can override this behavior by following the
platform-specific guidelines to define a domain-specific
network policy. See the migration guide below for details.
[API 28]: {{site.android-dev}}/training/articles/security-config#CleartextTrafficPermitted
[iOS 9]: {{site.apple-dev}}/documentation/bundleresources/information_property_list/nsapptransportsecurity
Much like the platforms, the application can still open
insecure socket connections. Flutter does not enforce
any policy at socket level; you would be
responsible for securing the connection.
## Migration guide
On iOS, you can add [NSExceptionDomains][] to your
application's Info.plist.
On Android, you can add a [network security config][] XML.
For Flutter to find your XML file, you need to also add a
`metadata` entry to the `<application>` tag in your manifest.
This metadata entry should carry the name:
`io.flutter.network-policy` and should contain the
resource identifier of the XML.
For instance, if you put your XML configuration under
`res/xml/network_security_config.xml`,
your manifest would contain the following:
```xml
<application ...>
...
<meta-data android:name="io.flutter.network-policy"
android:resource="@xml/network_security_config"/>
</application>
```
### Allowing cleartext connection for debug builds
If you would like to allow HTTP connections for Android debug
builds, you can add the following snippet to your $project_path\android\app\src\debug\AndroidManifest.xml:
```xml
<application android:usesCleartextTraffic="true"/>
```
For iOS, you can follow [these instructions](/add-to-app/ios/project-setup#local-network-privacy-permissions) to create a `Info-debug.plist` and put this in:
```xml
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
```
We **do not** recommend you do this for your release builds.
## Additional Information
* Build time configuration is the only way to change
network policy. It cannot be modified at runtime.
* Localhost connections are always allowed.
* You can allow insecure connections only to domains.
Specific IP addresses are not accepted as input.
This is in line with what platforms support. If you would
like to allow IP addresses, the only option is to allow
cleartext connections in your app.
[network security config]: {{site.android-dev}}/training/articles/security-config#CleartextTrafficPermitted
[NSExceptionDomains]: {{site.apple-dev}}/documentation/bundleresources/information_property_list/nsapptransportsecurity/nsexceptiondomains
## Timeline
Landed in version: 1.23<br>
In stable release: 2.0.0<br>
Reverted in version: 2.2.0 (proposed)
## References
API documentation: There's no API for this change since
the modification to network policy is done through the
platform specific configuration as detailed above.
Relevant PRs:
* [PR 20218: Plumbing for setting domain network policy][]
* [Introduce per-domain policy for strict secure connections][]
[PR 20218: Plumbing for setting domain network policy]: {{site.repo.engine}}/pull/20218
[Introduce per-domain policy for strict secure connections]: {{site.github}}/dart-lang/sdk/commit/d878cfbf20375befa09f9bf85f0ba2b87b319427
| website/src/release/breaking-changes/network-policy-ios-android.md/0 | {
"file_path": "website/src/release/breaking-changes/network-policy-ios-android.md",
"repo_id": "website",
"token_count": 1156
} | 1,256 |
---
title: Route and Navigator Refactoring
description: >
Some APIs and function signatures of the
Route and Navigator classes have changed.
---
## Summary
The `Route` class no longer manages its overlay entries in overlay,
and its `install()` method no longer has an `insertionPoint` parameter.
The `isInitialRoute` property in `RouteSetting` has been deprecated,
and `Navigator.pop()` no longer returns a value.
## Context
We refactored the navigator APIs to prepare for the new page API
and the introduction of the `Router` widget as outlined in
the [Router][] design document.
This refactoring introduced some function signature changes
in order to make the existing navigator APIs continue to work
with the new page API.
## Description of change
The boolean return value of `Navigator.pop()` was not well
defined, and the user could achieve the same result by calling
`Navigator.canPop()`.
Since the API for `Navigator.canPop()` was better defined,
we simplified `Navigator.pop()` to not return a boolean value.
On the other hand, the navigator requires the ability
to manually rearrange entries in the overlay to allow
the user to change the route history in the new API.
We changed it so that the route only creates and destroys
its overlay entries, while the navigator inserts or
removes overlay entries from the overlay.
We also removed the `insertionPoint` argument of
`Route.install()` because it was obsolete after the change.
Finally, we removed the `isInitialRoute` property from
`RouteSetting` as part of refactoring, and provided the
`onGenerateInitialRoutes` API for full control of
initial routes generation.
## Migration guide
Case 1: An app depends on `pop()` returning a boolean value.
```dart
TextField(
onTap: () {
if (Navigator.pop(context))
print('There still is at least one route after pop');
else
print('Oops! No more routes.');
}
)
```
You could use `Navigator.canPop()` in combination with
`Navigator.pop()` to achieve the same result.
```dart
TextField(
onTap: () {
if (Navigator.canPop(context))
print('There still is at least one route after pop');
else
print('Oops! No more routes.');
// Our navigator pops the route anyway.
Navigator.pop(context);
}
)
```
Case 2: An app generates routes based on `isInitialRoute`.
```dart
MaterialApp(
onGenerateRoute: (RouteSetting setting) {
if (setting.isInitialRoute)
return FakeSplashRoute();
else
return RealRoute(setting);
}
)
```
There are different ways to migrate this change.
One way is to set an explicit value for `MaterialApp.initialRoute`.
You can then test for this value in place of `isInitialRoute`.
As `initialRoute` inherits its default value outside of Flutter's scope,
you must set an explicit value for it.
```dart
MaterialApp(
initialRoute: '/', // Set this value explicitly. Default might be altered.
onGenerateRoute: (RouteSetting setting) {
if (setting.name == '/')
return FakeSplashRoute();
else
return RealRoute(setting);
}
)
```
If there is a more complicated use case,
you can use the new API, `onGenerateInitialRoutes`,
in `MaterialApp` or `CupertinoApp`.
```dart
MaterialApp(
onGenerateRoute: (RouteSetting setting) {
return RealRoute(setting);
},
onGenerateInitialRoutes: (String initialRouteName) {
return <Route>[FakeSplashRoute()];
}
)
```
## Timeline
Landed in version: 1.16.3<br>
In stable release: 1.17
## References
Design doc:
* [Router][]
API documentation:
* [`Route`][]
* [`Route.install`][]
* [`RouteSetting.isInitialRoute`][]
* [`Navigator`][]
* [`Navigator.pop`][]
* [`Navigator.canPop`][]
Relevant issue:
* [Issue 45938: Router][]
Relevant PR:
* [PR 44930][] - Refactor the imperative api to continue working in the new navigation system
[Issue 45938: Router]: {{site.repo.flutter}}/issues/45938
[`Navigator`]: {{site.api}}/flutter/widgets/Navigator-class.html
[`Navigator.pop`]: {{site.api}}/flutter/widgets/Navigator/pop.html
[`Navigator.canPop`]: {{site.api}}/flutter/widgets/Navigator/canPop.html
[Router]: /go/navigator-with-router
[PR 44930]: {{site.repo.flutter}}/pull/44930
[`Route`]: {{site.api}}/flutter/widgets/Route-class.html
[`Route.install`]: {{site.api}}/flutter/widgets/Route/install.html
[`RouteSetting.isInitialRoute`]: {{site.api}}/flutter/widgets/RouteSettings/isInitialRoute.html
| website/src/release/breaking-changes/route-navigator-refactoring.md/0 | {
"file_path": "website/src/release/breaking-changes/route-navigator-refactoring.md",
"repo_id": "website",
"token_count": 1387
} | 1,257 |
---
title: TextInputClient currentTextEditingValue
description: >
Add a new field to the TextInputClient interface to
get the current TextEditingValue from a client.
---
## Summary
Add a field, `currentTextEditingValue`, to the `TextInputClient`
interface to get the current value of an editable text field
from a platform client.
## Context
The `TextInputClient` class is used by the Flutter framework to
communicate with platform code about the current state of text
input widgets like `EditableText`.
The platform side can lose its state when an Android app
moves to the background. As of this change,
the app can ask the framework for the last known state.
In order to obtain this information,
the `TextEditingValue` was surfaced for the `TextInputClient`.
## Description of change
On some supported platforms, the application can be moved into
the background where it is expected to consume fewer resources.
For example, a backgrounded application on Android should avoid consuming
unnecessary memory and has no need to retain references to views.
Before this change, the Android-specific platform code could
lose state information about editable text fields when
the app moved back to the foreground.
This is seen, for example,
when text entered in a `TextField` widget is lost to
the Java code, but is still remembered in the Dart code.
As of this change,
the platform side now sends a `textInput` channel
message called `TextInput.requestExistingState`.
This notifies the Dart code that, when the app wakes up,
it should re-establish any text input connections
and notify the platform of its most
recently known editing state.
The `TextInput` class interacts with client widgets using
the `TextInputClient` interface. This interface previously
provided no insight into the current value that a client had.
To allow the `TextInput` class to appropriately respond to
`TextInput.requestExistingState`, a new getter was added to
`TextInputClient` called `currentTextEditingValue`.
You cannot safely use the last value passed to
`TextInputConnection.setEditingState`, since the client
only calls that method under specific circumstances,
such as when Dart code directly modifies the value of a
`TextEditingController` in a way that does not directly mirror
the platform's native handling of a response to a key input event.
This is how a `TextInputFormatter` generally works,
or what happens when Dart code directly sets
`TextEditingController.value`.
## Migration guide
If you previously implemented or extended `TextEditingClient`,
you must now add the appropriate override for `currentTextEditingValue`.
This value may be null.
If you want to migrate _before_ this change lands,
you can add a class to your class
similar to the following:
```dart
abstract class _TemporaryTextEditingClient {
TextEditingValue get currentTextEditingValue;
}
```
This allows you to add the new member with an
`@override` annotation before the change lands
in the framework. Later, you can remove the
temporary interface definition.
Code before migration:
```dart
class _MyCustomTextWidgetState extends State<MyCustomWidget> implements TextEditingClient {
...
@override
void updateEditingValue(TextEditingValue value) {
...
}
@override
void performAction(TextInputAction action) {
...
}
@override
void updateFloatingCursor(RawFloatingCursorPoint point) {
...
}
}
```
Code after migration:
```dart
class _MyCustomTextWidgetState extends State<MyCustomWidget> implements TextEditingClient {
...
@override
TextEditingValue get currentTextEditingValue => widget.textEditingController.value;
@override
void updateEditingValue(TextEditingValue value) {
...
}
@override
void performAction(TextInputAction action) {
...
}
@override
void updateFloatingCursor(RawFloatingCursorPoint point) {
...
}
}
```
## Timeline
Landed in version: 1.16.3<br>
In stable release: 1.17
## References
API documentation:
* [`TextInput`][]
* [`TextInputClient`][]
* [`EditableText`][]
* [`SystemChannels.textInput`][]
Relevant issue:
* [Issue 47137][]
Relevant PR:
* [Fix requestExistingInputState response][]
[`EditableText`]: {{site.api}}/flutter/widgets/EditableText-class.html
[Fix requestExistingInputState response]: {{site.repo.flutter}}/pull/47472
[Issue 47137]: {{site.repo.flutter}}/issues/47137
[`TextInput`]: {{site.api}}/flutter/services/TextInput-class.html
[`TextInputClient`]: {{site.api}}/flutter/services/TextInputClient-class.html
[`SystemChannels.textInput`]: {{site.api}}/flutter/services/SystemChannels/textInput-constant.html
| website/src/release/breaking-changes/text-input-client-current-value.md/0 | {
"file_path": "website/src/release/breaking-changes/text-input-client-current-value.md",
"repo_id": "website",
"token_count": 1273
} | 1,258 |
---
title: Stay up to date
description: Flutter archive, releases, and breaking changes.
layout: toc
sitemap: false
---
| website/src/release/index.md/0 | {
"file_path": "website/src/release/index.md",
"repo_id": "website",
"token_count": 35
} | 1,259 |
---
title: Flutter 2.0.0 release notes
short-title: 2.0.0 release notes
description: Release notes for Flutter 2.0.0.
---
This page has release notes for 2.0.0.
For information about subsequent bug-fix releases, see
[Hotfixes to the Stable Channel][].
[Hotfixes to the Stable Channel]: https://github.com/flutter/flutter/wiki/Hotfixes-to-the-Stable-Channel
## Merged PRs by labels for `flutter/flutter`
### framework - 793 pull request(s)
[48223](https://github.com/flutter/flutter/pull/48223) Add HeroMode widget (a: animation, cla: yes, f: cupertino, f: routes, framework, waiting for tree to go green)
[55209](https://github.com/flutter/flutter/pull/55209) Updated SearchDelegate to follow custom InputDecorationTheme (cla: yes, f: material design, framework)
[56024](https://github.com/flutter/flutter/pull/56024) Pass RouteSettings to the internal Route in showCupertinoModalPopup (cla: yes, f: cupertino, framework)
[61366](https://github.com/flutter/flutter/pull/61366) Continue the clipBehavior breaking change (cla: yes, f: cupertino, framework, severe: API break)
[61981](https://github.com/flutter/flutter/pull/61981) Positioning IME bars on iOS (a: fidelity, a: internationalization, a: text input, cla: yes, framework, waiting for tree to go green)
[62616](https://github.com/flutter/flutter/pull/62616) Migrate foundation test to nullsafety (a: accessibility, a: null-safety, cla: yes, framework)
[62694](https://github.com/flutter/flutter/pull/62694) Convert services tests to NNBD (cla: yes, framework, team)
[62701](https://github.com/flutter/flutter/pull/62701) Migrate gestures, physics and scheduler tests to null safety. (a: null-safety, cla: yes, framework)
[62927](https://github.com/flutter/flutter/pull/62927) AutocompleteCore (a: text input, cla: yes, framework, severe: new feature)
[63272](https://github.com/flutter/flutter/pull/63272) Remove back button when using end drawer (cla: yes, f: material design, framework, waiting for tree to go green)
[63466](https://github.com/flutter/flutter/pull/63466) [MaterialSlice] adds property to customize slice color (cla: yes, f: material design, framework, waiting for tree to go green)
[63683](https://github.com/flutter/flutter/pull/63683) Tab bar improvements (cla: yes, f: material design, framework)
[63813](https://github.com/flutter/flutter/pull/63813) Lazily compute PointerEvent's transformed positions (cla: yes, f: gestures, framework)
[63834](https://github.com/flutter/flutter/pull/63834) Treat hover events as normal pointer events, and bring them back to Listener (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[63910](https://github.com/flutter/flutter/pull/63910) Improve Stepper controlsBuilder docs (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[63996](https://github.com/flutter/flutter/pull/63996) fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool)
[64140](https://github.com/flutter/flutter/pull/64140) [ReorderableListView] Fix item dropping animation (a: animation, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[64222](https://github.com/flutter/flutter/pull/64222) Allow modification of ListTile's horizontalTitleGap, minVerticalPadding, minLeadingWidth (cla: yes, f: material design, framework)
[64240](https://github.com/flutter/flutter/pull/64240) Add sample code to FadeTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64379](https://github.com/flutter/flutter/pull/64379) Make Dismissible's HitTestBehavior an argument (cla: yes, f: gestures, framework, waiting for tree to go green)
[64468](https://github.com/flutter/flutter/pull/64468) Fix CupertinoAlertDialog TextStyle (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[64638](https://github.com/flutter/flutter/pull/64638) Add sample code to DefaultTextStyleTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64639](https://github.com/flutter/flutter/pull/64639) Change LicensePage's loading color from scaffoldBackgroundColor to cardColor (cla: yes, f: material design, framework, waiting for tree to go green)
[64678](https://github.com/flutter/flutter/pull/64678) Wrap PopupMenu with SafeArea to respect status bar (a: layout, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64698](https://github.com/flutter/flutter/pull/64698) Added sample code to AnimatedAlign (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64746](https://github.com/flutter/flutter/pull/64746) FloatingActionButton always keeps the same position when FloatingActionButtonLocation is top. (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64846](https://github.com/flutter/flutter/pull/64846) Expose GestureBinding.handlePointerEvent, replacing dispatchEvent as the preferred way to dispatch events (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[64930](https://github.com/flutter/flutter/pull/64930) Add CompositedTransformFollower.{followerAnchor, leaderAnchor} for custom anchoring (a: layout, cla: yes, framework, waiting for tree to go green)
[64966](https://github.com/flutter/flutter/pull/64966) Minor docs updates (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65000](https://github.com/flutter/flutter/pull/65000) [LayoutBuilder] Implements baseline logic to pass baseline to child (cla: yes, framework, waiting for tree to go green)
[65010](https://github.com/flutter/flutter/pull/65010) Fix Semi Hidden helpText in showDatePicker (a: internationalization, cla: yes, f: date/time picker, f: material design, framework)
[65044](https://github.com/flutter/flutter/pull/65044) TextSelectionTheme support (step 2 of 3) (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[65057](https://github.com/flutter/flutter/pull/65057) SpringDescription parameter for the AnimationController fling method (a: animation, cla: yes, f: gestures, framework, waiting for tree to go green)
[65072](https://github.com/flutter/flutter/pull/65072) Find text containing in tests (a: tests, cla: yes, framework, waiting for tree to go green)
[65080](https://github.com/flutter/flutter/pull/65080) [ReorderableListView] remove extra margin added after picking up the item (cla: yes, f: material design, framework, waiting for tree to go green)
[65087](https://github.com/flutter/flutter/pull/65087) Let Flutter SDK use cupertino_icons 1.0.0 (cla: yes, f: cupertino, framework, team, tool)
[65126](https://github.com/flutter/flutter/pull/65126) fix overlay entry remove to remove itself from the overlay first if i… (a: animation, cla: yes, f: routes, framework, waiting for tree to go green)
[65164](https://github.com/flutter/flutter/pull/65164) Add dart-pad example code for CupertinoSliverRefreshControl (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65180](https://github.com/flutter/flutter/pull/65180) [fix] once errorBuilder is called Image widget stops loading images (cla: yes, framework)
[65193](https://github.com/flutter/flutter/pull/65193) Generate RawKeyEvents for iOS 13.4+ (a: tests, cla: yes, framework, team)
[65226](https://github.com/flutter/flutter/pull/65226) Improve the behavior of Scrollable.ensureVisible when Scrollable nested (cla: yes, f: scrolling, framework)
[65235](https://github.com/flutter/flutter/pull/65235) CupertinoTextField should not accept requestFocus when disabled (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65246](https://github.com/flutter/flutter/pull/65246) Deprecated unused property [RectangularSliderTrackShape.disabledThumbGapWidth] (cla: yes, f: material design, framework)
[65274](https://github.com/flutter/flutter/pull/65274) Add sample code for CupertinoActionSheet (cla: yes, f: cupertino, framework)
[65313](https://github.com/flutter/flutter/pull/65313) Bug fix where MouseScrollWheel zoom in flutter-web does not execute onInteraction functions (cla: yes, framework, waiting for tree to go green)
[65320](https://github.com/flutter/flutter/pull/65320) Add onSelectionChanged into SelectableText widget (cla: yes, f: material design, framework, waiting for tree to go green)
[65323](https://github.com/flutter/flutter/pull/65323) Sliver padding overlap fix (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[65432](https://github.com/flutter/flutter/pull/65432) Fix InteractiveViewer minScale bug (cla: yes, framework, waiting for tree to go green)
[65444](https://github.com/flutter/flutter/pull/65444) Make parameter optional (a: tests, cla: yes, framework, waiting for tree to go green)
[65463](https://github.com/flutter/flutter/pull/65463) [Tabs] Fix tab indicator flies off issue (cla: yes, f: material design, framework, waiting for tree to go green)
[65499](https://github.com/flutter/flutter/pull/65499) [web] Inform the engine when read-only flag is flipped (a: tests, a: text input, cla: yes, framework, platform-web, waiting for tree to go green)
[65501](https://github.com/flutter/flutter/pull/65501) Update the cupertino picker visuals (cla: yes, f: cupertino, framework)
[65503](https://github.com/flutter/flutter/pull/65503) Improve docs of ImageFiltered and BackdropFilter (cla: yes, framework, waiting for tree to go green)
[65505](https://github.com/flutter/flutter/pull/65505) Creates a way to test private APIs in the Flutter package. (cla: yes, framework, team, waiting for tree to go green)
[65528](https://github.com/flutter/flutter/pull/65528) Reland "Nnbd widgets" (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65579](https://github.com/flutter/flutter/pull/65579) Move the registration of the restoration channel to binding initialization (cla: yes, framework, waiting for tree to go green)
[65584](https://github.com/flutter/flutter/pull/65584) List tile docs (cla: yes, f: material design, framework, waiting for tree to go green)
[65602](https://github.com/flutter/flutter/pull/65602) Reland "perf test for measuring scroll smoothness" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[65635](https://github.com/flutter/flutter/pull/65635) Revert "Reland "Make sure all isolates start during flutter driver tests"" (a: tests, cla: yes, framework, waiting for tree to go green)
[65658](https://github.com/flutter/flutter/pull/65658) Make Navigator restorable (inkl. WidgetsApp, MaterialApp, CupertinoApp) (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65659](https://github.com/flutter/flutter/pull/65659) [Material] Fix a jumping animation in the beginning of the extended Navigation Rail transition (cla: yes, f: material design, framework, waiting for tree to go green)
[65660](https://github.com/flutter/flutter/pull/65660) Revert "Reland "Make sure all isolates start during flutter driver te… (a: tests, cla: yes, framework)
[65662](https://github.com/flutter/flutter/pull/65662) Buttons animate elevation changes before changing background color (cla: yes, f: material design, framework, waiting for tree to go green)
[65665](https://github.com/flutter/flutter/pull/65665) Updated API doc references to obsolete Material button classes (cla: yes, f: material design, framework, waiting for tree to go green)
[65667](https://github.com/flutter/flutter/pull/65667) Fix the `character` field of the `RawKeyEvent` to hold correct data on non-Android platforms. (a: desktop, a: tests, cla: yes, framework, team)
[65695](https://github.com/flutter/flutter/pull/65695) Fix FormFieldState value not in sync with the onChanged value from TextFormField. (cla: yes, f: material design, framework)
[65703](https://github.com/flutter/flutter/pull/65703) Make sure all isolates start during flutter driver tests. (a: tests, cla: yes, framework, waiting for tree to go green)
[65704](https://github.com/flutter/flutter/pull/65704) Revert "fuchsia_remote_debug_protocol allows open port on remote device" (a: tests, cla: yes, framework, tool)
[65754](https://github.com/flutter/flutter/pull/65754) Fix the inconsistency between the local state of the input and the engine state (cla: yes, framework, waiting for tree to go green)
[65766](https://github.com/flutter/flutter/pull/65766) Adds getter/setter for slider semantics flag. (a: accessibility, cla: yes, framework)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65817](https://github.com/flutter/flutter/pull/65817) Clarify the docs on what scrollUntilVisible does (a: tests, cla: yes, d: api docs, documentation, framework)
[65832](https://github.com/flutter/flutter/pull/65832) fix issue #55400 PopupMenuButton positions menu incorrectly with nest… (cla: yes, f: material design, framework, waiting for tree to go green)
[65857](https://github.com/flutter/flutter/pull/65857) [flutter] elide semantic information from certain widget spans (cla: yes, framework, waiting for tree to go green)
[65861](https://github.com/flutter/flutter/pull/65861) fix nullability of ScrollMetrics (cla: yes, framework)
[65871](https://github.com/flutter/flutter/pull/65871) Revert "Add CompositedTransformFollower.{followerAnchor, leaderAnchor} for custom anchoring (#64930)" (cla: yes, framework)
[65876](https://github.com/flutter/flutter/pull/65876) Allow new methods to be added to ui.Image for tests (cla: yes, framework, team, waiting for tree to go green)
[65877](https://github.com/flutter/flutter/pull/65877) Update Navigation Rail test with regression comment and cleaner size checking (cla: yes, f: material design, framework, waiting for tree to go green)
[65878](https://github.com/flutter/flutter/pull/65878) Revert "Add CompositedTransformFollower.{followerAnchor, leaderAnchor… (cla: yes, framework)
[65880](https://github.com/flutter/flutter/pull/65880) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65884](https://github.com/flutter/flutter/pull/65884) Reland 64930 Add CompositedTransformFollower.{followerAnchor, leaderAnchor} for custom anchoring (cla: yes, framework, waiting for tree to go green)
[65910](https://github.com/flutter/flutter/pull/65910) Added clipBehavior to Overlay, Flow, AnimatedSize and AndroidView (cla: yes, framework, waiting for tree to go green)
[65915](https://github.com/flutter/flutter/pull/65915) Fix DropdownButton bug (cla: yes, f: material design, framework, waiting for tree to go green)
[65918](https://github.com/flutter/flutter/pull/65918) Changed field title to label in bottom_navigation_bar_test.dart (cla: yes, f: material design, framework, waiting for tree to go green)
[65944](https://github.com/flutter/flutter/pull/65944) Divider with subheader example update (cla: yes, f: material design, framework, waiting for tree to go green)
[65951](https://github.com/flutter/flutter/pull/65951) [flutter_tools] connect widget cache from frontend_server (cla: yes, framework, team, tool, waiting for tree to go green)
[65966](https://github.com/flutter/flutter/pull/65966) TextField constrained layout bug (cla: yes, f: material design, framework)
[65973](https://github.com/flutter/flutter/pull/65973) always adds alert label for alert dialog in Android (cla: yes, f: material design, framework, waiting for tree to go green)
[65988](https://github.com/flutter/flutter/pull/65988) Replaced reference to obsolete FlatButton button class in SnackBar (cla: yes, f: material design, framework, waiting for tree to go green)
[65997](https://github.com/flutter/flutter/pull/65997) remove non-nullability on Navigator methods (cla: yes, framework, team, waiting for tree to go green)
[65998](https://github.com/flutter/flutter/pull/65998) Fix bug when updating the `divisions` and `value` of the slider at the same time (cla: yes, f: material design, framework, waiting for tree to go green)
[66014](https://github.com/flutter/flutter/pull/66014) add ScrollViewKeyboardDismissBehavior to CustomScrollView constructor (cla: yes, framework, waiting for tree to go green)
[66020](https://github.com/flutter/flutter/pull/66020) Remove deprecated activity indicator (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66023](https://github.com/flutter/flutter/pull/66023) Fix mistake in the docs of RouteInformationParser (cla: yes, framework, waiting for tree to go green)
[66024](https://github.com/flutter/flutter/pull/66024) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework)
[66027](https://github.com/flutter/flutter/pull/66027) Revert "TextField constrained layout bug" (cla: yes, f: material design, framework)
[66031](https://github.com/flutter/flutter/pull/66031) Revert "always adds alert label for alert dialog in Android" (cla: yes, f: material design, framework)
[66039](https://github.com/flutter/flutter/pull/66039) fix mouse wheel scroll miscontrol of ScrollPosition. (a: desktop, a: mouse, cla: yes, f: scrolling, framework, waiting for tree to go green)
[66043](https://github.com/flutter/flutter/pull/66043) Deprecate VelocityTracker default constructor and added VelocityTracker.withKind constructor (cla: yes, framework, team)
[66051](https://github.com/flutter/flutter/pull/66051) Revert "TextSelectionTheme support (step 2 of 3)" (cla: yes, f: material design, framework)
[66054](https://github.com/flutter/flutter/pull/66054) Add versioning to gold endpoints (a: quality, a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)
[66055](https://github.com/flutter/flutter/pull/66055) Reland "TextField constrained layout bug (#65966)" (cla: yes, f: material design, framework, waiting for tree to go green)
[66057](https://github.com/flutter/flutter/pull/66057) reland always adds alert label for alert dialog in Android (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[66061](https://github.com/flutter/flutter/pull/66061) Reland: TextSelectionTheme support (step 2 of 3) (cla: yes, f: material design, framework)
[66065](https://github.com/flutter/flutter/pull/66065) InteractiveViewer onInteractionUpdate focalPoint (cla: yes, framework, waiting for tree to go green)
[66073](https://github.com/flutter/flutter/pull/66073) Prevent a potential infinite loop in setMessageHandler (cla: yes, framework, waiting for tree to go green)
[66081](https://github.com/flutter/flutter/pull/66081) Trivial file name fix (continous -> continuous) (cla: yes, framework)
[66082](https://github.com/flutter/flutter/pull/66082) [flutter_tools] register service worker after first frame event (cla: yes, framework, team, tool)
[66139](https://github.com/flutter/flutter/pull/66139) Fix local gold output for flutter/flutter (a: quality, a: tests, cla: yes, framework, waiting for tree to go green)
[66142](https://github.com/flutter/flutter/pull/66142) Fix 'Invalid Image Data' for local Gold testing (a: error message, a: tests, cla: yes, framework, waiting for tree to go green)
[66186](https://github.com/flutter/flutter/pull/66186) Changed title to label in flutter/test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[66201](https://github.com/flutter/flutter/pull/66201) Added transformAlignment for container (cla: yes, framework, waiting for tree to go green)
[66213](https://github.com/flutter/flutter/pull/66213) Fixes typos in showDialog documentation (cla: yes, d: api docs, f: material design, framework)
[66257](https://github.com/flutter/flutter/pull/66257) Actually consume top padding in bottomsheet if scrollcontrolled (cla: yes, f: material design, framework, waiting for tree to go green)
[66262](https://github.com/flutter/flutter/pull/66262) SliverList perform layout start from the initial child when there is no valid layout offset (cla: yes, framework, waiting for tree to go green)
[66267](https://github.com/flutter/flutter/pull/66267) Add back the autovalidate class property (a: text input, cla: yes, framework)
[66271](https://github.com/flutter/flutter/pull/66271) Reland fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[66274](https://github.com/flutter/flutter/pull/66274) Make CupertinoThemeData properties non-nullable (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66291](https://github.com/flutter/flutter/pull/66291) TextField intrinsic height layout bug (cla: yes, f: material design, framework)
[66305](https://github.com/flutter/flutter/pull/66305) Add Overflow back with deprecation (cla: yes, framework, waiting for tree to go green)
[66370](https://github.com/flutter/flutter/pull/66370) Change the default visual density to be adaptive based on platform. (cla: yes, f: material design, framework, team, tool)
[66375](https://github.com/flutter/flutter/pull/66375) Provide defaulting for textScaleFactor when passing to dart:ui (a: typography, cla: yes, framework, waiting for tree to go green)
[66379](https://github.com/flutter/flutter/pull/66379) Remove last FakeImage implementation (cla: yes, framework)
[66387](https://github.com/flutter/flutter/pull/66387) enable lint unnecessary_nullable_for_final_variable_declarations (cla: yes, framework)
[66409](https://github.com/flutter/flutter/pull/66409) Change emoji in About dialog to be a divider (cla: yes, f: material design, framework, waiting for tree to go green)
[66418](https://github.com/flutter/flutter/pull/66418) fix nullability issues (cla: yes, f: cupertino, framework)
[66424](https://github.com/flutter/flutter/pull/66424) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66455](https://github.com/flutter/flutter/pull/66455) apply upcoming lint cast_nullable_to_non_nullable (a: tests, cla: yes, framework)
[66482](https://github.com/flutter/flutter/pull/66482) TextSelectionTheme support (step 3 of 3) (cla: yes, f: material design, framework, team)
[66493](https://github.com/flutter/flutter/pull/66493) migrate cupertino to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66500](https://github.com/flutter/flutter/pull/66500) Flutter 1.22.0-12.2.pre Framework cherrypicks (a: tests, cla: yes, engine, framework, team, tool)
[66504](https://github.com/flutter/flutter/pull/66504) Re-land ScaffoldMessenger (a: quality, cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)
[66506](https://github.com/flutter/flutter/pull/66506) Allow futures that resolve to null (incl. Future<void>) in Future/StreamBuilder (cla: yes, framework)
[66508](https://github.com/flutter/flutter/pull/66508) [Docs] [Material] Fix Icons api docs (cla: yes, f: material design, framework, team)
[66542](https://github.com/flutter/flutter/pull/66542) Fix last month not being displayed if last date is selected in DateRangePicker (cla: yes, f: material design, framework, waiting for tree to go green)
[66567](https://github.com/flutter/flutter/pull/66567) Length formatter minor fix (cla: yes, framework, waiting for tree to go green)
[66582](https://github.com/flutter/flutter/pull/66582) Update docs about complex character support (cla: yes, framework)
[66596](https://github.com/flutter/flutter/pull/66596) [Material] Remove opacity from dark theme overlay check (cla: yes, f: material design, framework, waiting for tree to go green)
[66597](https://github.com/flutter/flutter/pull/66597) Replaced obsolete use of FlatButton with TextButton (cla: yes, f: material design, framework, waiting for tree to go green)
[66602](https://github.com/flutter/flutter/pull/66602) Replaced obsolete use of FlatButton with TextButton in scroll_activity_test (cla: yes, framework)
[66603](https://github.com/flutter/flutter/pull/66603) Replaced use of obsolete RaisedButton with ElevatedButton in widget_inspector_test (cla: yes, framework)
[66633](https://github.com/flutter/flutter/pull/66633) migration of material files to nullsafety (cla: yes, f: material design, framework, waiting for tree to go green)
[66639](https://github.com/flutter/flutter/pull/66639) Further explain parent constraints in SizedBox (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[66640](https://github.com/flutter/flutter/pull/66640) Add decoration parameter to DataTable and DataTableTheme (cla: yes, f: material design, framework)
[66652](https://github.com/flutter/flutter/pull/66652) [Material] Update some semantics for time picker controls (cla: yes, f: material design, framework)
[66653](https://github.com/flutter/flutter/pull/66653) Changed TickerProviderStateMixin to SingleTickerProviderStateMixin in… (cla: yes, f: material design, framework)
[66663](https://github.com/flutter/flutter/pull/66663) Migrate flutter_test (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[66670](https://github.com/flutter/flutter/pull/66670) Updated tests in material/bottom_navigation_bar_test.dart (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66688](https://github.com/flutter/flutter/pull/66688) Dispose of images after using them (a: tests, cla: yes, framework, perf: memory, severe: performance)
[66692](https://github.com/flutter/flutter/pull/66692) Allow modifying barrier color and barrier dismissible for Cupertino Modal Popup (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66694](https://github.com/flutter/flutter/pull/66694) Page-subclasses to take children instead of builder (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66700](https://github.com/flutter/flutter/pull/66700) Default FittedBox's clipBehavior to none (cla: yes, framework, severe: API break)
[66743](https://github.com/flutter/flutter/pull/66743) cleanup completed todo and unused variable for WidgetTester (a: tests, cla: yes, framework, waiting for tree to go green)
[66745](https://github.com/flutter/flutter/pull/66745) move resampler to handlePointerEvent and fix complex_layout_android__scroll_smoothness with PointerEvent (a: tests, cla: yes, framework, team, waiting for tree to go green)
[66754](https://github.com/flutter/flutter/pull/66754) [desktop] default to shrink wrap on desktop platforms (cla: yes, f: material design, framework, waiting for tree to go green)
[66783](https://github.com/flutter/flutter/pull/66783) fix the tree (cla: yes, f: cupertino, framework)
[66785](https://github.com/flutter/flutter/pull/66785) Add textSelectionControls to TextField etc. (cla: yes, f: cupertino, f: material design, framework)
[66798](https://github.com/flutter/flutter/pull/66798) Fix ListTile assert when layout at zero size (cla: yes, f: material design, framework)
[66834](https://github.com/flutter/flutter/pull/66834) GlobalKey docs improvement (cla: yes, d: api docs, documentation, framework)
[66845](https://github.com/flutter/flutter/pull/66845) fix _getPixelPerfectCursorOffset logic when infinite (cla: yes, framework, waiting for tree to go green)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66851](https://github.com/flutter/flutter/pull/66851) EditableText action handlers swallow errors (cla: yes, framework)
[66858](https://github.com/flutter/flutter/pull/66858) migrate some material files to nullsafty (cla: yes, f: material design, framework)
[66864](https://github.com/flutter/flutter/pull/66864) More EditableText docs (cla: yes, framework, waiting for tree to go green)
[66889](https://github.com/flutter/flutter/pull/66889) Add more unit test cases for EditableText widget (cla: yes, framework, waiting for tree to go green)
[66914](https://github.com/flutter/flutter/pull/66914) Move assert(s) that reference 'this' to the constructor bodies. (cla: yes, f: cupertino, f: material design, framework)
[66916](https://github.com/flutter/flutter/pull/66916) Re-enables tests previously failing due to new semantics flag. (a: accessibility, a: tests, cla: yes, framework, waiting for tree to go green)
[66918](https://github.com/flutter/flutter/pull/66918) Revert "Improve the behavior of Scrollable.ensureVisible when Scrollable nested" (cla: yes, framework)
[66972](https://github.com/flutter/flutter/pull/66972) Nested Scaffolds - Suggested Changes (cla: yes, d: api docs, f: material design, framework)
[66985](https://github.com/flutter/flutter/pull/66985) migrate some material files to nullsafety (cla: yes, f: material design, framework)
[67000](https://github.com/flutter/flutter/pull/67000) Text test should check that a paragraph's longest line is not greater than the width constraint (cla: yes, framework, waiting for tree to go green)
[67003](https://github.com/flutter/flutter/pull/67003) API docs for typedefs. (cla: yes, f: material design, framework, waiting for tree to go green)
[67017](https://github.com/flutter/flutter/pull/67017) Handle empty selection box lists in RenderParagraph.assembleSemanticsNode (cla: yes, framework, waiting for tree to go green)
[67020](https://github.com/flutter/flutter/pull/67020) Relax the bounds of some Cupertino text field tests (cla: yes, f: cupertino, framework)
[67021](https://github.com/flutter/flutter/pull/67021) test that ensureVisible does not change PageView pages (cla: yes, framework, waiting for tree to go green)
[67046](https://github.com/flutter/flutter/pull/67046) Add transformAlignment and clipBehavior to AnimatedContainer (cla: yes, framework)
[67058](https://github.com/flutter/flutter/pull/67058) Migrate the tests of flutter_test to null-safety (a: tests, cla: yes, framework, waiting for tree to go green)
[67066](https://github.com/flutter/flutter/pull/67066) docs for image disposal (cla: yes, d: api docs, framework)
[67076](https://github.com/flutter/flutter/pull/67076) [Time Picker] Double tapping hours/minutes will switch time picker to input mode (cla: yes, f: material design, framework)
[67078](https://github.com/flutter/flutter/pull/67078) migrate some material files to nullsafety (cla: yes, f: material design, framework, waiting for tree to go green)
[67080](https://github.com/flutter/flutter/pull/67080) Fix resampling of down, up, and remove events. (cla: yes, framework)
[67083](https://github.com/flutter/flutter/pull/67083) [flutter] Update some tests in flutter/test (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67085](https://github.com/flutter/flutter/pull/67085) Migrate some tests to null-safety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67086](https://github.com/flutter/flutter/pull/67086) [NNBD] Migrate some Cupertino tests (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67098](https://github.com/flutter/flutter/pull/67098) Migrate non-test files in flutter/test (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67100](https://github.com/flutter/flutter/pull/67100) Revert dispose images when done (a: tests, cla: yes, framework)
[67105](https://github.com/flutter/flutter/pull/67105) [AppBarTheme] adds titleSpacing parameter (cla: yes, f: material design, framework)
[67135](https://github.com/flutter/flutter/pull/67135) Expose the tileColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[67152](https://github.com/flutter/flutter/pull/67152) [null-safety] pass experiments to builders (cla: yes, framework, tool)
[67155](https://github.com/flutter/flutter/pull/67155) [null-safety] migrate app dependencies of flutter driver (a: accessibility, a: null-safety, a: tests, cla: yes, framework, team)
[67159](https://github.com/flutter/flutter/pull/67159) Invalid dates when switching back to calendar mode in the date range picker (cla: yes, f: material design, framework)
[67166](https://github.com/flutter/flutter/pull/67166) migrate material to nullsafety (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67167](https://github.com/flutter/flutter/pull/67167) Add missing margin to SnackBarAction (cla: yes, f: material design, framework, waiting for tree to go green)
[67169](https://github.com/flutter/flutter/pull/67169) Make CupertinoTabView restorable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67177](https://github.com/flutter/flutter/pull/67177) Reland dispose images when done (#67100) (a: tests, cla: yes, framework)
[67183](https://github.com/flutter/flutter/pull/67183) Revert "migrate some material files to nullsafety" (cla: yes, f: material design, framework)
[67193](https://github.com/flutter/flutter/pull/67193) Roll flutter engine to a24c7c13925e4e3282f7b85814b70e63782fa057 (cla: yes, engine, framework)
[67197](https://github.com/flutter/flutter/pull/67197) Preserve composing range if possible on sel change (a: desktop, a: text input, cla: yes, framework)
[67218](https://github.com/flutter/flutter/pull/67218) change the documentation of bottom navigation bar (cla: yes, framework, waiting for tree to go green)
[67249](https://github.com/flutter/flutter/pull/67249) Add detection of drawer open and close in Scaffold widget as a callback method. (cla: yes, f: material design, framework, waiting for tree to go green)
[67290](https://github.com/flutter/flutter/pull/67290) Update documentation for borderWidth/renderBorder on ToggleButtons (cla: yes, f: material design, framework, waiting for tree to go green)
[67306](https://github.com/flutter/flutter/pull/67306) fix nullability issues (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[67314](https://github.com/flutter/flutter/pull/67314) InteractiveViewer table example improvements (cla: yes, framework)
[67318](https://github.com/flutter/flutter/pull/67318) Reland "migrate some material files to nullsafety (#67078)" (cla: yes, f: material design, framework, waiting for tree to go green)
[67320](https://github.com/flutter/flutter/pull/67320) Provide oldLayer where possible (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67323](https://github.com/flutter/flutter/pull/67323) [NNBD] More test migration for Cupertino & Painting (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67324](https://github.com/flutter/flutter/pull/67324) add web_long_running_tests shard containing long-running web tests (cla: yes, framework, team, waiting for tree to go green)
[67334](https://github.com/flutter/flutter/pull/67334) Fix Align widthFactor and heightFactor docs to allow 0 values (cla: yes, framework)
[67340](https://github.com/flutter/flutter/pull/67340) Remove the extra wrapping of `Listener` (cla: yes, framework, waiting for tree to go green)
[67342](https://github.com/flutter/flutter/pull/67342) [Material] Fix BottomNavTheme.showSelectedLabels bug (cla: yes, f: material design, framework, waiting for tree to go green)
[67351](https://github.com/flutter/flutter/pull/67351) Migrate some more non-test utils for tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67360](https://github.com/flutter/flutter/pull/67360) Migrate more tests to null safety (cla: yes, framework, waiting for tree to go green)
[67361](https://github.com/flutter/flutter/pull/67361) Characters docs (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[67364](https://github.com/flutter/flutter/pull/67364) Make FlutterErrorDetails.exception non-nullable as documented (cla: yes, framework, waiting for tree to go green)
[67375](https://github.com/flutter/flutter/pull/67375) Add rootOverlay flag to [Draggable], to put feedback on root [Overlay] (cla: yes, framework)
[67410](https://github.com/flutter/flutter/pull/67410) Fix the tree (cla: yes, f: cupertino, framework)
[67414](https://github.com/flutter/flutter/pull/67414) Add tristate to parent checkbox for DataTable (cla: yes, f: material design, framework)
[67419](https://github.com/flutter/flutter/pull/67419) Exposes ListTile.shape for CheckboxListTile and SwitchListTile (cla: yes, f: material design, framework, waiting for tree to go green)
[67425](https://github.com/flutter/flutter/pull/67425) [flutter_test] handle breaking change to test main (a: tests, cla: yes, framework, team, tool)
[67427](https://github.com/flutter/flutter/pull/67427) Remove required for onRemove in InteractiveInkFeature.create (cla: yes, f: material design, framework)
[67433](https://github.com/flutter/flutter/pull/67433) Revert "[null-safety] migrate app dependencies of flutter driver" (a: accessibility, a: tests, cla: yes, framework, team)
[67438](https://github.com/flutter/flutter/pull/67438) Add contentPadding property for RadioListTile (cla: yes, f: material design, framework)
[67440](https://github.com/flutter/flutter/pull/67440) Removed remaining obsolete button widget references (cla: yes, d: examples, f: material design, framework, team)
[67441](https://github.com/flutter/flutter/pull/67441) [null-safety] reland: migrate app side flutter driver to null-safety (a: accessibility, a: tests, cla: yes, framework, team)
[67443](https://github.com/flutter/flutter/pull/67443) fix nullability issues (cla: yes, f: material design, framework, waiting for tree to go green)
[67446](https://github.com/flutter/flutter/pull/67446) Add the missing parantheses (cla: yes, framework)
[67449](https://github.com/flutter/flutter/pull/67449) [NNBD] Migrates some rendering tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67453](https://github.com/flutter/flutter/pull/67453) Migrate framework tests for rendering, semantics, widgets to null safety (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67456](https://github.com/flutter/flutter/pull/67456) Flutter Driver - Create widget finders from serialized finders extensions (a: tests, cla: yes, framework, waiting for tree to go green)
[67468](https://github.com/flutter/flutter/pull/67468) Remove Cirrus support for Gold (a: tests, cla: yes, framework, team, team: infra, will affect goldens)
[67476](https://github.com/flutter/flutter/pull/67476) fix build analysis errors (cla: yes, f: cupertino, framework)
[67477](https://github.com/flutter/flutter/pull/67477) Migrate some material tests to nnbd (cla: yes, f: material design, framework)
[67482](https://github.com/flutter/flutter/pull/67482) Migrate More Material Tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67525](https://github.com/flutter/flutter/pull/67525) unnecessary null comparison (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67545](https://github.com/flutter/flutter/pull/67545) Reland removal of examples/catalog (a: accessibility, cla: yes, d: examples, f: material design, framework, team, waiting for tree to go green)
[67552](https://github.com/flutter/flutter/pull/67552) [flutter_releases] Flutter 1.22.1 Framework Cherrypicks (cla: yes, engine, f: material design, framework, team, tool)
[67555](https://github.com/flutter/flutter/pull/67555) Turn timer_picker_test goldens back on (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[67556](https://github.com/flutter/flutter/pull/67556) Migrate Material framework tests to null safety (cla: yes, f: material design, framework)
[67557](https://github.com/flutter/flutter/pull/67557) enable null_check_on_nullable_type_parameter and tighten_type_of_initializing_formals (cla: yes, f: material design, framework, waiting for tree to go green)
[67558](https://github.com/flutter/flutter/pull/67558) Some NNBD Test Conversion (cla: yes, f: material design, framework)
[67561](https://github.com/flutter/flutter/pull/67561) Revert "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team)
[67562](https://github.com/flutter/flutter/pull/67562) [Material] Time picker semantics updates (a: accessibility, cla: yes, f: material design, framework)
[67566](https://github.com/flutter/flutter/pull/67566) Revert "Wrap PopupMenu with SafeArea to respect status bar" (cla: yes, f: material design, framework)
[67570](https://github.com/flutter/flutter/pull/67570) Reland "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team, waiting for tree to go green)
[67574](https://github.com/flutter/flutter/pull/67574) Implement documented behavior of WidgetsApp.builder (cla: yes, f: material design, framework, waiting for tree to go green)
[67578](https://github.com/flutter/flutter/pull/67578) Re-land 'Wrap PopupMenu with SafeArea to respect status bar' (cla: yes, f: material design, framework, waiting for tree to go green)
[67585](https://github.com/flutter/flutter/pull/67585) Add documentation talking about ScrollPhysics.applyTo(null) (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[67591](https://github.com/flutter/flutter/pull/67591) Migrate more material tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67629](https://github.com/flutter/flutter/pull/67629) enable lint cast_nullable_to_non_nullable (a: tests, cla: yes, f: cupertino, f: material design, framework)
[67652](https://github.com/flutter/flutter/pull/67652) Replace the flag emoji in the emoji caret test with a modifier sequence (cla: yes, framework, waiting for tree to go green)
[67656](https://github.com/flutter/flutter/pull/67656) Fix new analyzer rule failure (cla: yes, f: material design, framework)
[67668](https://github.com/flutter/flutter/pull/67668) fix the tree (cla: yes, f: material design, framework)
[67672](https://github.com/flutter/flutter/pull/67672) make router assert more strict (cla: yes, framework, waiting for tree to go green)
[67674](https://github.com/flutter/flutter/pull/67674) Migrate more material tests to NNBD (cla: yes, f: material design, framework)
[67675](https://github.com/flutter/flutter/pull/67675) Fix nullability for some routing related stuff (cla: yes, framework)
[67679](https://github.com/flutter/flutter/pull/67679) Search bar dark mode contrast (cla: yes, f: material design, framework, waiting for tree to go green)
[67682](https://github.com/flutter/flutter/pull/67682) Final definite assignment (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67683](https://github.com/flutter/flutter/pull/67683) make Router.of nullable (cla: yes, framework, waiting for tree to go green)
[67687](https://github.com/flutter/flutter/pull/67687) Revert "Flutter Driver - Create widget finders from serialized finders extensions" (a: tests, cla: yes, framework)
[67689](https://github.com/flutter/flutter/pull/67689) [NNBD] Migrating some Material tests (cla: yes, f: material design, framework, team, team: infra, waiting for tree to go green)
[67692](https://github.com/flutter/flutter/pull/67692) Migrate tests to null-safety (cla: yes, f: material design, framework, waiting for tree to go green)
[67694](https://github.com/flutter/flutter/pull/67694) Fix nullability warnings in routes_test (cla: yes, framework)
[67696](https://github.com/flutter/flutter/pull/67696) NNDB TextField tests (cla: yes, f: material design, framework)
[67711](https://github.com/flutter/flutter/pull/67711) Reland "Flutter Driver - Create widget finders from serialized finders extensions" with null safety (a: tests, cla: yes, framework)
[67736](https://github.com/flutter/flutter/pull/67736) Fix text field label width on outline input border (cla: yes, f: material design, framework, waiting for tree to go green)
[67751](https://github.com/flutter/flutter/pull/67751) Fix tree (cla: yes, f: material design, framework)
[67769](https://github.com/flutter/flutter/pull/67769) Flutter driver patch: export finder factory (a: tests, cla: yes, framework)
[67770](https://github.com/flutter/flutter/pull/67770) Make CupertinoTabScaffold restorable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67773](https://github.com/flutter/flutter/pull/67773) Reland ensure visible fix for nested viewports (cla: yes, framework)
[67776](https://github.com/flutter/flutter/pull/67776) Migrate some widget tests to NNBD (cla: yes, framework, waiting for tree to go green)
[67777](https://github.com/flutter/flutter/pull/67777) Revert "Flutter driver patch: export finder factory" (a: tests, framework)
[67779](https://github.com/flutter/flutter/pull/67779) Patch: Flutter driver export finder factory (a: tests, cla: yes, framework)
[67782](https://github.com/flutter/flutter/pull/67782) Convert some widgets tests to NNBD (cla: yes, framework, waiting for tree to go green)
[67790](https://github.com/flutter/flutter/pull/67790) Migrate more Material framework tests to null safety. (cla: yes, f: material design, framework)
[67799](https://github.com/flutter/flutter/pull/67799) Add test for TabBarView (cla: yes, framework)
[67811](https://github.com/flutter/flutter/pull/67811) Fix typos in the [BottomNavigationBar] document (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[67849](https://github.com/flutter/flutter/pull/67849) Migrate even more widget framework tests to null safety. (a: accessibility, cla: yes, framework)
[67860](https://github.com/flutter/flutter/pull/67860) [Improvement] Add prefix `Alignment.` for toString of Alignment (cla: yes, framework)
[67885](https://github.com/flutter/flutter/pull/67885) [gestures] make stylus pointer types use touch pan/drag slop (cla: yes, framework)
[67887](https://github.com/flutter/flutter/pull/67887) [NNBD] Migrate some Material tests to NNBD (cla: yes, f: material design, framework)
[67892](https://github.com/flutter/flutter/pull/67892) Fix TextField bug when the formatter repeatedly format (cla: yes, framework, waiting for tree to go green)
[67900](https://github.com/flutter/flutter/pull/67900) Expose date symbols and patterns for en_US in framework (a: internationalization, cla: yes, f: material design, framework, team)
[67913](https://github.com/flutter/flutter/pull/67913) Add test case for AndroidView clipBehavior (cla: yes, framework, waiting for tree to go green)
[67916](https://github.com/flutter/flutter/pull/67916) Flutter Driver: command extensions and extension feature cleanup (a: tests, cla: yes, framework, waiting for tree to go green)
[67919](https://github.com/flutter/flutter/pull/67919) [Material] Use primary color for selected rows and checkboxes in DataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[67926](https://github.com/flutter/flutter/pull/67926) Date Picker jumps back to initialDatePickerMode after day selection (cla: yes, f: material design, framework)
[67938](https://github.com/flutter/flutter/pull/67938) [Material] Parent checkbox in DataTable should deselect all, if children checkboxes are disabled or selected (cla: yes, f: material design, framework, waiting for tree to go green)
[67939](https://github.com/flutter/flutter/pull/67939) Remove unused Gold methods (cla: yes, framework, team, waiting for tree to go green)
[67940](https://github.com/flutter/flutter/pull/67940) Fix NestedScrollView sample code (a: quality, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[67941](https://github.com/flutter/flutter/pull/67941) Migrate yet even more widget framework tests to null safety. (a: accessibility, cla: yes, framework)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[67947](https://github.com/flutter/flutter/pull/67947) Deprecate old SnackBar methods (cla: yes, f: material design, framework, severe: API break, severe: new feature, waiting for tree to go green)
[67952](https://github.com/flutter/flutter/pull/67952) Replace obsolete FlatButton reference in flutter_driver extension_test.dart (a: tests, cla: yes, framework)
[67969](https://github.com/flutter/flutter/pull/67969) Revert "Pass RouteSettings to the internal Route in showCupertinoModalPopup" (cla: yes, f: cupertino, framework)
[67988](https://github.com/flutter/flutter/pull/67988) prevent pageView scrolling when calling ensureVisible (cla: yes, framework, waiting for tree to go green)
[67990](https://github.com/flutter/flutter/pull/67990) Fix for "Pass RouteSettings to the internal Route in showCupertinoModalPopup" (cla: yes, f: cupertino, framework)
[68000](https://github.com/flutter/flutter/pull/68000) Provide a way to change the default PopupMenuButton's icon size (cla: yes, f: material design, framework, waiting for tree to go green)
[68001](https://github.com/flutter/flutter/pull/68001) Improve the document of pageView and ListView (cla: yes, framework, waiting for tree to go green)
[68019](https://github.com/flutter/flutter/pull/68019) Set slider semantics flag for sliders (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68025](https://github.com/flutter/flutter/pull/68025) Revert "More EditableText docs" (cla: yes, framework)
[68032](https://github.com/flutter/flutter/pull/68032) [flutter_test] export fake from flutter_test (a: tests, cla: yes, framework)
[68034](https://github.com/flutter/flutter/pull/68034) [NNBD] Migrate some Widgets tests (a: tests, cla: yes, framework, team, waiting for tree to go green)
[68036](https://github.com/flutter/flutter/pull/68036) Revert "prevent pageView scrolling when calling ensureVisible" (cla: yes, framework)
[68037](https://github.com/flutter/flutter/pull/68037) Migrate more tests (cla: yes, framework)
[68038](https://github.com/flutter/flutter/pull/68038) Mark unusuallyLongTimeout as internal (a: tests, cla: yes, framework, waiting for tree to go green)
[68043](https://github.com/flutter/flutter/pull/68043) Reland "More EditableText docs (#66864)" (cla: yes, framework, waiting for tree to go green)
[68065](https://github.com/flutter/flutter/pull/68065) Improve performance of collectAllElements (a: tests, cla: yes, framework, perf: speed, severe: performance, t: flutter driver, team, waiting for tree to go green)
[68074](https://github.com/flutter/flutter/pull/68074) Added CupertinoSearchTextField (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68086](https://github.com/flutter/flutter/pull/68086) Introduce `MaxLengthEnforcement` (cla: yes, f: cupertino, f: material design, framework)
[68088](https://github.com/flutter/flutter/pull/68088) [NNBD] More widget tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68102](https://github.com/flutter/flutter/pull/68102) [Flutter] Use the correct place for the system navigation bar color adjustment (cla: yes, framework, waiting for tree to go green)
[68123](https://github.com/flutter/flutter/pull/68123) [MergeSemantics] added code snippet (cla: yes, framework, waiting for tree to go green)
[68124](https://github.com/flutter/flutter/pull/68124) Do not instantiate intermediate tabs during transition (cla: yes, f: material design, framework)
[68129](https://github.com/flutter/flutter/pull/68129) Convert some more widget tests to NNBD (cla: yes, framework)
[68133](https://github.com/flutter/flutter/pull/68133) Migrate Switch tests to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68136](https://github.com/flutter/flutter/pull/68136) Sync lints (cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68150](https://github.com/flutter/flutter/pull/68150) Migrate some widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68151](https://github.com/flutter/flutter/pull/68151) Updated Builder API doc (cla: yes, framework, waiting for tree to go green)
[68157](https://github.com/flutter/flutter/pull/68157) [NNBD] Migrate some Widgets tests (a: null-safety, a: tests, cla: yes, framework, team, waiting for tree to go green)
[68160](https://github.com/flutter/flutter/pull/68160) Convert some more widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68163](https://github.com/flutter/flutter/pull/68163) Migrate last batch of tests (cla: yes, framework, waiting for tree to go green)
[68166](https://github.com/flutter/flutter/pull/68166) Rerun text formatters in didUpdateWidget if needed (cla: yes, framework, waiting for tree to go green)
[68171](https://github.com/flutter/flutter/pull/68171) Make TabBar indicator color automatic adjustment optional (cla: yes, f: material design, framework, waiting for tree to go green)
[68173](https://github.com/flutter/flutter/pull/68173) [NNBD] Migrate more widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68185](https://github.com/flutter/flutter/pull/68185) Draggable: onDragUpdate callback (cla: yes, framework, waiting for tree to go green)
[68199](https://github.com/flutter/flutter/pull/68199) Fix/issue 68182: Fix rounding issue in getMaxChildIndexForScrollOffset (cla: yes, f: scrolling, framework, waiting for tree to go green)
[68207](https://github.com/flutter/flutter/pull/68207) Revert "Improve performance of collectAllElements" (a: tests, cla: yes, framework, team)
[68214](https://github.com/flutter/flutter/pull/68214) reland List queue search optimization (a: tests, cla: yes, framework, team)
[68227](https://github.com/flutter/flutter/pull/68227) Selecting spaces (cla: yes, f: cupertino, f: material design, framework)
[68232](https://github.com/flutter/flutter/pull/68232) Migrated the Slider widget and tests to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[68237](https://github.com/flutter/flutter/pull/68237) Add useDeleteButtonTooltip property for Chip (cla: yes, f: material design, framework, waiting for tree to go green)
[68241](https://github.com/flutter/flutter/pull/68241) Migrate missed tests (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68287](https://github.com/flutter/flutter/pull/68287) fix the tree (cla: yes, framework)
[68301](https://github.com/flutter/flutter/pull/68301) use_is_even_rather_than_modulo (a: accessibility, a: tests, cla: yes, f: material design, framework, team)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68325](https://github.com/flutter/flutter/pull/68325) Correctly handle centerSlice with resoultion-aware assets. (cla: yes, framework, waiting for tree to go green)
[68327](https://github.com/flutter/flutter/pull/68327) InteractiveViewer constrained docs (cla: yes, framework, waiting for tree to go green)
[68358](https://github.com/flutter/flutter/pull/68358) [SwitchListTile and CheckboxListTile] Adds selectedTileColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[68374](https://github.com/flutter/flutter/pull/68374) Fix links to GitHub bug template (a: internationalization, cla: yes, framework, waiting for tree to go green)
[68402](https://github.com/flutter/flutter/pull/68402) Fix error cursor position for left and right arrow event after text selection (cla: yes, framework, waiting for tree to go green)
[68494](https://github.com/flutter/flutter/pull/68494) InteractiveViewer minScale docs improvement (cla: yes, framework, waiting for tree to go green)
[68505](https://github.com/flutter/flutter/pull/68505) Updated one reference to FlatButton in real_tests/extension_test.dart (a: tests, cla: yes, framework)
[68508](https://github.com/flutter/flutter/pull/68508) Remove references to CupertinoDialog (cla: yes, f: cupertino, framework, waiting for tree to go green)
[68513](https://github.com/flutter/flutter/pull/68513) Fix grammar and writing style for some of the Router documentation (cla: yes, framework, waiting for tree to go green)
[68587](https://github.com/flutter/flutter/pull/68587) Fix a multiple pointers bug (cla: yes, framework)
[68596](https://github.com/flutter/flutter/pull/68596) Add border side property to Chip, and resolve shape with border side with Material states (cla: yes, f: material design, framework, waiting for tree to go green)
[68630](https://github.com/flutter/flutter/pull/68630) IME private command docs improvement (cla: yes, framework)
[68638](https://github.com/flutter/flutter/pull/68638) Handle setting TextEditingController text to null (cla: yes, f: material design, framework, waiting for tree to go green)
[68642](https://github.com/flutter/flutter/pull/68642) Sound null safety for framework and flutter_test (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68644](https://github.com/flutter/flutter/pull/68644) Fix overscroll edge case that puts NestedScrollViews out of sync (cla: yes, f: scrolling, framework, severe: regression, waiting for tree to go green)
[68645](https://github.com/flutter/flutter/pull/68645) Migrate flutter_localizations to null safety. (a: internationalization, cla: yes, f: cupertino, f: material design, framework, team)
[68646](https://github.com/flutter/flutter/pull/68646) Remove the defaults for textBaseline (cla: yes, framework, waiting for tree to go green)
[68654](https://github.com/flutter/flutter/pull/68654) Driver vm service (a: tests, cla: yes, framework, t: flutter driver, team, waiting for tree to go green)
[68661](https://github.com/flutter/flutter/pull/68661) Fix null safety error in inspector service extensions taking a variable number of args. (cla: yes, framework)
[68662](https://github.com/flutter/flutter/pull/68662) Add clipBehavior to BoxFit doc (cla: yes, framework, waiting for tree to go green)
[68672](https://github.com/flutter/flutter/pull/68672) Revert "Fix text field label width on outline input border" (cla: yes, f: material design, framework, waiting for tree to go green)
[68681](https://github.com/flutter/flutter/pull/68681) Apply Desktop specs for Tooltip (cla: yes, f: material design, framework, waiting for tree to go green)
[68694](https://github.com/flutter/flutter/pull/68694) Fix a widgetspan hittest bug (cla: yes, framework, waiting for tree to go green)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68721](https://github.com/flutter/flutter/pull/68721) Fix assert due to VSCode passing in an isolateId as well as the expected args to setPubRootDirectories. (cla: yes, framework)
[68727](https://github.com/flutter/flutter/pull/68727) Fix floating behavior of long label and outline input border (cla: yes, f: material design, framework)
[68735](https://github.com/flutter/flutter/pull/68735) Improve backbuttondispatcher (cla: yes, framework)
[68736](https://github.com/flutter/flutter/pull/68736) Remove `nullOk` in `MediaQuery.of` (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68751](https://github.com/flutter/flutter/pull/68751) router.dart: fix grammer mistake (cla: yes, d: api docs, framework, waiting for tree to go green)
[68775](https://github.com/flutter/flutter/pull/68775) change TextEditingController.clear() behavior (cla: yes, framework)
[68793](https://github.com/flutter/flutter/pull/68793) Move service extension to correct binding so images are repainted after enabling/disabling, update test (cla: yes, framework)
[68794](https://github.com/flutter/flutter/pull/68794) Add bottom to search bar (cla: yes, f: material design, framework, team)
[68804](https://github.com/flutter/flutter/pull/68804) fix simple dialog introducing additional node for semantics label (cla: yes, f: material design, framework)
[68807](https://github.com/flutter/flutter/pull/68807) Make Material/CupertinoLocalizations non-nullable (cla: yes, f: cupertino, f: material design, framework)
[68812](https://github.com/flutter/flutter/pull/68812) Handle backspace in text fields (cla: yes, framework)
[68814](https://github.com/flutter/flutter/pull/68814) Ignore "unused" analysis for dart:ui imports for web-only API. (cla: yes, framework, platform-web, waiting for tree to go green)
[68831](https://github.com/flutter/flutter/pull/68831) [Material] Add support for customizing active + disabled state color for selection controls. (cla: yes, f: material design, framework)
[68841](https://github.com/flutter/flutter/pull/68841) Revert "Fix a multiple pointers bug" (cla: yes, framework)
[68883](https://github.com/flutter/flutter/pull/68883) Fix a typo: "Its weight" instead of "It's weight" (cla: yes, f: material design, framework, waiting for tree to go green)
[68894](https://github.com/flutter/flutter/pull/68894) retry getting the main isolate (a: tests, cla: yes, framework)
[68905](https://github.com/flutter/flutter/pull/68905) Remove `nullOk` parameter from Cupertino color resolution APIs (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68908](https://github.com/flutter/flutter/pull/68908) Remove nullOk from Scaffold.of and ScaffoldMessenger.of, create maybeOf for both (cla: yes, f: material design, framework, waiting for tree to go green)
[68910](https://github.com/flutter/flutter/pull/68910) Remove nullOk parameter from Router.of and make it return a non-nullable value (cla: yes, framework, waiting for tree to go green)
[68911](https://github.com/flutter/flutter/pull/68911) Add maybeLocaleOf to Localizations (cla: yes, framework, waiting for tree to go green)
[68913](https://github.com/flutter/flutter/pull/68913) Delay Route disposal until OverlayEntries are unmounted (cla: yes, f: cupertino, framework)
[68917](https://github.com/flutter/flutter/pull/68917) Remove nullOk parameter from Focus.of, FocusTraversalOrder.of, and FocusTraversalGroup.of (cla: yes, f: material design, framework)
[68918](https://github.com/flutter/flutter/pull/68918) Adaptive TextField (cla: yes, f: material design, framework, waiting for tree to go green)
[68920](https://github.com/flutter/flutter/pull/68920) Revert "change TextEditingController.clear() behavior" (cla: yes, framework)
[68921](https://github.com/flutter/flutter/pull/68921) Remove nullOk parameter from Shortcuts.of, Actions.find, and Actions.handler (cla: yes, framework)
[68922](https://github.com/flutter/flutter/pull/68922) Make Theme.of non-nullable (cla: yes, f: material design, framework, waiting for tree to go green)
[68923](https://github.com/flutter/flutter/pull/68923) Fix crash if update pages right after a navigator pop (cla: yes, framework)
[68925](https://github.com/flutter/flutter/pull/68925) Remove nullOk parameter from AnimatedList.of and SliverAnimatedList.of (cla: yes, framework, waiting for tree to go green)
[68968](https://github.com/flutter/flutter/pull/68968) Fix typo in form.dart (cla: yes, d: api docs, framework, waiting for tree to go green)
[68981](https://github.com/flutter/flutter/pull/68981) Error on FocusTraversalGroup or Focus docs (cla: yes, framework)
[68987](https://github.com/flutter/flutter/pull/68987) Added none property in a DismissDirection (cla: yes, f: material design, framework, team, waiting for tree to go green)
[69005](https://github.com/flutter/flutter/pull/69005) Fix null issue with dynamically updating from zero tabs for TabBar (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69046](https://github.com/flutter/flutter/pull/69046) Print errors in all build modes (cla: yes, framework, team, waiting for tree to go green)
[69050](https://github.com/flutter/flutter/pull/69050) InheritedTheme updates (cla: yes, f: material design, framework, waiting for tree to go green)
[69055](https://github.com/flutter/flutter/pull/69055) Make WidgetsLocalizations.of non-nullable (cla: yes, framework)
[69060](https://github.com/flutter/flutter/pull/69060) Make Directionality.of non-null (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69062](https://github.com/flutter/flutter/pull/69062) Remove duplicate setState in TextFormFieldState.reset (cla: yes, f: material design, framework)
[69063](https://github.com/flutter/flutter/pull/69063) Add horizontal gesture support for CupertinoScrollbar (a: desktop, a: quality, cla: yes, f: cupertino, f: scrolling, framework, waiting for tree to go green)
[69074](https://github.com/flutter/flutter/pull/69074) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69077](https://github.com/flutter/flutter/pull/69077) Reland "Driver vm service"" (a: tests, cla: yes, framework, team)
[69088](https://github.com/flutter/flutter/pull/69088) added enableFeedback property to ListTile (cla: yes, f: material design, framework)
[69089](https://github.com/flutter/flutter/pull/69089) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69096](https://github.com/flutter/flutter/pull/69096) Improve resampling of up and remove events. (cla: yes, framework)
[69101](https://github.com/flutter/flutter/pull/69101) Mouse drag should not show selection handles (cla: yes, framework)
[69107](https://github.com/flutter/flutter/pull/69107) remove unnecessary null aware operator (cla: yes, f: cupertino, framework)
[69117](https://github.com/flutter/flutter/pull/69117) Add Directionality.maybeOf (cla: yes, framework, waiting for tree to go green)
[69119](https://github.com/flutter/flutter/pull/69119) Adaptive icons (cla: yes, f: material design, framework, team)
[69126](https://github.com/flutter/flutter/pull/69126) reland driver vm_service migration (a: tests, cla: yes, framework, team, tool)
[69143](https://github.com/flutter/flutter/pull/69143) Adaptive progress indicator (cla: yes, f: material design, framework, waiting for tree to go green)
[69156](https://github.com/flutter/flutter/pull/69156) Reland "change TextEditingController.clear() behavior"" (cla: yes, framework)
[69160](https://github.com/flutter/flutter/pull/69160) Use runZonedGuarded() instead of deprecated onError. (cla: yes, f: cupertino, framework, tool)
[69164](https://github.com/flutter/flutter/pull/69164) Replaced null check with `hasContentDimensions` in NestedScrollView (cla: yes, framework, waiting for tree to go green)
[69197](https://github.com/flutter/flutter/pull/69197) [Material] Add splash radius property to selection controls (cla: yes, f: material design, framework, waiting for tree to go green)
[69211](https://github.com/flutter/flutter/pull/69211) Fix dropdown crash (cla: yes, f: material design, framework)
[69219](https://github.com/flutter/flutter/pull/69219) Fix crash when a MultiFrameImageStreamCompleter is disposed during frame decoding (cla: yes, framework, waiting for tree to go green)
[69226](https://github.com/flutter/flutter/pull/69226) [flutter_tools] measure driver success and failure (a: tests, cla: yes, framework, team)
[69230](https://github.com/flutter/flutter/pull/69230) Allow adding/removing onTap/onDismiss to Semantics (a: accessibility, cla: yes, framework, waiting for tree to go green)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69241](https://github.com/flutter/flutter/pull/69241) Revert "Updated SearchDelegate to follow custom InputDecorationTheme (#55209)" (cla: yes, f: material design, framework, waiting for tree to go green)
[69251](https://github.com/flutter/flutter/pull/69251) AppBar draws its defaults from theme.colorScheme (cla: yes, f: material design, framework)
[69253](https://github.com/flutter/flutter/pull/69253) make stack frame parser handle missing class info (cla: yes, framework, waiting for tree to go green)
[69307](https://github.com/flutter/flutter/pull/69307) [framework] increase threshold for compute to 50Kb (cla: yes, framework)
[69312](https://github.com/flutter/flutter/pull/69312) Update FAB elevation to match spec (cla: yes, f: material design, framework)
[69316](https://github.com/flutter/flutter/pull/69316) [flutter_tools] allow default driver log to fail due to IO error (a: tests, cla: yes, framework)
[69328](https://github.com/flutter/flutter/pull/69328) Reland: Fix a multiple pointers bug (cla: yes, framework)
[69346](https://github.com/flutter/flutter/pull/69346) Adaptive constructor / TextInputAction docs fix (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69383](https://github.com/flutter/flutter/pull/69383) Fix the PopupMenuButton offset bug (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[69399](https://github.com/flutter/flutter/pull/69399) [RadioListTile] Adds shape, tileColor and selectedTileColor to RadioListTile (cla: yes, f: material design, framework, waiting for tree to go green)
[69404](https://github.com/flutter/flutter/pull/69404) Added padding property in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green)
[69419](https://github.com/flutter/flutter/pull/69419) AutocompleteCore => RawAutocomplete (cla: yes, framework)
[69422](https://github.com/flutter/flutter/pull/69422) [a11y] do not attach onTap semantics if no onTap handler is provided to InkWell (cla: yes, f: material design, framework)
[69426](https://github.com/flutter/flutter/pull/69426) Fix build (cla: yes, framework)
[69428](https://github.com/flutter/flutter/pull/69428) Material Text Selection Toolbar improvements (a: text input, cla: yes, f: material design, framework)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[69451](https://github.com/flutter/flutter/pull/69451) Fix spelling errors (a: tests, cla: yes, f: cupertino, f: material design, framework, team)
[69457](https://github.com/flutter/flutter/pull/69457) Enable customization of TabBar's InkWell (cla: yes, f: material design, framework, waiting for tree to go green)
[69498](https://github.com/flutter/flutter/pull/69498) AdoptAWidget - Progress indicator (adopt a widget, cla: yes, f: material design, framework)
[69503](https://github.com/flutter/flutter/pull/69503) AdoptAWidget: FittedBox (adopt a widget, cla: yes, d: api docs, framework, waiting for tree to go green)
[69507](https://github.com/flutter/flutter/pull/69507) Add stackTrace to AsyncSnapshot (cla: yes, framework, waiting for tree to go green)
[69509](https://github.com/flutter/flutter/pull/69509) AdoptAWidget: aspectRatio (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69513](https://github.com/flutter/flutter/pull/69513) AnimatedPositioned (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69518](https://github.com/flutter/flutter/pull/69518) AdoptAWidget: Tooltip (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69521](https://github.com/flutter/flutter/pull/69521) AdoptAWidget: AbsorbPointer (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69524](https://github.com/flutter/flutter/pull/69524) AdoptAWidget: NotificationListener (adopt a widget, cla: yes, framework)
[69527](https://github.com/flutter/flutter/pull/69527) Update Draggable API Docs (cla: yes, framework, waiting for tree to go green)
[69530](https://github.com/flutter/flutter/pull/69530) AdoptAWidget: MaterialBanner (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69532](https://github.com/flutter/flutter/pull/69532) Add Scaffold to Tooltip code samples (cla: yes, f: material design, framework, waiting for tree to go green)
[69534](https://github.com/flutter/flutter/pull/69534) TextField's hintText should support TextDirection. (cla: yes, f: material design, framework)
[69535](https://github.com/flutter/flutter/pull/69535) AdoptAWidget: Dismissible (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69539](https://github.com/flutter/flutter/pull/69539) AdoptAWidget: PreferredSizeWidget (cla: yes, framework)
[69555](https://github.com/flutter/flutter/pull/69555) AdoptAWidget: SnackBar (cla: yes, f: material design, framework, waiting for tree to go green)
[69557](https://github.com/flutter/flutter/pull/69557) AdoptAWidget: SliverWithKeepAliveWidget (#69470) (cla: yes, framework, waiting for tree to go green)
[69563](https://github.com/flutter/flutter/pull/69563) AdoptAWidget: WillPopScope (adopt a widget, cla: yes, framework)
[69567](https://github.com/flutter/flutter/pull/69567) Offstage Docs Sample (cla: yes, framework)
[69568](https://github.com/flutter/flutter/pull/69568) AdoptAWidget: Shortcut (cla: yes, framework)
[69575](https://github.com/flutter/flutter/pull/69575) [ExpansionTile] adds collapsedBackgroundColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[69576](https://github.com/flutter/flutter/pull/69576) Correct GtkKeyHelper key codes for the Meta key (cla: yes, framework, waiting for tree to go green)
[69588](https://github.com/flutter/flutter/pull/69588) AdoptAWidget: Table (#69488) (cla: yes, framework)
[69594](https://github.com/flutter/flutter/pull/69594) Fix textfield messing with user-supplied input formatter list (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69596](https://github.com/flutter/flutter/pull/69596) Updated the button.icon factory constructors for NNBD (cla: yes, f: material design, framework)
[69610](https://github.com/flutter/flutter/pull/69610) Make header optional in PaginatedDataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[69614](https://github.com/flutter/flutter/pull/69614) Remove usage of --enable-experiment to analysis server (cla: yes, engine, framework, tool)
[69617](https://github.com/flutter/flutter/pull/69617) Remove references to `Window`, and switch usages to `PlatformDispatcher` or `SingletonFlutterWindow` (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[69620](https://github.com/flutter/flutter/pull/69620) Remove deprecated methods from BuildContext (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[69631](https://github.com/flutter/flutter/pull/69631) Revert TextField.adaptive (cla: yes, f: material design, framework)
[69644](https://github.com/flutter/flutter/pull/69644) Center the AnimatedPositioned code sample (cla: yes, d: api docs, framework, waiting for tree to go green)
[69650](https://github.com/flutter/flutter/pull/69650) Update ReorderableListView API docs (cla: yes, f: material design, framework)
[69653](https://github.com/flutter/flutter/pull/69653) Reland "Updated SearchDelegate to follow custom InputDecorationTheme" (cla: yes, f: material design, framework, waiting for tree to go green)
[69654](https://github.com/flutter/flutter/pull/69654) removed `an` and used `a` (cla: yes, f: material design, framework, waiting for tree to go green)
[69668](https://github.com/flutter/flutter/pull/69668) fix #24469, #67354 (cla: yes, framework, waiting for tree to go green)
[69713](https://github.com/flutter/flutter/pull/69713) ButtonStyle style side should default to shape.side (cla: yes, f: material design, framework, waiting for tree to go green)
[69717](https://github.com/flutter/flutter/pull/69717) AdoptAWidget - Update ActionListener with an example (adopt a widget, cla: yes, framework)
[69724](https://github.com/flutter/flutter/pull/69724) Fix excessive rebuilds of DSS (cla: yes, framework, waiting for tree to go green)
[69732](https://github.com/flutter/flutter/pull/69732) Cancel drag or hold when scrolling is disabled. (cla: yes, framework, waiting for tree to go green)
[69761](https://github.com/flutter/flutter/pull/69761) Link the API docs on waitFor() to the docs for runUnsynchronized() (a: tests, cla: yes, framework)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[69783](https://github.com/flutter/flutter/pull/69783) Reduce refresh indicator pull-down distance (cla: yes, f: material design, framework)
[69793](https://github.com/flutter/flutter/pull/69793) Do not crash if RichText has recognizers without handlers (cla: yes, framework, waiting for tree to go green)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[69799](https://github.com/flutter/flutter/pull/69799) Choose higher-res image variants on low-DPR screens (cla: yes, framework)
[69812](https://github.com/flutter/flutter/pull/69812) fix typo in RenderChip.computeMaxIntrinsicWidth implementation (cla: yes, f: material design, framework, waiting for tree to go green)
[69866](https://github.com/flutter/flutter/pull/69866) Add a [valid] property of [MouseTrackerAnnotation] indicates the annotation states. (cla: yes, framework, waiting for tree to go green)
[69890](https://github.com/flutter/flutter/pull/69890) Added enableFeedback property PopupMenuButton (cla: yes, f: material design, framework, waiting for tree to go green)
[69891](https://github.com/flutter/flutter/pull/69891) Fix Editable(Text) shortcuts to respect read-only on desktop (cla: yes, framework, waiting for tree to go green)
[69904](https://github.com/flutter/flutter/pull/69904) Ignore several import_of_legacy_library_into_null_safe (a: tests, cla: yes, framework)
[69919](https://github.com/flutter/flutter/pull/69919) Fix crash when widgetspan does not produce a semantics node in render… (cla: yes, framework)
[69982](https://github.com/flutter/flutter/pull/69982) Add new ListTile parameters to ListTileTheme (cla: yes, f: material design, framework, waiting for tree to go green)
[70080](https://github.com/flutter/flutter/pull/70080) Let SnackBar inherit themeData from its ancestor (cla: yes, f: material design, framework, waiting for tree to go green)
[70092](https://github.com/flutter/flutter/pull/70092) AdoptAWidget: Stepper (cla: yes, f: material design, framework)
[70131](https://github.com/flutter/flutter/pull/70131) Remove old todo (cla: yes, framework, waiting for tree to go green)
[70139](https://github.com/flutter/flutter/pull/70139) Assert for RenderFlex intrinsics if using baseline alignment (cla: yes, framework)
[70149](https://github.com/flutter/flutter/pull/70149) Fix for the ListTile horizontalTitleGap calculation introduced with PR #64222. (cla: yes, f: material design, framework)
[70156](https://github.com/flutter/flutter/pull/70156) Ignore DismissIntent when barrier is not dismissible (cla: yes, framework)
[70160](https://github.com/flutter/flutter/pull/70160) Update PopupMenuButton to match Material Design spec (a: fidelity, cla: yes, f: material design, framework, waiting for tree to go green)
[70184](https://github.com/flutter/flutter/pull/70184) [FloatingActionButtonLocation] Add diagrams to documentation of FloatingActionButtonLocation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70185](https://github.com/flutter/flutter/pull/70185) 🚀 AdoptAWidget: IgnorePointer (cla: yes, framework)
[70212](https://github.com/flutter/flutter/pull/70212) Revert "AppBar draws its defaults from theme.colorScheme" (cla: yes, f: material design, framework, waiting for tree to go green)
[70236](https://github.com/flutter/flutter/pull/70236) Intrinsic Width fixes for RenderParagraph (cla: yes, framework, waiting for tree to go green)
[70252](https://github.com/flutter/flutter/pull/70252) Fix Platform channel errors in web tests (a: tests, cla: yes, framework, waiting for tree to go green)
[70277](https://github.com/flutter/flutter/pull/70277) Improve the behavior of DropdownButton.disabledHint (cla: yes, f: material design, framework, waiting for tree to go green)
[70311](https://github.com/flutter/flutter/pull/70311) [Material] Add selection control themes (cla: yes, f: material design, framework, waiting for tree to go green)
[70319](https://github.com/flutter/flutter/pull/70319) Revert usages of the binding's platformDispatcher to use window instead (a: accessibility, a: tests, cla: yes, framework)
[70321](https://github.com/flutter/flutter/pull/70321) Add autofill troubleshooting tips to autofillHints documentation (cla: yes, framework, waiting for tree to go green)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70343](https://github.com/flutter/flutter/pull/70343) Code sample small fixes (adopt a widget, cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[70368](https://github.com/flutter/flutter/pull/70368) [integration_test] Wrap pumped widgets with a RepaintBoundary (cla: yes, framework, waiting for tree to go green)
[70379](https://github.com/flutter/flutter/pull/70379) Added Tabar Code samples (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70382](https://github.com/flutter/flutter/pull/70382) Update FlexibleSpaceBar dartpad sample (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70391](https://github.com/flutter/flutter/pull/70391) Revert "Default Keyboard ScrollActions with PrimaryScrollController" (cla: yes, f: cupertino, f: material design, framework)
[70392](https://github.com/flutter/flutter/pull/70392) Revert "Actually consume top padding in bottomsheet if scrollcontrolled" (cla: yes, f: material design, framework, waiting for tree to go green)
[70393](https://github.com/flutter/flutter/pull/70393) Update OutlinedButton default outline geometry to be backwards compatible (cla: yes, f: material design, framework)
[70397](https://github.com/flutter/flutter/pull/70397) Fix return type of ContextAction.invoke (cla: yes, framework, waiting for tree to go green)
[70398](https://github.com/flutter/flutter/pull/70398) Properly initialize RestorationManager in the TestBinding (a: tests, cla: yes, framework, waiting for tree to go green)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[70404](https://github.com/flutter/flutter/pull/70404) Allow propagation to ancestor actions if actions lower down are disabled (cla: yes, framework)
[70424](https://github.com/flutter/flutter/pull/70424) Cherry pick - Flutter 1.24 candidate.11 (a: accessibility, a: tests, cla: yes, framework, team)
[70447](https://github.com/flutter/flutter/pull/70447) fix some unit test cases(ink_well_test.dart) bug (cla: yes, f: material design, framework)
[70469](https://github.com/flutter/flutter/pull/70469) Enable test after engine fix (cla: yes, framework, waiting for tree to go green)
[70487](https://github.com/flutter/flutter/pull/70487) Ignore text selection boxes when assembling semantics for placeholder runs (cla: yes, framework, waiting for tree to go green)
[70491](https://github.com/flutter/flutter/pull/70491) Remove some unnecessary casts, now that changes have rolled from the engine (a: internationalization, a: tests, cla: yes, framework, waiting for tree to go green)
[70500](https://github.com/flutter/flutter/pull/70500) More lints (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, framework, team)
[70501](https://github.com/flutter/flutter/pull/70501) Minor documentation fixes (cla: yes, framework, waiting for tree to go green)
[70603](https://github.com/flutter/flutter/pull/70603) [Material] Decoration for DataTable is not used inside PaginatedDataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[70637](https://github.com/flutter/flutter/pull/70637) Remove last references to Window in docs. (cla: yes, framework)
[70656](https://github.com/flutter/flutter/pull/70656) Fixes Intrinsics for RenderParagraph and RenderWrap (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework)
[70669](https://github.com/flutter/flutter/pull/70669) [Material] Add method to get dark mode overlay color without needing BuildContext (cla: yes, f: material design, framework, waiting for tree to go green)
[70670](https://github.com/flutter/flutter/pull/70670) Update [ToggleButtons] to support extend down/up vertically (cla: yes, f: material design, framework, waiting for tree to go green)
[70675](https://github.com/flutter/flutter/pull/70675) Revert "Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (#70401)" (cla: yes, f: cupertino, f: material design, framework)
[70676](https://github.com/flutter/flutter/pull/70676) Added CupertinoFormSection, CupertinoSplitFormRow, and CupertinoTextFormField (cla: yes, f: cupertino, framework, waiting for tree to go green)
[70683](https://github.com/flutter/flutter/pull/70683) Set [InputDecoration.floatingLabelBehavior] default to null (cla: yes, f: material design, framework, waiting for tree to go green)
[70687](https://github.com/flutter/flutter/pull/70687) Chip theme label style is merged with the provided label style (cla: yes, f: material design, framework, waiting for tree to go green)
[70708](https://github.com/flutter/flutter/pull/70708) Material Date Picker code restructure (cla: yes, f: material design, framework)
[70726](https://github.com/flutter/flutter/pull/70726) Remove the `nullOk` parameter from `Navigator.of` and add `Navigator.maybeOf` (cla: yes, f: cupertino, f: material design, framework, team)
[70730](https://github.com/flutter/flutter/pull/70730) Improve performance of Widget Tests (a: tests, cla: yes, framework, waiting for tree to go green)
[70773](https://github.com/flutter/flutter/pull/70773) Use adaptive more icon for popup_menu (cla: yes, f: material design, framework, waiting for tree to go green)
[70787](https://github.com/flutter/flutter/pull/70787) Restart EditableText cursor timer when it moves (cla: yes, framework, waiting for tree to go green)
[70809](https://github.com/flutter/flutter/pull/70809) Fix type cast null safety in MethodChannel._invokeMethod (cla: yes, framework, waiting for tree to go green)
[70819](https://github.com/flutter/flutter/pull/70819) Add RichText debugFillProperties TestCase (cla: yes, framework, waiting for tree to go green)
[70862](https://github.com/flutter/flutter/pull/70862) [flutter_test] Correct flutter_test_configuration.dart documentation (a: tests, cla: yes, framework, waiting for tree to go green)
[70872](https://github.com/flutter/flutter/pull/70872) Prevent text from overflowing in OutlineButton and OutlinedButton label. (cla: yes, f: material design, framework)
[70883](https://github.com/flutter/flutter/pull/70883) Skip reformatting and calling onChanged for composing region only changes. (cla: yes, framework, waiting for tree to go green)
[70893](https://github.com/flutter/flutter/pull/70893) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[70953](https://github.com/flutter/flutter/pull/70953) Fix pointer scroll for nested NeverScrollables (a: desktop, cla: yes, f: scrolling, framework, platform-web, severe: regression, waiting for tree to go green)
[70968](https://github.com/flutter/flutter/pull/70968) [flutter] Update package README (cla: yes, framework, waiting for tree to go green)
[70972](https://github.com/flutter/flutter/pull/70972) Fix EditableText.enableInteractiveSelection on desktop & web (cla: yes, framework)
[70974](https://github.com/flutter/flutter/pull/70974) Fix _LateInitializationError for RenderObjectElement.renderObject (cla: yes, framework)
[70975](https://github.com/flutter/flutter/pull/70975) Remove private OutlinedButton default outline geometry class (cla: yes, f: material design, framework)
[70977](https://github.com/flutter/flutter/pull/70977) [flutter_tools] Remove usage of --precompiled flag for web tests (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, tool)
[70999](https://github.com/flutter/flutter/pull/70999) [flutter_tools] fix port leak in flutter_driver (a: tests, cla: yes, framework, tool)
[71041](https://github.com/flutter/flutter/pull/71041) Remove unnecessary argument from Row and Column constructor comments (cla: yes, framework, waiting for tree to go green)
[71050](https://github.com/flutter/flutter/pull/71050) Add dartpad sample for AnimatedPadding (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71061](https://github.com/flutter/flutter/pull/71061) Expose the YearPicker as a public API again to match the previous API. (cla: yes, f: material design, framework)
[71079](https://github.com/flutter/flutter/pull/71079) [BottomNavigationBar] Adds more control to ToolTip (cla: yes, f: material design, framework, waiting for tree to go green)
[71093](https://github.com/flutter/flutter/pull/71093) AdoptAWidget: ColorFiltered (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71097](https://github.com/flutter/flutter/pull/71097) Implement dryLayout for RenderAnimatedSize (cla: yes, framework, waiting for tree to go green)
[71137](https://github.com/flutter/flutter/pull/71137) Fix the duration assertion error for the _animateToInternal method and refine the error description (cla: yes, framework, waiting for tree to go green)
[71174](https://github.com/flutter/flutter/pull/71174) AdoptAWidget: PageView (cla: yes, d: api docs, d: examples, documentation, framework)
[71180](https://github.com/flutter/flutter/pull/71180) Revert "Implement dryLayout for RenderAnimatedSize" (cla: yes, framework)
[71184](https://github.com/flutter/flutter/pull/71184) Update AppBar and AppBar Theme to new Theme conventions and latest Material spec (cla: yes, f: material design, framework)
[71185](https://github.com/flutter/flutter/pull/71185) Reland "Implement dryLayout for RenderAnimatedSize" (cla: yes, framework, waiting for tree to go green)
[71236](https://github.com/flutter/flutter/pull/71236) Raw keyboard shortcuts & deletions should not read from _plainText (cla: yes, f: material design, framework, waiting for tree to go green)
[71266](https://github.com/flutter/flutter/pull/71266) [Proposal] Make mouseWheel zoom in % instead of pixels value (cla: yes, framework)
[71303](https://github.com/flutter/flutter/pull/71303) RefreshIndicator can be shown when dragging from non-zero scroll position (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71314](https://github.com/flutter/flutter/pull/71314) BottomNavigationBar unselected items modified to use unselectedWidgetColor (cla: yes, f: material design, framework, waiting for tree to go green)
[71376](https://github.com/flutter/flutter/pull/71376) Added mainAxisExtent to SliverGridDelegateWithFixedCrossAxisCount and SliverGridDelegateWithMaxCrossAxisExtent (cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71378](https://github.com/flutter/flutter/pull/71378) [FloatingActionButtonLocation] Add proper formatting to documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[71401](https://github.com/flutter/flutter/pull/71401) Update documentation link (cla: yes, f: material design, framework, team)
[71411](https://github.com/flutter/flutter/pull/71411) Add testing shard for release mode guard (cla: yes, framework, team, tool)
[71459](https://github.com/flutter/flutter/pull/71459) Revert "Fix excessive rebuilds of DSS" (cla: yes, framework)
[71490](https://github.com/flutter/flutter/pull/71490) Revert "Added CupertinoFormSection, CupertinoSplitFormRow, and CupertinoTextFormField" (cla: yes, f: cupertino, framework)
[71497](https://github.com/flutter/flutter/pull/71497) InteractiveViewer Scale Jump (cla: yes, framework, waiting for tree to go green)
[71522](https://github.com/flutter/flutter/pull/71522) Re-land CupertinoFormSection, CupertinoFormRow, and CupertinoTextFormFieldRow (cla: yes, f: cupertino, framework)
[71539](https://github.com/flutter/flutter/pull/71539) Add a test for intrinsic size checks (cla: yes, framework, waiting for tree to go green)
[71547](https://github.com/flutter/flutter/pull/71547) fix nullability of parameters with redirecting factory constructors (cla: yes, f: material design, framework)
[71559](https://github.com/flutter/flutter/pull/71559) Revert "Improve the behavior of DropdownButton.disabledHint" (cla: yes, f: material design, framework)
[71569](https://github.com/flutter/flutter/pull/71569) [Material] Resolve overlay color for pressed/active/inactive states in selection controls (cla: yes, f: material design, framework, waiting for tree to go green)
[71580](https://github.com/flutter/flutter/pull/71580) Updated dialog background color documentation (cla: yes, f: material design, framework)
[71587](https://github.com/flutter/flutter/pull/71587) Accessibility: repeated label on BottomNavigationBar fixed (cla: yes, f: material design, framework, waiting for tree to go green)
[71611](https://github.com/flutter/flutter/pull/71611) Updated GridView API Doc (cla: yes, framework)
[71628](https://github.com/flutter/flutter/pull/71628) Reland "Improve the behavior of DropdownButton.disabledHint" (cla: yes, f: material design, framework)
[71636](https://github.com/flutter/flutter/pull/71636) [showModalBottomSheet] fix: showModalBottomSheet does not move along keyboard (cla: yes, f: material design, framework, waiting for tree to go green)
[71653](https://github.com/flutter/flutter/pull/71653) [State Restoration] RestorableBoolN (a: state restoration, cla: yes, framework, waiting for tree to go green)
[71656](https://github.com/flutter/flutter/pull/71656) enableFlutterDriverExtension: optionally disable text entry emulation (a: tests, cla: yes, framework)
[71657](https://github.com/flutter/flutter/pull/71657) [ExpansionPanel] Exposes color property of MaterialSlice (cla: yes, f: material design, framework, waiting for tree to go green)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[71689](https://github.com/flutter/flutter/pull/71689) Minor doc, style, and perf updates to Navigator/Routes (cla: yes, framework)
[71707](https://github.com/flutter/flutter/pull/71707) Add stretch property to CupertinoSliverNavigationBar (cla: yes, f: cupertino, framework)
[71756](https://github.com/flutter/flutter/pull/71756) Correct text selection pivot points (cla: yes, f: material design, framework, waiting for tree to go green)
[71783](https://github.com/flutter/flutter/pull/71783) circleAvatar: foreground Image uses background Image as a fall-back (cla: yes, f: material design, framework, will affect goldens)
[71807](https://github.com/flutter/flutter/pull/71807) StandardMethodCodec.decodeEnvelope should allow null error message (a: null-safety, cla: yes, framework)
[71830](https://github.com/flutter/flutter/pull/71830) Fix a ConstantTween's clerical error and Add some Tween testcases. (cla: yes, framework, waiting for tree to go green)
[71838](https://github.com/flutter/flutter/pull/71838) showDialog assertion for non-null builder or child property (cla: yes, f: material design, framework, waiting for tree to go green)
[71843](https://github.com/flutter/flutter/pull/71843) Improve the ScrollBar behavior when nested (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71852](https://github.com/flutter/flutter/pull/71852) Fix text direction logic for material icon variants (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71853](https://github.com/flutter/flutter/pull/71853) Add previews for CupertinoIcons (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[71861](https://github.com/flutter/flutter/pull/71861) Remove isMaterialAppTheme property (cla: yes, f: material design, framework, waiting for tree to go green)
[71868](https://github.com/flutter/flutter/pull/71868) Doc fixes for dry layout (cla: yes, framework)
[71872](https://github.com/flutter/flutter/pull/71872) Make FocusManager configurable in BuildOwner (cla: yes, framework)
[71879](https://github.com/flutter/flutter/pull/71879) Add DynamicFeature system channel (cla: yes, engine, framework, platform-android)
[71880](https://github.com/flutter/flutter/pull/71880) Constrain width/hight when asking child for intrinsics (cla: yes, framework)
[71899](https://github.com/flutter/flutter/pull/71899) let NOTICES be double gzip wrapped to reduce on-disk installed space (cla: yes, framework, team, tool)
[71940](https://github.com/flutter/flutter/pull/71940) Remove duplicate code in Element.rebuild() and BuildOwner.buildScope() (cla: yes, framework)
[71944](https://github.com/flutter/flutter/pull/71944) app bar leading back button should not change if the route is popped (cla: yes, f: material design, framework, waiting for tree to go green)
[71986](https://github.com/flutter/flutter/pull/71986) Add removeListenerWhileNotifying benchmark for ChangeNotifier (cla: yes, framework, team, waiting for tree to go green)
[72011](https://github.com/flutter/flutter/pull/72011) Editable text should call onSelectionChanged when selection changes a… (cla: yes, framework, waiting for tree to go green)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72017](https://github.com/flutter/flutter/pull/72017) Remove deprecated CupertinoTextThemeData.brightness (cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)
[72040](https://github.com/flutter/flutter/pull/72040) Prepare to migrate API doc samples and snippets to null safety (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[72043](https://github.com/flutter/flutter/pull/72043) Deprecate `maxLengthEnforced` for text fields (cla: yes, f: cupertino, f: material design, framework)
[72046](https://github.com/flutter/flutter/pull/72046) Add footer to CupertinoFormSection and fix CupertinoFormSection margins. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72091](https://github.com/flutter/flutter/pull/72091) Cleanup nullability for ImplicitlyAnimatedWidgetState (cla: yes, f: material design, framework, waiting for tree to go green)
[72102](https://github.com/flutter/flutter/pull/72102) Revert "Constrain width/hight when asking child for intrinsics" (cla: yes, framework, waiting for tree to go green)
[72103](https://github.com/flutter/flutter/pull/72103) Fix RenderCustomPaint intrinsics (cla: yes, framework)
[72115](https://github.com/flutter/flutter/pull/72115) Reschedule engine frame if it arrives in the middle of warm-up (cla: yes, framework)
[72120](https://github.com/flutter/flutter/pull/72120) Revert "Remove duplicate code in Element.rebuild() and BuildOwner.buildScope()" (cla: yes, cp: 1.25, cp: 1.25 completed, framework)
[72122](https://github.com/flutter/flutter/pull/72122) Avoid null check operator failure in RenderFlex._hasOverflow (cla: yes, framework)
[72132](https://github.com/flutter/flutter/pull/72132) RefreshIndicator should not be shown when overscroll occurs due to inertia (cla: yes, f: material design, framework, waiting for tree to go green)
[72159](https://github.com/flutter/flutter/pull/72159) Fix api doc to fix tree (cla: yes, f: material design, framework)
[72162](https://github.com/flutter/flutter/pull/72162) Make web buttons respond to enter key (cla: yes, f: material design, framework, waiting for tree to go green)
[72163](https://github.com/flutter/flutter/pull/72163) Add some new examples to Actions and Shortcuts (cla: yes, f: material design, framework)
[72169](https://github.com/flutter/flutter/pull/72169) Migrate the first batch of API samples to null safety (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[72207](https://github.com/flutter/flutter/pull/72207) Fix navigator 2.0 in Flutter Web (cla: yes, framework, waiting for tree to go green)
[72297](https://github.com/flutter/flutter/pull/72297) Migrate some material doc samples to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[72300](https://github.com/flutter/flutter/pull/72300) Fixed issue for SliverAppBar collapsedHeight (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72303](https://github.com/flutter/flutter/pull/72303) Migrate some more material doc samples to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[72305](https://github.com/flutter/flutter/pull/72305) InteractiveViewer NNBD Docs Migration (cla: yes, framework)
[72307](https://github.com/flutter/flutter/pull/72307) RawAutocomplete NNBD Docs Migration (cla: yes, framework)
[72308](https://github.com/flutter/flutter/pull/72308) Add ScrollbarTheme/ScrollbarThemeData (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72316](https://github.com/flutter/flutter/pull/72316) Remove Scrollbar.isAlwaysShown assert based on Scrollbar.controller (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72344](https://github.com/flutter/flutter/pull/72344) Add BuildContext parameter to TextEditingController.buildTextSpan (cla: yes, f: material design, framework, waiting for tree to go green)
[72382](https://github.com/flutter/flutter/pull/72382) [flutter_releases] Flutter 1.25.0-8.1.pre framework cherrypicks (cla: yes, engine, framework)
[72384](https://github.com/flutter/flutter/pull/72384) Fix cupertino icons mapping which was misaligned by 1 (cla: yes, f: cupertino, framework, team)
[72389](https://github.com/flutter/flutter/pull/72389) Nnbd docs updates for various widgets (cla: yes, framework, waiting for tree to go green)
[72392](https://github.com/flutter/flutter/pull/72392) Migrate more doc samples (cla: yes, framework)
[72395](https://github.com/flutter/flutter/pull/72395) Remove deprecated [PointerEnterEvent, PointerExitEvent].fromHoverEvent (cla: yes, framework, severe: API break, waiting for tree to go green)
[72410](https://github.com/flutter/flutter/pull/72410) Remove unused dart:async imports. (cla: yes, f: cupertino, framework, tool, waiting for tree to go green)
[72431](https://github.com/flutter/flutter/pull/72431) Fixes: "FloatingActionButton.extended's isExtended property if false should show icon, not label" (cla: yes, f: material design, framework)
[72438](https://github.com/flutter/flutter/pull/72438) Revert "let NOTICES be double gzip wrapped to reduce on-disk installed space" (cla: yes, framework, team, tool)
[72446](https://github.com/flutter/flutter/pull/72446) Enable structured errors by default. (cla: yes, framework)
[72472](https://github.com/flutter/flutter/pull/72472) Added backwardsCompatibility flag to AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)
[72476](https://github.com/flutter/flutter/pull/72476) Allow nullable tweens in TweenAnimationBuilder (a: animation, a: null-safety, cla: yes, framework, waiting for tree to go green)
[72477](https://github.com/flutter/flutter/pull/72477) Updated the MaterialBanner example, NNBD, etc (cla: yes, f: material design, framework, waiting for tree to go green)
[72488](https://github.com/flutter/flutter/pull/72488) Support flutter_test_config for `flutter test` on web platforms (cla: yes, framework, tool, waiting for tree to go green)
[72490](https://github.com/flutter/flutter/pull/72490) Bottom navigation items length docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[72494](https://github.com/flutter/flutter/pull/72494) Fix flutter in preparation for implementing Dart's "Infer non-nullability from local boolean variables" (cla: yes, framework)
[72512](https://github.com/flutter/flutter/pull/72512) fix a DragTarget type cast bug (cla: yes, framework, waiting for tree to go green)
[72526](https://github.com/flutter/flutter/pull/72526) Make RenderColoredBox.paint() skip painting color if it's transparent (cla: yes, framework, will affect goldens)
[72530](https://github.com/flutter/flutter/pull/72530) Slight cleanup in MultiChildRenderObjectElement (cla: yes, framework)
[72531](https://github.com/flutter/flutter/pull/72531) Update Scrollbar behavior for mobile devices (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72532](https://github.com/flutter/flutter/pull/72532) Remove deprecated showDialog.child (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72541](https://github.com/flutter/flutter/pull/72541) Proposal : #72346 - expose property to pass AnimationController to showBottomSheet/showModalBottomSheet (a: animation, cla: yes, f: material design, framework)
[72548](https://github.com/flutter/flutter/pull/72548) Update various API docs (cla: yes, framework)
[72553](https://github.com/flutter/flutter/pull/72553) Autocomplete Split UI (cla: yes, framework)
[72558](https://github.com/flutter/flutter/pull/72558) Migrate some sample code to NNBD [1] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)
[72560](https://github.com/flutter/flutter/pull/72560) Add PrioritizedIntents to support multiple shortcut configurations (a: desktop, cla: yes, f: focus, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72708](https://github.com/flutter/flutter/pull/72708) [State Restoration] Adds remaining Restorable{Property}N (a: state restoration, cla: yes, framework, waiting for tree to go green)
[72741](https://github.com/flutter/flutter/pull/72741) Apply physics boundary to scrollbar dragging (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[72754](https://github.com/flutter/flutter/pull/72754) [flutter_releases] Flutter Beta 1.25.0-8.2 Framework Cherrypicks (cla: yes, engine, framework, team, tool)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72766](https://github.com/flutter/flutter/pull/72766) Migrated some cupertino doc comments to null safety. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72772](https://github.com/flutter/flutter/pull/72772) Unprefixes the class with the "new" keyword (cla: yes, f: material design, framework, waiting for tree to go green)
[72788](https://github.com/flutter/flutter/pull/72788) [State Restoration] Scaffold.drawer and Scaffold.endDrawer (a: state restoration, cla: yes, f: material design, framework, waiting for tree to go green)
[72792](https://github.com/flutter/flutter/pull/72792) Migrated some services and widgets doc comments to null safety. (cla: yes, framework, team, waiting for tree to go green)
[72794](https://github.com/flutter/flutter/pull/72794) [NNBD] Migrate sample code pt 1 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72798](https://github.com/flutter/flutter/pull/72798) [NNBD] Migrate sample code pt 2 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72803](https://github.com/flutter/flutter/pull/72803) [text_input] prepare for custom text input sources (cla: yes, framework, waiting for tree to go green)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72833](https://github.com/flutter/flutter/pull/72833) Fix scrollbar configuration for hover events (a: desktop, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[72837](https://github.com/flutter/flutter/pull/72837) [NNBD] Migrate sample code pt 3 (a: null-safety, cla: yes, f: material design, framework, team, waiting for tree to go green)
[72838](https://github.com/flutter/flutter/pull/72838) Migrated some more widgets doc comments to null safety. (cla: yes, framework, waiting for tree to go green)
[72842](https://github.com/flutter/flutter/pull/72842) [NNBD] Migrate sample code pt 4 (a: null-safety, cla: yes, framework, waiting for tree to go green)
[72845](https://github.com/flutter/flutter/pull/72845) [NNBD] Migrate sample code pt 5 (cla: yes, framework, waiting for tree to go green)
[72862](https://github.com/flutter/flutter/pull/72862) Fix type issue with RestorableNumN (and its subclasses) (cla: yes, framework)
[72890](https://github.com/flutter/flutter/pull/72890) Remove deprecated Scaffold.resizeToAvoidBottomPadding (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72893](https://github.com/flutter/flutter/pull/72893) Remove deprecated WidgetsBinding.[deferFirstFrameReport, allowFirstFrameReport] (cla: yes, framework, severe: API break, waiting for tree to go green)
[72895](https://github.com/flutter/flutter/pull/72895) DeferredComponent utility class for manual handling of Deferred Components (cla: yes, customer: money (g3), engine, framework, severe: new feature, waiting for tree to go green)
[72901](https://github.com/flutter/flutter/pull/72901) Remove deprecated StatefulElement.inheritFromElement (cla: yes, framework, severe: API break, waiting for tree to go green)
[72903](https://github.com/flutter/flutter/pull/72903) Remove deprecated Element methods (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[72904](https://github.com/flutter/flutter/pull/72904) improve error message when herocontroller is shared by multiple navig… (a: animation, a: error message, cla: yes, framework, waiting for tree to go green)
[72922](https://github.com/flutter/flutter/pull/72922) fix a RenderSliverFixedExtentBoxAdaptor Exception (cla: yes, framework, waiting for tree to go green)
[72927](https://github.com/flutter/flutter/pull/72927) Improve Cupertino docs (cla: yes, f: cupertino, framework)
[72930](https://github.com/flutter/flutter/pull/72930) Correct typos in RenderParagraph (cla: yes, framework, waiting for tree to go green)
[72933](https://github.com/flutter/flutter/pull/72933) fix(cupertinoDatePicker): do not display previous day when minimumDat… (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72938](https://github.com/flutter/flutter/pull/72938) [NNBD] Migrate sample code pt 6 (cla: yes, f: material design, framework)
[72939](https://github.com/flutter/flutter/pull/72939) Complete migration to null safety in api documentation (a: null-safety, cla: yes, f: cupertino, f: material design, framework, team)
[72945](https://github.com/flutter/flutter/pull/72945) Add widget of the week videos (cla: yes, f: material design, framework, waiting for tree to go green)
[72946](https://github.com/flutter/flutter/pull/72946) Handle infinite/NaN rects in Hero flights. Less exclamation marks. (cla: yes, framework, waiting for tree to go green)
[73016](https://github.com/flutter/flutter/pull/73016) fix an assertion causes by zero offset pointer scroll (cla: yes, f: scrolling, framework, severe: crash, waiting for tree to go green)
[73018](https://github.com/flutter/flutter/pull/73018) Document TableRowInkWell and DataTable interactions better (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[73044](https://github.com/flutter/flutter/pull/73044) [Api docs]Added dartpad demo for Bottom App Bar (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[73067](https://github.com/flutter/flutter/pull/73067) Revert "Rerun text formatters in didUpdateWidget if needed" (cla: yes, framework, waiting for tree to go green)
[73082](https://github.com/flutter/flutter/pull/73082) Navigator assert on non restorable routes returned by onGenerateInitialRoutes (a: state restoration, cla: yes, framework, waiting for tree to go green)
[73084](https://github.com/flutter/flutter/pull/73084) Improve the Scaffold.bottomSheet update behavior (a: quality, cla: yes, f: focus, f: material design, framework, waiting for tree to go green)
[73103](https://github.com/flutter/flutter/pull/73103) Add BottomNavigationBarType.shifting sample #72936 (cla: yes, f: material design, framework, waiting for tree to go green)
[73138](https://github.com/flutter/flutter/pull/73138) Removed mouseCursor property from list of not null properties in InkWell and InkResponse. (cla: yes, f: material design, framework, waiting for tree to go green)
[73153](https://github.com/flutter/flutter/pull/73153) improve error message for navigator page api (cla: yes, framework, waiting for tree to go green)
[73195](https://github.com/flutter/flutter/pull/73195) SliverAppBar with ShrinkWrap Patch (a: layout, cla: yes, f: scrolling, framework, waiting for tree to go green)
[73247](https://github.com/flutter/flutter/pull/73247) Fixed typo in icon theme (cla: yes, documentation, framework, waiting for tree to go green)
[73276](https://github.com/flutter/flutter/pull/73276) Fix dateAndTime and time modes of CupertinoDatePicker. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73281](https://github.com/flutter/flutter/pull/73281) Add clipBehavior to InteractiveViewer (cla: yes, framework)
[73300](https://github.com/flutter/flutter/pull/73300) Selecting spaces on SelectableText (mobile) (cla: yes, framework, waiting for tree to go green)
[73340](https://github.com/flutter/flutter/pull/73340) Remove "unnecessary" imports in flutter/src/services (cla: yes, framework, waiting for tree to go green)
[73344](https://github.com/flutter/flutter/pull/73344) Remove "unnecessary" imports. (cla: yes, framework, waiting for tree to go green)
[73352](https://github.com/flutter/flutter/pull/73352) Deprecated obsolete Material classes: FlatButton, RaisedButton, OutlineButton (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73361](https://github.com/flutter/flutter/pull/73361) Add material icons golden test (cla: yes, f: material design, framework, will affect goldens)
[73368](https://github.com/flutter/flutter/pull/73368) Remove "unnecessary" imports in flutter/src/rendering (cla: yes, framework, waiting for tree to go green)
[73370](https://github.com/flutter/flutter/pull/73370) minor streetAddressLine2 documentation update (cla: yes, framework, waiting for tree to go green)
[73373](https://github.com/flutter/flutter/pull/73373) Map Linux AltGr to right alt. It was currently being ignored. (cla: yes, framework, team)
[73374](https://github.com/flutter/flutter/pull/73374) macrobenchmark: active TextField with complex paragraph (cla: yes, framework, team, waiting for tree to go green)
[73381](https://github.com/flutter/flutter/pull/73381) fix dropdown menu to position based on nearest navigator (cla: yes, f: material design, framework, waiting for tree to go green)
[73389](https://github.com/flutter/flutter/pull/73389) Remove "unnecessary" imports from flutter/src/gestures (cla: yes, framework, waiting for tree to go green)
[73417](https://github.com/flutter/flutter/pull/73417) Fix Android delete key crash (cla: yes, framework, waiting for tree to go green)
[73474](https://github.com/flutter/flutter/pull/73474) Add [pointerCount] property to Scale Gesture Details (cla: yes, f: material design, framework, waiting for tree to go green)
[73486](https://github.com/flutter/flutter/pull/73486) Remove "unnecessary" imports in flutter/src/cupertino (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73503](https://github.com/flutter/flutter/pull/73503) Revert "Add BuildContext parameter to TextEditingController.buildTextSpan" (cla: yes, f: material design, framework)
[73509](https://github.com/flutter/flutter/pull/73509) Migrate missed sample code to NNBD (cla: yes, f: material design, framework, waiting for tree to go green)
[73514](https://github.com/flutter/flutter/pull/73514) Update outdated links (a: internationalization, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[73521](https://github.com/flutter/flutter/pull/73521) Revert "Add material icons golden test (#73361)" (cla: yes, f: material design, framework)
[73522](https://github.com/flutter/flutter/pull/73522) Flutter 1.26 candidate.8 (cla: yes, engine, f: material design, framework)
[73545](https://github.com/flutter/flutter/pull/73545) Re-enable a ensureVisible test case (a: tests, cla: yes, framework, waiting for tree to go green)
[73558](https://github.com/flutter/flutter/pull/73558) snackBar should paint above the bottomSheet (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[73566](https://github.com/flutter/flutter/pull/73566) Fix "RefreshIndicator.color didn't update at runtime" (cla: yes, f: material design, framework)
[73571](https://github.com/flutter/flutter/pull/73571) Expose insetPadding and clipBehavior in SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green)
[73575](https://github.com/flutter/flutter/pull/73575) Revert "Fix _LateInitializationError for RenderObjectElement.renderObject" (cla: yes, framework)
[73578](https://github.com/flutter/flutter/pull/73578) Cupertino text selection menu customization (cla: yes, f: cupertino, f: material design, framework)
[73580](https://github.com/flutter/flutter/pull/73580) Reland "Fix _LateInitializationError for RenderObjectElement.renderObject" (cla: yes, framework, waiting for tree to go green)
[73585](https://github.com/flutter/flutter/pull/73585) Add ios and hot reload/restart infos to restoration docs (cla: yes, framework)
[73604](https://github.com/flutter/flutter/pull/73604) Remove deprecated CupertinoDialog (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73618](https://github.com/flutter/flutter/pull/73618) ListTile Material Ripple and Shape Patch (cla: yes, f: material design, framework)
[73654](https://github.com/flutter/flutter/pull/73654) Fix dropdown menu overscroll (cla: yes, f: material design, framework, waiting for tree to go green)
[73715](https://github.com/flutter/flutter/pull/73715) Revert "Prevent text from overflowing in OutlineButton and OutlinedButton label." (cla: yes, f: material design, framework, waiting for tree to go green)
[73720](https://github.com/flutter/flutter/pull/73720) increase the value of debugImageOverheadAllowance from 1024 bytes to 128kb (cla: yes, framework)
[73732](https://github.com/flutter/flutter/pull/73732) Removed the color field from AppBarTheme (cla: yes, f: material design, framework)
[73745](https://github.com/flutter/flutter/pull/73745) Remove deprecated actionsForegroundColor from Cupertino[Sliver]NavigationBar (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73746](https://github.com/flutter/flutter/pull/73746) Remove deprecated ButtonTheme.bar (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73747](https://github.com/flutter/flutter/pull/73747) Remove span deprecations (cla: yes, framework, severe: API break, waiting for tree to go green)
[73748](https://github.com/flutter/flutter/pull/73748) Remove deprecated RenderView.scheduleInitialFrame (cla: yes, framework, severe: API break, waiting for tree to go green)
[73749](https://github.com/flutter/flutter/pull/73749) Remove deprecated Layer.findAll (cla: yes, framework, severe: API break, waiting for tree to go green)
[73753](https://github.com/flutter/flutter/pull/73753) Autocomplete (Material) (cla: yes, f: material design, framework)
[73754](https://github.com/flutter/flutter/pull/73754) Remove deprecated WaitUntil[NoTransientCallbacks, NoPendingFrame, FirstFrameRasterized] methods from flutter_driver (a: tests, cla: yes, framework, severe: API break, waiting for tree to go green)
[73761](https://github.com/flutter/flutter/pull/73761) add a readme for the dart fix tests (cla: yes, documentation, framework)
[73772](https://github.com/flutter/flutter/pull/73772) Update CupertinoSlidingSegmentedControl (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73780](https://github.com/flutter/flutter/pull/73780) Fix single ToggleButton border painting bugs (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[73829](https://github.com/flutter/flutter/pull/73829) Expose DialogRoutes for state restoration support (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73846](https://github.com/flutter/flutter/pull/73846) fix a tap gesture exception (cla: yes, framework, waiting for tree to go green)
[73882](https://github.com/flutter/flutter/pull/73882) Mac context menu (cla: yes, f: cupertino, f: material design, framework)
[73894](https://github.com/flutter/flutter/pull/73894) Added ButtonStyle.alignment property (cla: yes, f: material design, framework)
[73895](https://github.com/flutter/flutter/pull/73895) Flutter 1.26 candidate.10 (cla: yes, f: material design, framework, waiting for tree to go green)
[73899](https://github.com/flutter/flutter/pull/73899) Restore adaptive nature to new Scrollbar (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[73900](https://github.com/flutter/flutter/pull/73900) Added CupertinoButton alignment property (cla: yes, f: cupertino, framework)
[73925](https://github.com/flutter/flutter/pull/73925) Apply ListTile colors to leading and trailing text widgets (cla: yes, f: material design, framework, waiting for tree to go green)
[73985](https://github.com/flutter/flutter/pull/73985) [flutter_releases] Flutter 1.25.0-8.3.pre framework cherrypicks (cla: yes, engine, f: cupertino, framework, team, tool)
[73989](https://github.com/flutter/flutter/pull/73989) Add fixes for Stack deprecation (cla: yes, framework, team, waiting for tree to go green)
[73992](https://github.com/flutter/flutter/pull/73992) BorderTween.lerp supports null begin/end values (cla: yes, f: cupertino, framework)
[73993](https://github.com/flutter/flutter/pull/73993) Fix canpop logic to be more robust (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73994](https://github.com/flutter/flutter/pull/73994) Add fixes for deprecations in TextTheme (cla: yes, f: material design, framework, team, waiting for tree to go green)
[73996](https://github.com/flutter/flutter/pull/73996) Add fixes for autovalidate deprecation in Form, FormField, TextFormField, and DropdownButtonFormField (cla: yes, f: material design, framework, team, waiting for tree to go green)
[74066](https://github.com/flutter/flutter/pull/74066) Remove unused semantics tap action for readonly textfield and selecta… (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74077](https://github.com/flutter/flutter/pull/74077) Expand Stack fix to more exporting libraries (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74088](https://github.com/flutter/flutter/pull/74088) Revert "Improve the ScrollBar behavior when nested" (cla: yes, f: cupertino, f: material design, framework)
[74089](https://github.com/flutter/flutter/pull/74089) Update the alt text to match recommendations in HTML spec (cla: yes, framework, waiting for tree to go green)
[74093](https://github.com/flutter/flutter/pull/74093) ScaffoldMessenger only shows to root nested Scaffold (a: layout, a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green, will affect goldens)
[74104](https://github.com/flutter/flutter/pull/74104) Reland "Improve the ScrollBar behavior when nested (#71843)" (cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[74131](https://github.com/flutter/flutter/pull/74131) Add material icons golden test (cla: yes, f: material design, framework)
[74251](https://github.com/flutter/flutter/pull/74251) Print DevTools inspector links in RenderFlex Overflow errors (cla: yes, framework, tool, waiting for tree to go green)
[74273](https://github.com/flutter/flutter/pull/74273) Replaced uses of AppBarTheme.color with AppBarTheme.backgroundColor (cla: yes, f: material design, framework)
[74286](https://github.com/flutter/flutter/pull/74286) Material Desktop Context Menu (cla: yes, f: cupertino, f: material design, framework)
[74299](https://github.com/flutter/flutter/pull/74299) New Reorderable list widgets (cla: yes, f: material design, f: scrolling, framework, severe: new feature)
[74309](https://github.com/flutter/flutter/pull/74309) MaterialBanner alignment fixes and improvements (cla: yes, f: material design, framework, waiting for tree to go green)
[74335](https://github.com/flutter/flutter/pull/74335) Revert "ListTile Material Ripple and Shape Patch (#73618)" (cla: yes, f: material design, framework)
[74341](https://github.com/flutter/flutter/pull/74341) Improve DebugCreator docs (cla: yes, framework)
[74342](https://github.com/flutter/flutter/pull/74342) Don't use iOS font names for the macOS theme (cla: yes, f: material design, framework)
[74349](https://github.com/flutter/flutter/pull/74349) Revert "[text_input] prepare for custom text input sources" (cla: yes, framework, waiting for tree to go green)
[74402](https://github.com/flutter/flutter/pull/74402) fix a RenderBox.size access exception (cla: yes, framework, waiting for tree to go green)
[74425](https://github.com/flutter/flutter/pull/74425) Desktop keys: up/down + line modifier (cla: yes, framework)
[74439](https://github.com/flutter/flutter/pull/74439) Revert "Update PopupMenuButton to match Material Design spec" (a: internationalization, cla: yes, f: material design, framework)
[74449](https://github.com/flutter/flutter/pull/74449) Remove workaround now that type promotion accounts for local boolean variables. (cla: yes, framework, waiting for tree to go green)
[74454](https://github.com/flutter/flutter/pull/74454) Space and arrow keys in a text field shouldn't scroll (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74455](https://github.com/flutter/flutter/pull/74455) Create custom DiagnosticsNode type for DevTools deep links. (cla: yes, framework)
[74534](https://github.com/flutter/flutter/pull/74534) Add connectedVmServiceUri service extension and set from flutter_tools (cla: yes, framework, tool)
[74610](https://github.com/flutter/flutter/pull/74610) ChoiceChip's default "selected" style in dark mode theme is unreadabl… (cla: yes, f: material design, framework, waiting for tree to go green)
[74627](https://github.com/flutter/flutter/pull/74627) use predefined constants (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74657](https://github.com/flutter/flutter/pull/74657) Remove vestigial nullOk parameter from Localizations.localeOf (a: internationalization, cla: yes, framework)
[74661](https://github.com/flutter/flutter/pull/74661) remove some stray nullOK mentions from docs (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74669](https://github.com/flutter/flutter/pull/74669) default CupertinoSliverNavigationBar's stretch to false (cla: yes, f: cupertino, framework, waiting for tree to go green)
[74671](https://github.com/flutter/flutter/pull/74671) Roll packages (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)
[74680](https://github.com/flutter/flutter/pull/74680) Remove nullOk from Actions.invoke, add Actions.maybeInvoke (cla: yes, framework)
[74683](https://github.com/flutter/flutter/pull/74683) Swap the Shortcuts widget with its child in TextField (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)
[74689](https://github.com/flutter/flutter/pull/74689) Added some tests and comments for the Reorderable Lists. (cla: yes, framework, waiting for tree to go green)
### tool - 578 pull request(s)
[58853](https://github.com/flutter/flutter/pull/58853) [flutter_tools] Support IntelliJ 2020.1 and later on Linux and Windows (cla: yes, tool)
[61098](https://github.com/flutter/flutter/pull/61098) [flutter_tools] copy flutter_texture_registrar.h header for Windows shell (cla: yes, tool)
[61589](https://github.com/flutter/flutter/pull/61589) [flutter_tools] According to AnalysisSeverity return exit code detailed proposal (cla: yes, tool)
[62417](https://github.com/flutter/flutter/pull/62417) [flutter_tools] Add channel order aware version_test (cla: yes, tool, waiting for tree to go green)
[62502](https://github.com/flutter/flutter/pull/62502) Fix typo subetting should be subsetting (a: error message, cla: yes, tool, waiting for tree to go green)
[63996](https://github.com/flutter/flutter/pull/63996) fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool)
[64644](https://github.com/flutter/flutter/pull/64644) [flutter_tools] generates version.json for web using flutter tool (cla: yes, tool)
[64742](https://github.com/flutter/flutter/pull/64742) Remove FlutterApplication from app templates. (cla: yes, tool, waiting for tree to go green)
[65087](https://github.com/flutter/flutter/pull/65087) Let Flutter SDK use cupertino_icons 1.0.0 (cla: yes, f: cupertino, framework, team, tool)
[65118](https://github.com/flutter/flutter/pull/65118) Save startup timeline (cla: yes, tool, waiting for tree to go green)
[65182](https://github.com/flutter/flutter/pull/65182) Apply darkmode style (cla: yes, team, tool, waiting for tree to go green)
[65198](https://github.com/flutter/flutter/pull/65198) Avoid thinning frameworks in iOS extensions (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[65418](https://github.com/flutter/flutter/pull/65418) [flutter_tools] handle terminals that do not support single char mode in Terminal.promptForCharInput (cla: yes, tool)
[65422](https://github.com/flutter/flutter/pull/65422) [flutter_tools] only lock if an upgrade/download will be performed (linux/macos) and output building messages to stderr (cla: yes, team, tool)
[65508](https://github.com/flutter/flutter/pull/65508) fix an issue where raw json output is written to IDE clients (cla: yes, tool, waiting for tree to go green)
[65509](https://github.com/flutter/flutter/pull/65509) Sort generated plugin file content by plugin name (cla: yes, tool, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65623](https://github.com/flutter/flutter/pull/65623) Remove invalid assert in daemon (cla: yes, tool, waiting for tree to go green)
[65696](https://github.com/flutter/flutter/pull/65696) Minor Windows app template updates (cla: yes, tool, waiting for tree to go green)
[65704](https://github.com/flutter/flutter/pull/65704) Revert "fuchsia_remote_debug_protocol allows open port on remote device" (a: tests, cla: yes, framework, tool)
[65765](https://github.com/flutter/flutter/pull/65765) Update flutter_command.dart (cla: yes, tool, waiting for tree to go green)
[65784](https://github.com/flutter/flutter/pull/65784) [flutter_tools] automatically update to latest sw on install (cla: yes, tool)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65797](https://github.com/flutter/flutter/pull/65797) [flutter_tools] fix failure to create ansi spinner if download needs to be retired (cla: yes, tool)
[65802](https://github.com/flutter/flutter/pull/65802) [flutter_tools] make local engine integration testing easier (cla: yes, tool, waiting for tree to go green)
[65806](https://github.com/flutter/flutter/pull/65806) [flutter_tools] port deprecated settings test to flutter integration shard (cla: yes, team, tool, waiting for tree to go green)
[65814](https://github.com/flutter/flutter/pull/65814) [flutter_tools] use flutter tool handler for dwds resources and precache tool pub dependencies (cla: yes, tool)
[65867](https://github.com/flutter/flutter/pull/65867) [flutter_tools] update windows config feature (cla: yes, tool)
[65869](https://github.com/flutter/flutter/pull/65869) [flutter_tools] handle archive exception from invalid zip signature (cla: yes, tool)
[65873](https://github.com/flutter/flutter/pull/65873) Reland "Re-enable the Dart Development Service (DDS) (#64671)" (cla: yes, team, tool, waiting for tree to go green)
[65929](https://github.com/flutter/flutter/pull/65929) update_dart_sdk.ps1: Ensure Start-BitsTransfer always throws an exception (cla: yes, tool, waiting for tree to go green)
[65951](https://github.com/flutter/flutter/pull/65951) [flutter_tools] connect widget cache from frontend_server (cla: yes, framework, team, tool, waiting for tree to go green)
[65964](https://github.com/flutter/flutter/pull/65964) Updated androidMissingSdkInstructions error message (cla: yes, tool, waiting for tree to go green)
[65977](https://github.com/flutter/flutter/pull/65977) Inform user how to fix permissions when the observatory URL isn't found on iOS 14 (cla: yes, platform-ios, tool, waiting for tree to go green)
[65978](https://github.com/flutter/flutter/pull/65978) Added the machine's architecture to macos doctor results. (cla: yes, tool, waiting for tree to go green)
[65984](https://github.com/flutter/flutter/pull/65984) Hide flutter test --platform (cla: yes, tool, waiting for tree to go green)
[66021](https://github.com/flutter/flutter/pull/66021) Update Windows system font change handling (cla: yes, tool, waiting for tree to go green)
[66022](https://github.com/flutter/flutter/pull/66022) Consider the Windows app template stable (cla: yes, tool)
[66025](https://github.com/flutter/flutter/pull/66025) Add VERSIONINFO to the Windows template (cla: yes, tool, waiting for tree to go green)
[66069](https://github.com/flutter/flutter/pull/66069) [flutter_tools] optimize fetch requests and remove main.dart.js bypass (cla: yes, tool, waiting for tree to go green)
[66082](https://github.com/flutter/flutter/pull/66082) [flutter_tools] register service worker after first frame event (cla: yes, framework, team, tool)
[66092](https://github.com/flutter/flutter/pull/66092) Stream logging from attached debugger on iOS (cla: yes, platform-ios, tool)
[66113](https://github.com/flutter/flutter/pull/66113) Remove the Windows 'flutter create' warning (cla: yes, tool, waiting for tree to go green)
[66123](https://github.com/flutter/flutter/pull/66123) Ensure VmService instance is disposed after failed direct connection attempt (cla: yes, tool)
[66136](https://github.com/flutter/flutter/pull/66136) [versions] update to latest source span and roll engine to 4b8477d11573d233e6791204191c0090f733b05d (cla: yes, engine, team, tool, waiting for tree to go green)
[66151](https://github.com/flutter/flutter/pull/66151) [flutter_tools] map file Uri to multi-root scheme if provided (cla: yes, tool)
[66152](https://github.com/flutter/flutter/pull/66152) Added timeout for closing devfs sync http connections. (cla: yes, tool)
[66156](https://github.com/flutter/flutter/pull/66156) [flutter_tools] fix bug where last build id parent folder is missing (cla: yes, tool, waiting for tree to go green)
[66159](https://github.com/flutter/flutter/pull/66159) [flutter_tools] add EPERM to set of immediate exit errors (cla: yes, tool, waiting for tree to go green)
[66164](https://github.com/flutter/flutter/pull/66164) Revert "Ensure VmService instance is disposed after failed direct connection attempt" (cla: yes, tool)
[66266](https://github.com/flutter/flutter/pull/66266) [flutter_tools] allow device classes to provide platform-specific interface for devFS Sync (cla: yes, tool, waiting for tree to go green)
[66271](https://github.com/flutter/flutter/pull/66271) Reland fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[66273](https://github.com/flutter/flutter/pull/66273) [flutter_tools] remove k toggle for canvaskit from web runner (cla: yes, tool)
[66290](https://github.com/flutter/flutter/pull/66290) roll source_span 1.8.0-nullsafety.2 (cla: yes, team, tool)
[66310](https://github.com/flutter/flutter/pull/66310) Listen to Debug VM stream to get Stdout logs from VMService (cla: yes, platform-ios, tool, waiting for tree to go green)
[66311](https://github.com/flutter/flutter/pull/66311) Expose enable-experiment in Flutter drive (cla: yes, tool, waiting for tree to go green)
[66358](https://github.com/flutter/flutter/pull/66358) [flutter_tools] dont crash if attach is given a bad debug uri (cla: yes, tool)
[66359](https://github.com/flutter/flutter/pull/66359) Revert "Stream logging from attached debugger on iOS" (cla: yes, tool)
[66360](https://github.com/flutter/flutter/pull/66360) Reland "Stream logging from attached debugger on iOS"" (cla: yes, tool)
[66367](https://github.com/flutter/flutter/pull/66367) [dev release] Revert "Stream logging from attached debugger on iOS (#66092)" (cla: yes, tool)
[66368](https://github.com/flutter/flutter/pull/66368) Revert "Stream logging from attached debugger on iOS" (cla: yes, tool)
[66370](https://github.com/flutter/flutter/pull/66370) Change the default visual density to be adaptive based on platform. (cla: yes, f: material design, framework, team, tool)
[66377](https://github.com/flutter/flutter/pull/66377) Reland "Ensure VmService instance is disposed after failed direct connection attempt" (cla: yes, tool)
[66382](https://github.com/flutter/flutter/pull/66382) Update .gitignore.tmpl (cla: yes, tool, waiting for tree to go green)
[66384](https://github.com/flutter/flutter/pull/66384) update to the latest null safe packages (cla: yes, team, tool)
[66390](https://github.com/flutter/flutter/pull/66390) Stream logging from attached debugger on iOS (cla: yes, tool)
[66397](https://github.com/flutter/flutter/pull/66397) Revert "Stream logging from attached debugger on iOS" (cla: yes, tool)
[66399](https://github.com/flutter/flutter/pull/66399) Stream logging from attached debugger on iOS 13+ (cla: yes, platform-ios, team, tool)
[66401](https://github.com/flutter/flutter/pull/66401) [flutter_tools] fix calling debugToggleBrightness on release mode (cla: yes, tool)
[66403](https://github.com/flutter/flutter/pull/66403) Revert "[flutter_tools] map file Uri to multi-root scheme if provided" (cla: yes, tool)
[66405](https://github.com/flutter/flutter/pull/66405) [flutter_tools] reland: map file URIs to a multiroot scheme (cla: yes, tool)
[66406](https://github.com/flutter/flutter/pull/66406) Check git commands in Flutter version check test (cla: yes, team, tool)
[66417](https://github.com/flutter/flutter/pull/66417) [flutter_tools] flush UI thread tasks before finishing hot restart (cla: yes, tool)
[66461](https://github.com/flutter/flutter/pull/66461) [flutter_tools] try deleting the web cache directory before copying new web sdk (cla: yes, tool, waiting for tree to go green)
[66468](https://github.com/flutter/flutter/pull/66468) [flutter_tools] do not add events to closed sink in throttle transform (cla: yes, tool)
[66500](https://github.com/flutter/flutter/pull/66500) Flutter 1.22.0-12.2.pre Framework cherrypicks (a: tests, cla: yes, engine, framework, team, tool)
[66507](https://github.com/flutter/flutter/pull/66507) [flutter_tools] enable single widget reload optimization by default on master (cla: yes, tool, waiting for tree to go green)
[66519](https://github.com/flutter/flutter/pull/66519) Try the Wayland GDK backend, the engine now supports it (cla: yes, tool)
[66559](https://github.com/flutter/flutter/pull/66559) [flutter_tools] bypass pubspec yaml content check when running pubdependencies (cla: yes, tool)
[66590](https://github.com/flutter/flutter/pull/66590) Force plugins to inherit minimum iOS version from Flutter app (cla: yes, platform-ios, t: xcode, team, tool)
[66606](https://github.com/flutter/flutter/pull/66606) [web] Change the web server to support path url strategy (cla: yes, platform-web, tool, waiting for tree to go green)
[66607](https://github.com/flutter/flutter/pull/66607) Set DDS port to requested observatory port for test (cla: yes, tool)
[66621](https://github.com/flutter/flutter/pull/66621) Remove "Try accepting the local network permissions popup" warning (a: triage improvements, cla: yes, platform-ios, tool, waiting for tree to go green)
[66645](https://github.com/flutter/flutter/pull/66645) [flutter_tools] Use XDG_CONFIG_HOME dir by default for config files (cla: yes, tool)
[66678](https://github.com/flutter/flutter/pull/66678) [flutter_tools] enable LocalDevFSWriter for desktop devices, iOS simulator (cla: yes, tool)
[66680](https://github.com/flutter/flutter/pull/66680) [flutter_tools] ensure ErrorHandlingFileSystem wraps current directory (cla: yes, tool, waiting for tree to go green)
[66685](https://github.com/flutter/flutter/pull/66685) [flutter_tools] handle missing zip/unzip argument errors (cla: yes, tool)
[66687](https://github.com/flutter/flutter/pull/66687) Teach the flutter tool how to find android output files if the flavor contains uppercase letters (cla: yes, tool, waiting for tree to go green)
[66691](https://github.com/flutter/flutter/pull/66691) [flutter_tools] dont mention git clone of flutter in run message (cla: yes, tool)
[66696](https://github.com/flutter/flutter/pull/66696) [flutter_tools] flutter logs no longer requires supported device (cla: yes, tool, waiting for tree to go green)
[66701](https://github.com/flutter/flutter/pull/66701) [flutter_tools] pretty print hot reload rejection error (cla: yes, tool)
[66704](https://github.com/flutter/flutter/pull/66704) [flutter_tools] pass existsSync through error handling io (cla: yes, tool)
[66705](https://github.com/flutter/flutter/pull/66705) [flutter_tools] do not crash if chrome preference save fails (cla: yes, tool)
[66708](https://github.com/flutter/flutter/pull/66708) [flutter_tools] handle case where file is deleted by other program or running on read only volume (cla: yes, tool)
[66742](https://github.com/flutter/flutter/pull/66742) [flutter_tools] hot reload/restart update for asset manager change (cla: yes, tool)
[66748](https://github.com/flutter/flutter/pull/66748) Improve consistency of top-level help text (cla: yes, tool, waiting for tree to go green)
[66755](https://github.com/flutter/flutter/pull/66755) [flutter_tools] dont let crash reporter crash tool (cla: yes, tool)
[66776](https://github.com/flutter/flutter/pull/66776) [flutter_tools] remove all pub caching logic (cla: yes, tool)
[66780](https://github.com/flutter/flutter/pull/66780) [flutter_tools] do not error doctor on missing vs code extension (cla: yes, tool)
[66782](https://github.com/flutter/flutter/pull/66782) [flutter_tools] do not error flutter doctor on missing AS/intellij plugins (cla: yes, tool)
[66787](https://github.com/flutter/flutter/pull/66787) [flutter_tools] add a mechanism to turn off immediate tool exit (cla: yes, tool)
[66801](https://github.com/flutter/flutter/pull/66801) Minor tool text typo (cla: yes, tool, waiting for tree to go green)
[66836](https://github.com/flutter/flutter/pull/66836) Roll package:dds to 1.4.0 and update error handling (cla: yes, team, tool)
[66842](https://github.com/flutter/flutter/pull/66842) [flutter_tools] do not require a dependency on devtools server (cla: yes, tool)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66854](https://github.com/flutter/flutter/pull/66854) Update flutter_tools README.md to document need for FLUTTER_ROOT (cla: yes, tool, waiting for tree to go green)
[66897](https://github.com/flutter/flutter/pull/66897) Add the ability to inject a bootstrap script (cla: yes, tool)
[66941](https://github.com/flutter/flutter/pull/66941) Replace MockFile with memory file system files (cla: yes, team, tool)
[66946](https://github.com/flutter/flutter/pull/66946) Replace MockCache with Cache.test() (cla: yes, team, tool)
[66980](https://github.com/flutter/flutter/pull/66980) [flutter_tools] fix documentation, globals, and todos in the android codebase (cla: yes, tool)
[66983](https://github.com/flutter/flutter/pull/66983) [flutter_tools] prevent running analyze-size with split-debug-info (cla: yes, tool)
[66995](https://github.com/flutter/flutter/pull/66995) [flutter_tool] enable single widget reload optimization by default on dev (cla: yes, tool, waiting for tree to go green)
[66997](https://github.com/flutter/flutter/pull/66997) Fix Windows and Linux plugin template filenames (cla: yes, tool, waiting for tree to go green)
[67012](https://github.com/flutter/flutter/pull/67012) Replace MockArtifacts with Artifacts.test() (cla: yes, team, tool)
[67019](https://github.com/flutter/flutter/pull/67019) Replace MockProcessManager with FakeProcessManager (cla: yes, team, tool, waiting for tree to go green)
[67029](https://github.com/flutter/flutter/pull/67029) Improve Windows symlink instructions (a: build, a: desktop, cla: yes, platform-windows, tool)
[67057](https://github.com/flutter/flutter/pull/67057) update stack_trace dep (and others) (cla: yes, team, tool, waiting for tree to go green)
[67081](https://github.com/flutter/flutter/pull/67081) [web] Update index.html template to support new path strategy (cla: yes, f: routes, platform-web, tool, waiting for tree to go green)
[67088](https://github.com/flutter/flutter/pull/67088) [web] Respond with 404 to non-found asset or package files (cla: yes, platform-web, tool, waiting for tree to go green)
[67106](https://github.com/flutter/flutter/pull/67106) [null-safety] allow web shard to compile null-safe tests. (a: null-safety, cla: yes, tool)
[67146](https://github.com/flutter/flutter/pull/67146) [flutter_tools] remove globals from desktop configuration (cla: yes, tool, waiting for tree to go green)
[67150](https://github.com/flutter/flutter/pull/67150) [flutter_tools] support all engine debugging options with FLUTTER_ENGINE_SWITCH environment variables (cla: yes, tool)
[67152](https://github.com/flutter/flutter/pull/67152) [null-safety] pass experiments to builders (cla: yes, framework, tool)
[67165](https://github.com/flutter/flutter/pull/67165) [flutter_tools] update build rules to depend on subset of package_config contents (cla: yes, tool)
[67171](https://github.com/flutter/flutter/pull/67171) [null-safety] add integration tests for sound null safety modes, add support for sound null safety in dart2js (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[67231](https://github.com/flutter/flutter/pull/67231) [flutter_tools] do not use IOSink for writing cache responses (cla: yes, tool)
[67234](https://github.com/flutter/flutter/pull/67234) [flutter_tools] remove globals from FlutterValidator, add documentation and move tests to new file (cla: yes, tool)
[67237](https://github.com/flutter/flutter/pull/67237) [flutter_tools] add more docs to cocoapods, move to globals (cla: yes, tool)
[67240](https://github.com/flutter/flutter/pull/67240) [flutter_tools] remove globals from IntelliJ validator, refactor tests to remove dependency on JAR (cla: yes, tool)
[67242](https://github.com/flutter/flutter/pull/67242) [flutter_tools] Simplify plugin test cases and expand coverage of AndroidPlugin (cla: yes, tool)
[67274](https://github.com/flutter/flutter/pull/67274) [flutter_tools] refactor local engine locator to its own class (cla: yes, tool)
[67279](https://github.com/flutter/flutter/pull/67279) [flutter_tools] delete code related to reload method (cla: yes, tool)
[67295](https://github.com/flutter/flutter/pull/67295) Handle missing Android SDKs in getEmulators() (cla: yes, tool, waiting for tree to go green)
[67316](https://github.com/flutter/flutter/pull/67316) Remove goldens request timeout (cla: yes, tool, waiting for tree to go green)
[67331](https://github.com/flutter/flutter/pull/67331) [flutter_tools] disable source maps by default for release builds, enable for run and with command line arg (cla: yes, tool)
[67357](https://github.com/flutter/flutter/pull/67357) Condense package:test_core imports (cla: yes, tool)
[67367](https://github.com/flutter/flutter/pull/67367) Remove the .zip method from OSUtils, as it was not used (cla: yes, tool)
[67369](https://github.com/flutter/flutter/pull/67369) [flutter_tools] work around hostonly test (cla: yes, tool)
[67425](https://github.com/flutter/flutter/pull/67425) [flutter_test] handle breaking change to test main (a: tests, cla: yes, framework, team, tool)
[67452](https://github.com/flutter/flutter/pull/67452) Add publish-port flag to disable mDNS port discovery (cla: yes, platform-ios, tool, waiting for tree to go green)
[67466](https://github.com/flutter/flutter/pull/67466) Work around the glibc bug that causes rare Chrome crashes (cla: yes, team, tool, waiting for tree to go green)
[67478](https://github.com/flutter/flutter/pull/67478) [flutter_tools] remove deprecated flutter command (cla: yes, tool)
[67485](https://github.com/flutter/flutter/pull/67485) [flutter_tools] remove globals from compile and devices (cla: yes, tool)
[67493](https://github.com/flutter/flutter/pull/67493) [flutter_tools] support powershell style help request (cla: yes, tool)
[67530](https://github.com/flutter/flutter/pull/67530) [flutter_tools] remove stray print from engine locator (cla: yes, tool, waiting for tree to go green)
[67552](https://github.com/flutter/flutter/pull/67552) [flutter_releases] Flutter 1.22.1 Framework Cherrypicks (cla: yes, engine, f: material design, framework, team, tool)
[67572](https://github.com/flutter/flutter/pull/67572) Revert "[flutter_tools] remove all pub caching logic" (cla: yes, tool)
[67576](https://github.com/flutter/flutter/pull/67576) Respect --enable-software-rendering flag on iOS simulators (cla: yes, tool, waiting for tree to go green)
[67581](https://github.com/flutter/flutter/pull/67581) [flutter tools] Add a DelegatingLogger class (cla: yes, tool)
[67589](https://github.com/flutter/flutter/pull/67589) [flutter_tools] Reland: simplify pub cache logic (cla: yes, tool)
[67598](https://github.com/flutter/flutter/pull/67598) Build xcarchive command (cla: yes, platform-ios, t: xcode, team, tool)
[67669](https://github.com/flutter/flutter/pull/67669) [flutter_tools] fold executable resolution into flutter (cla: yes, tool)
[67670](https://github.com/flutter/flutter/pull/67670) Replace MockUsage with Usage.test in build tests (cla: yes, team, tool)
[67744](https://github.com/flutter/flutter/pull/67744) Bump meta to 1.3.0-nullsafety.4 (cla: yes, team, tool)
[67755](https://github.com/flutter/flutter/pull/67755) Remove uses of Dart VM bytecode mode (cla: yes, tool)
[67766](https://github.com/flutter/flutter/pull/67766) [flutter_tools] remove train and inject-plugins command (cla: yes, team, tool)
[67781](https://github.com/flutter/flutter/pull/67781) Build IPA command (cla: yes, platform-ios, t: xcode, tool)
[67783](https://github.com/flutter/flutter/pull/67783) [flutter_tools] remove --with-driver-test (cla: yes, tool)
[67786](https://github.com/flutter/flutter/pull/67786) [flutter_tools] dont allow creating package name that is invalid (cla: yes, tool)
[67826](https://github.com/flutter/flutter/pull/67826) [flutter_tools] check asset files while the tool waits for the frontend_server compile (cla: yes, tool)
[67827](https://github.com/flutter/flutter/pull/67827) [flutter_tools] Make ApplicationPackageFactory inject dependencies for Android Builds (cla: yes, tool)
[67837](https://github.com/flutter/flutter/pull/67837) [flutter_tools] use fixed entry for dill uploads (cla: yes, tool)
[67839](https://github.com/flutter/flutter/pull/67839) [flutter_tools] verify checksum of downloaded artifacts (cla: yes, tool)
[67882](https://github.com/flutter/flutter/pull/67882) [flutter_tools] HACKTOBERFEST (cla: yes, tool)
[67883](https://github.com/flutter/flutter/pull/67883) [flutter_tools] validate that SkSL bundle path exists (cla: yes, tool)
[67884](https://github.com/flutter/flutter/pull/67884) [flutter_tools] document flutter root initialization (cla: yes, tool)
[67899](https://github.com/flutter/flutter/pull/67899) Avoid skipping variable initialization using case. (cla: yes, tool, waiting for tree to go green)
[67931](https://github.com/flutter/flutter/pull/67931) [flutter_tools] do not crash validator if intellij JAR file is missing (cla: yes, tool)
[67936](https://github.com/flutter/flutter/pull/67936) [flutter_tools] teach flutter drive to uninstall if install fails (cla: yes, tool)
[67954](https://github.com/flutter/flutter/pull/67954) Revert "[flutter_tools] fold executable resolution into flutter" (cla: yes, tool)
[67957](https://github.com/flutter/flutter/pull/67957) [flutter_tools] reland: fold process resolution logic into the flutter tool (cla: yes, tool)
[67959](https://github.com/flutter/flutter/pull/67959) [flutter_tools] do not measure progress timeout (cla: yes, tool)
[67968](https://github.com/flutter/flutter/pull/67968) Revert "[flutter_tools] reland: fold process resolution logic into the flutter tool" (cla: yes, tool)
[67970](https://github.com/flutter/flutter/pull/67970) Detect ARM macOS arch with sysctl hw.optional.arm64 (cla: yes, platform-ios, tool)
[67971](https://github.com/flutter/flutter/pull/67971) [flutter_tools] attempt to stabilize hot restart benchmark the old fashioned way (cla: yes, team, tool)
[67976](https://github.com/flutter/flutter/pull/67976) Move processUtils to globals (cla: yes, team, tool, waiting for tree to go green)
[67992](https://github.com/flutter/flutter/pull/67992) [flutter_tools] support Android Studio 4.1 on Windows (cla: yes, tool)
[68020](https://github.com/flutter/flutter/pull/68020) [flutter_tools] change the IntelliJ plugin detection logic. (cla: yes, tool)
[68026](https://github.com/flutter/flutter/pull/68026) [flutter_tools] delete applicationPackageStore (cla: yes, tool)
[68046](https://github.com/flutter/flutter/pull/68046) Detach debugger when VM connection fails on iOS (cla: yes, tool)
[68050](https://github.com/flutter/flutter/pull/68050) Run Xcode command lines tools in native ARM (cla: yes, platform-mac, tool)
[68060](https://github.com/flutter/flutter/pull/68060) [flutter_tool] support --use-application-binary in flutter drive (cla: yes, team, tool)
[68071](https://github.com/flutter/flutter/pull/68071) [flutter_tools] do not allow attaching in release mode (cla: yes, tool)
[68078](https://github.com/flutter/flutter/pull/68078) [flutter_tools] listen to the nice ios-deploy tool (cla: yes, tool)
[68118](https://github.com/flutter/flutter/pull/68118) Revert "[flutter_tools] listen to the nice ios-deploy tool" (cla: yes, tool)
[68128](https://github.com/flutter/flutter/pull/68128) [flutter_tools] partial revert of start app change (cla: yes, tool)
[68131](https://github.com/flutter/flutter/pull/68131) [flutter_tools] ensure android log reader works in flutter drive (cla: yes, tool)
[68132](https://github.com/flutter/flutter/pull/68132) Update package:stack_trace dependency to 1.10.0-nullsafety.4 (cla: yes, team, tool)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68136](https://github.com/flutter/flutter/pull/68136) Sync lints (cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68140](https://github.com/flutter/flutter/pull/68140) [flutter_tools] move gradle download failure handling into tool (cla: yes, team, tool)
[68145](https://github.com/flutter/flutter/pull/68145) Noninteractive iOS debugger session (cla: yes, tool)
[68156](https://github.com/flutter/flutter/pull/68156) [devicelab] allow the devicelab to take a screenshot if the iOS connection fails with FLUTTER_IOS_SCREENSHOT_ON_CONNECTION_FAILURE (cla: yes, team, tool)
[68168](https://github.com/flutter/flutter/pull/68168) [flutter_releases] Flutter 1.23.0-18.1.pre Framework Cherrypicks (cla: yes, engine, tool)
[68206](https://github.com/flutter/flutter/pull/68206) [gen_l10n] Create pubspec.yaml in ".dart_tool/flutter_gen" if it does not already exist (a: internationalization, cla: yes, tool)
[68222](https://github.com/flutter/flutter/pull/68222) Revert "[flutter_tools] ensure android log reader works in flutter drive" (cla: yes, tool)
[68243](https://github.com/flutter/flutter/pull/68243) [flutter_tools] update metadata detection to account for invalid yaml (cla: yes, tool)
[68245](https://github.com/flutter/flutter/pull/68245) Revert noninteractive lldb debugging, timeout warning (cla: yes, platform-ios, tool)
[68277](https://github.com/flutter/flutter/pull/68277) fix the tree (cla: yes, tool)
[68280](https://github.com/flutter/flutter/pull/68280) Use multiroot scheme for initial compilation in ResidentRunner recompile (cla: yes, tool)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68309](https://github.com/flutter/flutter/pull/68309) [flutter_tools] drive uses correct application package for prebuilt (cla: yes, tool)
[68329](https://github.com/flutter/flutter/pull/68329) request.mainUri should be fileUri (cla: yes, tool)
[68334](https://github.com/flutter/flutter/pull/68334) [flutter_tools] retry the driver launch of the application up to 3 times. (cla: yes, tool)
[68361](https://github.com/flutter/flutter/pull/68361) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)
[68376](https://github.com/flutter/flutter/pull/68376) Generate only requested platform directories on create (cla: yes, tool)
[68409](https://github.com/flutter/flutter/pull/68409) [flutter_tools] add --android-gradle-daemon option, use in devicelab (a: accessibility, cla: yes, team, tool)
[68421](https://github.com/flutter/flutter/pull/68421) Add current version to the upgrade message of the Flutter tool (cla: yes, tool)
[68437](https://github.com/flutter/flutter/pull/68437) Adjust constraints in templates (cla: yes, tool)
[68451](https://github.com/flutter/flutter/pull/68451) [flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (cla: yes, tool)
[68452](https://github.com/flutter/flutter/pull/68452) Disable header bar when not using GNOME Shell. (cla: yes, tool)
[68488](https://github.com/flutter/flutter/pull/68488) [flutter_tools] increase devFS sync timeout to 60 seconds (cla: yes, tool)
[68489](https://github.com/flutter/flutter/pull/68489) Revert "[flutter_tools] add --android-gradle-daemon option, use in devicelab" (a: accessibility, cla: yes, team, tool)
[68491](https://github.com/flutter/flutter/pull/68491) [flutter_tools] reland: --no-android-gradle-daemon in devicelab (a: accessibility, cla: yes, team, tool)
[68492](https://github.com/flutter/flutter/pull/68492) Respond to HTTP POST requests with 404 in WebAssetServer (cla: yes, tool, waiting for tree to go green)
[68533](https://github.com/flutter/flutter/pull/68533) [flutter_tools] make android deps no longer required for flutter doctor (cla: yes, tool, waiting for tree to go green)
[68535](https://github.com/flutter/flutter/pull/68535) Update Linux template app to pass through command line arguments to the Dart entrypoint (cla: yes, tool)
[68542](https://github.com/flutter/flutter/pull/68542) Add CocoaPods sudo installation note (cla: yes, platform-ios, tool, waiting for tree to go green)
[68553](https://github.com/flutter/flutter/pull/68553) [gen-l10n] Fix untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)
[68624](https://github.com/flutter/flutter/pull/68624) [flutter_tools] add some versions, cleanup (cla: yes, tool)
[68650](https://github.com/flutter/flutter/pull/68650) [flutter_tools] remove iOS screenshot on failure functionality (cla: yes, tool)
[68655](https://github.com/flutter/flutter/pull/68655) Clean up device logger and port forwarding on drive completion (cla: yes, tool)
[68678](https://github.com/flutter/flutter/pull/68678) [flutter_tools] use --no-print-incremental-dependencies for non-resident and test compiles (cla: yes, tool)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68729](https://github.com/flutter/flutter/pull/68729) App.framework must support iOS 8 for older Flutter projects (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)
[68737](https://github.com/flutter/flutter/pull/68737) Add a missing include to the Linux plugin template (cla: yes, tool, waiting for tree to go green)
[68756](https://github.com/flutter/flutter/pull/68756) [flutter_tools] remove fallback discovery and observatory timeout (cla: yes, tool)
[68774](https://github.com/flutter/flutter/pull/68774) [gen_l10n] Make resource attributes optional for simple cases (a: internationalization, cla: yes, tool)
[68790](https://github.com/flutter/flutter/pull/68790) [devicelab] de-flake iOS launch (cla: yes, tool)
[68817](https://github.com/flutter/flutter/pull/68817) Turn off CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER in CocoaPod targets (cla: yes, tool, waiting for tree to go green)
[68826](https://github.com/flutter/flutter/pull/68826) Better error message when export options plist does not a fix (cla: yes, tool)
[68844](https://github.com/flutter/flutter/pull/68844) Stop debugger when iOS app crashes (cla: yes, tool, waiting for tree to go green)
[68845](https://github.com/flutter/flutter/pull/68845) Revert "[flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web" (cla: yes, tool)
[68848](https://github.com/flutter/flutter/pull/68848) Support --web-renderer options which would allow user to specify which rendering backend to use. (cla: yes, tool, waiting for tree to go green)
[68854](https://github.com/flutter/flutter/pull/68854) [flutter_tools] Support zipped application bundles for macOS (cla: yes, tool)
[68855](https://github.com/flutter/flutter/pull/68855) Apple silicon arch -arm64 to -arm64e (cla: yes, platform-ios, platform-mac, t: xcode, tool, waiting for tree to go green)
[68866](https://github.com/flutter/flutter/pull/68866) [flutter_tools] Add --verify-only flag to flutter upgrade (cla: yes, tool)
[68887](https://github.com/flutter/flutter/pull/68887) [flutter_tools] reland: drive service (cla: yes, tool)
[68898](https://github.com/flutter/flutter/pull/68898) [flutter_tools] null safety mode is used for dill naming (cla: yes, tool, waiting for tree to go green)
[68931](https://github.com/flutter/flutter/pull/68931) Send command line arguments through to the Flutter Engine on Windows (cla: yes, tool, waiting for tree to go green)
[68978](https://github.com/flutter/flutter/pull/68978) [flutter_tools] eagerly set asset directory path, cache flutter views, simplify error handling (cla: yes, tool)
[69000](https://github.com/flutter/flutter/pull/69000) [flutter_tools] implement safe file copy with multiple fallbacks (cla: yes, tool)
[69016](https://github.com/flutter/flutter/pull/69016) [gen_l10n] Add base method code comments for improved discoverability (a: internationalization, cla: yes, tool, waiting for tree to go green)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69033](https://github.com/flutter/flutter/pull/69033) [flutter_tools] update test platform to use buildInfo instead of mode + additional params (cla: yes, tool)
[69041](https://github.com/flutter/flutter/pull/69041) Update null safe deps to prepare for the 2.12 sdk version (cla: yes, team, tool, waiting for tree to go green)
[69059](https://github.com/flutter/flutter/pull/69059) [flutter_tools] add package_config.json to analyze_once_test.dart (cla: yes, tool)
[69067](https://github.com/flutter/flutter/pull/69067) [flutter_tools] update to vm_service 5.2.0, update to dwds 7.0.0 (cla: yes, team, tool)
[69114](https://github.com/flutter/flutter/pull/69114) [flutter_tools] enable web integration tests (cla: yes, tool)
[69115](https://github.com/flutter/flutter/pull/69115) [flutter_tools] handle windows holding file lock in web build directory (cla: yes, tool)
[69121](https://github.com/flutter/flutter/pull/69121) [flutter_tools] fix test expectation in resident_runner.dart (cla: yes, tool)
[69126](https://github.com/flutter/flutter/pull/69126) reland driver vm_service migration (a: tests, cla: yes, framework, team, tool)
[69155](https://github.com/flutter/flutter/pull/69155) Remove intl_translation dependency from gen_l10n integration test (a: internationalization, cla: yes, tool)
[69160](https://github.com/flutter/flutter/pull/69160) Use runZonedGuarded() instead of deprecated onError. (cla: yes, f: cupertino, framework, tool)
[69194](https://github.com/flutter/flutter/pull/69194) Include VS Code + Android Studio URLs in the No IDE message (cla: yes, t: flutter doctor, tool, waiting for tree to go green)
[69220](https://github.com/flutter/flutter/pull/69220) [flutter_tools] use throwToolExit (cla: yes, tool)
[69223](https://github.com/flutter/flutter/pull/69223) opt out the listener.dart generated file (cla: yes, tool, waiting for tree to go green)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69237](https://github.com/flutter/flutter/pull/69237) [flutter_tools] fix --use-existing-app for flutter drive (cla: yes, team, tool)
[69244](https://github.com/flutter/flutter/pull/69244) [flutter_tools] support ws scheme in use-existing-app (cla: yes, tool)
[69245](https://github.com/flutter/flutter/pull/69245) Show macOS arm64 architecture in doctor and devices list (cla: yes, platform-mac, tool, waiting for tree to go green)
[69246](https://github.com/flutter/flutter/pull/69246) [flutter_tools] conditionally invoke pub run test for drive scripts based on presence of dependency (cla: yes, tool)
[69255](https://github.com/flutter/flutter/pull/69255) Make the launch background drawable compatible with older Android API levels (cla: yes, tool, waiting for tree to go green)
[69261](https://github.com/flutter/flutter/pull/69261) Revert "[flutter_tools] enable web integration tests" (cla: yes, tool)
[69264](https://github.com/flutter/flutter/pull/69264) [flutter_tools] Reland: Stage web tests (cla: yes, tool)
[69319](https://github.com/flutter/flutter/pull/69319) Fix issue with --web-renderer. (cla: yes, tool, waiting for tree to go green)
[69340](https://github.com/flutter/flutter/pull/69340) [flutter_tools] disable failing gen l10n test (cla: yes, tool)
[69351](https://github.com/flutter/flutter/pull/69351) [flutter_tools] retry sever socket setup (and port selection if port is unspecified) (cla: yes, tool)
[69364](https://github.com/flutter/flutter/pull/69364) Fix: fix android studio 4.1 plugin path for macOS (cla: yes, tool, waiting for tree to go green)
[69382](https://github.com/flutter/flutter/pull/69382) [gen_l10n] Fix unintended use of raw string in generateString (a: internationalization, cla: yes, severe: regression, team, tool)
[69405](https://github.com/flutter/flutter/pull/69405) [null-safety] update tests and tool auto-detection for null safe dart (a: accessibility, cla: yes, engine, team, tool, waiting for tree to go green)
[69420](https://github.com/flutter/flutter/pull/69420) [flutter_tools] Make flutter upgrade --verify-only display framework version differences instead of commit hashes (cla: yes, tool, waiting for tree to go green)
[69450](https://github.com/flutter/flutter/pull/69450) [flutter_tools] do not reload sources if no sources changed (cla: yes, tool)
[69505](https://github.com/flutter/flutter/pull/69505) [flutter_tools] remove all globals from cache and cache_test (cla: yes, tool)
[69547](https://github.com/flutter/flutter/pull/69547) [flutter_tools] remove unused or no longer useful code (cla: yes, tool, waiting for tree to go green)
[69548](https://github.com/flutter/flutter/pull/69548) [flutter_tools] remove globals from android_workflow (cla: yes, tool)
[69549](https://github.com/flutter/flutter/pull/69549) [flutter_tool] initialize flutter root in executable (cla: yes, team, tool)
[69550](https://github.com/flutter/flutter/pull/69550) [flutter_tools] add canvaskit hot reload integration test (cla: yes, tool)
[69592](https://github.com/flutter/flutter/pull/69592) [flutter_tools] support --extra-gen-snapshot-options everywhere --extra-front-end-options is specified (cla: yes, tool)
[69607](https://github.com/flutter/flutter/pull/69607) Add a --dart-entrypoint-args flag to flutter run to pass through Dart entrypoint arguments on Flutter Desktop (cla: yes, tool, waiting for tree to go green)
[69612](https://github.com/flutter/flutter/pull/69612) Build App.framework directly to build directory (cla: yes, t: xcode, tool, waiting for tree to go green)
[69614](https://github.com/flutter/flutter/pull/69614) Remove usage of --enable-experiment to analysis server (cla: yes, engine, framework, tool)
[69617](https://github.com/flutter/flutter/pull/69617) Remove references to `Window`, and switch usages to `PlatformDispatcher` or `SingletonFlutterWindow` (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[69622](https://github.com/flutter/flutter/pull/69622) Move package:integration_test to flutter/flutter (cla: yes, team, tool)
[69630](https://github.com/flutter/flutter/pull/69630) Update plugins dependencies for the Gallery test (a: null-safety, a: tests, cla: yes, team, tool)
[69633](https://github.com/flutter/flutter/pull/69633) mark flaky tests as flaky (cla: yes, team, tool)
[69641](https://github.com/flutter/flutter/pull/69641) Revert "Build App.framework directly to build directory" (cla: yes, tool)
[69699](https://github.com/flutter/flutter/pull/69699) Build App.framework directly to build directory (cla: yes, t: xcode, team, tool)
[69720](https://github.com/flutter/flutter/pull/69720) Deprecate build ios-framework --universal (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[69726](https://github.com/flutter/flutter/pull/69726) Do not use --first-parent when determining version on master (cla: yes, tool)
[69728](https://github.com/flutter/flutter/pull/69728) Disable web expression evaluation tests (cla: yes, tool)
[69731](https://github.com/flutter/flutter/pull/69731) Compile snapshot_assembly with sdk root set in Xcode (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69736](https://github.com/flutter/flutter/pull/69736) Methods in build_ios_framework for universal and XCFrameworks (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)
[69784](https://github.com/flutter/flutter/pull/69784) [flutter_tools] forward all args to pub (cla: yes, tool)
[69791](https://github.com/flutter/flutter/pull/69791) [flutter_conductor] update dev/tools with release tool (cla: yes, team, tool, waiting for tree to go green)
[69798](https://github.com/flutter/flutter/pull/69798) fix hot reload benchmark data (cla: yes, tool)
[69802](https://github.com/flutter/flutter/pull/69802) disable hot reload web tests on CI due to flakes (cla: yes, tool)
[69809](https://github.com/flutter/flutter/pull/69809) Update CocoaPods recommended version to 1.9 (cla: yes, platform-ios, t: xcode, team, tool)
[69810](https://github.com/flutter/flutter/pull/69810) [versions] roll versions (cla: yes, team, tool)
[69837](https://github.com/flutter/flutter/pull/69837) Run more xcodebuild commands in native arm on Apple Silicon (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69840](https://github.com/flutter/flutter/pull/69840) Build either iphoneos or iphonesimulator App.framework, not both (a: existing-apps, cla: yes, platform-ios, tool)
[69846](https://github.com/flutter/flutter/pull/69846) Remove add-to-app Xcode build phase input files (a: existing-apps, cla: yes, t: xcode, tool)
[69870](https://github.com/flutter/flutter/pull/69870) Revert "Fix: fix android studio 4.1 plugin path for macOS" (cla: yes, tool)
[69892](https://github.com/flutter/flutter/pull/69892) [versions] update more null safe versions (cla: yes, team, tool)
[69911](https://github.com/flutter/flutter/pull/69911) [flutter_tools] allow using flutter test for testing the tool too (cla: yes, team, tool)
[69914](https://github.com/flutter/flutter/pull/69914) [flutter_tools] split web integration tests into new shard (cla: yes, team, tool)
[69920](https://github.com/flutter/flutter/pull/69920) [flutter_tools] deploy version.json asset on Linux (cla: yes, tool, waiting for tree to go green)
[69921](https://github.com/flutter/flutter/pull/69921) Persist Chrome Default Directory (cla: yes, tool, waiting for tree to go green)
[69954](https://github.com/flutter/flutter/pull/69954) Fix android studio 4.1 plugin path for mac (cla: yes, tool)
[69966](https://github.com/flutter/flutter/pull/69966) remove the use of the analysis server --enable-experiments flag (cla: yes, tool)
[69971](https://github.com/flutter/flutter/pull/69971) [flutter_tools] work around bug in plugins CI (cla: yes, tool)
[69972](https://github.com/flutter/flutter/pull/69972) [flutter_tools] wrap http send in async guard (cla: yes, tool)
[69987](https://github.com/flutter/flutter/pull/69987) [flutter_tools] remove material design schema, use dart code (cla: yes, f: material design, tool)
[69997](https://github.com/flutter/flutter/pull/69997) move cupertino_icon template to 1.0.1 for null safety (cla: yes, team, tool)
[70011](https://github.com/flutter/flutter/pull/70011) [flutter_tools] remove most globals from asset system and remove Cache manipulation in unit tests (cla: yes, tool)
[70014](https://github.com/flutter/flutter/pull/70014) [flutter_tools] remove workaround for caching sound dill (a: null-safety, cla: yes, team, tool)
[70023](https://github.com/flutter/flutter/pull/70023) Revert "Migrate Flutter gallery test to null safety" (cla: yes, f: cupertino, f: material design, team, tool)
[70026](https://github.com/flutter/flutter/pull/70026) [flutter_tools] Let CMake handle escaping (cla: yes, tool, waiting for tree to go green)
[70056](https://github.com/flutter/flutter/pull/70056) [flutter_tools] restore pub caching functionality (cla: yes, tool)
[70058](https://github.com/flutter/flutter/pull/70058) [flutter_tools] remove branch migration and standardize constructor style for version interface (cla: yes, tool, work in progress; do not review)
[70065](https://github.com/flutter/flutter/pull/70065) [flutter_tools] improve hash performance (cla: yes, tool)
[70078](https://github.com/flutter/flutter/pull/70078) Roll engine and fix pubspecs that do not have a Dart SDK constraint (cla: yes, engine, team, tool)
[70116](https://github.com/flutter/flutter/pull/70116) Migrate Flutter Gallery test to null safety (cla: yes, f: cupertino, f: material design, team, tool)
[70120](https://github.com/flutter/flutter/pull/70120) default to unsound nullability for web (cla: yes, tool, waiting for tree to go green)
[70126](https://github.com/flutter/flutter/pull/70126) [null-safety] implement autodetection for the web (cla: yes, tool)
[70132](https://github.com/flutter/flutter/pull/70132) Revert "[flutter_tools] restore pub caching functionality" (cla: yes, tool)
[70133](https://github.com/flutter/flutter/pull/70133) [flutter_tools] restore pub caching functionality (cla: yes, tool)
[70136](https://github.com/flutter/flutter/pull/70136) [flutter_tools] always run pub with prebuilt applications on drive (cla: yes, tool)
[70144](https://github.com/flutter/flutter/pull/70144) Revert "[flutter_tools] restore pub caching functionality" (cla: yes, tool)
[70146](https://github.com/flutter/flutter/pull/70146) [flutter_tools] always use dart to run test script. (cla: yes, tool)
[70175](https://github.com/flutter/flutter/pull/70175) Revert "[flutter_tools] always use dart to run test script." (cla: yes, tool)
[70180](https://github.com/flutter/flutter/pull/70180) [flutter_tools] reland: cache pub invocations (cla: yes, tool)
[70183](https://github.com/flutter/flutter/pull/70183) [flutter_tools] remove experiment tracking analytics for null safety (cla: yes, tool)
[70189](https://github.com/flutter/flutter/pull/70189) [flutter_tools] dont use autodetect enum for web (cla: yes, tool)
[70200](https://github.com/flutter/flutter/pull/70200) [flutter_tools] migrate .packages to package_config, partial (cla: yes, tool)
[70215](https://github.com/flutter/flutter/pull/70215) [flutter_tools] Display "no platforms" message based on results when creating plugins project (cla: yes, tool, waiting for tree to go green)
[70224](https://github.com/flutter/flutter/pull/70224) Move Flutter.framework to build directory instead of ios/Flutter (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[70226](https://github.com/flutter/flutter/pull/70226) Move web integration tool tests to web.shard (cla: yes, team, tool)
[70240](https://github.com/flutter/flutter/pull/70240) Add integration_test template to create template (cla: yes, tool, waiting for tree to go green)
[70320](https://github.com/flutter/flutter/pull/70320) [flutter_tools] make getBuildInfo async (cla: yes, tool)
[70323](https://github.com/flutter/flutter/pull/70323) [flutter_tools] use initially parsed package config for language version, sound mode determination (cla: yes, tool)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70334](https://github.com/flutter/flutter/pull/70334) [flutter_tools] make most integration tests null safe (cla: yes, tool)
[70336](https://github.com/flutter/flutter/pull/70336) Support legacy behavior for --host-vmservice-port and --observatory-port with DDS (cla: yes, tool)
[70337](https://github.com/flutter/flutter/pull/70337) Simplify the flutter_web_plugins plugin registration API. (cla: yes, tool)
[70403](https://github.com/flutter/flutter/pull/70403) Clean up Windows plugin template (cla: yes, tool)
[70405](https://github.com/flutter/flutter/pull/70405) Add -miphoneos-version-min=8.0 to App framework stub (cla: yes, platform-ios, tool)
[70412](https://github.com/flutter/flutter/pull/70412) [flutter_tools] Add bot configuration to run web_tool_tests for linux, mac, and windows (cla: yes, team, tool)
[70415](https://github.com/flutter/flutter/pull/70415) [gen-l10n] NNBD generated code (cla: yes, tool)
[70475](https://github.com/flutter/flutter/pull/70475) [flutter_tools] remove automatic doctor from flutter create (cla: yes, tool)
[70480](https://github.com/flutter/flutter/pull/70480) [flutter_tools] remove unused JSON schema (cla: yes, tool)
[70482](https://github.com/flutter/flutter/pull/70482) [flutter_tools] remove global variables from mdns client (cla: yes, tool, waiting for tree to go green)
[70485](https://github.com/flutter/flutter/pull/70485) Disable failing test due to SDK issue (cla: yes, tool)
[70495](https://github.com/flutter/flutter/pull/70495) [flutter_releases] Flutter 1.24.0-10.1.pre framework cherrypicks (cla: yes, engine, tool)
[70505](https://github.com/flutter/flutter/pull/70505) Revert "Simplify the flutter_web_plugins plugin registration API." (cla: yes, tool)
[70509](https://github.com/flutter/flutter/pull/70509) [flutter_tools] remove unused/deprecated asset parameters (cla: yes, tool, waiting for tree to go green)
[70511](https://github.com/flutter/flutter/pull/70511) [flutter_tools] stop unit from writing real file (cla: yes, tool)
[70514](https://github.com/flutter/flutter/pull/70514) [flutter_tools] reduce build bundle API (cla: yes, tool)
[70515](https://github.com/flutter/flutter/pull/70515) [flutter_tools] remove globals from features (cla: yes, tool)
[70518](https://github.com/flutter/flutter/pull/70518) Remove unused host_app_editable_cocoapods template files (a: existing-apps, cla: yes, tool)
[70617](https://github.com/flutter/flutter/pull/70617) Add liblzma as an explicit dependancy on Linux (cla: yes, team, tool, waiting for tree to go green)
[70647](https://github.com/flutter/flutter/pull/70647) Allow any iOS app to be added to an existing host app (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[70649](https://github.com/flutter/flutter/pull/70649) Exclude ARM from macOS builds architectures (cla: yes, platform-mac, t: xcode, tool, waiting for tree to go green)
[70712](https://github.com/flutter/flutter/pull/70712) Roll package:dds to 1.5.1 and add isCompleted guards around completers in base/dds.dart (cla: yes, team, tool, waiting for tree to go green)
[70714](https://github.com/flutter/flutter/pull/70714) [flutter_tools] use frontend_server for web test compilation (a: null-safety, cla: yes, team, tool)
[70718](https://github.com/flutter/flutter/pull/70718) [flutter_tools] display message for current null safety mode (a: null-safety, cla: yes, tool)
[70719](https://github.com/flutter/flutter/pull/70719) Add extra Flutter settings to ios_app_with_extensions Podfile (cla: yes, platform-ios, t: xcode, team, tool)
[70722](https://github.com/flutter/flutter/pull/70722) Simplify the flutter_web_plugins plugin registration API. (#70337) (cla: yes, tool)
[70735](https://github.com/flutter/flutter/pull/70735) Force regeneration of old Podfile (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[70739](https://github.com/flutter/flutter/pull/70739) Revert "Allow any iOS app to be added to an existing host app" (cla: yes, team, tool)
[70740](https://github.com/flutter/flutter/pull/70740) Reland "Allow any iOS app to be added to an existing host app" (cla: yes, team, tool)
[70790](https://github.com/flutter/flutter/pull/70790) Stop extra framework copy during build ios-framework (cla: yes, tool)
[70791](https://github.com/flutter/flutter/pull/70791) [flutter_tools] add support for dart defines to flutter test (cla: yes, team, tool)
[70795](https://github.com/flutter/flutter/pull/70795) [flutter_tools] refactor shared memory filesystem logic (cla: yes, tool)
[70797](https://github.com/flutter/flutter/pull/70797) [flutter_tools] update dependencies (cla: yes, team, tool)
[70799](https://github.com/flutter/flutter/pull/70799) [flutter_tools] run web unit tests in sound null safety (cla: yes, team, tool)
[70801](https://github.com/flutter/flutter/pull/70801) Detect ARM ffi CocoaPods error, suggest gem install (cla: yes, platform-mac, tool)
[70802](https://github.com/flutter/flutter/pull/70802) Revert "Stop extra framework copy during build ios-framework" (cla: yes, tool)
[70808](https://github.com/flutter/flutter/pull/70808) Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[70834](https://github.com/flutter/flutter/pull/70834) Fix error message typo (cla: yes, tool, waiting for tree to go green)
[70847](https://github.com/flutter/flutter/pull/70847) Ensure attaching to an application with an existing DDS instance is not treated as a fatal error (cla: yes, team, tool)
[70853](https://github.com/flutter/flutter/pull/70853) [flutter_tools] skip ck restart on all platforms (cla: yes, tool, waiting for tree to go green)
[70863](https://github.com/flutter/flutter/pull/70863) [flutter_tools] remove globals from flutter web platform (cla: yes, tool)
[70865](https://github.com/flutter/flutter/pull/70865) [flutter_tools] wire up alternative invalidation strategy to features (cla: yes, tool)
[70874](https://github.com/flutter/flutter/pull/70874) flutter_tools: refactor `CreateCommand`. (cla: yes, tool, waiting for tree to go green)
[70880](https://github.com/flutter/flutter/pull/70880) Clean-up docs for the --web-renderer option (cla: yes, tool, waiting for tree to go green)
[70884](https://github.com/flutter/flutter/pull/70884) Revert "[flutter_tools] wire up alternative invalidation strategy to features" (cla: yes, tool)
[70896](https://github.com/flutter/flutter/pull/70896) Use module Profile scheme when profiling (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[70898](https://github.com/flutter/flutter/pull/70898) Remove deprecated 'flutter build aot' (cla: yes, tool)
[70903](https://github.com/flutter/flutter/pull/70903) [flutter_tools] share bootstrap module between run and test (cla: yes, tool)
[70912](https://github.com/flutter/flutter/pull/70912) [flutter_tools] disable SWR optimization on dev (cla: yes, tool)
[70914](https://github.com/flutter/flutter/pull/70914) [flutter_tools] delete BuildRunnerWebCompilationProxy and WebCompilationProxy (cla: yes, tool)
[70959](https://github.com/flutter/flutter/pull/70959) flutter_tools: do more refactor on `CreateBase` and `CreateCommand` (cla: yes, tool, waiting for tree to go green)
[70962](https://github.com/flutter/flutter/pull/70962) only use code single path for verification of target file existence (cla: yes, tool)
[70967](https://github.com/flutter/flutter/pull/70967) [flutter_tools] Catch all exception subtypes when unzipping a file (cla: yes, tool)
[70969](https://github.com/flutter/flutter/pull/70969) [flutter_tools] support canvaskit unit testing on web (cla: yes, tool)
[70970](https://github.com/flutter/flutter/pull/70970) Wait for Android plugin to load before configuring plugin dependency (cla: yes, tool)
[70977](https://github.com/flutter/flutter/pull/70977) [flutter_tools] Remove usage of --precompiled flag for web tests (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, tool)
[70999](https://github.com/flutter/flutter/pull/70999) [flutter_tools] fix port leak in flutter_driver (a: tests, cla: yes, framework, tool)
[71003](https://github.com/flutter/flutter/pull/71003) [flutter_tools] Set basic error matcher for Linux builds (cla: yes, tool)
[71094](https://github.com/flutter/flutter/pull/71094) iOS aot assembly requires SDK root (cla: yes, team, tool)
[71095](https://github.com/flutter/flutter/pull/71095) Rename SdkType -> EnvironmentType (cla: yes, platform-ios, tool, waiting for tree to go green)
[71096](https://github.com/flutter/flutter/pull/71096) Revert "Migrate template to Gradle 6.7 and AGP 4.1.0" (a: accessibility, cla: yes, d: examples, team, tool)
[71103](https://github.com/flutter/flutter/pull/71103) Move Flutter.podspec to add-to-app project template (a: existing-apps, cla: yes, platform-ios, tool)
[71113](https://github.com/flutter/flutter/pull/71113) Add XCFramework artifacts (cla: yes, platform-ios, tool, waiting for tree to go green)
[71128](https://github.com/flutter/flutter/pull/71128) [gen-l10n] Fix forwarding of output-dir in l10n.yaml file (cla: yes, tool, waiting for tree to go green)
[71170](https://github.com/flutter/flutter/pull/71170) Update CocoaPods minimum version to 1.9 (cla: yes, t: xcode, tool)
[71196](https://github.com/flutter/flutter/pull/71196) [flutter_tools]fix typo in printHowToConsumeAar,which case sync fail (cla: yes, tool, waiting for tree to go green)
[71215](https://github.com/flutter/flutter/pull/71215) [flutter_tools] Don't fail copying files if the destination is not writable (cla: yes, tool, waiting for tree to go green)
[71411](https://github.com/flutter/flutter/pull/71411) Add testing shard for release mode guard (cla: yes, framework, team, tool)
[71417](https://github.com/flutter/flutter/pull/71417) [flutter_tools] do not validate unused services key (cla: yes, tool)
[71433](https://github.com/flutter/flutter/pull/71433) [flutter_tools] update some web configuration defaults (cla: yes, tool)
[71434](https://github.com/flutter/flutter/pull/71434) [flutter_tools] allow hiding web server device, provide flags to re-enable (cla: yes, tool)
[71439](https://github.com/flutter/flutter/pull/71439) [fluttter_tools] reland enable experimental invalidation strategy on by default in master channel (cla: yes, tool)
[71446](https://github.com/flutter/flutter/pull/71446) Relands: Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[71451](https://github.com/flutter/flutter/pull/71451) Validate empty observatory URI for screenshot (cla: yes, tool, waiting for tree to go green)
[71487](https://github.com/flutter/flutter/pull/71487) [flutter_tools] report basic analytics for null-safety (cla: yes, tool)
[71491](https://github.com/flutter/flutter/pull/71491) [flutter_tools] hide web server by default (cla: yes, tool)
[71495](https://github.com/flutter/flutter/pull/71495) Adopt Flutter.xcframework in tool (cla: yes, platform-ios, t: xcode, team, tool)
[71499](https://github.com/flutter/flutter/pull/71499) [flutter_tools] post process the gradle log output (cla: yes, tool)
[71598](https://github.com/flutter/flutter/pull/71598) [flutter_tools] enable CK restart tests (cla: yes, tool)
[71600](https://github.com/flutter/flutter/pull/71600) Create symlinks for local engine Maven metadata files required by the Android Gradle plugin (cla: yes, tool, waiting for tree to go green)
[71601](https://github.com/flutter/flutter/pull/71601) [flutter_tools] mode code size output to ~/.flutter-devtools (cla: yes, tool)
[71618](https://github.com/flutter/flutter/pull/71618) [flutter_tools] wire up native-null-assertions for flutter web (cla: yes, tool)
[71623](https://github.com/flutter/flutter/pull/71623) Add sysctl file fallbacks (cla: yes, platform-mac, tool, waiting for tree to go green)
[71660](https://github.com/flutter/flutter/pull/71660) Revert "Add integration_test template to create template" (cla: yes, tool)
[71663](https://github.com/flutter/flutter/pull/71663) Remove left-overs from causal async stacks. (cla: yes, tool, waiting for tree to go green)
[71726](https://github.com/flutter/flutter/pull/71726) [flutter_tool] fix incorrect coverage file generation (cla: yes, tool)
[71728](https://github.com/flutter/flutter/pull/71728) [flutter_tool] Report analytics as disabled when suppressed (cla: yes, tool)
[71737](https://github.com/flutter/flutter/pull/71737) Launch DevTools from pub instead of devtools_server (cla: yes, team, tool)
[71738](https://github.com/flutter/flutter/pull/71738) Allow flavors and build types when using plugins (cla: yes, platform-android, t: gradle, team, tool, waiting for tree to go green)
[71740](https://github.com/flutter/flutter/pull/71740) Reland integration template (cla: yes, tool, waiting for tree to go green)
[71744](https://github.com/flutter/flutter/pull/71744) Remove Flutter Authors from macOS project organization name (cla: yes, platform-mac, tool)
[71745](https://github.com/flutter/flutter/pull/71745) Update macOS Xcode compatibilityVersion (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71748](https://github.com/flutter/flutter/pull/71748) Profiling Xcode app should use Flutter profile mode (cla: yes, d: examples, platform-mac, team, tool)
[71750](https://github.com/flutter/flutter/pull/71750) Remove missing macOS RunnerUITests (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71752](https://github.com/flutter/flutter/pull/71752) Remove unused local from xcode_backend (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[71757](https://github.com/flutter/flutter/pull/71757) Rename IOSMigrator -> ProjectMigrator (cla: yes, tool, waiting for tree to go green)
[71764](https://github.com/flutter/flutter/pull/71764) Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, team, tool)
[71829](https://github.com/flutter/flutter/pull/71829) Add --dart-define option support to build aar command (cla: yes, tool, waiting for customer response)
[71860](https://github.com/flutter/flutter/pull/71860) Do not add CI build settings to macOS (cla: yes, team, tool)
[71862](https://github.com/flutter/flutter/pull/71862) Remove manual Flutter linking for iOS projects (cla: yes, platform-ios, t: xcode, tool)
[71870](https://github.com/flutter/flutter/pull/71870) Stop using Xcode build settings in materialized Info.plist (cla: yes, platform-ios, tool)
[71882](https://github.com/flutter/flutter/pull/71882) Migrate devicelab to package:vm_service (cla: yes, team, tool, waiting for tree to go green)
[71899](https://github.com/flutter/flutter/pull/71899) let NOTICES be double gzip wrapped to reduce on-disk installed space (cla: yes, framework, team, tool)
[71950](https://github.com/flutter/flutter/pull/71950) [flutter_tool] Fix crash in update-packages (cla: yes, tool)
[71951](https://github.com/flutter/flutter/pull/71951) Revert "Move embedding and linking macOS Flutter frameworks into the tool" (cla: yes, team, tool)
[71962](https://github.com/flutter/flutter/pull/71962) [flutter_tools] update message for `flutter create -t plugin` when no `--platforms` specified (cla: yes, tool, waiting for tree to go green)
[71964](https://github.com/flutter/flutter/pull/71964) Ensure apps can build while using AGP 3.3.0 (cla: yes, t: gradle, team, tool, waiting for tree to go green)
[71965](https://github.com/flutter/flutter/pull/71965) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[71981](https://github.com/flutter/flutter/pull/71981) Test generated_plugin_registrant analysis & suppress long lines in web plugin registrant (cla: yes, tool, waiting for tree to go green)
[72012](https://github.com/flutter/flutter/pull/72012) Revert "Reland Move embedding and linking macOS Flutter frameworks into the tool" (cla: yes, team, tool)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72020](https://github.com/flutter/flutter/pull/72020) Move macOS Podfile logic into the tool (cla: yes, platform-mac, t: xcode, team, tool)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72092](https://github.com/flutter/flutter/pull/72092) Revert "Migrate devicelab to package:vm_service" (cla: yes, team, tool)
[72110](https://github.com/flutter/flutter/pull/72110) Fix launching DevTools with Flutter Web applications (cla: yes, tool, waiting for tree to go green)
[72114](https://github.com/flutter/flutter/pull/72114) macos_content_validation_test integration test (cla: yes, tool, waiting for tree to go green)
[72151](https://github.com/flutter/flutter/pull/72151) Allow iOS plugins to support bitcode (cla: yes, tool)
[72189](https://github.com/flutter/flutter/pull/72189) [flutter_tools] use 1-based index for device selection (cla: yes, tool, waiting for tree to go green)
[72196](https://github.com/flutter/flutter/pull/72196) [flutter_tools] improve error surfacing from Linux builds (cla: yes, tool, waiting for tree to go green)
[72295](https://github.com/flutter/flutter/pull/72295) Add text to --analyze-size command output to launch DevTools with size data (cla: yes, tool)
[72306](https://github.com/flutter/flutter/pull/72306) Flutter clean Flutter.podspec (cla: yes, tool, waiting for tree to go green)
[72323](https://github.com/flutter/flutter/pull/72323) Launch named iOS simulators (cla: yes, platform-ios, tool)
[72372](https://github.com/flutter/flutter/pull/72372) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[72378](https://github.com/flutter/flutter/pull/72378) Build/copy macOS frameworks to built products instead of ephemeral directory (cla: yes, platform-mac, team, tool)
[72409](https://github.com/flutter/flutter/pull/72409) Return null instead of empty in Future.catchError callbacks (cla: yes, tool, waiting for tree to go green)
[72410](https://github.com/flutter/flutter/pull/72410) Remove unused dart:async imports. (cla: yes, f: cupertino, framework, tool, waiting for tree to go green)
[72420](https://github.com/flutter/flutter/pull/72420) update cupertino icons to 1.0.2 (cla: yes, team, tool, will affect goldens)
[72438](https://github.com/flutter/flutter/pull/72438) Revert "let NOTICES be double gzip wrapped to reduce on-disk installed space" (cla: yes, framework, team, tool)
[72447](https://github.com/flutter/flutter/pull/72447) Revert "Launch named iOS simulators" (cla: yes, tool)
[72488](https://github.com/flutter/flutter/pull/72488) Support flutter_test_config for `flutter test` on web platforms (cla: yes, framework, tool, waiting for tree to go green)
[72519](https://github.com/flutter/flutter/pull/72519) Add --no-launch-browser flag to DevTools pub run command (cla: yes, tool)
[72538](https://github.com/flutter/flutter/pull/72538) Migrate usage value plugin count off .flutter-plugins (cla: yes, tool)
[72554](https://github.com/flutter/flutter/pull/72554) groovy escaping was wrong for aar (cla: yes, tool)
[72559](https://github.com/flutter/flutter/pull/72559) [flutter_tools] catch fatal build output errors on Linux (cla: yes, tool, waiting for tree to go green)
[72736](https://github.com/flutter/flutter/pull/72736) Catch StateError and output more useful error message when DDS fails to start (cla: yes, tool, waiting for tree to go green)
[72748](https://github.com/flutter/flutter/pull/72748) Exclude ARM from macOS builds (cla: yes, platform-mac, tool, waiting for tree to go green)
[72754](https://github.com/flutter/flutter/pull/72754) [flutter_releases] Flutter Beta 1.25.0-8.2 Framework Cherrypicks (cla: yes, engine, framework, team, tool)
[72761](https://github.com/flutter/flutter/pull/72761) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[72764](https://github.com/flutter/flutter/pull/72764) Force plugins to inherit minimum macOS version from Flutter app (cla: yes, platform-mac, team, tool)
[72834](https://github.com/flutter/flutter/pull/72834) Check for iOS simulator SDK during AOT validation instead of assuming x86 (cla: yes, platform-ios, tool)
[72944](https://github.com/flutter/flutter/pull/72944) [gen_l10n] Improve status message when untranslated messages are still present (a: internationalization, cla: yes, tool, waiting for tree to go green)
[72950](https://github.com/flutter/flutter/pull/72950) [gen_l10n] Use l10n.yaml file instead of command line arguments if it exists (cla: yes, tool)
[73052](https://github.com/flutter/flutter/pull/73052) Avoid broken symlinks in embedded Flutter frameworks (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[73069](https://github.com/flutter/flutter/pull/73069) [web] add web-renderer option to flutter test. run web tests with this option (cla: yes, team, tool)
[73070](https://github.com/flutter/flutter/pull/73070) Use simctl exit code instead of stderr (cla: yes, platform-ios, t: xcode, tool)
[73072](https://github.com/flutter/flutter/pull/73072) Use SDK podhelper in add-to-app module Podfile (cla: yes, team, tool)
[73110](https://github.com/flutter/flutter/pull/73110) Default add-to-app xcode_backend script to be verbose (a: existing-apps, cla: yes, platform-ios, t: xcode, tool)
[73112](https://github.com/flutter/flutter/pull/73112) Optionally include CocoaPods xcconfig (cla: yes, platform-ios, t: xcode, team, tool)
[73353](https://github.com/flutter/flutter/pull/73353) [flutter_tools] delegate first run message re-display to new class, only if changed (cla: yes, tool, waiting for tree to go green)
[73357](https://github.com/flutter/flutter/pull/73357) [flutter_tools] prevent NPE due to moved/deleted packages during upgrade packages (cla: yes, tool, waiting for tree to go green)
[73364](https://github.com/flutter/flutter/pull/73364) [flutter_tools] delete .packages during flutter clean (cla: yes, tool, waiting for tree to go green)
[73366](https://github.com/flutter/flutter/pull/73366) [flutter_tools] Serve DevTools at app start (cla: yes, tool)
[73378](https://github.com/flutter/flutter/pull/73378) build ios-framework simulator slices for profile/release (cla: yes, team, tool)
[73383](https://github.com/flutter/flutter/pull/73383) Remove build ios-framework --universal flag (a: existing-apps, cla: yes, platform-ios, team, tool)
[73416](https://github.com/flutter/flutter/pull/73416) [web] Fix offline resource loader for serviceworker (cla: yes, tool, waiting for tree to go green)
[73420](https://github.com/flutter/flutter/pull/73420) [flutter_tools] prevent hot reload/restart if device has not finished devFS initialization (cla: yes, tool, waiting for tree to go green)
[73426](https://github.com/flutter/flutter/pull/73426) [flutter_tools] describe current null safety build mode (cla: yes, tool)
[73430](https://github.com/flutter/flutter/pull/73430) [flutter_tools] allow applications to specify additional license files to be bundled into the application NOTICES automatically (cla: yes, tool, waiting for tree to go green)
[73437](https://github.com/flutter/flutter/pull/73437) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool)
[73458](https://github.com/flutter/flutter/pull/73458) Exclude arm64 from supported iOS simulator architectures (cla: yes, platform-ios, t: xcode, team, tool)
[73488](https://github.com/flutter/flutter/pull/73488) Remove "unnecessary" import in flutter_tools (cla: yes, tool, waiting for tree to go green)
[73502](https://github.com/flutter/flutter/pull/73502) [web] Switch flutter tool web-renderer default for web to auto (cla: yes, tool, waiting for tree to go green)
[73505](https://github.com/flutter/flutter/pull/73505) Remove an obsolete comment from pubspec.yaml (cla: yes, team, tool, waiting for tree to go green)
[73508](https://github.com/flutter/flutter/pull/73508) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73511](https://github.com/flutter/flutter/pull/73511) Revert "Exclude arm64 from supported iOS simulator architectures" (cla: yes, team, tool)
[73514](https://github.com/flutter/flutter/pull/73514) Update outdated links (a: internationalization, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[73529](https://github.com/flutter/flutter/pull/73529) Revert "[web] Switch flutter tool web-renderer default for web to auto" (cla: yes, tool)
[73576](https://github.com/flutter/flutter/pull/73576) [flutter_tools] add API for passing arbitrary flags to tester binary (cla: yes, tool)
[73577](https://github.com/flutter/flutter/pull/73577) Move ios_content_validation_test to pre-submit tools test (cla: yes, team, tool)
[73579](https://github.com/flutter/flutter/pull/73579) [flutter_tools] add 483 to non-recoverable errors (cla: yes, tool)
[73595](https://github.com/flutter/flutter/pull/73595) [web] Reland - Switch flutter tool web-renderer default for web to auto (cla: yes, tool, waiting for tree to go green)
[73630](https://github.com/flutter/flutter/pull/73630) Generate dSYM files during iOS archive (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73733](https://github.com/flutter/flutter/pull/73733) [flutter_tools] flutter precache downloads all enabled platforms if no flags are provided (cla: yes, tool, waiting for tree to go green)
[73736](https://github.com/flutter/flutter/pull/73736) [flutter_tools] daemon does not report platforms that are not enabled (cla: yes, tool)
[73755](https://github.com/flutter/flutter/pull/73755) Exclude arm64 from valid iOS simulators (cla: yes, team, tool)
[73758](https://github.com/flutter/flutter/pull/73758) Fix plugin java class desugar (cla: yes, team, tool, waiting for tree to go green)
[73773](https://github.com/flutter/flutter/pull/73773) Fix typo ' to ` in template (cla: yes, tool, waiting for tree to go green)
[73798](https://github.com/flutter/flutter/pull/73798) [flutter_tools] ensure --dart-define can parse args with commas (cla: yes, team, tool)
[73803](https://github.com/flutter/flutter/pull/73803) sorting plugins alphabetically when refreshed (cla: yes, tool)
[73807](https://github.com/flutter/flutter/pull/73807) Revert "Exclude arm64 from valid iOS simulators" (cla: yes, team, tool)
[73808](https://github.com/flutter/flutter/pull/73808) Add recommended Xcode version to doctor (cla: yes, t: xcode, tool)
[73877](https://github.com/flutter/flutter/pull/73877) Move async guard wrapping of crash reporter up a level (cla: yes, tool, waiting for tree to go green)
[73879](https://github.com/flutter/flutter/pull/73879) [flutter_tools] do not crash if target file cannot be read for language version (cla: yes, tool, waiting for tree to go green)
[73890](https://github.com/flutter/flutter/pull/73890) [flutter_tools] add error handling wrapping for File.createSync (cla: yes, tool, waiting for tree to go green)
[73891](https://github.com/flutter/flutter/pull/73891) [flutter_tools] dont crash on invalid utf8 in pubspec (cla: yes, tool, waiting for tree to go green)
[73896](https://github.com/flutter/flutter/pull/73896) Revert "[flutter_tools] Serve DevTools at app start" (cla: yes, tool)
[73903](https://github.com/flutter/flutter/pull/73903) Revert "Revert "[flutter_tools] Serve DevTools at app start"" (cla: yes, tool)
[73944](https://github.com/flutter/flutter/pull/73944) Avoid relative paths in .dart_tool/package_config.json when generate:true (cla: yes, tool)
[73957](https://github.com/flutter/flutter/pull/73957) [flutter_tools] no-op maven artifacts if Android SDK is absent (cla: yes, tool, waiting for tree to go green)
[73962](https://github.com/flutter/flutter/pull/73962) [flutter_tools] open chrome to correct base URL when base url is specified in index.html (cla: yes, tool, waiting for tree to go green)
[73985](https://github.com/flutter/flutter/pull/73985) [flutter_releases] Flutter 1.25.0-8.3.pre framework cherrypicks (cla: yes, engine, f: cupertino, framework, team, tool)
[74003](https://github.com/flutter/flutter/pull/74003) Build x86_64 iOS apps with simulator local engines (a: existing-apps, cla: yes, platform-ios, tool)
[74055](https://github.com/flutter/flutter/pull/74055) Skip flaky flutter_immediately_exit test (cla: yes, team: flakes, tool)
[74060](https://github.com/flutter/flutter/pull/74060) Fix pub upgrade to work with new arguments (cla: yes, tool)
[74068](https://github.com/flutter/flutter/pull/74068) Revert integration_test in flutter create template (cla: yes, tool)
[74075](https://github.com/flutter/flutter/pull/74075) [flutter_tools] handle NPE in language analytics (cla: yes, tool, waiting for tree to go green)
[74079](https://github.com/flutter/flutter/pull/74079) [flutter_tools] verify successful dart migrate (cla: yes, tool, waiting for tree to go green)
[74090](https://github.com/flutter/flutter/pull/74090) Tests that module/plugin/package templates can be migrated to null-safety (cla: yes, tool, waiting for tree to go green)
[74091](https://github.com/flutter/flutter/pull/74091) [flutter_tools] ensure allowExistingDdsInstance param is always non-null (cla: yes, tool)
[74215](https://github.com/flutter/flutter/pull/74215) Use package:vm_service instead of json_rpc_2 (cla: yes, team, tool)
[74249](https://github.com/flutter/flutter/pull/74249) [flutter_tools] ensure pub get can run from partially valid state (cla: yes, tool, waiting for tree to go green)
[74251](https://github.com/flutter/flutter/pull/74251) Print DevTools inspector links in RenderFlex Overflow errors (cla: yes, framework, tool, waiting for tree to go green)
[74259](https://github.com/flutter/flutter/pull/74259) [flutter_tools] throwToolExit from archive failure (cla: yes, tool)
[74264](https://github.com/flutter/flutter/pull/74264) [flutter_tools] pub get skips example dir if there is no pubspec.yaml (cla: yes, tool)
[74265](https://github.com/flutter/flutter/pull/74265) Add null safety note to flutter create (cla: yes, tool)
[74271](https://github.com/flutter/flutter/pull/74271) Return the existing DevTools server from DevToolsLauncher.serve if one is already running. (cla: yes, tool)
[74272](https://github.com/flutter/flutter/pull/74272) Roll package:dds to 1.7.3 and add error handling for VM service disappearing (cla: yes, team, tool)
[74280](https://github.com/flutter/flutter/pull/74280) Check VM service URI is valid before attempting to start DDS (Re-upload #73998) (cla: yes, tool, waiting for tree to go green)
[74285](https://github.com/flutter/flutter/pull/74285) Pass only Uri to package:http APIs (cla: yes, team, tool, waiting for tree to go green)
[74293](https://github.com/flutter/flutter/pull/74293) [flutter_tools] Fix ignoring of Flutter tester exitCode (cla: yes, tool)
[74306](https://github.com/flutter/flutter/pull/74306) Rephrase null safety mode (cla: yes, tool)
[74348](https://github.com/flutter/flutter/pull/74348) Adjust desktop feature flag (cla: yes, tool)
[74355](https://github.com/flutter/flutter/pull/74355) [flutter_releases] Flutter Stable 1.22.6 Framework Cherrypicks (cla: yes, engine, tool)
[74359](https://github.com/flutter/flutter/pull/74359) Skip flutter_immediately_exit_test (cla: yes, team, tool)
[74365](https://github.com/flutter/flutter/pull/74365) Don't crash on narrow window widths (cla: yes, tool)
[74423](https://github.com/flutter/flutter/pull/74423) Fix bugs with ext.flutter.activeDevToolsServerAddress (cla: yes, tool, waiting for tree to go green)
[74424](https://github.com/flutter/flutter/pull/74424) Handle service disappeared RPCError when VM service connection disappears (cla: yes, tool)
[74444](https://github.com/flutter/flutter/pull/74444) [flutter_tools] flag flip (cla: yes, tool)
[74452](https://github.com/flutter/flutter/pull/74452) [flutter_tools] provide correct sources and metadata for different base hrefs (cla: yes, tool, waiting for tree to go green)
[74464](https://github.com/flutter/flutter/pull/74464) [flutter_tools] test toggle debugPaintsize (cla: yes, tool)
[74513](https://github.com/flutter/flutter/pull/74513) [flutter_tools] fix web messaging (cla: yes, tool)
[74526](https://github.com/flutter/flutter/pull/74526) [flutter_tools] ensure unstable compiler features are not available on stable (cla: yes, tool)
[74528](https://github.com/flutter/flutter/pull/74528) Handle RPCError when VM service disappears while invoking `VmService.getIsolate` (cla: yes, tool)
[74531](https://github.com/flutter/flutter/pull/74531) Re-add tool test general per-test timeout (cla: yes, team, tool)
[74534](https://github.com/flutter/flutter/pull/74534) Add connectedVmServiceUri service extension and set from flutter_tools (cla: yes, framework, tool)
[74543](https://github.com/flutter/flutter/pull/74543) Fail ColdRunner.attach() eagerly when device connection fails (cla: yes, tool, waiting for tree to go green)
[74545](https://github.com/flutter/flutter/pull/74545) Allow tests to override _DevFSHttpWriter._startWrite throttle time (cla: yes, team, tool, waiting for tree to go green)
[74574](https://github.com/flutter/flutter/pull/74574) Handle more cases where the tool receives RPCError 112 (cla: yes, tool)
[74601](https://github.com/flutter/flutter/pull/74601) Revert "Handle more cases where the tool receives RPCError 112" (cla: yes, tool)
[74602](https://github.com/flutter/flutter/pull/74602) Reland: Handle more cases where the tool receives RPCError 112 (cla: yes, tool)
[74622](https://github.com/flutter/flutter/pull/74622) [flutter_tools] Consistently set the working directory for Flutter Test (a: internationalization, cla: yes, f: cupertino, f: material design, team, tool, waiting for tree to go green)
[74664](https://github.com/flutter/flutter/pull/74664) [flutter_tools] handle waitForExtension having no isolates (cla: yes, tool, waiting for tree to go green)
[74665](https://github.com/flutter/flutter/pull/74665) Handle 'Existing VM service clients' error from old VM service instances (cla: yes, tool, waiting for tree to go green)
[74671](https://github.com/flutter/flutter/pull/74671) Roll packages (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)
[74672](https://github.com/flutter/flutter/pull/74672) [flutter_tools] check if process manager can find adb (cla: yes, tool, waiting for tree to go green)
[74685](https://github.com/flutter/flutter/pull/74685) Move android_plugin_example_app_build_test from devicelab to tool integration tests (cla: yes, team, tool)
### team - 506 pull request(s)
[59797](https://github.com/flutter/flutter/pull/59797) [web] Support custom url strategies (cla: yes, f: routes, platform-web, team, waiting for tree to go green)
[62694](https://github.com/flutter/flutter/pull/62694) Convert services tests to NNBD (cla: yes, framework, team)
[63808](https://github.com/flutter/flutter/pull/63808) New benchmark: bench_mouse_region_mixed_grid_hover (cla: yes, team)
[63834](https://github.com/flutter/flutter/pull/63834) Treat hover events as normal pointer events, and bring them back to Listener (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[64478](https://github.com/flutter/flutter/pull/64478) migrate animated_placeholder_perf to e2e (cla: yes, team, waiting for tree to go green)
[64482](https://github.com/flutter/flutter/pull/64482) migrate backdrop_filter_perf to e2e (cla: yes, team, waiting for tree to go green)
[64484](https://github.com/flutter/flutter/pull/64484) migrate color_filter_and_fade_perf to e2e (cla: yes, team, waiting for tree to go green)
[64487](https://github.com/flutter/flutter/pull/64487) migrate cubic_bezier_perf to e2e (cla: yes, team, waiting for tree to go green)
[64503](https://github.com/flutter/flutter/pull/64503) migrate textfield_perf to e2e (cla: yes, team, waiting for tree to go green)
[64766](https://github.com/flutter/flutter/pull/64766) Updated README.md file of the hello_world example (cla: yes, d: examples, team, waiting for tree to go green)
[64846](https://github.com/flutter/flutter/pull/64846) Expose GestureBinding.handlePointerEvent, replacing dispatchEvent as the preferred way to dispatch events (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[65087](https://github.com/flutter/flutter/pull/65087) Let Flutter SDK use cupertino_icons 1.0.0 (cla: yes, f: cupertino, framework, team, tool)
[65182](https://github.com/flutter/flutter/pull/65182) Apply darkmode style (cla: yes, team, tool, waiting for tree to go green)
[65193](https://github.com/flutter/flutter/pull/65193) Generate RawKeyEvents for iOS 13.4+ (a: tests, cla: yes, framework, team)
[65198](https://github.com/flutter/flutter/pull/65198) Avoid thinning frameworks in iOS extensions (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[65422](https://github.com/flutter/flutter/pull/65422) [flutter_tools] only lock if an upgrade/download will be performed (linux/macos) and output building messages to stderr (cla: yes, team, tool)
[65505](https://github.com/flutter/flutter/pull/65505) Creates a way to test private APIs in the Flutter package. (cla: yes, framework, team, waiting for tree to go green)
[65530](https://github.com/flutter/flutter/pull/65530) Have the analyzer bot ignore .DS_Store files. (cla: yes, team, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65578](https://github.com/flutter/flutter/pull/65578) Add mac builders to try configurations. (cla: yes, team, waiting for tree to go green)
[65602](https://github.com/flutter/flutter/pull/65602) Reland "perf test for measuring scroll smoothness" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[65667](https://github.com/flutter/flutter/pull/65667) Fix the `character` field of the `RawKeyEvent` to hold correct data on non-Android platforms. (a: desktop, a: tests, cla: yes, framework, team)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65791](https://github.com/flutter/flutter/pull/65791) [ci] remove create offline tests (cla: yes, team, waiting for tree to go green)
[65793](https://github.com/flutter/flutter/pull/65793) Match benchmark iOS project bundle identifiers (cla: yes, platform-ios, team)
[65798](https://github.com/flutter/flutter/pull/65798) Collect memory metrics (cla: yes, team, waiting for tree to go green)
[65799](https://github.com/flutter/flutter/pull/65799) Updated references to obsolete Material button classes in benchmarks/test_apps/stocks (cla: yes, team, waiting for tree to go green)
[65806](https://github.com/flutter/flutter/pull/65806) [flutter_tools] port deprecated settings test to flutter integration shard (cla: yes, team, tool, waiting for tree to go green)
[65873](https://github.com/flutter/flutter/pull/65873) Reland "Re-enable the Dart Development Service (DDS) (#64671)" (cla: yes, team, tool, waiting for tree to go green)
[65876](https://github.com/flutter/flutter/pull/65876) Allow new methods to be added to ui.Image for tests (cla: yes, framework, team, waiting for tree to go green)
[65896](https://github.com/flutter/flutter/pull/65896) Enable mac sdk tests and remove them from cirrus. (cla: yes, team, waiting for tree to go green)
[65898](https://github.com/flutter/flutter/pull/65898) Mark nonflaky tests as such (cla: yes, team, waiting for tree to go green)
[65900](https://github.com/flutter/flutter/pull/65900) Updated references to obsolete Material button classes in benchmarks/macrobenchmarks (cla: yes, team, waiting for tree to go green)
[65904](https://github.com/flutter/flutter/pull/65904) Updated references to obsolete Material button classes in examples (cla: yes, d: examples, team, waiting for tree to go green)
[65949](https://github.com/flutter/flutter/pull/65949) [manual roll] Roll Engine from 1ef10b240e28 to f84e7a019663 (12 revisions) (cla: yes, engine, team, waiting for tree to go green)
[65950](https://github.com/flutter/flutter/pull/65950) Updated references to obsolete Material button classes in microbenchmarks (cla: yes, team)
[65951](https://github.com/flutter/flutter/pull/65951) [flutter_tools] connect widget cache from frontend_server (cla: yes, framework, team, tool, waiting for tree to go green)
[65961](https://github.com/flutter/flutter/pull/65961) Check that header exists instead of contents of header in build iOS module test (cla: yes, platform-ios, team)
[65985](https://github.com/flutter/flutter/pull/65985) Enable pre/post submit hostonly tests. (cla: yes, team, waiting for tree to go green)
[65997](https://github.com/flutter/flutter/pull/65997) remove non-nullability on Navigator methods (cla: yes, framework, team, waiting for tree to go green)
[66029](https://github.com/flutter/flutter/pull/66029) Fix typos (cla: yes, team)
[66043](https://github.com/flutter/flutter/pull/66043) Deprecate VelocityTracker default constructor and added VelocityTracker.withKind constructor (cla: yes, framework, team)
[66048](https://github.com/flutter/flutter/pull/66048) Bump dartdoc to 0.34.0 (cla: yes, d: api docs, documentation, team, waiting for tree to go green)
[66052](https://github.com/flutter/flutter/pull/66052) Roll packages to fix #66038 (cla: yes, team, waiting for tree to go green)
[66054](https://github.com/flutter/flutter/pull/66054) Add versioning to gold endpoints (a: quality, a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)
[66057](https://github.com/flutter/flutter/pull/66057) reland always adds alert label for alert dialog in Android (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[66082](https://github.com/flutter/flutter/pull/66082) [flutter_tools] register service worker after first frame event (cla: yes, framework, team, tool)
[66085](https://github.com/flutter/flutter/pull/66085) Enable linux and win hostonly devicelab tests. (cla: yes, team, waiting for tree to go green)
[66136](https://github.com/flutter/flutter/pull/66136) [versions] update to latest source span and roll engine to 4b8477d11573d233e6791204191c0090f733b05d (cla: yes, engine, team, tool, waiting for tree to go green)
[66187](https://github.com/flutter/flutter/pull/66187) Turn off flutter_gallery__transition_perf_e2e_ios32 in devicelab (cla: yes, team)
[66195](https://github.com/flutter/flutter/pull/66195) Fix windows hostonly_devicelab tests. (cla: yes, team, waiting for tree to go green)
[66269](https://github.com/flutter/flutter/pull/66269) [flutter_tools] declare non-transitive deps correctly (cla: yes, team, waiting for tree to go green)
[66277](https://github.com/flutter/flutter/pull/66277) [devicelab] fix manifest definition (cla: yes, team)
[66284](https://github.com/flutter/flutter/pull/66284) Mark animated_placeholder_perf__e2e nonflaky (cla: yes, team, waiting for tree to go green)
[66290](https://github.com/flutter/flutter/pull/66290) roll source_span 1.8.0-nullsafety.2 (cla: yes, team, tool)
[66302](https://github.com/flutter/flutter/pull/66302) Revert "Turn off flutter_gallery__transition_perf_e2e_ios32 in devicelab" (cla: yes, team, waiting for tree to go green)
[66370](https://github.com/flutter/flutter/pull/66370) Change the default visual density to be adaptive based on platform. (cla: yes, f: material design, framework, team, tool)
[66384](https://github.com/flutter/flutter/pull/66384) update to the latest null safe packages (cla: yes, team, tool)
[66386](https://github.com/flutter/flutter/pull/66386) Default measureCpuGpu to true (cla: yes, perf: energy, severe: performance, team, waiting for tree to go green)
[66391](https://github.com/flutter/flutter/pull/66391) Mark Windows gradle_plugin_light_apk_test as flaky (cla: yes, team)
[66399](https://github.com/flutter/flutter/pull/66399) Stream logging from attached debugger on iOS 13+ (cla: yes, platform-ios, team, tool)
[66406](https://github.com/flutter/flutter/pull/66406) Check git commands in Flutter version check test (cla: yes, team, tool)
[66481](https://github.com/flutter/flutter/pull/66481) [devicelab] increase timeout for cull bench (cla: yes, team)
[66482](https://github.com/flutter/flutter/pull/66482) TextSelectionTheme support (step 3 of 3) (cla: yes, f: material design, framework, team)
[66487](https://github.com/flutter/flutter/pull/66487) Do not cleanup Gradle in non-Android integration tests (cla: yes, team)
[66496](https://github.com/flutter/flutter/pull/66496) Fix gradle_plugin_light_apk test. (cla: yes, team, waiting for tree to go green)
[66500](https://github.com/flutter/flutter/pull/66500) Flutter 1.22.0-12.2.pre Framework cherrypicks (a: tests, cla: yes, engine, framework, team, tool)
[66508](https://github.com/flutter/flutter/pull/66508) [Docs] [Material] Fix Icons api docs (cla: yes, f: material design, framework, team)
[66568](https://github.com/flutter/flutter/pull/66568) platform_views_scroll_perf_ios test: remove `--trace-startup` to fix the crash. (cla: yes, team, waiting for tree to go green)
[66570](https://github.com/flutter/flutter/pull/66570) Let perf tests measure memory by default (cla: yes, perf: memory, severe: performance, team)
[66584](https://github.com/flutter/flutter/pull/66584) Roll gallery to the newest version (cla: yes, team)
[66587](https://github.com/flutter/flutter/pull/66587) Make Gradle plugin light apk test blocking again. (cla: yes, team, waiting for tree to go green)
[66590](https://github.com/flutter/flutter/pull/66590) Force plugins to inherit minimum iOS version from Flutter app (cla: yes, platform-ios, t: xcode, team, tool)
[66594](https://github.com/flutter/flutter/pull/66594) Revert "Default measureCpuGpu to true" (cla: yes, team)
[66595](https://github.com/flutter/flutter/pull/66595) Mark nonflaky tests as such (cla: yes, team, waiting for tree to go green)
[66604](https://github.com/flutter/flutter/pull/66604) Reland "Default measureCpuGpu to true (#66386)" (cla: yes, team, waiting for tree to go green)
[66611](https://github.com/flutter/flutter/pull/66611) fix complex_layout_android__scroll_smoothness's lost of input event (cla: yes, team, waiting for tree to go green)
[66663](https://github.com/flutter/flutter/pull/66663) Migrate flutter_test (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[66666](https://github.com/flutter/flutter/pull/66666) Revert "Roll gallery to the newest version" (cla: yes, team)
[66677](https://github.com/flutter/flutter/pull/66677) Add Firebase tests to flutter dashboard. (cla: yes, team)
[66679](https://github.com/flutter/flutter/pull/66679) Add a compressionState value to HttpResponse mocks (cla: yes, team)
[66693](https://github.com/flutter/flutter/pull/66693) Roll gallery to the newest version (cla: yes, team)
[66736](https://github.com/flutter/flutter/pull/66736) [gallery] add linux and windows files to gallery example (cla: yes, team)
[66745](https://github.com/flutter/flutter/pull/66745) move resampler to handlePointerEvent and fix complex_layout_android__scroll_smoothness with PointerEvent (a: tests, cla: yes, framework, team, waiting for tree to go green)
[66836](https://github.com/flutter/flutter/pull/66836) Roll package:dds to 1.4.0 and update error handling (cla: yes, team, tool)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66941](https://github.com/flutter/flutter/pull/66941) Replace MockFile with memory file system files (cla: yes, team, tool)
[66946](https://github.com/flutter/flutter/pull/66946) Replace MockCache with Cache.test() (cla: yes, team, tool)
[67012](https://github.com/flutter/flutter/pull/67012) Replace MockArtifacts with Artifacts.test() (cla: yes, team, tool)
[67019](https://github.com/flutter/flutter/pull/67019) Replace MockProcessManager with FakeProcessManager (cla: yes, team, tool, waiting for tree to go green)
[67025](https://github.com/flutter/flutter/pull/67025) Fix docset generation. (cla: yes, team)
[67057](https://github.com/flutter/flutter/pull/67057) update stack_trace dep (and others) (cla: yes, team, tool, waiting for tree to go green)
[67147](https://github.com/flutter/flutter/pull/67147) 5x startup test repitition to reduce noise (cla: yes, customer: money (g3), perf: speed, severe: performance, team, waiting for tree to go green)
[67155](https://github.com/flutter/flutter/pull/67155) [null-safety] migrate app dependencies of flutter driver (a: accessibility, a: null-safety, a: tests, cla: yes, framework, team)
[67171](https://github.com/flutter/flutter/pull/67171) [null-safety] add integration tests for sound null safety modes, add support for sound null safety in dart2js (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[67176](https://github.com/flutter/flutter/pull/67176) Add benchmark/test for drawing images across frames (cla: yes, severe: performance, team, waiting for tree to go green)
[67324](https://github.com/flutter/flutter/pull/67324) add web_long_running_tests shard containing long-running web tests (cla: yes, framework, team, waiting for tree to go green)
[67337](https://github.com/flutter/flutter/pull/67337) Increase device discovery timeout in devicelab health check (cla: yes, team, team: infra)
[67349](https://github.com/flutter/flutter/pull/67349) Remove deployment to play store for linux case in deploy_gallery test (cla: yes, team, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67361](https://github.com/flutter/flutter/pull/67361) Characters docs (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[67363](https://github.com/flutter/flutter/pull/67363) Remove measureIosCpuGpu (cla: yes, team, waiting for tree to go green)
[67425](https://github.com/flutter/flutter/pull/67425) [flutter_test] handle breaking change to test main (a: tests, cla: yes, framework, team, tool)
[67432](https://github.com/flutter/flutter/pull/67432) Update dartdoc to 0.35.0 (cla: yes, team, waiting for tree to go green)
[67433](https://github.com/flutter/flutter/pull/67433) Revert "[null-safety] migrate app dependencies of flutter driver" (a: accessibility, a: tests, cla: yes, framework, team)
[67437](https://github.com/flutter/flutter/pull/67437) Updated the remaining obsolete button references in flutter_gallery (cla: yes, f: material design, team)
[67440](https://github.com/flutter/flutter/pull/67440) Removed remaining obsolete button widget references (cla: yes, d: examples, f: material design, framework, team)
[67441](https://github.com/flutter/flutter/pull/67441) [null-safety] reland: migrate app side flutter driver to null-safety (a: accessibility, a: tests, cla: yes, framework, team)
[67466](https://github.com/flutter/flutter/pull/67466) Work around the glibc bug that causes rare Chrome crashes (cla: yes, team, tool, waiting for tree to go green)
[67468](https://github.com/flutter/flutter/pull/67468) Remove Cirrus support for Gold (a: tests, cla: yes, framework, team, team: infra, will affect goldens)
[67470](https://github.com/flutter/flutter/pull/67470) Remove examples/catalog (a: accessibility, cla: yes, d: examples, team, waiting for tree to go green)
[67542](https://github.com/flutter/flutter/pull/67542) Revert "Remove examples/catalog" (a: accessibility, cla: yes, d: examples, team)
[67545](https://github.com/flutter/flutter/pull/67545) Reland removal of examples/catalog (a: accessibility, cla: yes, d: examples, f: material design, framework, team, waiting for tree to go green)
[67550](https://github.com/flutter/flutter/pull/67550) Refactor devicelab logic to use TaskResult instead of JSON (a: accessibility, cla: yes, team, waiting for tree to go green)
[67552](https://github.com/flutter/flutter/pull/67552) [flutter_releases] Flutter 1.22.1 Framework Cherrypicks (cla: yes, engine, f: material design, framework, team, tool)
[67561](https://github.com/flutter/flutter/pull/67561) Revert "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team)
[67570](https://github.com/flutter/flutter/pull/67570) Reland "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team, waiting for tree to go green)
[67592](https://github.com/flutter/flutter/pull/67592) Mark nonflaky tests as such (cla: yes, team)
[67594](https://github.com/flutter/flutter/pull/67594) Transport `e2e` based perforamnce test to `integration_test` and remove duplicate `watchPerformance` (cla: yes, team, waiting for tree to go green)
[67598](https://github.com/flutter/flutter/pull/67598) Build xcarchive command (cla: yes, platform-ios, t: xcode, team, tool)
[67654](https://github.com/flutter/flutter/pull/67654) [flutter_tools] always run build tests on presubmit (cla: yes, team)
[67670](https://github.com/flutter/flutter/pull/67670) Replace MockUsage with Usage.test in build tests (cla: yes, team, tool)
[67689](https://github.com/flutter/flutter/pull/67689) [NNBD] Migrating some Material tests (cla: yes, f: material design, framework, team, team: infra, waiting for tree to go green)
[67693](https://github.com/flutter/flutter/pull/67693) Add web e2e to the flutter/flutter repo (cla: yes, team, waiting for tree to go green)
[67697](https://github.com/flutter/flutter/pull/67697) Purge persistent cache for perf test runs (cla: yes, team, waiting for tree to go green)
[67744](https://github.com/flutter/flutter/pull/67744) Bump meta to 1.3.0-nullsafety.4 (cla: yes, team, tool)
[67749](https://github.com/flutter/flutter/pull/67749) Enable build_gallery tests in try/prod builders (cla: yes, team, waiting for tree to go green)
[67757](https://github.com/flutter/flutter/pull/67757) delete fast start unit test (cla: yes, team)
[67763](https://github.com/flutter/flutter/pull/67763) Revert "delete fast start unit test" (cla: yes, team)
[67765](https://github.com/flutter/flutter/pull/67765) Revert "Revert "delete fast start unit test"" (cla: yes, team)
[67766](https://github.com/flutter/flutter/pull/67766) [flutter_tools] remove train and inject-plugins command (cla: yes, team, tool)
[67780](https://github.com/flutter/flutter/pull/67780) add links missed in the first pr (cla: yes, team)
[67788](https://github.com/flutter/flutter/pull/67788) make the new e2e tests blocker (cla: yes, team)
[67900](https://github.com/flutter/flutter/pull/67900) Expose date symbols and patterns for en_US in framework (a: internationalization, cla: yes, f: material design, framework, team)
[67939](https://github.com/flutter/flutter/pull/67939) Remove unused Gold methods (cla: yes, framework, team, waiting for tree to go green)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[67971](https://github.com/flutter/flutter/pull/67971) [flutter_tools] attempt to stabilize hot restart benchmark the old fashioned way (cla: yes, team, tool)
[67974](https://github.com/flutter/flutter/pull/67974) remove missing argument (cla: yes, team)
[67976](https://github.com/flutter/flutter/pull/67976) Move processUtils to globals (cla: yes, team, tool, waiting for tree to go green)
[68034](https://github.com/flutter/flutter/pull/68034) [NNBD] Migrate some Widgets tests (a: tests, cla: yes, framework, team, waiting for tree to go green)
[68060](https://github.com/flutter/flutter/pull/68060) [flutter_tool] support --use-application-binary in flutter drive (cla: yes, team, tool)
[68065](https://github.com/flutter/flutter/pull/68065) Improve performance of collectAllElements (a: tests, cla: yes, framework, perf: speed, severe: performance, t: flutter driver, team, waiting for tree to go green)
[68107](https://github.com/flutter/flutter/pull/68107) [devicelab] delete disabled or not useful benchmarks (cla: yes, team)
[68109](https://github.com/flutter/flutter/pull/68109) [devicelab] mark ios catalina as flaky (cla: yes, team)
[68110](https://github.com/flutter/flutter/pull/68110) [devicelab] turn down android X migration gradle tests (cla: yes, team)
[68132](https://github.com/flutter/flutter/pull/68132) Update package:stack_trace dependency to 1.10.0-nullsafety.4 (cla: yes, team, tool)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68136](https://github.com/flutter/flutter/pull/68136) Sync lints (cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68140](https://github.com/flutter/flutter/pull/68140) [flutter_tools] move gradle download failure handling into tool (cla: yes, team, tool)
[68141](https://github.com/flutter/flutter/pull/68141) [devicelab] move test from flaky (cla: yes, team)
[68156](https://github.com/flutter/flutter/pull/68156) [devicelab] allow the devicelab to take a screenshot if the iOS connection fails with FLUTTER_IOS_SCREENSHOT_ON_CONNECTION_FAILURE (cla: yes, team, tool)
[68157](https://github.com/flutter/flutter/pull/68157) [NNBD] Migrate some Widgets tests (a: null-safety, a: tests, cla: yes, framework, team, waiting for tree to go green)
[68207](https://github.com/flutter/flutter/pull/68207) Revert "Improve performance of collectAllElements" (a: tests, cla: yes, framework, team)
[68214](https://github.com/flutter/flutter/pull/68214) reland List queue search optimization (a: tests, cla: yes, framework, team)
[68218](https://github.com/flutter/flutter/pull/68218) [devicelab] track any leaked processes (cla: yes, team)
[68230](https://github.com/flutter/flutter/pull/68230) Use --device-timeout instead of deprecated --timeout in devicelab (cla: yes, team)
[68239](https://github.com/flutter/flutter/pull/68239) [devicelab] mark catalina not flaky and list iproxy processes before test (cla: yes, team)
[68260](https://github.com/flutter/flutter/pull/68260) [flutter_tools] configure screenshot on failure for all tasks (cla: yes, team)
[68261](https://github.com/flutter/flutter/pull/68261) Fix screenshotting code (cla: yes, team)
[68301](https://github.com/flutter/flutter/pull/68301) use_is_even_rather_than_modulo (a: accessibility, a: tests, cla: yes, f: material design, framework, team)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68324](https://github.com/flutter/flutter/pull/68324) Refactor command utilities for tests (cla: yes, team)
[68333](https://github.com/flutter/flutter/pull/68333) [devicelab] Cocoon client (cla: yes, team, waiting for tree to go green)
[68361](https://github.com/flutter/flutter/pull/68361) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)
[68407](https://github.com/flutter/flutter/pull/68407) [devicelab] migrate defines test to DriverTest (cla: yes, team)
[68409](https://github.com/flutter/flutter/pull/68409) [flutter_tools] add --android-gradle-daemon option, use in devicelab (a: accessibility, cla: yes, team, tool)
[68410](https://github.com/flutter/flutter/pull/68410) [devicelab] split end to end tests into driver targets (cla: yes, team)
[68487](https://github.com/flutter/flutter/pull/68487) [devicelab] update hostonly tests to use flutter directly or precache deps (cla: yes, team)
[68489](https://github.com/flutter/flutter/pull/68489) Revert "[flutter_tools] add --android-gradle-daemon option, use in devicelab" (a: accessibility, cla: yes, team, tool)
[68491](https://github.com/flutter/flutter/pull/68491) [flutter_tools] reland: --no-android-gradle-daemon in devicelab (a: accessibility, cla: yes, team, tool)
[68511](https://github.com/flutter/flutter/pull/68511) Mark e2e ios32 warmup test as nonflaky (cla: yes, team, waiting for tree to go green)
[68516](https://github.com/flutter/flutter/pull/68516) [devicelab] reduce iterations, uninstall at end, and use --application-binary in all startup tests (cla: yes, team)
[68518](https://github.com/flutter/flutter/pull/68518) [devicelab] remove twc enabled test and uncaught image test (cla: yes, team, waiting for tree to go green)
[68528](https://github.com/flutter/flutter/pull/68528) [devicelab] fix flutter gallery app name (cla: yes, team)
[68530](https://github.com/flutter/flutter/pull/68530) Revert "[devicelab] fix flutter gallery app name" (cla: yes, team)
[68531](https://github.com/flutter/flutter/pull/68531) Revert "[devicelab] reduce iterations, uninstall at end, and use --application-binary in all startup tests" (cla: yes, team)
[68532](https://github.com/flutter/flutter/pull/68532) [devicelab] reland: reduce iterations of startup test, use application binary (cla: yes, team)
[68538](https://github.com/flutter/flutter/pull/68538) remove --machine flag (team)
[68539](https://github.com/flutter/flutter/pull/68539) [devicelab] remove commands test (cla: yes, team)
[68541](https://github.com/flutter/flutter/pull/68541) [devicelab] Upload git branch (cla: yes, team, waiting for tree to go green)
[68548](https://github.com/flutter/flutter/pull/68548) [devicelab] uninstall during memory test (cla: yes, team)
[68553](https://github.com/flutter/flutter/pull/68553) [gen-l10n] Fix untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)
[68569](https://github.com/flutter/flutter/pull/68569) update packages (cla: yes, team)
[68611](https://github.com/flutter/flutter/pull/68611) add sdk constraints where missing to prepare for nnbd flag flip (cla: yes, team, waiting for tree to go green)
[68636](https://github.com/flutter/flutter/pull/68636) Mark the test as flaky again (cla: yes, team)
[68641](https://github.com/flutter/flutter/pull/68641) Updated dartdoc to 0.36.0 (cla: yes, team, waiting for tree to go green)
[68642](https://github.com/flutter/flutter/pull/68642) Sound null safety for framework and flutter_test (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68645](https://github.com/flutter/flutter/pull/68645) Migrate flutter_localizations to null safety. (a: internationalization, cla: yes, f: cupertino, f: material design, framework, team)
[68654](https://github.com/flutter/flutter/pull/68654) Driver vm service (a: tests, cla: yes, framework, t: flutter driver, team, waiting for tree to go green)
[68656](https://github.com/flutter/flutter/pull/68656) Enable dev/bots/ build_tests for macOS (a: desktop, cla: yes, platform-mac, team)
[68657](https://github.com/flutter/flutter/pull/68657) Enable dev/bots/ build_tests for Windows (a: desktop, cla: yes, platform-windows, team)
[68658](https://github.com/flutter/flutter/pull/68658) Enable dev/bots/ build_tests for Linux (a: desktop, cla: yes, platform-linux, team)
[68708](https://github.com/flutter/flutter/pull/68708) Refactor update_icons (cla: yes, team)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68723](https://github.com/flutter/flutter/pull/68723) [null-safety] try updating snippets for null safety (cla: yes, f: cupertino, f: material design, team)
[68726](https://github.com/flutter/flutter/pull/68726) Remove dartdoc checker exclusion for class and library files (cla: yes, team)
[68729](https://github.com/flutter/flutter/pull/68729) App.framework must support iOS 8 for older Flutter projects (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)
[68733](https://github.com/flutter/flutter/pull/68733) [null-safety] swap tool unit tests to dart test until tester supports null safety by default (cla: yes, team)
[68736](https://github.com/flutter/flutter/pull/68736) Remove `nullOk` in `MediaQuery.of` (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68744](https://github.com/flutter/flutter/pull/68744) Migrate all of examples/layers to sound null safety (cla: yes, d: examples, team)
[68791](https://github.com/flutter/flutter/pull/68791) Update to dartdoc 0.36.1 (cla: yes, team, waiting for tree to go green)
[68794](https://github.com/flutter/flutter/pull/68794) Add bottom to search bar (cla: yes, f: material design, framework, team)
[68822](https://github.com/flutter/flutter/pull/68822) [Doc Fixit 2020] Move dashboard documentation to flutter/cocoon (cla: yes, team, team: infra, waiting for tree to go green)
[68895](https://github.com/flutter/flutter/pull/68895) [devicelab] mark web twc as flaky (cla: yes, team)
[68900](https://github.com/flutter/flutter/pull/68900) [devicelab] never run pub (cla: yes, team)
[68905](https://github.com/flutter/flutter/pull/68905) Remove `nullOk` parameter from Cupertino color resolution APIs (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68906](https://github.com/flutter/flutter/pull/68906) [devicelab] mark uncaught exceptions as flaky (cla: yes, team)
[68987](https://github.com/flutter/flutter/pull/68987) Added none property in a DismissDirection (cla: yes, f: material design, framework, team, waiting for tree to go green)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69041](https://github.com/flutter/flutter/pull/69041) Update null safe deps to prepare for the 2.12 sdk version (cla: yes, team, tool, waiting for tree to go green)
[69043](https://github.com/flutter/flutter/pull/69043) [null-safety] add language version to freeform template (cla: yes, team)
[69046](https://github.com/flutter/flutter/pull/69046) Print errors in all build modes (cla: yes, framework, team, waiting for tree to go green)
[69048](https://github.com/flutter/flutter/pull/69048) Migrate Flutter gallery test to null safety (cla: yes, f: cupertino, f: material design, team)
[69067](https://github.com/flutter/flutter/pull/69067) [flutter_tools] update to vm_service 5.2.0, update to dwds 7.0.0 (cla: yes, team, tool)
[69074](https://github.com/flutter/flutter/pull/69074) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69077](https://github.com/flutter/flutter/pull/69077) Reland "Driver vm service"" (a: tests, cla: yes, framework, team)
[69089](https://github.com/flutter/flutter/pull/69089) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69119](https://github.com/flutter/flutter/pull/69119) Adaptive icons (cla: yes, f: material design, framework, team)
[69122](https://github.com/flutter/flutter/pull/69122) [null-safety] fix the snippets (cla: yes, team, waiting for tree to go green)
[69126](https://github.com/flutter/flutter/pull/69126) reland driver vm_service migration (a: tests, cla: yes, framework, team, tool)
[69148](https://github.com/flutter/flutter/pull/69148) allow 2.12 prerelease sdks in flutter_goldens[_client] (cla: yes, team, waiting for tree to go green)
[69210](https://github.com/flutter/flutter/pull/69210) mark test packages `publish_to: none` (cla: yes, team)
[69226](https://github.com/flutter/flutter/pull/69226) [flutter_tools] measure driver success and failure (a: tests, cla: yes, framework, team)
[69228](https://github.com/flutter/flutter/pull/69228) [devicelab] mark routing test as flaky (cla: yes, team)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69237](https://github.com/flutter/flutter/pull/69237) [flutter_tools] fix --use-existing-app for flutter drive (cla: yes, team, tool)
[69260](https://github.com/flutter/flutter/pull/69260) Increase device run perf test timeout (cla: yes, team)
[69266](https://github.com/flutter/flutter/pull/69266) Decrease device discovery timeout from 10 to 5 seconds (cla: yes, team)
[69268](https://github.com/flutter/flutter/pull/69268) [devicelab] do not fail test if CPU measurement is not recorded (cla: yes, team)
[69272](https://github.com/flutter/flutter/pull/69272) [devicelab] retry startup of start up test (cla: yes, team)
[69273](https://github.com/flutter/flutter/pull/69273) [devicelab] work around occasional null values for devtools (cla: yes, team)
[69338](https://github.com/flutter/flutter/pull/69338) Mark flutter_gallery_sksl_warmup__transition_perf_e2e_ios32 as unflaky (cla: yes, team)
[69339](https://github.com/flutter/flutter/pull/69339) Do not fail if average_memory_usage is not recorded (cla: yes, team, team: flakes)
[69350](https://github.com/flutter/flutter/pull/69350) enable web_long_running_tests shard (cla: yes, team)
[69382](https://github.com/flutter/flutter/pull/69382) [gen_l10n] Fix unintended use of raw string in generateString (a: internationalization, cla: yes, severe: regression, team, tool)
[69405](https://github.com/flutter/flutter/pull/69405) [null-safety] update tests and tool auto-detection for null safe dart (a: accessibility, cla: yes, engine, team, tool, waiting for tree to go green)
[69430](https://github.com/flutter/flutter/pull/69430) disable web_long_running_tests due to flakiness (cla: yes, team)
[69432](https://github.com/flutter/flutter/pull/69432) Disable test that times-out on CI (cla: yes, team)
[69443](https://github.com/flutter/flutter/pull/69443) start and stop chromedriver once per sub-shard; do not wait for it to quit (cla: yes, team, waiting for tree to go green)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[69447](https://github.com/flutter/flutter/pull/69447) [devicelab] reboot attached devices after 30 test runs (cla: yes, team)
[69451](https://github.com/flutter/flutter/pull/69451) Fix spelling errors (a: tests, cla: yes, f: cupertino, f: material design, framework, team)
[69549](https://github.com/flutter/flutter/pull/69549) [flutter_tool] initialize flutter root in executable (cla: yes, team, tool)
[69591](https://github.com/flutter/flutter/pull/69591) Remove the flaky flag from post-bdf benchmark (cla: yes, team, waiting for tree to go green)
[69617](https://github.com/flutter/flutter/pull/69617) Remove references to `Window`, and switch usages to `PlatformDispatcher` or `SingletonFlutterWindow` (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[69622](https://github.com/flutter/flutter/pull/69622) Move package:integration_test to flutter/flutter (cla: yes, team, tool)
[69624](https://github.com/flutter/flutter/pull/69624) Say [APP] instead of [Gallery] in web benchmarks (cla: yes, team, waiting for tree to go green)
[69629](https://github.com/flutter/flutter/pull/69629) Initial migration of metrics_center (cla: yes, severe: performance, team, team: infra)
[69630](https://github.com/flutter/flutter/pull/69630) Update plugins dependencies for the Gallery test (a: null-safety, a: tests, cla: yes, team, tool)
[69633](https://github.com/flutter/flutter/pull/69633) mark flaky tests as flaky (cla: yes, team, tool)
[69693](https://github.com/flutter/flutter/pull/69693) Update dartdoc to 0.36.2 (cla: yes, team, waiting for tree to go green)
[69696](https://github.com/flutter/flutter/pull/69696) mark flutter_gallery__transition_perf_e2e_ios32 flaky (cla: yes, team)
[69699](https://github.com/flutter/flutter/pull/69699) Build App.framework directly to build directory (cla: yes, t: xcode, team, tool)
[69703](https://github.com/flutter/flutter/pull/69703) Revert "[devicelab] reboot attached devices after 30 test runs" (cla: yes, team)
[69710](https://github.com/flutter/flutter/pull/69710) [devicelab] re-land cocoon auto-restart (cla: yes, team)
[69720](https://github.com/flutter/flutter/pull/69720) Deprecate build ios-framework --universal (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[69723](https://github.com/flutter/flutter/pull/69723) Do not analyze files that are not checked in git (cla: yes, team, waiting for tree to go green)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[69791](https://github.com/flutter/flutter/pull/69791) [flutter_conductor] update dev/tools with release tool (cla: yes, team, tool, waiting for tree to go green)
[69803](https://github.com/flutter/flutter/pull/69803) Mark prod_builders tests as not flaky (cla: yes, team)
[69809](https://github.com/flutter/flutter/pull/69809) Update CocoaPods recommended version to 1.9 (cla: yes, platform-ios, t: xcode, team, tool)
[69810](https://github.com/flutter/flutter/pull/69810) [versions] roll versions (cla: yes, team, tool)
[69828](https://github.com/flutter/flutter/pull/69828) Fix prod_builders json (cla: yes, team)
[69831](https://github.com/flutter/flutter/pull/69831) [null-safety] update Dart SDK constraints (cla: yes, team)
[69844](https://github.com/flutter/flutter/pull/69844) [flutter_web_plugins] Migrate to null safety. (cla: yes, team, waiting for tree to go green)
[69848](https://github.com/flutter/flutter/pull/69848) Revert "Initial migration of metrics_center" (cla: yes, team)
[69854](https://github.com/flutter/flutter/pull/69854) Revert "[null-safety] update Dart SDK constraints (#69831)" (cla: yes, team)
[69892](https://github.com/flutter/flutter/pull/69892) [versions] update more null safe versions (cla: yes, team, tool)
[69900](https://github.com/flutter/flutter/pull/69900) [null-safety] update version constraint (cla: yes, team)
[69911](https://github.com/flutter/flutter/pull/69911) [flutter_tools] allow using flutter test for testing the tool too (cla: yes, team, tool)
[69914](https://github.com/flutter/flutter/pull/69914) [flutter_tools] split web integration tests into new shard (cla: yes, team, tool)
[69930](https://github.com/flutter/flutter/pull/69930) [null-safety] remove enable experiment flags (cla: yes, team)
[69932](https://github.com/flutter/flutter/pull/69932) [flutter_tools] only run web shard if requested (cla: yes, team)
[69970](https://github.com/flutter/flutter/pull/69970) mark flutter_gallery_sksl_warmup__transition_perf_e2e_ios32 as flaky (cla: yes, team)
[69990](https://github.com/flutter/flutter/pull/69990) Add PageView benchmark (representative of full screen CustomPainter) (cla: yes, platform-web, team, waiting for tree to go green)
[69996](https://github.com/flutter/flutter/pull/69996) Reland migration (cla: yes, team)
[69997](https://github.com/flutter/flutter/pull/69997) move cupertino_icon template to 1.0.1 for null safety (cla: yes, team, tool)
[70014](https://github.com/flutter/flutter/pull/70014) [flutter_tools] remove workaround for caching sound dill (a: null-safety, cla: yes, team, tool)
[70023](https://github.com/flutter/flutter/pull/70023) Revert "Migrate Flutter gallery test to null safety" (cla: yes, f: cupertino, f: material design, team, tool)
[70030](https://github.com/flutter/flutter/pull/70030) Add Dart SDK constraint to a pubspec (cla: yes, team, waiting for tree to go green)
[70075](https://github.com/flutter/flutter/pull/70075) [integration_test] Add a `run` method for proper reporting of test results (cla: yes, team)
[70078](https://github.com/flutter/flutter/pull/70078) Roll engine and fix pubspecs that do not have a Dart SDK constraint (cla: yes, engine, team, tool)
[70107](https://github.com/flutter/flutter/pull/70107) Ignore several import_of_legacy_library_into_null_safe (cla: yes, team)
[70112](https://github.com/flutter/flutter/pull/70112) [null-safety] migrate hello_world to null safety (cla: yes, d: examples, team)
[70115](https://github.com/flutter/flutter/pull/70115) Ignore import_of_legacy_library_into_null_safe (cla: yes, team)
[70116](https://github.com/flutter/flutter/pull/70116) Migrate Flutter Gallery test to null safety (cla: yes, f: cupertino, f: material design, team, tool)
[70130](https://github.com/flutter/flutter/pull/70130) Bump Gallery version (cla: yes, team)
[70153](https://github.com/flutter/flutter/pull/70153) Add SkiaPerfPoint and FlutterEngineMetricPoint (cla: yes, team)
[70224](https://github.com/flutter/flutter/pull/70224) Move Flutter.framework to build directory instead of ios/Flutter (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[70226](https://github.com/flutter/flutter/pull/70226) Move web integration tool tests to web.shard (cla: yes, team, tool)
[70245](https://github.com/flutter/flutter/pull/70245) [null-safety] opt driver tests into null safety (cla: yes, team, waiting for tree to go green)
[70255](https://github.com/flutter/flutter/pull/70255) mark catalina ios tasks as flaky (cla: yes, team)
[70324](https://github.com/flutter/flutter/pull/70324) Include null in the type that UpdateUrlFetcher's Future returns (cla: yes, team, waiting for tree to go green)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70328](https://github.com/flutter/flutter/pull/70328) Revert "mark catalina ios tasks as flaky" (cla: yes, team, waiting for tree to go green)
[70396](https://github.com/flutter/flutter/pull/70396) Set the mixWithOthers option in the Gallery video demo (cla: yes, team)
[70407](https://github.com/flutter/flutter/pull/70407) Revert "Add SkiaPerfPoint and FlutterEngineMetricPoint" (cla: yes, team)
[70412](https://github.com/flutter/flutter/pull/70412) [flutter_tools] Add bot configuration to run web_tool_tests for linux, mac, and windows (cla: yes, team, tool)
[70419](https://github.com/flutter/flutter/pull/70419) Reland "Add SkiaPerfPoint and FlutterEngineMetricPoint (#70153)" (cla: yes, team)
[70424](https://github.com/flutter/flutter/pull/70424) Cherry pick - Flutter 1.24 candidate.11 (a: accessibility, a: tests, cla: yes, framework, team)
[70439](https://github.com/flutter/flutter/pull/70439) e2e perf tests don't have CPU/GPU/memory metrics (cla: yes, team)
[70464](https://github.com/flutter/flutter/pull/70464) [devicelab] LUCI builder flag (cla: yes, team, waiting for tree to go green)
[70466](https://github.com/flutter/flutter/pull/70466) Revert "[integration_test] Add a `run` method for proper reporting of test results" (cla: yes, team)
[70496](https://github.com/flutter/flutter/pull/70496) Revert "[devicelab] LUCI builder flag" (cla: yes, team, waiting for tree to go green)
[70500](https://github.com/flutter/flutter/pull/70500) More lints (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, framework, team)
[70513](https://github.com/flutter/flutter/pull/70513) [integration_test] Reland add a `run` method for proper reporting of test results (cla: yes, team)
[70617](https://github.com/flutter/flutter/pull/70617) Add liblzma as an explicit dependancy on Linux (cla: yes, team, tool, waiting for tree to go green)
[70631](https://github.com/flutter/flutter/pull/70631) Increase timeouts on XCUITest existence checks (cla: yes, team)
[70643](https://github.com/flutter/flutter/pull/70643) [devicelab] update hot reload benchmark to be more representative (cla: yes, team)
[70647](https://github.com/flutter/flutter/pull/70647) Allow any iOS app to be added to an existing host app (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[70653](https://github.com/flutter/flutter/pull/70653) skip `roll_dev_integration_test` (cla: yes, team)
[70666](https://github.com/flutter/flutter/pull/70666) fix and re-enable roll_dev_integration test (cla: yes, team, waiting for tree to go green)
[70668](https://github.com/flutter/flutter/pull/70668) preserve detailFiles entry in TaskResult JSON (cla: yes, team, waiting for tree to go green)
[70674](https://github.com/flutter/flutter/pull/70674) Add SkiaPerfGcsAdaptor and its tests (cla: yes, team, waiting for tree to go green)
[70702](https://github.com/flutter/flutter/pull/70702) [devicelab] LUCI builder flag (cla: yes, team, waiting for tree to go green)
[70712](https://github.com/flutter/flutter/pull/70712) Roll package:dds to 1.5.1 and add isCompleted guards around completers in base/dds.dart (cla: yes, team, tool, waiting for tree to go green)
[70714](https://github.com/flutter/flutter/pull/70714) [flutter_tools] use frontend_server for web test compilation (a: null-safety, cla: yes, team, tool)
[70719](https://github.com/flutter/flutter/pull/70719) Add extra Flutter settings to ios_app_with_extensions Podfile (cla: yes, platform-ios, t: xcode, team, tool)
[70724](https://github.com/flutter/flutter/pull/70724) Turn off bitcode in ios_app_with_extensions to match normal Flutter projects (cla: yes, platform-ios, team)
[70726](https://github.com/flutter/flutter/pull/70726) Remove the `nullOk` parameter from `Navigator.of` and add `Navigator.maybeOf` (cla: yes, f: cupertino, f: material design, framework, team)
[70737](https://github.com/flutter/flutter/pull/70737) [flutter_releases] Flutter 1.24.0-10.2.pre framework cherrypicks (cla: yes, engine, team)
[70739](https://github.com/flutter/flutter/pull/70739) Revert "Allow any iOS app to be added to an existing host app" (cla: yes, team, tool)
[70740](https://github.com/flutter/flutter/pull/70740) Reland "Allow any iOS app to be added to an existing host app" (cla: yes, team, tool)
[70791](https://github.com/flutter/flutter/pull/70791) [flutter_tools] add support for dart defines to flutter test (cla: yes, team, tool)
[70797](https://github.com/flutter/flutter/pull/70797) [flutter_tools] update dependencies (cla: yes, team, tool)
[70799](https://github.com/flutter/flutter/pull/70799) [flutter_tools] run web unit tests in sound null safety (cla: yes, team, tool)
[70804](https://github.com/flutter/flutter/pull/70804) Run module tests on try builders when flutter_tools changes (cla: yes, team, team: infra)
[70808](https://github.com/flutter/flutter/pull/70808) Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[70847](https://github.com/flutter/flutter/pull/70847) Ensure attaching to an application with an existing DDS instance is not treated as a fatal error (cla: yes, team, tool)
[70881](https://github.com/flutter/flutter/pull/70881) skip flaky test (cla: yes, team)
[70882](https://github.com/flutter/flutter/pull/70882) Update dartdoc to 0.37.0 (cla: yes, team, waiting for tree to go green)
[70887](https://github.com/flutter/flutter/pull/70887) Add a post-submit test shard for flutter/plugins tests (cla: yes, team)
[70893](https://github.com/flutter/flutter/pull/70893) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[70945](https://github.com/flutter/flutter/pull/70945) Use details tag to improve issue log readability (cla: yes, team, waiting for tree to go green)
[70963](https://github.com/flutter/flutter/pull/70963) Uncomment build_ios_framework_module_test tmp cleanup (cla: yes, team)
[70965](https://github.com/flutter/flutter/pull/70965) [devicelab] don't use set modified for hot reload bench (cla: yes, team)
[70966](https://github.com/flutter/flutter/pull/70966) [web] Add wrapbox scroll benchmark (cla: yes, team)
[70977](https://github.com/flutter/flutter/pull/70977) [flutter_tools] Remove usage of --precompiled flag for web tests (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, tool)
[71094](https://github.com/flutter/flutter/pull/71094) iOS aot assembly requires SDK root (cla: yes, team, tool)
[71096](https://github.com/flutter/flutter/pull/71096) Revert "Migrate template to Gradle 6.7 and AGP 4.1.0" (a: accessibility, cla: yes, d: examples, team, tool)
[71100](https://github.com/flutter/flutter/pull/71100) Make simulator framework test check explicit (a: existing-apps, cla: yes, platform-ios, team, waiting for tree to go green)
[71108](https://github.com/flutter/flutter/pull/71108) Enable mac web_tool_tests (cla: yes, team, waiting for tree to go green)
[71166](https://github.com/flutter/flutter/pull/71166) Pin the version of flutter/plugins to test against (cla: yes, team, waiting for tree to go green)
[71188](https://github.com/flutter/flutter/pull/71188) mark "smoke_catalina_hot_mode_dev_cycle_ios__benchmark" flaky (cla: yes, team)
[71244](https://github.com/flutter/flutter/pull/71244) Improve codesign script (cla: yes, team)
[71303](https://github.com/flutter/flutter/pull/71303) RefreshIndicator can be shown when dragging from non-zero scroll position (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71401](https://github.com/flutter/flutter/pull/71401) Update documentation link (cla: yes, f: material design, framework, team)
[71411](https://github.com/flutter/flutter/pull/71411) Add testing shard for release mode guard (cla: yes, framework, team, tool)
[71446](https://github.com/flutter/flutter/pull/71446) Relands: Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[71450](https://github.com/flutter/flutter/pull/71450) Upgrade deps (cla: yes, team, waiting for tree to go green)
[71495](https://github.com/flutter/flutter/pull/71495) Adopt Flutter.xcframework in tool (cla: yes, platform-ios, t: xcode, team, tool)
[71502](https://github.com/flutter/flutter/pull/71502) Run the flutter/plugins tests on presubmit, make it part of the tree status (cla: yes, team)
[71525](https://github.com/flutter/flutter/pull/71525) ios_host_app Podfile search paths (cla: yes, platform-ios, team)
[71531](https://github.com/flutter/flutter/pull/71531) Update CI to CocoaPods 1.10 (cla: yes, platform-ios, team, team: infra)
[71597](https://github.com/flutter/flutter/pull/71597) Ensure the packaging script does not overwrite a previous upload (cla: yes, team)
[71602](https://github.com/flutter/flutter/pull/71602) Turn on dependabot to roll bundler dependencies (cla: yes, team, team: infra, waiting for tree to go green)
[71609](https://github.com/flutter/flutter/pull/71609) remove obsolete firebase script (cla: yes, team, waiting for tree to go green)
[71610](https://github.com/flutter/flutter/pull/71610) Add verbose flag to hot mode tests (cla: yes, team)
[71616](https://github.com/flutter/flutter/pull/71616) Mark hot_mode_dev_cycle_macos_target__benchmark flaky (cla: yes, team)
[71624](https://github.com/flutter/flutter/pull/71624) Fix dependabot directory (cla: yes, team, team: infra, waiting for tree to go green)
[71671](https://github.com/flutter/flutter/pull/71671) [flutter_tools] roll deps, fix completion bug (cla: yes, team, waiting for tree to go green)
[71705](https://github.com/flutter/flutter/pull/71705) Copy the glibc bug fix to devicelab/integration tests (cla: yes, team)
[71721](https://github.com/flutter/flutter/pull/71721) Pass --local-engine* flags from dev/bots/test.dart down to `pub test` via env variables (cla: yes, team, waiting for tree to go green)
[71730](https://github.com/flutter/flutter/pull/71730) Turn off flaky module_test_ios FlutterUITests (a: tests, cla: yes, team)
[71737](https://github.com/flutter/flutter/pull/71737) Launch DevTools from pub instead of devtools_server (cla: yes, team, tool)
[71738](https://github.com/flutter/flutter/pull/71738) Allow flavors and build types when using plugins (cla: yes, platform-android, t: gradle, team, tool, waiting for tree to go green)
[71745](https://github.com/flutter/flutter/pull/71745) Update macOS Xcode compatibilityVersion (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71748](https://github.com/flutter/flutter/pull/71748) Profiling Xcode app should use Flutter profile mode (cla: yes, d: examples, platform-mac, team, tool)
[71750](https://github.com/flutter/flutter/pull/71750) Remove missing macOS RunnerUITests (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71751](https://github.com/flutter/flutter/pull/71751) [devicelab] Add upload metrics test builder as flaky (cla: yes, team, waiting for tree to go green)
[71760](https://github.com/flutter/flutter/pull/71760) Make macrobenchmarks buildable for macos (a: tests, cla: yes, platform-mac, team)
[71761](https://github.com/flutter/flutter/pull/71761) Check in manual_tests gitignores (cla: yes, platform-mac, team)
[71764](https://github.com/flutter/flutter/pull/71764) Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, team, tool)
[71852](https://github.com/flutter/flutter/pull/71852) Fix text direction logic for material icon variants (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71853](https://github.com/flutter/flutter/pull/71853) Add previews for CupertinoIcons (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[71860](https://github.com/flutter/flutter/pull/71860) Do not add CI build settings to macOS (cla: yes, team, tool)
[71866](https://github.com/flutter/flutter/pull/71866) Mark hot_mode_dev_cycle_macos_target__benchmark not flaky (cla: yes, team, waiting for tree to go green)
[71882](https://github.com/flutter/flutter/pull/71882) Migrate devicelab to package:vm_service (cla: yes, team, tool, waiting for tree to go green)
[71886](https://github.com/flutter/flutter/pull/71886) [devicelab] Pass git branch via flag to test runner (cla: yes, team, waiting for tree to go green)
[71899](https://github.com/flutter/flutter/pull/71899) let NOTICES be double gzip wrapped to reduce on-disk installed space (cla: yes, framework, team, tool)
[71934](https://github.com/flutter/flutter/pull/71934) Add integration_test to integration tests build shard (cla: yes, p: integration_test, team, waiting for tree to go green)
[71935](https://github.com/flutter/flutter/pull/71935) Update dartdoc to 0.38.0 (cla: yes, team, waiting for tree to go green)
[71937](https://github.com/flutter/flutter/pull/71937) Run plugin tests on try builders when flutter_tools changes (cla: yes, team, waiting for tree to go green)
[71951](https://github.com/flutter/flutter/pull/71951) Revert "Move embedding and linking macOS Flutter frameworks into the tool" (cla: yes, team, tool)
[71953](https://github.com/flutter/flutter/pull/71953) Add macOS to lint plugins integration test (cla: yes, platform-mac, team)
[71957](https://github.com/flutter/flutter/pull/71957) Stop using the List constructor (cla: yes, d: examples, team, waiting for tree to go green)
[71964](https://github.com/flutter/flutter/pull/71964) Ensure apps can build while using AGP 3.3.0 (cla: yes, t: gradle, team, tool, waiting for tree to go green)
[71965](https://github.com/flutter/flutter/pull/71965) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[71986](https://github.com/flutter/flutter/pull/71986) Add removeListenerWhileNotifying benchmark for ChangeNotifier (cla: yes, framework, team, waiting for tree to go green)
[72012](https://github.com/flutter/flutter/pull/72012) Revert "Reland Move embedding and linking macOS Flutter frameworks into the tool" (cla: yes, team, tool)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72016](https://github.com/flutter/flutter/pull/72016) Flutter Logo for Dark Mode (cla: yes, team, waiting for tree to go green)
[72017](https://github.com/flutter/flutter/pull/72017) Remove deprecated CupertinoTextThemeData.brightness (cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)
[72020](https://github.com/flutter/flutter/pull/72020) Move macOS Podfile logic into the tool (cla: yes, platform-mac, t: xcode, team, tool)
[72040](https://github.com/flutter/flutter/pull/72040) Prepare to migrate API doc samples and snippets to null safety (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72092](https://github.com/flutter/flutter/pull/72092) Revert "Migrate devicelab to package:vm_service" (cla: yes, team, tool)
[72136](https://github.com/flutter/flutter/pull/72136) [dev] Don't use await for on stdout and stdin; pass local engine argument (cla: yes, team)
[72141](https://github.com/flutter/flutter/pull/72141) Revert "Pass --local-engine* flags from dev/bots/test.dart down to ` pub test` via env variables (#71721)" (cla: yes, team)
[72145](https://github.com/flutter/flutter/pull/72145) Reenable module_test_ios UI tests (a: tests, cla: yes, platform-ios, team, waiting for tree to go green)
[72166](https://github.com/flutter/flutter/pull/72166) [devicelab] Migrate web_benchmarks_canvaskit to LUCI (cla: yes, team, waiting for tree to go green)
[72169](https://github.com/flutter/flutter/pull/72169) Migrate the first batch of API samples to null safety (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[72360](https://github.com/flutter/flutter/pull/72360) [devicelab] Migrate remaining linux vm tests to LUCI (cla: yes, team, waiting for tree to go green)
[72366](https://github.com/flutter/flutter/pull/72366) [devicelab] Remove plugin_test_win from manifest (cla: yes, team, waiting for tree to go green)
[72372](https://github.com/flutter/flutter/pull/72372) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[72378](https://github.com/flutter/flutter/pull/72378) Build/copy macOS frameworks to built products instead of ephemeral directory (cla: yes, platform-mac, team, tool)
[72384](https://github.com/flutter/flutter/pull/72384) Fix cupertino icons mapping which was misaligned by 1 (cla: yes, f: cupertino, framework, team)
[72401](https://github.com/flutter/flutter/pull/72401) Add first ten linux devicelab luci tests (cla: yes, team, waiting for tree to go green)
[72403](https://github.com/flutter/flutter/pull/72403) Fix devicelab Linux builder names (cla: yes, team)
[72413](https://github.com/flutter/flutter/pull/72413) Fix builder name for `Linux complex_layout_android__compile` (cla: yes, team)
[72420](https://github.com/flutter/flutter/pull/72420) update cupertino icons to 1.0.2 (cla: yes, team, tool, will affect goldens)
[72438](https://github.com/flutter/flutter/pull/72438) Revert "let NOTICES be double gzip wrapped to reduce on-disk installed space" (cla: yes, framework, team, tool)
[72445](https://github.com/flutter/flutter/pull/72445) Enable remaining LUCI devicelab linux builders to flutter dashboard (cla: yes, team, waiting for tree to go green)
[72455](https://github.com/flutter/flutter/pull/72455) remove flaky flag & disable devicelab tests (cla: yes, team, waiting for tree to go green)
[72479](https://github.com/flutter/flutter/pull/72479) add doc for scroll_smoothness metrics (cla: yes, team, waiting for tree to go green)
[72544](https://github.com/flutter/flutter/pull/72544) Fix bug in docs.dart (cla: yes, team)
[72557](https://github.com/flutter/flutter/pull/72557) Create SECURITY.md (cla: yes, team)
[72558](https://github.com/flutter/flutter/pull/72558) Migrate some sample code to NNBD [1] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)
[72563](https://github.com/flutter/flutter/pull/72563) Unflaky remaining linux tasks (cla: yes, team)
[72628](https://github.com/flutter/flutter/pull/72628) make sure tests and benchmarks use correct backend (cla: yes, team)
[72641](https://github.com/flutter/flutter/pull/72641) Remove an obsolete (and now incorrect) comment in the pubspec.yaml (cla: yes, team, waiting for tree to go green)
[72754](https://github.com/flutter/flutter/pull/72754) [flutter_releases] Flutter Beta 1.25.0-8.2 Framework Cherrypicks (cla: yes, engine, framework, team, tool)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72756](https://github.com/flutter/flutter/pull/72756) run framework unit tests on html backend (cla: yes, team, waiting for tree to go green)
[72761](https://github.com/flutter/flutter/pull/72761) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[72764](https://github.com/flutter/flutter/pull/72764) Force plugins to inherit minimum macOS version from Flutter app (cla: yes, platform-mac, team, tool)
[72765](https://github.com/flutter/flutter/pull/72765) [devicelab] Add results path flag to test runner (cla: yes, team, waiting for tree to go green)
[72792](https://github.com/flutter/flutter/pull/72792) Migrated some services and widgets doc comments to null safety. (cla: yes, framework, team, waiting for tree to go green)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72837](https://github.com/flutter/flutter/pull/72837) [NNBD] Migrate sample code pt 3 (a: null-safety, cla: yes, f: material design, framework, team, waiting for tree to go green)
[72939](https://github.com/flutter/flutter/pull/72939) Complete migration to null safety in api documentation (a: null-safety, cla: yes, f: cupertino, f: material design, framework, team)
[73047](https://github.com/flutter/flutter/pull/73047) [web] make sure tests and benchmarks use correct backend - add autodetect false (cla: yes, team)
[73052](https://github.com/flutter/flutter/pull/73052) Avoid broken symlinks in embedded Flutter frameworks (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[73069](https://github.com/flutter/flutter/pull/73069) [web] add web-renderer option to flutter test. run web tests with this option (cla: yes, team, tool)
[73072](https://github.com/flutter/flutter/pull/73072) Use SDK podhelper in add-to-app module Podfile (cla: yes, team, tool)
[73112](https://github.com/flutter/flutter/pull/73112) Optionally include CocoaPods xcconfig (cla: yes, platform-ios, t: xcode, team, tool)
[73303](https://github.com/flutter/flutter/pull/73303) fix a Gallery Menus issue (cla: yes, f: material design, team)
[73373](https://github.com/flutter/flutter/pull/73373) Map Linux AltGr to right alt. It was currently being ignored. (cla: yes, framework, team)
[73374](https://github.com/flutter/flutter/pull/73374) macrobenchmark: active TextField with complex paragraph (cla: yes, framework, team, waiting for tree to go green)
[73378](https://github.com/flutter/flutter/pull/73378) build ios-framework simulator slices for profile/release (cla: yes, team, tool)
[73383](https://github.com/flutter/flutter/pull/73383) Remove build ios-framework --universal flag (a: existing-apps, cla: yes, platform-ios, team, tool)
[73437](https://github.com/flutter/flutter/pull/73437) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool)
[73442](https://github.com/flutter/flutter/pull/73442) Run pod repo update in iOS extension test (cla: yes, platform-ios, team)
[73458](https://github.com/flutter/flutter/pull/73458) Exclude arm64 from supported iOS simulator architectures (cla: yes, platform-ios, t: xcode, team, tool)
[73505](https://github.com/flutter/flutter/pull/73505) Remove an obsolete comment from pubspec.yaml (cla: yes, team, tool, waiting for tree to go green)
[73508](https://github.com/flutter/flutter/pull/73508) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73511](https://github.com/flutter/flutter/pull/73511) Revert "Exclude arm64 from supported iOS simulator architectures" (cla: yes, team, tool)
[73514](https://github.com/flutter/flutter/pull/73514) Update outdated links (a: internationalization, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[73577](https://github.com/flutter/flutter/pull/73577) Move ios_content_validation_test to pre-submit tools test (cla: yes, team, tool)
[73582](https://github.com/flutter/flutter/pull/73582) web benchmark choose renderer explicitly (cla: yes, team, waiting for tree to go green)
[73586](https://github.com/flutter/flutter/pull/73586) Mark firebase tests as flaky (a: tests, cla: yes, team, team: infra)
[73589](https://github.com/flutter/flutter/pull/73589) Mark smoke-catalina not flaky (cla: yes, team, waiting for tree to go green)
[73591](https://github.com/flutter/flutter/pull/73591) Revert "Mark firebase tests as flaky" (cla: yes, team, team: infra)
[73612](https://github.com/flutter/flutter/pull/73612) Temporarily mark some tests flaky that fail now that they are being run by infra (cla: yes, team)
[73627](https://github.com/flutter/flutter/pull/73627) Revert "Temporarily mark some tests flaky that fail now that they are being run by infra" (cla: yes, team)
[73630](https://github.com/flutter/flutter/pull/73630) Generate dSYM files during iOS archive (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73689](https://github.com/flutter/flutter/pull/73689) Bump cocoapods from 1.10.0 to 1.10.1 in /dev/ci/mac (cla: yes, team, team: infra, waiting for tree to go green)
[73728](https://github.com/flutter/flutter/pull/73728) Turn off mac_build_gallery during infra investigation (cla: yes, team, team: infra)
[73755](https://github.com/flutter/flutter/pull/73755) Exclude arm64 from valid iOS simulators (cla: yes, team, tool)
[73758](https://github.com/flutter/flutter/pull/73758) Fix plugin java class desugar (cla: yes, team, tool, waiting for tree to go green)
[73798](https://github.com/flutter/flutter/pull/73798) [flutter_tools] ensure --dart-define can parse args with commas (cla: yes, team, tool)
[73800](https://github.com/flutter/flutter/pull/73800) [versions] update all dependencies (cla: yes, team, waiting for tree to go green)
[73807](https://github.com/flutter/flutter/pull/73807) Revert "Exclude arm64 from valid iOS simulators" (cla: yes, team, tool)
[73809](https://github.com/flutter/flutter/pull/73809) Mark linux_web_tool_tests not flaky (cla: yes, platform-web, team)
[73875](https://github.com/flutter/flutter/pull/73875) Migrate the rest of the metrics center library (cla: yes, team)
[73889](https://github.com/flutter/flutter/pull/73889) Add hot reload test tasks for Linux and Windows desktop (cla: yes, team)
[73901](https://github.com/flutter/flutter/pull/73901) Add gradle_desugar_test to the builders (cla: yes, team)
[73904](https://github.com/flutter/flutter/pull/73904) Mark perf tests as flaky (cla: yes, team)
[73961](https://github.com/flutter/flutter/pull/73961) Revert "Improve codesign script" (cla: yes, team)
[73985](https://github.com/flutter/flutter/pull/73985) [flutter_releases] Flutter 1.25.0-8.3.pre framework cherrypicks (cla: yes, engine, f: cupertino, framework, team, tool)
[73986](https://github.com/flutter/flutter/pull/73986) Remove flaky non-e2e test (cla: yes, team)
[73989](https://github.com/flutter/flutter/pull/73989) Add fixes for Stack deprecation (cla: yes, framework, team, waiting for tree to go green)
[73994](https://github.com/flutter/flutter/pull/73994) Add fixes for deprecations in TextTheme (cla: yes, f: material design, framework, team, waiting for tree to go green)
[73996](https://github.com/flutter/flutter/pull/73996) Add fixes for autovalidate deprecation in Form, FormField, TextFormField, and DropdownButtonFormField (cla: yes, f: material design, framework, team, waiting for tree to go green)
[73997](https://github.com/flutter/flutter/pull/73997) Re-land codesign test improvement (cla: yes, team, waiting for tree to go green)
[74000](https://github.com/flutter/flutter/pull/74000) Update DDS to 1.7.1 (cla: yes, team)
[74006](https://github.com/flutter/flutter/pull/74006) Remove smoke_catalina_hot_mode_dev_cycle__benchmark (a: tests, cla: yes, platform-mac, team, team: infra)
[74007](https://github.com/flutter/flutter/pull/74007) Remove smoke_catalina_start_up_ios (cla: yes, team)
[74062](https://github.com/flutter/flutter/pull/74062) Remove more flaky non-e2e tests (cla: yes, team)
[74065](https://github.com/flutter/flutter/pull/74065) No test core (cla: yes, team)
[74077](https://github.com/flutter/flutter/pull/74077) Expand Stack fix to more exporting libraries (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74080](https://github.com/flutter/flutter/pull/74080) Add verbose build flag to ios_app_with_extensions_test (a: tests, cla: yes, team)
[74109](https://github.com/flutter/flutter/pull/74109) Add tracing test to check default streams (cla: yes, team)
[74171](https://github.com/flutter/flutter/pull/74171) Roll package:dds to 1.7.2 (cla: yes, team)
[74215](https://github.com/flutter/flutter/pull/74215) Use package:vm_service instead of json_rpc_2 (cla: yes, team, tool)
[74272](https://github.com/flutter/flutter/pull/74272) Roll package:dds to 1.7.3 and add error handling for VM service disappearing (cla: yes, team, tool)
[74285](https://github.com/flutter/flutter/pull/74285) Pass only Uri to package:http APIs (cla: yes, team, tool, waiting for tree to go green)
[74359](https://github.com/flutter/flutter/pull/74359) Skip flutter_immediately_exit_test (cla: yes, team, tool)
[74383](https://github.com/flutter/flutter/pull/74383) Remove "unnecessary" imports in dev/integration_tests (a: accessibility, cla: yes, f: material design, team, waiting for tree to go green)
[74385](https://github.com/flutter/flutter/pull/74385) Remove "unnecessary" imports in dev/manual_tests (cla: yes, f: material design, team, waiting for tree to go green)
[74428](https://github.com/flutter/flutter/pull/74428) Add details to the iOS part integration_test (cla: yes, team)
[74434](https://github.com/flutter/flutter/pull/74434) Manually close tree while devicelab staging is failing (cla: yes, team)
[74438](https://github.com/flutter/flutter/pull/74438) Revert "Manually close tree while devicelab staging is failing (#74434)" (cla: yes, team)
[74441](https://github.com/flutter/flutter/pull/74441) Block the tree on mac_android test failures running on luci. (cla: yes, team)
[74450](https://github.com/flutter/flutter/pull/74450) Revert "Add removeListenerWhileNotifying benchmark for...(#71986)" (cla: yes, team)
[74459](https://github.com/flutter/flutter/pull/74459) Remove devicelab mac android tasks from manifest.yaml (cla: yes, team)
[74463](https://github.com/flutter/flutter/pull/74463) Remove build_gallery tests (cla: yes, team, waiting for tree to go green)
[74473](https://github.com/flutter/flutter/pull/74473) [integration_test] fix zip command (cla: yes, team)
[74531](https://github.com/flutter/flutter/pull/74531) Re-add tool test general per-test timeout (cla: yes, team, tool)
[74532](https://github.com/flutter/flutter/pull/74532) Remove unused bigquery code and deps (cla: yes, team)
[74535](https://github.com/flutter/flutter/pull/74535) Drop metrics_center (cla: yes, team, waiting for tree to go green)
[74545](https://github.com/flutter/flutter/pull/74545) Allow tests to override _DevFSHttpWriter._startWrite throttle time (cla: yes, team, tool, waiting for tree to go green)
[74622](https://github.com/flutter/flutter/pull/74622) [flutter_tools] Consistently set the working directory for Flutter Test (a: internationalization, cla: yes, f: cupertino, f: material design, team, tool, waiting for tree to go green)
[74671](https://github.com/flutter/flutter/pull/74671) Roll packages (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)
[74675](https://github.com/flutter/flutter/pull/74675) Remove unused deploy_gallery.sh (cla: yes, team, waiting for tree to go green)
[74685](https://github.com/flutter/flutter/pull/74685) Move android_plugin_example_app_build_test from devicelab to tool integration tests (cla: yes, team, tool)
### f: material design - 365 pull request(s)
[55209](https://github.com/flutter/flutter/pull/55209) Updated SearchDelegate to follow custom InputDecorationTheme (cla: yes, f: material design, framework)
[63272](https://github.com/flutter/flutter/pull/63272) Remove back button when using end drawer (cla: yes, f: material design, framework, waiting for tree to go green)
[63466](https://github.com/flutter/flutter/pull/63466) [MaterialSlice] adds property to customize slice color (cla: yes, f: material design, framework, waiting for tree to go green)
[63683](https://github.com/flutter/flutter/pull/63683) Tab bar improvements (cla: yes, f: material design, framework)
[63834](https://github.com/flutter/flutter/pull/63834) Treat hover events as normal pointer events, and bring them back to Listener (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[63910](https://github.com/flutter/flutter/pull/63910) Improve Stepper controlsBuilder docs (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[64140](https://github.com/flutter/flutter/pull/64140) [ReorderableListView] Fix item dropping animation (a: animation, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[64222](https://github.com/flutter/flutter/pull/64222) Allow modification of ListTile's horizontalTitleGap, minVerticalPadding, minLeadingWidth (cla: yes, f: material design, framework)
[64639](https://github.com/flutter/flutter/pull/64639) Change LicensePage's loading color from scaffoldBackgroundColor to cardColor (cla: yes, f: material design, framework, waiting for tree to go green)
[64678](https://github.com/flutter/flutter/pull/64678) Wrap PopupMenu with SafeArea to respect status bar (a: layout, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64746](https://github.com/flutter/flutter/pull/64746) FloatingActionButton always keeps the same position when FloatingActionButtonLocation is top. (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64846](https://github.com/flutter/flutter/pull/64846) Expose GestureBinding.handlePointerEvent, replacing dispatchEvent as the preferred way to dispatch events (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[64966](https://github.com/flutter/flutter/pull/64966) Minor docs updates (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65010](https://github.com/flutter/flutter/pull/65010) Fix Semi Hidden helpText in showDatePicker (a: internationalization, cla: yes, f: date/time picker, f: material design, framework)
[65044](https://github.com/flutter/flutter/pull/65044) TextSelectionTheme support (step 2 of 3) (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[65080](https://github.com/flutter/flutter/pull/65080) [ReorderableListView] remove extra margin added after picking up the item (cla: yes, f: material design, framework, waiting for tree to go green)
[65246](https://github.com/flutter/flutter/pull/65246) Deprecated unused property [RectangularSliderTrackShape.disabledThumbGapWidth] (cla: yes, f: material design, framework)
[65320](https://github.com/flutter/flutter/pull/65320) Add onSelectionChanged into SelectableText widget (cla: yes, f: material design, framework, waiting for tree to go green)
[65463](https://github.com/flutter/flutter/pull/65463) [Tabs] Fix tab indicator flies off issue (cla: yes, f: material design, framework, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65584](https://github.com/flutter/flutter/pull/65584) List tile docs (cla: yes, f: material design, framework, waiting for tree to go green)
[65658](https://github.com/flutter/flutter/pull/65658) Make Navigator restorable (inkl. WidgetsApp, MaterialApp, CupertinoApp) (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65659](https://github.com/flutter/flutter/pull/65659) [Material] Fix a jumping animation in the beginning of the extended Navigation Rail transition (cla: yes, f: material design, framework, waiting for tree to go green)
[65662](https://github.com/flutter/flutter/pull/65662) Buttons animate elevation changes before changing background color (cla: yes, f: material design, framework, waiting for tree to go green)
[65665](https://github.com/flutter/flutter/pull/65665) Updated API doc references to obsolete Material button classes (cla: yes, f: material design, framework, waiting for tree to go green)
[65695](https://github.com/flutter/flutter/pull/65695) Fix FormFieldState value not in sync with the onChanged value from TextFormField. (cla: yes, f: material design, framework)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65832](https://github.com/flutter/flutter/pull/65832) fix issue #55400 PopupMenuButton positions menu incorrectly with nest… (cla: yes, f: material design, framework, waiting for tree to go green)
[65877](https://github.com/flutter/flutter/pull/65877) Update Navigation Rail test with regression comment and cleaner size checking (cla: yes, f: material design, framework, waiting for tree to go green)
[65915](https://github.com/flutter/flutter/pull/65915) Fix DropdownButton bug (cla: yes, f: material design, framework, waiting for tree to go green)
[65918](https://github.com/flutter/flutter/pull/65918) Changed field title to label in bottom_navigation_bar_test.dart (cla: yes, f: material design, framework, waiting for tree to go green)
[65944](https://github.com/flutter/flutter/pull/65944) Divider with subheader example update (cla: yes, f: material design, framework, waiting for tree to go green)
[65966](https://github.com/flutter/flutter/pull/65966) TextField constrained layout bug (cla: yes, f: material design, framework)
[65973](https://github.com/flutter/flutter/pull/65973) always adds alert label for alert dialog in Android (cla: yes, f: material design, framework, waiting for tree to go green)
[65988](https://github.com/flutter/flutter/pull/65988) Replaced reference to obsolete FlatButton button class in SnackBar (cla: yes, f: material design, framework, waiting for tree to go green)
[65993](https://github.com/flutter/flutter/pull/65993) Update localizations (a: internationalization, cla: yes, f: material design, waiting for tree to go green)
[65998](https://github.com/flutter/flutter/pull/65998) Fix bug when updating the `divisions` and `value` of the slider at the same time (cla: yes, f: material design, framework, waiting for tree to go green)
[66027](https://github.com/flutter/flutter/pull/66027) Revert "TextField constrained layout bug" (cla: yes, f: material design, framework)
[66031](https://github.com/flutter/flutter/pull/66031) Revert "always adds alert label for alert dialog in Android" (cla: yes, f: material design, framework)
[66051](https://github.com/flutter/flutter/pull/66051) Revert "TextSelectionTheme support (step 2 of 3)" (cla: yes, f: material design, framework)
[66055](https://github.com/flutter/flutter/pull/66055) Reland "TextField constrained layout bug (#65966)" (cla: yes, f: material design, framework, waiting for tree to go green)
[66057](https://github.com/flutter/flutter/pull/66057) reland always adds alert label for alert dialog in Android (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[66061](https://github.com/flutter/flutter/pull/66061) Reland: TextSelectionTheme support (step 2 of 3) (cla: yes, f: material design, framework)
[66186](https://github.com/flutter/flutter/pull/66186) Changed title to label in flutter/test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[66213](https://github.com/flutter/flutter/pull/66213) Fixes typos in showDialog documentation (cla: yes, d: api docs, f: material design, framework)
[66257](https://github.com/flutter/flutter/pull/66257) Actually consume top padding in bottomsheet if scrollcontrolled (cla: yes, f: material design, framework, waiting for tree to go green)
[66274](https://github.com/flutter/flutter/pull/66274) Make CupertinoThemeData properties non-nullable (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66291](https://github.com/flutter/flutter/pull/66291) TextField intrinsic height layout bug (cla: yes, f: material design, framework)
[66370](https://github.com/flutter/flutter/pull/66370) Change the default visual density to be adaptive based on platform. (cla: yes, f: material design, framework, team, tool)
[66409](https://github.com/flutter/flutter/pull/66409) Change emoji in About dialog to be a divider (cla: yes, f: material design, framework, waiting for tree to go green)
[66482](https://github.com/flutter/flutter/pull/66482) TextSelectionTheme support (step 3 of 3) (cla: yes, f: material design, framework, team)
[66504](https://github.com/flutter/flutter/pull/66504) Re-land ScaffoldMessenger (a: quality, cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)
[66508](https://github.com/flutter/flutter/pull/66508) [Docs] [Material] Fix Icons api docs (cla: yes, f: material design, framework, team)
[66524](https://github.com/flutter/flutter/pull/66524) [Icons] Update icon version to point to file that iOS will prefer. (cla: yes, f: material design, platform-ios, t: xcode, waiting for tree to go green)
[66542](https://github.com/flutter/flutter/pull/66542) Fix last month not being displayed if last date is selected in DateRangePicker (cla: yes, f: material design, framework, waiting for tree to go green)
[66596](https://github.com/flutter/flutter/pull/66596) [Material] Remove opacity from dark theme overlay check (cla: yes, f: material design, framework, waiting for tree to go green)
[66597](https://github.com/flutter/flutter/pull/66597) Replaced obsolete use of FlatButton with TextButton (cla: yes, f: material design, framework, waiting for tree to go green)
[66633](https://github.com/flutter/flutter/pull/66633) migration of material files to nullsafety (cla: yes, f: material design, framework, waiting for tree to go green)
[66640](https://github.com/flutter/flutter/pull/66640) Add decoration parameter to DataTable and DataTableTheme (cla: yes, f: material design, framework)
[66652](https://github.com/flutter/flutter/pull/66652) [Material] Update some semantics for time picker controls (cla: yes, f: material design, framework)
[66653](https://github.com/flutter/flutter/pull/66653) Changed TickerProviderStateMixin to SingleTickerProviderStateMixin in… (cla: yes, f: material design, framework)
[66663](https://github.com/flutter/flutter/pull/66663) Migrate flutter_test (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[66670](https://github.com/flutter/flutter/pull/66670) Updated tests in material/bottom_navigation_bar_test.dart (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66684](https://github.com/flutter/flutter/pull/66684) [Icons][iOS] Pointing to version of material icon font that includes more metadata in the xml. (cla: yes, f: material design, waiting for tree to go green)
[66694](https://github.com/flutter/flutter/pull/66694) Page-subclasses to take children instead of builder (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66754](https://github.com/flutter/flutter/pull/66754) [desktop] default to shrink wrap on desktop platforms (cla: yes, f: material design, framework, waiting for tree to go green)
[66785](https://github.com/flutter/flutter/pull/66785) Add textSelectionControls to TextField etc. (cla: yes, f: cupertino, f: material design, framework)
[66798](https://github.com/flutter/flutter/pull/66798) Fix ListTile assert when layout at zero size (cla: yes, f: material design, framework)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66858](https://github.com/flutter/flutter/pull/66858) migrate some material files to nullsafty (cla: yes, f: material design, framework)
[66914](https://github.com/flutter/flutter/pull/66914) Move assert(s) that reference 'this' to the constructor bodies. (cla: yes, f: cupertino, f: material design, framework)
[66972](https://github.com/flutter/flutter/pull/66972) Nested Scaffolds - Suggested Changes (cla: yes, d: api docs, f: material design, framework)
[66985](https://github.com/flutter/flutter/pull/66985) migrate some material files to nullsafety (cla: yes, f: material design, framework)
[67003](https://github.com/flutter/flutter/pull/67003) API docs for typedefs. (cla: yes, f: material design, framework, waiting for tree to go green)
[67076](https://github.com/flutter/flutter/pull/67076) [Time Picker] Double tapping hours/minutes will switch time picker to input mode (cla: yes, f: material design, framework)
[67078](https://github.com/flutter/flutter/pull/67078) migrate some material files to nullsafety (cla: yes, f: material design, framework, waiting for tree to go green)
[67083](https://github.com/flutter/flutter/pull/67083) [flutter] Update some tests in flutter/test (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67105](https://github.com/flutter/flutter/pull/67105) [AppBarTheme] adds titleSpacing parameter (cla: yes, f: material design, framework)
[67135](https://github.com/flutter/flutter/pull/67135) Expose the tileColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[67159](https://github.com/flutter/flutter/pull/67159) Invalid dates when switching back to calendar mode in the date range picker (cla: yes, f: material design, framework)
[67166](https://github.com/flutter/flutter/pull/67166) migrate material to nullsafety (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67167](https://github.com/flutter/flutter/pull/67167) Add missing margin to SnackBarAction (cla: yes, f: material design, framework, waiting for tree to go green)
[67183](https://github.com/flutter/flutter/pull/67183) Revert "migrate some material files to nullsafety" (cla: yes, f: material design, framework)
[67249](https://github.com/flutter/flutter/pull/67249) Add detection of drawer open and close in Scaffold widget as a callback method. (cla: yes, f: material design, framework, waiting for tree to go green)
[67290](https://github.com/flutter/flutter/pull/67290) Update documentation for borderWidth/renderBorder on ToggleButtons (cla: yes, f: material design, framework, waiting for tree to go green)
[67318](https://github.com/flutter/flutter/pull/67318) Reland "migrate some material files to nullsafety (#67078)" (cla: yes, f: material design, framework, waiting for tree to go green)
[67320](https://github.com/flutter/flutter/pull/67320) Provide oldLayer where possible (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67342](https://github.com/flutter/flutter/pull/67342) [Material] Fix BottomNavTheme.showSelectedLabels bug (cla: yes, f: material design, framework, waiting for tree to go green)
[67351](https://github.com/flutter/flutter/pull/67351) Migrate some more non-test utils for tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67361](https://github.com/flutter/flutter/pull/67361) Characters docs (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[67414](https://github.com/flutter/flutter/pull/67414) Add tristate to parent checkbox for DataTable (cla: yes, f: material design, framework)
[67419](https://github.com/flutter/flutter/pull/67419) Exposes ListTile.shape for CheckboxListTile and SwitchListTile (cla: yes, f: material design, framework, waiting for tree to go green)
[67427](https://github.com/flutter/flutter/pull/67427) Remove required for onRemove in InteractiveInkFeature.create (cla: yes, f: material design, framework)
[67437](https://github.com/flutter/flutter/pull/67437) Updated the remaining obsolete button references in flutter_gallery (cla: yes, f: material design, team)
[67438](https://github.com/flutter/flutter/pull/67438) Add contentPadding property for RadioListTile (cla: yes, f: material design, framework)
[67440](https://github.com/flutter/flutter/pull/67440) Removed remaining obsolete button widget references (cla: yes, d: examples, f: material design, framework, team)
[67443](https://github.com/flutter/flutter/pull/67443) fix nullability issues (cla: yes, f: material design, framework, waiting for tree to go green)
[67477](https://github.com/flutter/flutter/pull/67477) Migrate some material tests to nnbd (cla: yes, f: material design, framework)
[67482](https://github.com/flutter/flutter/pull/67482) Migrate More Material Tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67525](https://github.com/flutter/flutter/pull/67525) unnecessary null comparison (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67545](https://github.com/flutter/flutter/pull/67545) Reland removal of examples/catalog (a: accessibility, cla: yes, d: examples, f: material design, framework, team, waiting for tree to go green)
[67552](https://github.com/flutter/flutter/pull/67552) [flutter_releases] Flutter 1.22.1 Framework Cherrypicks (cla: yes, engine, f: material design, framework, team, tool)
[67556](https://github.com/flutter/flutter/pull/67556) Migrate Material framework tests to null safety (cla: yes, f: material design, framework)
[67557](https://github.com/flutter/flutter/pull/67557) enable null_check_on_nullable_type_parameter and tighten_type_of_initializing_formals (cla: yes, f: material design, framework, waiting for tree to go green)
[67558](https://github.com/flutter/flutter/pull/67558) Some NNBD Test Conversion (cla: yes, f: material design, framework)
[67562](https://github.com/flutter/flutter/pull/67562) [Material] Time picker semantics updates (a: accessibility, cla: yes, f: material design, framework)
[67566](https://github.com/flutter/flutter/pull/67566) Revert "Wrap PopupMenu with SafeArea to respect status bar" (cla: yes, f: material design, framework)
[67574](https://github.com/flutter/flutter/pull/67574) Implement documented behavior of WidgetsApp.builder (cla: yes, f: material design, framework, waiting for tree to go green)
[67578](https://github.com/flutter/flutter/pull/67578) Re-land 'Wrap PopupMenu with SafeArea to respect status bar' (cla: yes, f: material design, framework, waiting for tree to go green)
[67591](https://github.com/flutter/flutter/pull/67591) Migrate more material tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67629](https://github.com/flutter/flutter/pull/67629) enable lint cast_nullable_to_non_nullable (a: tests, cla: yes, f: cupertino, f: material design, framework)
[67656](https://github.com/flutter/flutter/pull/67656) Fix new analyzer rule failure (cla: yes, f: material design, framework)
[67668](https://github.com/flutter/flutter/pull/67668) fix the tree (cla: yes, f: material design, framework)
[67674](https://github.com/flutter/flutter/pull/67674) Migrate more material tests to NNBD (cla: yes, f: material design, framework)
[67679](https://github.com/flutter/flutter/pull/67679) Search bar dark mode contrast (cla: yes, f: material design, framework, waiting for tree to go green)
[67682](https://github.com/flutter/flutter/pull/67682) Final definite assignment (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67689](https://github.com/flutter/flutter/pull/67689) [NNBD] Migrating some Material tests (cla: yes, f: material design, framework, team, team: infra, waiting for tree to go green)
[67692](https://github.com/flutter/flutter/pull/67692) Migrate tests to null-safety (cla: yes, f: material design, framework, waiting for tree to go green)
[67696](https://github.com/flutter/flutter/pull/67696) NNDB TextField tests (cla: yes, f: material design, framework)
[67736](https://github.com/flutter/flutter/pull/67736) Fix text field label width on outline input border (cla: yes, f: material design, framework, waiting for tree to go green)
[67751](https://github.com/flutter/flutter/pull/67751) Fix tree (cla: yes, f: material design, framework)
[67790](https://github.com/flutter/flutter/pull/67790) Migrate more Material framework tests to null safety. (cla: yes, f: material design, framework)
[67811](https://github.com/flutter/flutter/pull/67811) Fix typos in the [BottomNavigationBar] document (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[67887](https://github.com/flutter/flutter/pull/67887) [NNBD] Migrate some Material tests to NNBD (cla: yes, f: material design, framework)
[67900](https://github.com/flutter/flutter/pull/67900) Expose date symbols and patterns for en_US in framework (a: internationalization, cla: yes, f: material design, framework, team)
[67919](https://github.com/flutter/flutter/pull/67919) [Material] Use primary color for selected rows and checkboxes in DataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[67926](https://github.com/flutter/flutter/pull/67926) Date Picker jumps back to initialDatePickerMode after day selection (cla: yes, f: material design, framework)
[67938](https://github.com/flutter/flutter/pull/67938) [Material] Parent checkbox in DataTable should deselect all, if children checkboxes are disabled or selected (cla: yes, f: material design, framework, waiting for tree to go green)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[67947](https://github.com/flutter/flutter/pull/67947) Deprecate old SnackBar methods (cla: yes, f: material design, framework, severe: API break, severe: new feature, waiting for tree to go green)
[68000](https://github.com/flutter/flutter/pull/68000) Provide a way to change the default PopupMenuButton's icon size (cla: yes, f: material design, framework, waiting for tree to go green)
[68019](https://github.com/flutter/flutter/pull/68019) Set slider semantics flag for sliders (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68074](https://github.com/flutter/flutter/pull/68074) Added CupertinoSearchTextField (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68086](https://github.com/flutter/flutter/pull/68086) Introduce `MaxLengthEnforcement` (cla: yes, f: cupertino, f: material design, framework)
[68124](https://github.com/flutter/flutter/pull/68124) Do not instantiate intermediate tabs during transition (cla: yes, f: material design, framework)
[68133](https://github.com/flutter/flutter/pull/68133) Migrate Switch tests to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68136](https://github.com/flutter/flutter/pull/68136) Sync lints (cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68171](https://github.com/flutter/flutter/pull/68171) Make TabBar indicator color automatic adjustment optional (cla: yes, f: material design, framework, waiting for tree to go green)
[68227](https://github.com/flutter/flutter/pull/68227) Selecting spaces (cla: yes, f: cupertino, f: material design, framework)
[68232](https://github.com/flutter/flutter/pull/68232) Migrated the Slider widget and tests to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[68237](https://github.com/flutter/flutter/pull/68237) Add useDeleteButtonTooltip property for Chip (cla: yes, f: material design, framework, waiting for tree to go green)
[68241](https://github.com/flutter/flutter/pull/68241) Migrate missed tests (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68301](https://github.com/flutter/flutter/pull/68301) use_is_even_rather_than_modulo (a: accessibility, a: tests, cla: yes, f: material design, framework, team)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68358](https://github.com/flutter/flutter/pull/68358) [SwitchListTile and CheckboxListTile] Adds selectedTileColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[68596](https://github.com/flutter/flutter/pull/68596) Add border side property to Chip, and resolve shape with border side with Material states (cla: yes, f: material design, framework, waiting for tree to go green)
[68638](https://github.com/flutter/flutter/pull/68638) Handle setting TextEditingController text to null (cla: yes, f: material design, framework, waiting for tree to go green)
[68642](https://github.com/flutter/flutter/pull/68642) Sound null safety for framework and flutter_test (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68645](https://github.com/flutter/flutter/pull/68645) Migrate flutter_localizations to null safety. (a: internationalization, cla: yes, f: cupertino, f: material design, framework, team)
[68672](https://github.com/flutter/flutter/pull/68672) Revert "Fix text field label width on outline input border" (cla: yes, f: material design, framework, waiting for tree to go green)
[68681](https://github.com/flutter/flutter/pull/68681) Apply Desktop specs for Tooltip (cla: yes, f: material design, framework, waiting for tree to go green)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68723](https://github.com/flutter/flutter/pull/68723) [null-safety] try updating snippets for null safety (cla: yes, f: cupertino, f: material design, team)
[68727](https://github.com/flutter/flutter/pull/68727) Fix floating behavior of long label and outline input border (cla: yes, f: material design, framework)
[68736](https://github.com/flutter/flutter/pull/68736) Remove `nullOk` in `MediaQuery.of` (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68794](https://github.com/flutter/flutter/pull/68794) Add bottom to search bar (cla: yes, f: material design, framework, team)
[68804](https://github.com/flutter/flutter/pull/68804) fix simple dialog introducing additional node for semantics label (cla: yes, f: material design, framework)
[68807](https://github.com/flutter/flutter/pull/68807) Make Material/CupertinoLocalizations non-nullable (cla: yes, f: cupertino, f: material design, framework)
[68831](https://github.com/flutter/flutter/pull/68831) [Material] Add support for customizing active + disabled state color for selection controls. (cla: yes, f: material design, framework)
[68883](https://github.com/flutter/flutter/pull/68883) Fix a typo: "Its weight" instead of "It's weight" (cla: yes, f: material design, framework, waiting for tree to go green)
[68905](https://github.com/flutter/flutter/pull/68905) Remove `nullOk` parameter from Cupertino color resolution APIs (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68908](https://github.com/flutter/flutter/pull/68908) Remove nullOk from Scaffold.of and ScaffoldMessenger.of, create maybeOf for both (cla: yes, f: material design, framework, waiting for tree to go green)
[68917](https://github.com/flutter/flutter/pull/68917) Remove nullOk parameter from Focus.of, FocusTraversalOrder.of, and FocusTraversalGroup.of (cla: yes, f: material design, framework)
[68918](https://github.com/flutter/flutter/pull/68918) Adaptive TextField (cla: yes, f: material design, framework, waiting for tree to go green)
[68922](https://github.com/flutter/flutter/pull/68922) Make Theme.of non-nullable (cla: yes, f: material design, framework, waiting for tree to go green)
[68987](https://github.com/flutter/flutter/pull/68987) Added none property in a DismissDirection (cla: yes, f: material design, framework, team, waiting for tree to go green)
[69005](https://github.com/flutter/flutter/pull/69005) Fix null issue with dynamically updating from zero tabs for TabBar (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69048](https://github.com/flutter/flutter/pull/69048) Migrate Flutter gallery test to null safety (cla: yes, f: cupertino, f: material design, team)
[69050](https://github.com/flutter/flutter/pull/69050) InheritedTheme updates (cla: yes, f: material design, framework, waiting for tree to go green)
[69060](https://github.com/flutter/flutter/pull/69060) Make Directionality.of non-null (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69062](https://github.com/flutter/flutter/pull/69062) Remove duplicate setState in TextFormFieldState.reset (cla: yes, f: material design, framework)
[69088](https://github.com/flutter/flutter/pull/69088) added enableFeedback property to ListTile (cla: yes, f: material design, framework)
[69119](https://github.com/flutter/flutter/pull/69119) Adaptive icons (cla: yes, f: material design, framework, team)
[69143](https://github.com/flutter/flutter/pull/69143) Adaptive progress indicator (cla: yes, f: material design, framework, waiting for tree to go green)
[69197](https://github.com/flutter/flutter/pull/69197) [Material] Add splash radius property to selection controls (cla: yes, f: material design, framework, waiting for tree to go green)
[69211](https://github.com/flutter/flutter/pull/69211) Fix dropdown crash (cla: yes, f: material design, framework)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69241](https://github.com/flutter/flutter/pull/69241) Revert "Updated SearchDelegate to follow custom InputDecorationTheme (#55209)" (cla: yes, f: material design, framework, waiting for tree to go green)
[69251](https://github.com/flutter/flutter/pull/69251) AppBar draws its defaults from theme.colorScheme (cla: yes, f: material design, framework)
[69312](https://github.com/flutter/flutter/pull/69312) Update FAB elevation to match spec (cla: yes, f: material design, framework)
[69346](https://github.com/flutter/flutter/pull/69346) Adaptive constructor / TextInputAction docs fix (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69383](https://github.com/flutter/flutter/pull/69383) Fix the PopupMenuButton offset bug (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[69399](https://github.com/flutter/flutter/pull/69399) [RadioListTile] Adds shape, tileColor and selectedTileColor to RadioListTile (cla: yes, f: material design, framework, waiting for tree to go green)
[69404](https://github.com/flutter/flutter/pull/69404) Added padding property in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green)
[69422](https://github.com/flutter/flutter/pull/69422) [a11y] do not attach onTap semantics if no onTap handler is provided to InkWell (cla: yes, f: material design, framework)
[69428](https://github.com/flutter/flutter/pull/69428) Material Text Selection Toolbar improvements (a: text input, cla: yes, f: material design, framework)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[69451](https://github.com/flutter/flutter/pull/69451) Fix spelling errors (a: tests, cla: yes, f: cupertino, f: material design, framework, team)
[69457](https://github.com/flutter/flutter/pull/69457) Enable customization of TabBar's InkWell (cla: yes, f: material design, framework, waiting for tree to go green)
[69498](https://github.com/flutter/flutter/pull/69498) AdoptAWidget - Progress indicator (adopt a widget, cla: yes, f: material design, framework)
[69518](https://github.com/flutter/flutter/pull/69518) AdoptAWidget: Tooltip (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69530](https://github.com/flutter/flutter/pull/69530) AdoptAWidget: MaterialBanner (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69532](https://github.com/flutter/flutter/pull/69532) Add Scaffold to Tooltip code samples (cla: yes, f: material design, framework, waiting for tree to go green)
[69534](https://github.com/flutter/flutter/pull/69534) TextField's hintText should support TextDirection. (cla: yes, f: material design, framework)
[69555](https://github.com/flutter/flutter/pull/69555) AdoptAWidget: SnackBar (cla: yes, f: material design, framework, waiting for tree to go green)
[69575](https://github.com/flutter/flutter/pull/69575) [ExpansionTile] adds collapsedBackgroundColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[69594](https://github.com/flutter/flutter/pull/69594) Fix textfield messing with user-supplied input formatter list (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69596](https://github.com/flutter/flutter/pull/69596) Updated the button.icon factory constructors for NNBD (cla: yes, f: material design, framework)
[69610](https://github.com/flutter/flutter/pull/69610) Make header optional in PaginatedDataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[69617](https://github.com/flutter/flutter/pull/69617) Remove references to `Window`, and switch usages to `PlatformDispatcher` or `SingletonFlutterWindow` (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[69620](https://github.com/flutter/flutter/pull/69620) Remove deprecated methods from BuildContext (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[69631](https://github.com/flutter/flutter/pull/69631) Revert TextField.adaptive (cla: yes, f: material design, framework)
[69650](https://github.com/flutter/flutter/pull/69650) Update ReorderableListView API docs (cla: yes, f: material design, framework)
[69653](https://github.com/flutter/flutter/pull/69653) Reland "Updated SearchDelegate to follow custom InputDecorationTheme" (cla: yes, f: material design, framework, waiting for tree to go green)
[69654](https://github.com/flutter/flutter/pull/69654) removed `an` and used `a` (cla: yes, f: material design, framework, waiting for tree to go green)
[69713](https://github.com/flutter/flutter/pull/69713) ButtonStyle style side should default to shape.side (cla: yes, f: material design, framework, waiting for tree to go green)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[69783](https://github.com/flutter/flutter/pull/69783) Reduce refresh indicator pull-down distance (cla: yes, f: material design, framework)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[69812](https://github.com/flutter/flutter/pull/69812) fix typo in RenderChip.computeMaxIntrinsicWidth implementation (cla: yes, f: material design, framework, waiting for tree to go green)
[69890](https://github.com/flutter/flutter/pull/69890) Added enableFeedback property PopupMenuButton (cla: yes, f: material design, framework, waiting for tree to go green)
[69982](https://github.com/flutter/flutter/pull/69982) Add new ListTile parameters to ListTileTheme (cla: yes, f: material design, framework, waiting for tree to go green)
[69987](https://github.com/flutter/flutter/pull/69987) [flutter_tools] remove material design schema, use dart code (cla: yes, f: material design, tool)
[70023](https://github.com/flutter/flutter/pull/70023) Revert "Migrate Flutter gallery test to null safety" (cla: yes, f: cupertino, f: material design, team, tool)
[70080](https://github.com/flutter/flutter/pull/70080) Let SnackBar inherit themeData from its ancestor (cla: yes, f: material design, framework, waiting for tree to go green)
[70092](https://github.com/flutter/flutter/pull/70092) AdoptAWidget: Stepper (cla: yes, f: material design, framework)
[70116](https://github.com/flutter/flutter/pull/70116) Migrate Flutter Gallery test to null safety (cla: yes, f: cupertino, f: material design, team, tool)
[70149](https://github.com/flutter/flutter/pull/70149) Fix for the ListTile horizontalTitleGap calculation introduced with PR #64222. (cla: yes, f: material design, framework)
[70157](https://github.com/flutter/flutter/pull/70157) Update cupertino and material translations (a: internationalization, cla: yes, f: cupertino, f: material design)
[70160](https://github.com/flutter/flutter/pull/70160) Update PopupMenuButton to match Material Design spec (a: fidelity, cla: yes, f: material design, framework, waiting for tree to go green)
[70184](https://github.com/flutter/flutter/pull/70184) [FloatingActionButtonLocation] Add diagrams to documentation of FloatingActionButtonLocation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70212](https://github.com/flutter/flutter/pull/70212) Revert "AppBar draws its defaults from theme.colorScheme" (cla: yes, f: material design, framework, waiting for tree to go green)
[70277](https://github.com/flutter/flutter/pull/70277) Improve the behavior of DropdownButton.disabledHint (cla: yes, f: material design, framework, waiting for tree to go green)
[70311](https://github.com/flutter/flutter/pull/70311) [Material] Add selection control themes (cla: yes, f: material design, framework, waiting for tree to go green)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70343](https://github.com/flutter/flutter/pull/70343) Code sample small fixes (adopt a widget, cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[70379](https://github.com/flutter/flutter/pull/70379) Added Tabar Code samples (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70382](https://github.com/flutter/flutter/pull/70382) Update FlexibleSpaceBar dartpad sample (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70391](https://github.com/flutter/flutter/pull/70391) Revert "Default Keyboard ScrollActions with PrimaryScrollController" (cla: yes, f: cupertino, f: material design, framework)
[70392](https://github.com/flutter/flutter/pull/70392) Revert "Actually consume top padding in bottomsheet if scrollcontrolled" (cla: yes, f: material design, framework, waiting for tree to go green)
[70393](https://github.com/flutter/flutter/pull/70393) Update OutlinedButton default outline geometry to be backwards compatible (cla: yes, f: material design, framework)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[70447](https://github.com/flutter/flutter/pull/70447) fix some unit test cases(ink_well_test.dart) bug (cla: yes, f: material design, framework)
[70603](https://github.com/flutter/flutter/pull/70603) [Material] Decoration for DataTable is not used inside PaginatedDataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[70656](https://github.com/flutter/flutter/pull/70656) Fixes Intrinsics for RenderParagraph and RenderWrap (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework)
[70669](https://github.com/flutter/flutter/pull/70669) [Material] Add method to get dark mode overlay color without needing BuildContext (cla: yes, f: material design, framework, waiting for tree to go green)
[70670](https://github.com/flutter/flutter/pull/70670) Update [ToggleButtons] to support extend down/up vertically (cla: yes, f: material design, framework, waiting for tree to go green)
[70675](https://github.com/flutter/flutter/pull/70675) Revert "Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (#70401)" (cla: yes, f: cupertino, f: material design, framework)
[70683](https://github.com/flutter/flutter/pull/70683) Set [InputDecoration.floatingLabelBehavior] default to null (cla: yes, f: material design, framework, waiting for tree to go green)
[70687](https://github.com/flutter/flutter/pull/70687) Chip theme label style is merged with the provided label style (cla: yes, f: material design, framework, waiting for tree to go green)
[70708](https://github.com/flutter/flutter/pull/70708) Material Date Picker code restructure (cla: yes, f: material design, framework)
[70726](https://github.com/flutter/flutter/pull/70726) Remove the `nullOk` parameter from `Navigator.of` and add `Navigator.maybeOf` (cla: yes, f: cupertino, f: material design, framework, team)
[70773](https://github.com/flutter/flutter/pull/70773) Use adaptive more icon for popup_menu (cla: yes, f: material design, framework, waiting for tree to go green)
[70872](https://github.com/flutter/flutter/pull/70872) Prevent text from overflowing in OutlineButton and OutlinedButton label. (cla: yes, f: material design, framework)
[70893](https://github.com/flutter/flutter/pull/70893) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[70975](https://github.com/flutter/flutter/pull/70975) Remove private OutlinedButton default outline geometry class (cla: yes, f: material design, framework)
[70977](https://github.com/flutter/flutter/pull/70977) [flutter_tools] Remove usage of --precompiled flag for web tests (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, tool)
[71061](https://github.com/flutter/flutter/pull/71061) Expose the YearPicker as a public API again to match the previous API. (cla: yes, f: material design, framework)
[71079](https://github.com/flutter/flutter/pull/71079) [BottomNavigationBar] Adds more control to ToolTip (cla: yes, f: material design, framework, waiting for tree to go green)
[71184](https://github.com/flutter/flutter/pull/71184) Update AppBar and AppBar Theme to new Theme conventions and latest Material spec (cla: yes, f: material design, framework)
[71236](https://github.com/flutter/flutter/pull/71236) Raw keyboard shortcuts & deletions should not read from _plainText (cla: yes, f: material design, framework, waiting for tree to go green)
[71303](https://github.com/flutter/flutter/pull/71303) RefreshIndicator can be shown when dragging from non-zero scroll position (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71314](https://github.com/flutter/flutter/pull/71314) BottomNavigationBar unselected items modified to use unselectedWidgetColor (cla: yes, f: material design, framework, waiting for tree to go green)
[71378](https://github.com/flutter/flutter/pull/71378) [FloatingActionButtonLocation] Add proper formatting to documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[71401](https://github.com/flutter/flutter/pull/71401) Update documentation link (cla: yes, f: material design, framework, team)
[71547](https://github.com/flutter/flutter/pull/71547) fix nullability of parameters with redirecting factory constructors (cla: yes, f: material design, framework)
[71559](https://github.com/flutter/flutter/pull/71559) Revert "Improve the behavior of DropdownButton.disabledHint" (cla: yes, f: material design, framework)
[71569](https://github.com/flutter/flutter/pull/71569) [Material] Resolve overlay color for pressed/active/inactive states in selection controls (cla: yes, f: material design, framework, waiting for tree to go green)
[71580](https://github.com/flutter/flutter/pull/71580) Updated dialog background color documentation (cla: yes, f: material design, framework)
[71587](https://github.com/flutter/flutter/pull/71587) Accessibility: repeated label on BottomNavigationBar fixed (cla: yes, f: material design, framework, waiting for tree to go green)
[71628](https://github.com/flutter/flutter/pull/71628) Reland "Improve the behavior of DropdownButton.disabledHint" (cla: yes, f: material design, framework)
[71636](https://github.com/flutter/flutter/pull/71636) [showModalBottomSheet] fix: showModalBottomSheet does not move along keyboard (cla: yes, f: material design, framework, waiting for tree to go green)
[71657](https://github.com/flutter/flutter/pull/71657) [ExpansionPanel] Exposes color property of MaterialSlice (cla: yes, f: material design, framework, waiting for tree to go green)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[71756](https://github.com/flutter/flutter/pull/71756) Correct text selection pivot points (cla: yes, f: material design, framework, waiting for tree to go green)
[71783](https://github.com/flutter/flutter/pull/71783) circleAvatar: foreground Image uses background Image as a fall-back (cla: yes, f: material design, framework, will affect goldens)
[71838](https://github.com/flutter/flutter/pull/71838) showDialog assertion for non-null builder or child property (cla: yes, f: material design, framework, waiting for tree to go green)
[71843](https://github.com/flutter/flutter/pull/71843) Improve the ScrollBar behavior when nested (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71852](https://github.com/flutter/flutter/pull/71852) Fix text direction logic for material icon variants (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71853](https://github.com/flutter/flutter/pull/71853) Add previews for CupertinoIcons (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[71861](https://github.com/flutter/flutter/pull/71861) Remove isMaterialAppTheme property (cla: yes, f: material design, framework, waiting for tree to go green)
[71944](https://github.com/flutter/flutter/pull/71944) app bar leading back button should not change if the route is popped (cla: yes, f: material design, framework, waiting for tree to go green)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72040](https://github.com/flutter/flutter/pull/72040) Prepare to migrate API doc samples and snippets to null safety (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[72043](https://github.com/flutter/flutter/pull/72043) Deprecate `maxLengthEnforced` for text fields (cla: yes, f: cupertino, f: material design, framework)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72091](https://github.com/flutter/flutter/pull/72091) Cleanup nullability for ImplicitlyAnimatedWidgetState (cla: yes, f: material design, framework, waiting for tree to go green)
[72132](https://github.com/flutter/flutter/pull/72132) RefreshIndicator should not be shown when overscroll occurs due to inertia (cla: yes, f: material design, framework, waiting for tree to go green)
[72159](https://github.com/flutter/flutter/pull/72159) Fix api doc to fix tree (cla: yes, f: material design, framework)
[72162](https://github.com/flutter/flutter/pull/72162) Make web buttons respond to enter key (cla: yes, f: material design, framework, waiting for tree to go green)
[72163](https://github.com/flutter/flutter/pull/72163) Add some new examples to Actions and Shortcuts (cla: yes, f: material design, framework)
[72297](https://github.com/flutter/flutter/pull/72297) Migrate some material doc samples to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[72300](https://github.com/flutter/flutter/pull/72300) Fixed issue for SliverAppBar collapsedHeight (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72303](https://github.com/flutter/flutter/pull/72303) Migrate some more material doc samples to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[72308](https://github.com/flutter/flutter/pull/72308) Add ScrollbarTheme/ScrollbarThemeData (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72316](https://github.com/flutter/flutter/pull/72316) Remove Scrollbar.isAlwaysShown assert based on Scrollbar.controller (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72344](https://github.com/flutter/flutter/pull/72344) Add BuildContext parameter to TextEditingController.buildTextSpan (cla: yes, f: material design, framework, waiting for tree to go green)
[72431](https://github.com/flutter/flutter/pull/72431) Fixes: "FloatingActionButton.extended's isExtended property if false should show icon, not label" (cla: yes, f: material design, framework)
[72472](https://github.com/flutter/flutter/pull/72472) Added backwardsCompatibility flag to AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)
[72477](https://github.com/flutter/flutter/pull/72477) Updated the MaterialBanner example, NNBD, etc (cla: yes, f: material design, framework, waiting for tree to go green)
[72490](https://github.com/flutter/flutter/pull/72490) Bottom navigation items length docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[72531](https://github.com/flutter/flutter/pull/72531) Update Scrollbar behavior for mobile devices (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72532](https://github.com/flutter/flutter/pull/72532) Remove deprecated showDialog.child (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72541](https://github.com/flutter/flutter/pull/72541) Proposal : #72346 - expose property to pass AnimationController to showBottomSheet/showModalBottomSheet (a: animation, cla: yes, f: material design, framework)
[72772](https://github.com/flutter/flutter/pull/72772) Unprefixes the class with the "new" keyword (cla: yes, f: material design, framework, waiting for tree to go green)
[72788](https://github.com/flutter/flutter/pull/72788) [State Restoration] Scaffold.drawer and Scaffold.endDrawer (a: state restoration, cla: yes, f: material design, framework, waiting for tree to go green)
[72794](https://github.com/flutter/flutter/pull/72794) [NNBD] Migrate sample code pt 1 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72798](https://github.com/flutter/flutter/pull/72798) [NNBD] Migrate sample code pt 2 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72833](https://github.com/flutter/flutter/pull/72833) Fix scrollbar configuration for hover events (a: desktop, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[72837](https://github.com/flutter/flutter/pull/72837) [NNBD] Migrate sample code pt 3 (a: null-safety, cla: yes, f: material design, framework, team, waiting for tree to go green)
[72890](https://github.com/flutter/flutter/pull/72890) Remove deprecated Scaffold.resizeToAvoidBottomPadding (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72903](https://github.com/flutter/flutter/pull/72903) Remove deprecated Element methods (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[72938](https://github.com/flutter/flutter/pull/72938) [NNBD] Migrate sample code pt 6 (cla: yes, f: material design, framework)
[72939](https://github.com/flutter/flutter/pull/72939) Complete migration to null safety in api documentation (a: null-safety, cla: yes, f: cupertino, f: material design, framework, team)
[72945](https://github.com/flutter/flutter/pull/72945) Add widget of the week videos (cla: yes, f: material design, framework, waiting for tree to go green)
[73018](https://github.com/flutter/flutter/pull/73018) Document TableRowInkWell and DataTable interactions better (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[73044](https://github.com/flutter/flutter/pull/73044) [Api docs]Added dartpad demo for Bottom App Bar (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[73084](https://github.com/flutter/flutter/pull/73084) Improve the Scaffold.bottomSheet update behavior (a: quality, cla: yes, f: focus, f: material design, framework, waiting for tree to go green)
[73103](https://github.com/flutter/flutter/pull/73103) Add BottomNavigationBarType.shifting sample #72936 (cla: yes, f: material design, framework, waiting for tree to go green)
[73138](https://github.com/flutter/flutter/pull/73138) Removed mouseCursor property from list of not null properties in InkWell and InkResponse. (cla: yes, f: material design, framework, waiting for tree to go green)
[73303](https://github.com/flutter/flutter/pull/73303) fix a Gallery Menus issue (cla: yes, f: material design, team)
[73352](https://github.com/flutter/flutter/pull/73352) Deprecated obsolete Material classes: FlatButton, RaisedButton, OutlineButton (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73361](https://github.com/flutter/flutter/pull/73361) Add material icons golden test (cla: yes, f: material design, framework, will affect goldens)
[73381](https://github.com/flutter/flutter/pull/73381) fix dropdown menu to position based on nearest navigator (cla: yes, f: material design, framework, waiting for tree to go green)
[73474](https://github.com/flutter/flutter/pull/73474) Add [pointerCount] property to Scale Gesture Details (cla: yes, f: material design, framework, waiting for tree to go green)
[73503](https://github.com/flutter/flutter/pull/73503) Revert "Add BuildContext parameter to TextEditingController.buildTextSpan" (cla: yes, f: material design, framework)
[73509](https://github.com/flutter/flutter/pull/73509) Migrate missed sample code to NNBD (cla: yes, f: material design, framework, waiting for tree to go green)
[73514](https://github.com/flutter/flutter/pull/73514) Update outdated links (a: internationalization, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[73521](https://github.com/flutter/flutter/pull/73521) Revert "Add material icons golden test (#73361)" (cla: yes, f: material design, framework)
[73522](https://github.com/flutter/flutter/pull/73522) Flutter 1.26 candidate.8 (cla: yes, engine, f: material design, framework)
[73558](https://github.com/flutter/flutter/pull/73558) snackBar should paint above the bottomSheet (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[73566](https://github.com/flutter/flutter/pull/73566) Fix "RefreshIndicator.color didn't update at runtime" (cla: yes, f: material design, framework)
[73571](https://github.com/flutter/flutter/pull/73571) Expose insetPadding and clipBehavior in SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green)
[73578](https://github.com/flutter/flutter/pull/73578) Cupertino text selection menu customization (cla: yes, f: cupertino, f: material design, framework)
[73618](https://github.com/flutter/flutter/pull/73618) ListTile Material Ripple and Shape Patch (cla: yes, f: material design, framework)
[73654](https://github.com/flutter/flutter/pull/73654) Fix dropdown menu overscroll (cla: yes, f: material design, framework, waiting for tree to go green)
[73715](https://github.com/flutter/flutter/pull/73715) Revert "Prevent text from overflowing in OutlineButton and OutlinedButton label." (cla: yes, f: material design, framework, waiting for tree to go green)
[73732](https://github.com/flutter/flutter/pull/73732) Removed the color field from AppBarTheme (cla: yes, f: material design, framework)
[73746](https://github.com/flutter/flutter/pull/73746) Remove deprecated ButtonTheme.bar (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73753](https://github.com/flutter/flutter/pull/73753) Autocomplete (Material) (cla: yes, f: material design, framework)
[73780](https://github.com/flutter/flutter/pull/73780) Fix single ToggleButton border painting bugs (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[73829](https://github.com/flutter/flutter/pull/73829) Expose DialogRoutes for state restoration support (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73882](https://github.com/flutter/flutter/pull/73882) Mac context menu (cla: yes, f: cupertino, f: material design, framework)
[73894](https://github.com/flutter/flutter/pull/73894) Added ButtonStyle.alignment property (cla: yes, f: material design, framework)
[73895](https://github.com/flutter/flutter/pull/73895) Flutter 1.26 candidate.10 (cla: yes, f: material design, framework, waiting for tree to go green)
[73899](https://github.com/flutter/flutter/pull/73899) Restore adaptive nature to new Scrollbar (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[73925](https://github.com/flutter/flutter/pull/73925) Apply ListTile colors to leading and trailing text widgets (cla: yes, f: material design, framework, waiting for tree to go green)
[73993](https://github.com/flutter/flutter/pull/73993) Fix canpop logic to be more robust (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73994](https://github.com/flutter/flutter/pull/73994) Add fixes for deprecations in TextTheme (cla: yes, f: material design, framework, team, waiting for tree to go green)
[73996](https://github.com/flutter/flutter/pull/73996) Add fixes for autovalidate deprecation in Form, FormField, TextFormField, and DropdownButtonFormField (cla: yes, f: material design, framework, team, waiting for tree to go green)
[74066](https://github.com/flutter/flutter/pull/74066) Remove unused semantics tap action for readonly textfield and selecta… (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74077](https://github.com/flutter/flutter/pull/74077) Expand Stack fix to more exporting libraries (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74088](https://github.com/flutter/flutter/pull/74088) Revert "Improve the ScrollBar behavior when nested" (cla: yes, f: cupertino, f: material design, framework)
[74093](https://github.com/flutter/flutter/pull/74093) ScaffoldMessenger only shows to root nested Scaffold (a: layout, a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green, will affect goldens)
[74104](https://github.com/flutter/flutter/pull/74104) Reland "Improve the ScrollBar behavior when nested (#71843)" (cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[74131](https://github.com/flutter/flutter/pull/74131) Add material icons golden test (cla: yes, f: material design, framework)
[74273](https://github.com/flutter/flutter/pull/74273) Replaced uses of AppBarTheme.color with AppBarTheme.backgroundColor (cla: yes, f: material design, framework)
[74286](https://github.com/flutter/flutter/pull/74286) Material Desktop Context Menu (cla: yes, f: cupertino, f: material design, framework)
[74299](https://github.com/flutter/flutter/pull/74299) New Reorderable list widgets (cla: yes, f: material design, f: scrolling, framework, severe: new feature)
[74309](https://github.com/flutter/flutter/pull/74309) MaterialBanner alignment fixes and improvements (cla: yes, f: material design, framework, waiting for tree to go green)
[74335](https://github.com/flutter/flutter/pull/74335) Revert "ListTile Material Ripple and Shape Patch (#73618)" (cla: yes, f: material design, framework)
[74342](https://github.com/flutter/flutter/pull/74342) Don't use iOS font names for the macOS theme (cla: yes, f: material design, framework)
[74383](https://github.com/flutter/flutter/pull/74383) Remove "unnecessary" imports in dev/integration_tests (a: accessibility, cla: yes, f: material design, team, waiting for tree to go green)
[74385](https://github.com/flutter/flutter/pull/74385) Remove "unnecessary" imports in dev/manual_tests (cla: yes, f: material design, team, waiting for tree to go green)
[74439](https://github.com/flutter/flutter/pull/74439) Revert "Update PopupMenuButton to match Material Design spec" (a: internationalization, cla: yes, f: material design, framework)
[74454](https://github.com/flutter/flutter/pull/74454) Space and arrow keys in a text field shouldn't scroll (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74610](https://github.com/flutter/flutter/pull/74610) ChoiceChip's default "selected" style in dark mode theme is unreadabl… (cla: yes, f: material design, framework, waiting for tree to go green)
[74622](https://github.com/flutter/flutter/pull/74622) [flutter_tools] Consistently set the working directory for Flutter Test (a: internationalization, cla: yes, f: cupertino, f: material design, team, tool, waiting for tree to go green)
[74627](https://github.com/flutter/flutter/pull/74627) use predefined constants (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74635](https://github.com/flutter/flutter/pull/74635) Update localizations (a: internationalization, cla: yes, f: cupertino, f: material design)
[74661](https://github.com/flutter/flutter/pull/74661) remove some stray nullOK mentions from docs (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74683](https://github.com/flutter/flutter/pull/74683) Swap the Shortcuts widget with its child in TextField (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)
### f: cupertino - 136 pull request(s)
[48223](https://github.com/flutter/flutter/pull/48223) Add HeroMode widget (a: animation, cla: yes, f: cupertino, f: routes, framework, waiting for tree to go green)
[56024](https://github.com/flutter/flutter/pull/56024) Pass RouteSettings to the internal Route in showCupertinoModalPopup (cla: yes, f: cupertino, framework)
[61366](https://github.com/flutter/flutter/pull/61366) Continue the clipBehavior breaking change (cla: yes, f: cupertino, framework, severe: API break)
[64468](https://github.com/flutter/flutter/pull/64468) Fix CupertinoAlertDialog TextStyle (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[64846](https://github.com/flutter/flutter/pull/64846) Expose GestureBinding.handlePointerEvent, replacing dispatchEvent as the preferred way to dispatch events (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[64966](https://github.com/flutter/flutter/pull/64966) Minor docs updates (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65087](https://github.com/flutter/flutter/pull/65087) Let Flutter SDK use cupertino_icons 1.0.0 (cla: yes, f: cupertino, framework, team, tool)
[65164](https://github.com/flutter/flutter/pull/65164) Add dart-pad example code for CupertinoSliverRefreshControl (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65235](https://github.com/flutter/flutter/pull/65235) CupertinoTextField should not accept requestFocus when disabled (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65274](https://github.com/flutter/flutter/pull/65274) Add sample code for CupertinoActionSheet (cla: yes, f: cupertino, framework)
[65501](https://github.com/flutter/flutter/pull/65501) Update the cupertino picker visuals (cla: yes, f: cupertino, framework)
[65528](https://github.com/flutter/flutter/pull/65528) Reland "Nnbd widgets" (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65658](https://github.com/flutter/flutter/pull/65658) Make Navigator restorable (inkl. WidgetsApp, MaterialApp, CupertinoApp) (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65880](https://github.com/flutter/flutter/pull/65880) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66020](https://github.com/flutter/flutter/pull/66020) Remove deprecated activity indicator (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66024](https://github.com/flutter/flutter/pull/66024) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework)
[66274](https://github.com/flutter/flutter/pull/66274) Make CupertinoThemeData properties non-nullable (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66418](https://github.com/flutter/flutter/pull/66418) fix nullability issues (cla: yes, f: cupertino, framework)
[66424](https://github.com/flutter/flutter/pull/66424) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66493](https://github.com/flutter/flutter/pull/66493) migrate cupertino to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66663](https://github.com/flutter/flutter/pull/66663) Migrate flutter_test (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[66670](https://github.com/flutter/flutter/pull/66670) Updated tests in material/bottom_navigation_bar_test.dart (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66692](https://github.com/flutter/flutter/pull/66692) Allow modifying barrier color and barrier dismissible for Cupertino Modal Popup (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66694](https://github.com/flutter/flutter/pull/66694) Page-subclasses to take children instead of builder (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66783](https://github.com/flutter/flutter/pull/66783) fix the tree (cla: yes, f: cupertino, framework)
[66785](https://github.com/flutter/flutter/pull/66785) Add textSelectionControls to TextField etc. (cla: yes, f: cupertino, f: material design, framework)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66914](https://github.com/flutter/flutter/pull/66914) Move assert(s) that reference 'this' to the constructor bodies. (cla: yes, f: cupertino, f: material design, framework)
[67020](https://github.com/flutter/flutter/pull/67020) Relax the bounds of some Cupertino text field tests (cla: yes, f: cupertino, framework)
[67085](https://github.com/flutter/flutter/pull/67085) Migrate some tests to null-safety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67086](https://github.com/flutter/flutter/pull/67086) [NNBD] Migrate some Cupertino tests (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67166](https://github.com/flutter/flutter/pull/67166) migrate material to nullsafety (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67169](https://github.com/flutter/flutter/pull/67169) Make CupertinoTabView restorable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67306](https://github.com/flutter/flutter/pull/67306) fix nullability issues (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[67320](https://github.com/flutter/flutter/pull/67320) Provide oldLayer where possible (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67323](https://github.com/flutter/flutter/pull/67323) [NNBD] More test migration for Cupertino & Painting (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67361](https://github.com/flutter/flutter/pull/67361) Characters docs (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[67410](https://github.com/flutter/flutter/pull/67410) Fix the tree (cla: yes, f: cupertino, framework)
[67476](https://github.com/flutter/flutter/pull/67476) fix build analysis errors (cla: yes, f: cupertino, framework)
[67555](https://github.com/flutter/flutter/pull/67555) Turn timer_picker_test goldens back on (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[67629](https://github.com/flutter/flutter/pull/67629) enable lint cast_nullable_to_non_nullable (a: tests, cla: yes, f: cupertino, f: material design, framework)
[67682](https://github.com/flutter/flutter/pull/67682) Final definite assignment (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67770](https://github.com/flutter/flutter/pull/67770) Make CupertinoTabScaffold restorable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67969](https://github.com/flutter/flutter/pull/67969) Revert "Pass RouteSettings to the internal Route in showCupertinoModalPopup" (cla: yes, f: cupertino, framework)
[67990](https://github.com/flutter/flutter/pull/67990) Fix for "Pass RouteSettings to the internal Route in showCupertinoModalPopup" (cla: yes, f: cupertino, framework)
[68019](https://github.com/flutter/flutter/pull/68019) Set slider semantics flag for sliders (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68074](https://github.com/flutter/flutter/pull/68074) Added CupertinoSearchTextField (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68086](https://github.com/flutter/flutter/pull/68086) Introduce `MaxLengthEnforcement` (cla: yes, f: cupertino, f: material design, framework)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68136](https://github.com/flutter/flutter/pull/68136) Sync lints (cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68227](https://github.com/flutter/flutter/pull/68227) Selecting spaces (cla: yes, f: cupertino, f: material design, framework)
[68241](https://github.com/flutter/flutter/pull/68241) Migrate missed tests (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68508](https://github.com/flutter/flutter/pull/68508) Remove references to CupertinoDialog (cla: yes, f: cupertino, framework, waiting for tree to go green)
[68642](https://github.com/flutter/flutter/pull/68642) Sound null safety for framework and flutter_test (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68645](https://github.com/flutter/flutter/pull/68645) Migrate flutter_localizations to null safety. (a: internationalization, cla: yes, f: cupertino, f: material design, framework, team)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68723](https://github.com/flutter/flutter/pull/68723) [null-safety] try updating snippets for null safety (cla: yes, f: cupertino, f: material design, team)
[68736](https://github.com/flutter/flutter/pull/68736) Remove `nullOk` in `MediaQuery.of` (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68807](https://github.com/flutter/flutter/pull/68807) Make Material/CupertinoLocalizations non-nullable (cla: yes, f: cupertino, f: material design, framework)
[68905](https://github.com/flutter/flutter/pull/68905) Remove `nullOk` parameter from Cupertino color resolution APIs (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68913](https://github.com/flutter/flutter/pull/68913) Delay Route disposal until OverlayEntries are unmounted (cla: yes, f: cupertino, framework)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69048](https://github.com/flutter/flutter/pull/69048) Migrate Flutter gallery test to null safety (cla: yes, f: cupertino, f: material design, team)
[69060](https://github.com/flutter/flutter/pull/69060) Make Directionality.of non-null (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69063](https://github.com/flutter/flutter/pull/69063) Add horizontal gesture support for CupertinoScrollbar (a: desktop, a: quality, cla: yes, f: cupertino, f: scrolling, framework, waiting for tree to go green)
[69107](https://github.com/flutter/flutter/pull/69107) remove unnecessary null aware operator (cla: yes, f: cupertino, framework)
[69160](https://github.com/flutter/flutter/pull/69160) Use runZonedGuarded() instead of deprecated onError. (cla: yes, f: cupertino, framework, tool)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69346](https://github.com/flutter/flutter/pull/69346) Adaptive constructor / TextInputAction docs fix (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[69451](https://github.com/flutter/flutter/pull/69451) Fix spelling errors (a: tests, cla: yes, f: cupertino, f: material design, framework, team)
[69594](https://github.com/flutter/flutter/pull/69594) Fix textfield messing with user-supplied input formatter list (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69620](https://github.com/flutter/flutter/pull/69620) Remove deprecated methods from BuildContext (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[70023](https://github.com/flutter/flutter/pull/70023) Revert "Migrate Flutter gallery test to null safety" (cla: yes, f: cupertino, f: material design, team, tool)
[70116](https://github.com/flutter/flutter/pull/70116) Migrate Flutter Gallery test to null safety (cla: yes, f: cupertino, f: material design, team, tool)
[70157](https://github.com/flutter/flutter/pull/70157) Update cupertino and material translations (a: internationalization, cla: yes, f: cupertino, f: material design)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70391](https://github.com/flutter/flutter/pull/70391) Revert "Default Keyboard ScrollActions with PrimaryScrollController" (cla: yes, f: cupertino, f: material design, framework)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[70500](https://github.com/flutter/flutter/pull/70500) More lints (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, framework, team)
[70656](https://github.com/flutter/flutter/pull/70656) Fixes Intrinsics for RenderParagraph and RenderWrap (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework)
[70675](https://github.com/flutter/flutter/pull/70675) Revert "Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (#70401)" (cla: yes, f: cupertino, f: material design, framework)
[70676](https://github.com/flutter/flutter/pull/70676) Added CupertinoFormSection, CupertinoSplitFormRow, and CupertinoTextFormField (cla: yes, f: cupertino, framework, waiting for tree to go green)
[70726](https://github.com/flutter/flutter/pull/70726) Remove the `nullOk` parameter from `Navigator.of` and add `Navigator.maybeOf` (cla: yes, f: cupertino, f: material design, framework, team)
[70893](https://github.com/flutter/flutter/pull/70893) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[70977](https://github.com/flutter/flutter/pull/70977) [flutter_tools] Remove usage of --precompiled flag for web tests (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, tool)
[71490](https://github.com/flutter/flutter/pull/71490) Revert "Added CupertinoFormSection, CupertinoSplitFormRow, and CupertinoTextFormField" (cla: yes, f: cupertino, framework)
[71522](https://github.com/flutter/flutter/pull/71522) Re-land CupertinoFormSection, CupertinoFormRow, and CupertinoTextFormFieldRow (cla: yes, f: cupertino, framework)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[71707](https://github.com/flutter/flutter/pull/71707) Add stretch property to CupertinoSliverNavigationBar (cla: yes, f: cupertino, framework)
[71843](https://github.com/flutter/flutter/pull/71843) Improve the ScrollBar behavior when nested (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71853](https://github.com/flutter/flutter/pull/71853) Add previews for CupertinoIcons (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72017](https://github.com/flutter/flutter/pull/72017) Remove deprecated CupertinoTextThemeData.brightness (cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)
[72040](https://github.com/flutter/flutter/pull/72040) Prepare to migrate API doc samples and snippets to null safety (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[72043](https://github.com/flutter/flutter/pull/72043) Deprecate `maxLengthEnforced` for text fields (cla: yes, f: cupertino, f: material design, framework)
[72046](https://github.com/flutter/flutter/pull/72046) Add footer to CupertinoFormSection and fix CupertinoFormSection margins. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72316](https://github.com/flutter/flutter/pull/72316) Remove Scrollbar.isAlwaysShown assert based on Scrollbar.controller (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72384](https://github.com/flutter/flutter/pull/72384) Fix cupertino icons mapping which was misaligned by 1 (cla: yes, f: cupertino, framework, team)
[72410](https://github.com/flutter/flutter/pull/72410) Remove unused dart:async imports. (cla: yes, f: cupertino, framework, tool, waiting for tree to go green)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72766](https://github.com/flutter/flutter/pull/72766) Migrated some cupertino doc comments to null safety. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72903](https://github.com/flutter/flutter/pull/72903) Remove deprecated Element methods (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[72927](https://github.com/flutter/flutter/pull/72927) Improve Cupertino docs (cla: yes, f: cupertino, framework)
[72933](https://github.com/flutter/flutter/pull/72933) fix(cupertinoDatePicker): do not display previous day when minimumDat… (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72939](https://github.com/flutter/flutter/pull/72939) Complete migration to null safety in api documentation (a: null-safety, cla: yes, f: cupertino, f: material design, framework, team)
[73276](https://github.com/flutter/flutter/pull/73276) Fix dateAndTime and time modes of CupertinoDatePicker. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73352](https://github.com/flutter/flutter/pull/73352) Deprecated obsolete Material classes: FlatButton, RaisedButton, OutlineButton (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73486](https://github.com/flutter/flutter/pull/73486) Remove "unnecessary" imports in flutter/src/cupertino (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73578](https://github.com/flutter/flutter/pull/73578) Cupertino text selection menu customization (cla: yes, f: cupertino, f: material design, framework)
[73604](https://github.com/flutter/flutter/pull/73604) Remove deprecated CupertinoDialog (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73745](https://github.com/flutter/flutter/pull/73745) Remove deprecated actionsForegroundColor from Cupertino[Sliver]NavigationBar (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73772](https://github.com/flutter/flutter/pull/73772) Update CupertinoSlidingSegmentedControl (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73829](https://github.com/flutter/flutter/pull/73829) Expose DialogRoutes for state restoration support (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73882](https://github.com/flutter/flutter/pull/73882) Mac context menu (cla: yes, f: cupertino, f: material design, framework)
[73900](https://github.com/flutter/flutter/pull/73900) Added CupertinoButton alignment property (cla: yes, f: cupertino, framework)
[73985](https://github.com/flutter/flutter/pull/73985) [flutter_releases] Flutter 1.25.0-8.3.pre framework cherrypicks (cla: yes, engine, f: cupertino, framework, team, tool)
[73992](https://github.com/flutter/flutter/pull/73992) BorderTween.lerp supports null begin/end values (cla: yes, f: cupertino, framework)
[73993](https://github.com/flutter/flutter/pull/73993) Fix canpop logic to be more robust (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74066](https://github.com/flutter/flutter/pull/74066) Remove unused semantics tap action for readonly textfield and selecta… (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74077](https://github.com/flutter/flutter/pull/74077) Expand Stack fix to more exporting libraries (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74088](https://github.com/flutter/flutter/pull/74088) Revert "Improve the ScrollBar behavior when nested" (cla: yes, f: cupertino, f: material design, framework)
[74104](https://github.com/flutter/flutter/pull/74104) Reland "Improve the ScrollBar behavior when nested (#71843)" (cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[74286](https://github.com/flutter/flutter/pull/74286) Material Desktop Context Menu (cla: yes, f: cupertino, f: material design, framework)
[74454](https://github.com/flutter/flutter/pull/74454) Space and arrow keys in a text field shouldn't scroll (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74622](https://github.com/flutter/flutter/pull/74622) [flutter_tools] Consistently set the working directory for Flutter Test (a: internationalization, cla: yes, f: cupertino, f: material design, team, tool, waiting for tree to go green)
[74627](https://github.com/flutter/flutter/pull/74627) use predefined constants (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74635](https://github.com/flutter/flutter/pull/74635) Update localizations (a: internationalization, cla: yes, f: cupertino, f: material design)
[74661](https://github.com/flutter/flutter/pull/74661) remove some stray nullOK mentions from docs (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74669](https://github.com/flutter/flutter/pull/74669) default CupertinoSliverNavigationBar's stretch to false (cla: yes, f: cupertino, framework, waiting for tree to go green)
### a: tests - 104 pull request(s)
[63834](https://github.com/flutter/flutter/pull/63834) Treat hover events as normal pointer events, and bring them back to Listener (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[63996](https://github.com/flutter/flutter/pull/63996) fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool)
[64846](https://github.com/flutter/flutter/pull/64846) Expose GestureBinding.handlePointerEvent, replacing dispatchEvent as the preferred way to dispatch events (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[65072](https://github.com/flutter/flutter/pull/65072) Find text containing in tests (a: tests, cla: yes, framework, waiting for tree to go green)
[65193](https://github.com/flutter/flutter/pull/65193) Generate RawKeyEvents for iOS 13.4+ (a: tests, cla: yes, framework, team)
[65444](https://github.com/flutter/flutter/pull/65444) Make parameter optional (a: tests, cla: yes, framework, waiting for tree to go green)
[65499](https://github.com/flutter/flutter/pull/65499) [web] Inform the engine when read-only flag is flipped (a: tests, a: text input, cla: yes, framework, platform-web, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65602](https://github.com/flutter/flutter/pull/65602) Reland "perf test for measuring scroll smoothness" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[65635](https://github.com/flutter/flutter/pull/65635) Revert "Reland "Make sure all isolates start during flutter driver tests"" (a: tests, cla: yes, framework, waiting for tree to go green)
[65660](https://github.com/flutter/flutter/pull/65660) Revert "Reland "Make sure all isolates start during flutter driver te… (a: tests, cla: yes, framework)
[65667](https://github.com/flutter/flutter/pull/65667) Fix the `character` field of the `RawKeyEvent` to hold correct data on non-Android platforms. (a: desktop, a: tests, cla: yes, framework, team)
[65703](https://github.com/flutter/flutter/pull/65703) Make sure all isolates start during flutter driver tests. (a: tests, cla: yes, framework, waiting for tree to go green)
[65704](https://github.com/flutter/flutter/pull/65704) Revert "fuchsia_remote_debug_protocol allows open port on remote device" (a: tests, cla: yes, framework, tool)
[65817](https://github.com/flutter/flutter/pull/65817) Clarify the docs on what scrollUntilVisible does (a: tests, cla: yes, d: api docs, documentation, framework)
[66054](https://github.com/flutter/flutter/pull/66054) Add versioning to gold endpoints (a: quality, a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)
[66139](https://github.com/flutter/flutter/pull/66139) Fix local gold output for flutter/flutter (a: quality, a: tests, cla: yes, framework, waiting for tree to go green)
[66142](https://github.com/flutter/flutter/pull/66142) Fix 'Invalid Image Data' for local Gold testing (a: error message, a: tests, cla: yes, framework, waiting for tree to go green)
[66271](https://github.com/flutter/flutter/pull/66271) Reland fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[66455](https://github.com/flutter/flutter/pull/66455) apply upcoming lint cast_nullable_to_non_nullable (a: tests, cla: yes, framework)
[66500](https://github.com/flutter/flutter/pull/66500) Flutter 1.22.0-12.2.pre Framework cherrypicks (a: tests, cla: yes, engine, framework, team, tool)
[66663](https://github.com/flutter/flutter/pull/66663) Migrate flutter_test (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[66688](https://github.com/flutter/flutter/pull/66688) Dispose of images after using them (a: tests, cla: yes, framework, perf: memory, severe: performance)
[66743](https://github.com/flutter/flutter/pull/66743) cleanup completed todo and unused variable for WidgetTester (a: tests, cla: yes, framework, waiting for tree to go green)
[66745](https://github.com/flutter/flutter/pull/66745) move resampler to handlePointerEvent and fix complex_layout_android__scroll_smoothness with PointerEvent (a: tests, cla: yes, framework, team, waiting for tree to go green)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66916](https://github.com/flutter/flutter/pull/66916) Re-enables tests previously failing due to new semantics flag. (a: accessibility, a: tests, cla: yes, framework, waiting for tree to go green)
[67058](https://github.com/flutter/flutter/pull/67058) Migrate the tests of flutter_test to null-safety (a: tests, cla: yes, framework, waiting for tree to go green)
[67083](https://github.com/flutter/flutter/pull/67083) [flutter] Update some tests in flutter/test (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67100](https://github.com/flutter/flutter/pull/67100) Revert dispose images when done (a: tests, cla: yes, framework)
[67155](https://github.com/flutter/flutter/pull/67155) [null-safety] migrate app dependencies of flutter driver (a: accessibility, a: null-safety, a: tests, cla: yes, framework, team)
[67166](https://github.com/flutter/flutter/pull/67166) migrate material to nullsafety (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67177](https://github.com/flutter/flutter/pull/67177) Reland dispose images when done (#67100) (a: tests, cla: yes, framework)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67425](https://github.com/flutter/flutter/pull/67425) [flutter_test] handle breaking change to test main (a: tests, cla: yes, framework, team, tool)
[67433](https://github.com/flutter/flutter/pull/67433) Revert "[null-safety] migrate app dependencies of flutter driver" (a: accessibility, a: tests, cla: yes, framework, team)
[67441](https://github.com/flutter/flutter/pull/67441) [null-safety] reland: migrate app side flutter driver to null-safety (a: accessibility, a: tests, cla: yes, framework, team)
[67456](https://github.com/flutter/flutter/pull/67456) Flutter Driver - Create widget finders from serialized finders extensions (a: tests, cla: yes, framework, waiting for tree to go green)
[67468](https://github.com/flutter/flutter/pull/67468) Remove Cirrus support for Gold (a: tests, cla: yes, framework, team, team: infra, will affect goldens)
[67525](https://github.com/flutter/flutter/pull/67525) unnecessary null comparison (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67561](https://github.com/flutter/flutter/pull/67561) Revert "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team)
[67570](https://github.com/flutter/flutter/pull/67570) Reland "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team, waiting for tree to go green)
[67629](https://github.com/flutter/flutter/pull/67629) enable lint cast_nullable_to_non_nullable (a: tests, cla: yes, f: cupertino, f: material design, framework)
[67687](https://github.com/flutter/flutter/pull/67687) Revert "Flutter Driver - Create widget finders from serialized finders extensions" (a: tests, cla: yes, framework)
[67711](https://github.com/flutter/flutter/pull/67711) Reland "Flutter Driver - Create widget finders from serialized finders extensions" with null safety (a: tests, cla: yes, framework)
[67769](https://github.com/flutter/flutter/pull/67769) Flutter driver patch: export finder factory (a: tests, cla: yes, framework)
[67777](https://github.com/flutter/flutter/pull/67777) Revert "Flutter driver patch: export finder factory" (a: tests, framework)
[67779](https://github.com/flutter/flutter/pull/67779) Patch: Flutter driver export finder factory (a: tests, cla: yes, framework)
[67916](https://github.com/flutter/flutter/pull/67916) Flutter Driver: command extensions and extension feature cleanup (a: tests, cla: yes, framework, waiting for tree to go green)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[67952](https://github.com/flutter/flutter/pull/67952) Replace obsolete FlatButton reference in flutter_driver extension_test.dart (a: tests, cla: yes, framework)
[68019](https://github.com/flutter/flutter/pull/68019) Set slider semantics flag for sliders (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68032](https://github.com/flutter/flutter/pull/68032) [flutter_test] export fake from flutter_test (a: tests, cla: yes, framework)
[68034](https://github.com/flutter/flutter/pull/68034) [NNBD] Migrate some Widgets tests (a: tests, cla: yes, framework, team, waiting for tree to go green)
[68038](https://github.com/flutter/flutter/pull/68038) Mark unusuallyLongTimeout as internal (a: tests, cla: yes, framework, waiting for tree to go green)
[68065](https://github.com/flutter/flutter/pull/68065) Improve performance of collectAllElements (a: tests, cla: yes, framework, perf: speed, severe: performance, t: flutter driver, team, waiting for tree to go green)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68157](https://github.com/flutter/flutter/pull/68157) [NNBD] Migrate some Widgets tests (a: null-safety, a: tests, cla: yes, framework, team, waiting for tree to go green)
[68207](https://github.com/flutter/flutter/pull/68207) Revert "Improve performance of collectAllElements" (a: tests, cla: yes, framework, team)
[68214](https://github.com/flutter/flutter/pull/68214) reland List queue search optimization (a: tests, cla: yes, framework, team)
[68301](https://github.com/flutter/flutter/pull/68301) use_is_even_rather_than_modulo (a: accessibility, a: tests, cla: yes, f: material design, framework, team)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68505](https://github.com/flutter/flutter/pull/68505) Updated one reference to FlatButton in real_tests/extension_test.dart (a: tests, cla: yes, framework)
[68642](https://github.com/flutter/flutter/pull/68642) Sound null safety for framework and flutter_test (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68654](https://github.com/flutter/flutter/pull/68654) Driver vm service (a: tests, cla: yes, framework, t: flutter driver, team, waiting for tree to go green)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68894](https://github.com/flutter/flutter/pull/68894) retry getting the main isolate (a: tests, cla: yes, framework)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69074](https://github.com/flutter/flutter/pull/69074) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69077](https://github.com/flutter/flutter/pull/69077) Reland "Driver vm service"" (a: tests, cla: yes, framework, team)
[69089](https://github.com/flutter/flutter/pull/69089) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69126](https://github.com/flutter/flutter/pull/69126) reland driver vm_service migration (a: tests, cla: yes, framework, team, tool)
[69226](https://github.com/flutter/flutter/pull/69226) [flutter_tools] measure driver success and failure (a: tests, cla: yes, framework, team)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69316](https://github.com/flutter/flutter/pull/69316) [flutter_tools] allow default driver log to fail due to IO error (a: tests, cla: yes, framework)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[69451](https://github.com/flutter/flutter/pull/69451) Fix spelling errors (a: tests, cla: yes, f: cupertino, f: material design, framework, team)
[69617](https://github.com/flutter/flutter/pull/69617) Remove references to `Window`, and switch usages to `PlatformDispatcher` or `SingletonFlutterWindow` (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[69630](https://github.com/flutter/flutter/pull/69630) Update plugins dependencies for the Gallery test (a: null-safety, a: tests, cla: yes, team, tool)
[69761](https://github.com/flutter/flutter/pull/69761) Link the API docs on waitFor() to the docs for runUnsynchronized() (a: tests, cla: yes, framework)
[69904](https://github.com/flutter/flutter/pull/69904) Ignore several import_of_legacy_library_into_null_safe (a: tests, cla: yes, framework)
[70252](https://github.com/flutter/flutter/pull/70252) Fix Platform channel errors in web tests (a: tests, cla: yes, framework, waiting for tree to go green)
[70319](https://github.com/flutter/flutter/pull/70319) Revert usages of the binding's platformDispatcher to use window instead (a: accessibility, a: tests, cla: yes, framework)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70398](https://github.com/flutter/flutter/pull/70398) Properly initialize RestorationManager in the TestBinding (a: tests, cla: yes, framework, waiting for tree to go green)
[70424](https://github.com/flutter/flutter/pull/70424) Cherry pick - Flutter 1.24 candidate.11 (a: accessibility, a: tests, cla: yes, framework, team)
[70491](https://github.com/flutter/flutter/pull/70491) Remove some unnecessary casts, now that changes have rolled from the engine (a: internationalization, a: tests, cla: yes, framework, waiting for tree to go green)
[70500](https://github.com/flutter/flutter/pull/70500) More lints (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, framework, team)
[70656](https://github.com/flutter/flutter/pull/70656) Fixes Intrinsics for RenderParagraph and RenderWrap (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework)
[70730](https://github.com/flutter/flutter/pull/70730) Improve performance of Widget Tests (a: tests, cla: yes, framework, waiting for tree to go green)
[70862](https://github.com/flutter/flutter/pull/70862) [flutter_test] Correct flutter_test_configuration.dart documentation (a: tests, cla: yes, framework, waiting for tree to go green)
[70999](https://github.com/flutter/flutter/pull/70999) [flutter_tools] fix port leak in flutter_driver (a: tests, cla: yes, framework, tool)
[71656](https://github.com/flutter/flutter/pull/71656) enableFlutterDriverExtension: optionally disable text entry emulation (a: tests, cla: yes, framework)
[71730](https://github.com/flutter/flutter/pull/71730) Turn off flaky module_test_ios FlutterUITests (a: tests, cla: yes, team)
[71760](https://github.com/flutter/flutter/pull/71760) Make macrobenchmarks buildable for macos (a: tests, cla: yes, platform-mac, team)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72145](https://github.com/flutter/flutter/pull/72145) Reenable module_test_ios UI tests (a: tests, cla: yes, platform-ios, team, waiting for tree to go green)
[73545](https://github.com/flutter/flutter/pull/73545) Re-enable a ensureVisible test case (a: tests, cla: yes, framework, waiting for tree to go green)
[73586](https://github.com/flutter/flutter/pull/73586) Mark firebase tests as flaky (a: tests, cla: yes, team, team: infra)
[73754](https://github.com/flutter/flutter/pull/73754) Remove deprecated WaitUntil[NoTransientCallbacks, NoPendingFrame, FirstFrameRasterized] methods from flutter_driver (a: tests, cla: yes, framework, severe: API break, waiting for tree to go green)
[74006](https://github.com/flutter/flutter/pull/74006) Remove smoke_catalina_hot_mode_dev_cycle__benchmark (a: tests, cla: yes, platform-mac, team, team: infra)
[74080](https://github.com/flutter/flutter/pull/74080) Add verbose build flag to ios_app_with_extensions_test (a: tests, cla: yes, team)
[74671](https://github.com/flutter/flutter/pull/74671) Roll packages (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)
### platform-ios - 54 pull request(s)
[65198](https://github.com/flutter/flutter/pull/65198) Avoid thinning frameworks in iOS extensions (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[65793](https://github.com/flutter/flutter/pull/65793) Match benchmark iOS project bundle identifiers (cla: yes, platform-ios, team)
[65961](https://github.com/flutter/flutter/pull/65961) Check that header exists instead of contents of header in build iOS module test (cla: yes, platform-ios, team)
[65977](https://github.com/flutter/flutter/pull/65977) Inform user how to fix permissions when the observatory URL isn't found on iOS 14 (cla: yes, platform-ios, tool, waiting for tree to go green)
[66092](https://github.com/flutter/flutter/pull/66092) Stream logging from attached debugger on iOS (cla: yes, platform-ios, tool)
[66310](https://github.com/flutter/flutter/pull/66310) Listen to Debug VM stream to get Stdout logs from VMService (cla: yes, platform-ios, tool, waiting for tree to go green)
[66399](https://github.com/flutter/flutter/pull/66399) Stream logging from attached debugger on iOS 13+ (cla: yes, platform-ios, team, tool)
[66524](https://github.com/flutter/flutter/pull/66524) [Icons] Update icon version to point to file that iOS will prefer. (cla: yes, f: material design, platform-ios, t: xcode, waiting for tree to go green)
[66590](https://github.com/flutter/flutter/pull/66590) Force plugins to inherit minimum iOS version from Flutter app (cla: yes, platform-ios, t: xcode, team, tool)
[66621](https://github.com/flutter/flutter/pull/66621) Remove "Try accepting the local network permissions popup" warning (a: triage improvements, cla: yes, platform-ios, tool, waiting for tree to go green)
[67452](https://github.com/flutter/flutter/pull/67452) Add publish-port flag to disable mDNS port discovery (cla: yes, platform-ios, tool, waiting for tree to go green)
[67598](https://github.com/flutter/flutter/pull/67598) Build xcarchive command (cla: yes, platform-ios, t: xcode, team, tool)
[67781](https://github.com/flutter/flutter/pull/67781) Build IPA command (cla: yes, platform-ios, t: xcode, tool)
[67970](https://github.com/flutter/flutter/pull/67970) Detect ARM macOS arch with sysctl hw.optional.arm64 (cla: yes, platform-ios, tool)
[68245](https://github.com/flutter/flutter/pull/68245) Revert noninteractive lldb debugging, timeout warning (cla: yes, platform-ios, tool)
[68542](https://github.com/flutter/flutter/pull/68542) Add CocoaPods sudo installation note (cla: yes, platform-ios, tool, waiting for tree to go green)
[68729](https://github.com/flutter/flutter/pull/68729) App.framework must support iOS 8 for older Flutter projects (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)
[68855](https://github.com/flutter/flutter/pull/68855) Apple silicon arch -arm64 to -arm64e (cla: yes, platform-ios, platform-mac, t: xcode, tool, waiting for tree to go green)
[69720](https://github.com/flutter/flutter/pull/69720) Deprecate build ios-framework --universal (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[69731](https://github.com/flutter/flutter/pull/69731) Compile snapshot_assembly with sdk root set in Xcode (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69736](https://github.com/flutter/flutter/pull/69736) Methods in build_ios_framework for universal and XCFrameworks (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)
[69809](https://github.com/flutter/flutter/pull/69809) Update CocoaPods recommended version to 1.9 (cla: yes, platform-ios, t: xcode, team, tool)
[69837](https://github.com/flutter/flutter/pull/69837) Run more xcodebuild commands in native arm on Apple Silicon (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69840](https://github.com/flutter/flutter/pull/69840) Build either iphoneos or iphonesimulator App.framework, not both (a: existing-apps, cla: yes, platform-ios, tool)
[70224](https://github.com/flutter/flutter/pull/70224) Move Flutter.framework to build directory instead of ios/Flutter (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[70405](https://github.com/flutter/flutter/pull/70405) Add -miphoneos-version-min=8.0 to App framework stub (cla: yes, platform-ios, tool)
[70647](https://github.com/flutter/flutter/pull/70647) Allow any iOS app to be added to an existing host app (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[70719](https://github.com/flutter/flutter/pull/70719) Add extra Flutter settings to ios_app_with_extensions Podfile (cla: yes, platform-ios, t: xcode, team, tool)
[70724](https://github.com/flutter/flutter/pull/70724) Turn off bitcode in ios_app_with_extensions to match normal Flutter projects (cla: yes, platform-ios, team)
[70735](https://github.com/flutter/flutter/pull/70735) Force regeneration of old Podfile (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[70896](https://github.com/flutter/flutter/pull/70896) Use module Profile scheme when profiling (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[71095](https://github.com/flutter/flutter/pull/71095) Rename SdkType -> EnvironmentType (cla: yes, platform-ios, tool, waiting for tree to go green)
[71100](https://github.com/flutter/flutter/pull/71100) Make simulator framework test check explicit (a: existing-apps, cla: yes, platform-ios, team, waiting for tree to go green)
[71103](https://github.com/flutter/flutter/pull/71103) Move Flutter.podspec to add-to-app project template (a: existing-apps, cla: yes, platform-ios, tool)
[71113](https://github.com/flutter/flutter/pull/71113) Add XCFramework artifacts (cla: yes, platform-ios, tool, waiting for tree to go green)
[71495](https://github.com/flutter/flutter/pull/71495) Adopt Flutter.xcframework in tool (cla: yes, platform-ios, t: xcode, team, tool)
[71525](https://github.com/flutter/flutter/pull/71525) ios_host_app Podfile search paths (cla: yes, platform-ios, team)
[71531](https://github.com/flutter/flutter/pull/71531) Update CI to CocoaPods 1.10 (cla: yes, platform-ios, team, team: infra)
[71752](https://github.com/flutter/flutter/pull/71752) Remove unused local from xcode_backend (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[71862](https://github.com/flutter/flutter/pull/71862) Remove manual Flutter linking for iOS projects (cla: yes, platform-ios, t: xcode, tool)
[71870](https://github.com/flutter/flutter/pull/71870) Stop using Xcode build settings in materialized Info.plist (cla: yes, platform-ios, tool)
[72145](https://github.com/flutter/flutter/pull/72145) Reenable module_test_ios UI tests (a: tests, cla: yes, platform-ios, team, waiting for tree to go green)
[72323](https://github.com/flutter/flutter/pull/72323) Launch named iOS simulators (cla: yes, platform-ios, tool)
[72761](https://github.com/flutter/flutter/pull/72761) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[72834](https://github.com/flutter/flutter/pull/72834) Check for iOS simulator SDK during AOT validation instead of assuming x86 (cla: yes, platform-ios, tool)
[73070](https://github.com/flutter/flutter/pull/73070) Use simctl exit code instead of stderr (cla: yes, platform-ios, t: xcode, tool)
[73110](https://github.com/flutter/flutter/pull/73110) Default add-to-app xcode_backend script to be verbose (a: existing-apps, cla: yes, platform-ios, t: xcode, tool)
[73112](https://github.com/flutter/flutter/pull/73112) Optionally include CocoaPods xcconfig (cla: yes, platform-ios, t: xcode, team, tool)
[73383](https://github.com/flutter/flutter/pull/73383) Remove build ios-framework --universal flag (a: existing-apps, cla: yes, platform-ios, team, tool)
[73442](https://github.com/flutter/flutter/pull/73442) Run pod repo update in iOS extension test (cla: yes, platform-ios, team)
[73458](https://github.com/flutter/flutter/pull/73458) Exclude arm64 from supported iOS simulator architectures (cla: yes, platform-ios, t: xcode, team, tool)
[73508](https://github.com/flutter/flutter/pull/73508) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73630](https://github.com/flutter/flutter/pull/73630) Generate dSYM files during iOS archive (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[74003](https://github.com/flutter/flutter/pull/74003) Build x86_64 iOS apps with simulator local engines (a: existing-apps, cla: yes, platform-ios, tool)
### engine - 52 pull request(s)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65902](https://github.com/flutter/flutter/pull/65902) Flutter 1.22.0-12.1.pre cherrypick (cla: yes, engine)
[65949](https://github.com/flutter/flutter/pull/65949) [manual roll] Roll Engine from 1ef10b240e28 to f84e7a019663 (12 revisions) (cla: yes, engine, team, waiting for tree to go green)
[66136](https://github.com/flutter/flutter/pull/66136) [versions] update to latest source span and roll engine to 4b8477d11573d233e6791204191c0090f733b05d (cla: yes, engine, team, tool, waiting for tree to go green)
[66500](https://github.com/flutter/flutter/pull/66500) Flutter 1.22.0-12.2.pre Framework cherrypicks (a: tests, cla: yes, engine, framework, team, tool)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66976](https://github.com/flutter/flutter/pull/66976) roll back engine to a6a6fd163b99e4ac53319afe69bce1a043116b1e (cla: yes, engine)
[66978](https://github.com/flutter/flutter/pull/66978) Redo rollback to a6a6fd163b99e4ac53319afe69bce1a043116b1e (cla: yes, engine)
[67193](https://github.com/flutter/flutter/pull/67193) Roll flutter engine to a24c7c13925e4e3282f7b85814b70e63782fa057 (cla: yes, engine, framework)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67546](https://github.com/flutter/flutter/pull/67546) Pick CP engine version 80dbeb3f2dfff1621e1efd6b2aad508adb09ad33 (cla: yes, engine)
[67552](https://github.com/flutter/flutter/pull/67552) [flutter_releases] Flutter 1.22.1 Framework Cherrypicks (cla: yes, engine, f: material design, framework, team, tool)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68158](https://github.com/flutter/flutter/pull/68158) revert engine to 11d756a62ed0ddf87a9ce20b219b55300ec6b67d (cla: yes, engine)
[68168](https://github.com/flutter/flutter/pull/68168) [flutter_releases] Flutter 1.23.0-18.1.pre Framework Cherrypicks (cla: yes, engine, tool)
[68212](https://github.com/flutter/flutter/pull/68212) Revert "revert engine to 11d756a62ed0ddf87a9ce20b219b55300ec6b67d" (cla: yes, engine)
[68479](https://github.com/flutter/flutter/pull/68479) Revert "Roll Engine from d03b759d049e to 499a70f5e21b (25 revisions)" (cla: yes, engine)
[68789](https://github.com/flutter/flutter/pull/68789) Roll engine to defa8be2b10650dad50dfee9324ed8d16eeec13f (cla: yes, engine)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69405](https://github.com/flutter/flutter/pull/69405) [null-safety] update tests and tool auto-detection for null safe dart (a: accessibility, cla: yes, engine, team, tool, waiting for tree to go green)
[69418](https://github.com/flutter/flutter/pull/69418) Roll Engine from 99cc50dfffab to 8d3d953192aa (cla: yes, engine)
[69440](https://github.com/flutter/flutter/pull/69440) [null-safety] enable null safety (cla: yes, engine)
[69614](https://github.com/flutter/flutter/pull/69614) Remove usage of --enable-experiment to analysis server (cla: yes, engine, framework, tool)
[69889](https://github.com/flutter/flutter/pull/69889) Revert "Roll Engine from bf259226b224 to e66a720137d9 (3 revisions)" (cla: yes, engine)
[69988](https://github.com/flutter/flutter/pull/69988) Revert "Roll Engine from d21bb634e054 to cf376142ed5f (2 revisions) (#69976)" (cla: yes, engine)
[70000](https://github.com/flutter/flutter/pull/70000) Revert "Roll Engine from d21bb634e054 to 2440ad6d39a5 (8 revisions)" (cla: yes, engine)
[70078](https://github.com/flutter/flutter/pull/70078) Roll engine and fix pubspecs that do not have a Dart SDK constraint (cla: yes, engine, team, tool)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70388](https://github.com/flutter/flutter/pull/70388) Revert "Roll Engine from c5c7e83b9e53 to d97a81c88983 (6 revisions)" (cla: yes, engine)
[70495](https://github.com/flutter/flutter/pull/70495) [flutter_releases] Flutter 1.24.0-10.1.pre framework cherrypicks (cla: yes, engine, tool)
[70737](https://github.com/flutter/flutter/pull/70737) [flutter_releases] Flutter 1.24.0-10.2.pre framework cherrypicks (cla: yes, engine, team)
[71114](https://github.com/flutter/flutter/pull/71114) roll engine hotfix (cla: yes, engine)
[71286](https://github.com/flutter/flutter/pull/71286) Update engine hash for 1.25-candidate.1 (cla: yes, engine)
[71519](https://github.com/flutter/flutter/pull/71519) Revert "Roll Engine from 20caf5496951 to d2ad4419bb07 (27 revisions) … (cla: yes, engine)
[71879](https://github.com/flutter/flutter/pull/71879) Add DynamicFeature system channel (cla: yes, engine, framework, platform-android)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72155](https://github.com/flutter/flutter/pull/72155) Revert "Roll Engine from 4797b0665242 to 4794d0448f8f (23 revisions)" (cla: yes, engine)
[72317](https://github.com/flutter/flutter/pull/72317) Revert "Roll Engine from 4797b0665242 to 360a16ad7542 (40 revisions) … (cla: yes, engine)
[72382](https://github.com/flutter/flutter/pull/72382) [flutter_releases] Flutter 1.25.0-8.1.pre framework cherrypicks (cla: yes, engine, framework)
[72754](https://github.com/flutter/flutter/pull/72754) [flutter_releases] Flutter Beta 1.25.0-8.2 Framework Cherrypicks (cla: yes, engine, framework, team, tool)
[72817](https://github.com/flutter/flutter/pull/72817) Cherrypick engine to 63a92ca0db5f5db462714f60f5b8e88bcef8f57b (cla: yes, engine)
[72895](https://github.com/flutter/flutter/pull/72895) DeferredComponent utility class for manual handling of Deferred Components (cla: yes, customer: money (g3), engine, framework, severe: new feature, waiting for tree to go green)
[73490](https://github.com/flutter/flutter/pull/73490) Revert "Roll Engine from 2e5833b7c572 to 7f00e2f6c53c (3 revisions)" (cla: yes, engine)
[73522](https://github.com/flutter/flutter/pull/73522) Flutter 1.26 candidate.8 (cla: yes, engine, f: material design, framework)
[73609](https://github.com/flutter/flutter/pull/73609) Revert "Roll Engine from 2e5833b7c572 to 9cb4d2dd243d (32 revisions)" (cla: yes, engine)
[73610](https://github.com/flutter/flutter/pull/73610) Revert "Revert "Roll Engine from 2e5833b7c572 to 9cb4d2dd243d (32 revisions)"" (cla: yes, engine)
[73765](https://github.com/flutter/flutter/pull/73765) Revert "Roll Engine from 0ed964d6b764 to 2dee0d2f071b (8 revisions)" (cla: yes, engine)
[73985](https://github.com/flutter/flutter/pull/73985) [flutter_releases] Flutter 1.25.0-8.3.pre framework cherrypicks (cla: yes, engine, f: cupertino, framework, team, tool)
[74355](https://github.com/flutter/flutter/pull/74355) [flutter_releases] Flutter Stable 1.22.6 Framework Cherrypicks (cla: yes, engine, tool)
[74401](https://github.com/flutter/flutter/pull/74401) Cherrypick engine to 78200e894425e978bacba54320ef63e570af234a (cla: yes, engine)
[74572](https://github.com/flutter/flutter/pull/74572) Cherrypick engine to 5c9b34399c2a4c6087feeae81f710fe7651568f5 (cla: yes, engine)
### a: accessibility - 46 pull request(s)
[62616](https://github.com/flutter/flutter/pull/62616) Migrate foundation test to nullsafety (a: accessibility, a: null-safety, cla: yes, framework)
[65528](https://github.com/flutter/flutter/pull/65528) Reland "Nnbd widgets" (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65766](https://github.com/flutter/flutter/pull/65766) Adds getter/setter for slider semantics flag. (a: accessibility, cla: yes, framework)
[66057](https://github.com/flutter/flutter/pull/66057) reland always adds alert label for alert dialog in Android (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[66916](https://github.com/flutter/flutter/pull/66916) Re-enables tests previously failing due to new semantics flag. (a: accessibility, a: tests, cla: yes, framework, waiting for tree to go green)
[67098](https://github.com/flutter/flutter/pull/67098) Migrate non-test files in flutter/test (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67155](https://github.com/flutter/flutter/pull/67155) [null-safety] migrate app dependencies of flutter driver (a: accessibility, a: null-safety, a: tests, cla: yes, framework, team)
[67306](https://github.com/flutter/flutter/pull/67306) fix nullability issues (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67433](https://github.com/flutter/flutter/pull/67433) Revert "[null-safety] migrate app dependencies of flutter driver" (a: accessibility, a: tests, cla: yes, framework, team)
[67441](https://github.com/flutter/flutter/pull/67441) [null-safety] reland: migrate app side flutter driver to null-safety (a: accessibility, a: tests, cla: yes, framework, team)
[67449](https://github.com/flutter/flutter/pull/67449) [NNBD] Migrates some rendering tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67453](https://github.com/flutter/flutter/pull/67453) Migrate framework tests for rendering, semantics, widgets to null safety (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67470](https://github.com/flutter/flutter/pull/67470) Remove examples/catalog (a: accessibility, cla: yes, d: examples, team, waiting for tree to go green)
[67542](https://github.com/flutter/flutter/pull/67542) Revert "Remove examples/catalog" (a: accessibility, cla: yes, d: examples, team)
[67545](https://github.com/flutter/flutter/pull/67545) Reland removal of examples/catalog (a: accessibility, cla: yes, d: examples, f: material design, framework, team, waiting for tree to go green)
[67550](https://github.com/flutter/flutter/pull/67550) Refactor devicelab logic to use TaskResult instead of JSON (a: accessibility, cla: yes, team, waiting for tree to go green)
[67561](https://github.com/flutter/flutter/pull/67561) Revert "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team)
[67562](https://github.com/flutter/flutter/pull/67562) [Material] Time picker semantics updates (a: accessibility, cla: yes, f: material design, framework)
[67570](https://github.com/flutter/flutter/pull/67570) Reland "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team, waiting for tree to go green)
[67682](https://github.com/flutter/flutter/pull/67682) Final definite assignment (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67849](https://github.com/flutter/flutter/pull/67849) Migrate even more widget framework tests to null safety. (a: accessibility, cla: yes, framework)
[67941](https://github.com/flutter/flutter/pull/67941) Migrate yet even more widget framework tests to null safety. (a: accessibility, cla: yes, framework)
[68088](https://github.com/flutter/flutter/pull/68088) [NNBD] More widget tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68150](https://github.com/flutter/flutter/pull/68150) Migrate some widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68160](https://github.com/flutter/flutter/pull/68160) Convert some more widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68173](https://github.com/flutter/flutter/pull/68173) [NNBD] Migrate more widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68301](https://github.com/flutter/flutter/pull/68301) use_is_even_rather_than_modulo (a: accessibility, a: tests, cla: yes, f: material design, framework, team)
[68409](https://github.com/flutter/flutter/pull/68409) [flutter_tools] add --android-gradle-daemon option, use in devicelab (a: accessibility, cla: yes, team, tool)
[68489](https://github.com/flutter/flutter/pull/68489) Revert "[flutter_tools] add --android-gradle-daemon option, use in devicelab" (a: accessibility, cla: yes, team, tool)
[68491](https://github.com/flutter/flutter/pull/68491) [flutter_tools] reland: --no-android-gradle-daemon in devicelab (a: accessibility, cla: yes, team, tool)
[69230](https://github.com/flutter/flutter/pull/69230) Allow adding/removing onTap/onDismiss to Semantics (a: accessibility, cla: yes, framework, waiting for tree to go green)
[69405](https://github.com/flutter/flutter/pull/69405) [null-safety] update tests and tool auto-detection for null safe dart (a: accessibility, cla: yes, engine, team, tool, waiting for tree to go green)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[69617](https://github.com/flutter/flutter/pull/69617) Remove references to `Window`, and switch usages to `PlatformDispatcher` or `SingletonFlutterWindow` (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[70319](https://github.com/flutter/flutter/pull/70319) Revert usages of the binding's platformDispatcher to use window instead (a: accessibility, a: tests, cla: yes, framework)
[70424](https://github.com/flutter/flutter/pull/70424) Cherry pick - Flutter 1.24 candidate.11 (a: accessibility, a: tests, cla: yes, framework, team)
[70500](https://github.com/flutter/flutter/pull/70500) More lints (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, framework, team)
[70656](https://github.com/flutter/flutter/pull/70656) Fixes Intrinsics for RenderParagraph and RenderWrap (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework)
[70808](https://github.com/flutter/flutter/pull/70808) Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[70977](https://github.com/flutter/flutter/pull/70977) [flutter_tools] Remove usage of --precompiled flag for web tests (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, tool)
[71096](https://github.com/flutter/flutter/pull/71096) Revert "Migrate template to Gradle 6.7 and AGP 4.1.0" (a: accessibility, cla: yes, d: examples, team, tool)
[71446](https://github.com/flutter/flutter/pull/71446) Relands: Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[72169](https://github.com/flutter/flutter/pull/72169) Migrate the first batch of API samples to null safety (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[74383](https://github.com/flutter/flutter/pull/74383) Remove "unnecessary" imports in dev/integration_tests (a: accessibility, cla: yes, f: material design, team, waiting for tree to go green)
### d: examples - 43 pull request(s)
[64240](https://github.com/flutter/flutter/pull/64240) Add sample code to FadeTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64638](https://github.com/flutter/flutter/pull/64638) Add sample code to DefaultTextStyleTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64698](https://github.com/flutter/flutter/pull/64698) Added sample code to AnimatedAlign (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64766](https://github.com/flutter/flutter/pull/64766) Updated README.md file of the hello_world example (cla: yes, d: examples, team, waiting for tree to go green)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65904](https://github.com/flutter/flutter/pull/65904) Updated references to obsolete Material button classes in examples (cla: yes, d: examples, team, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67440](https://github.com/flutter/flutter/pull/67440) Removed remaining obsolete button widget references (cla: yes, d: examples, f: material design, framework, team)
[67470](https://github.com/flutter/flutter/pull/67470) Remove examples/catalog (a: accessibility, cla: yes, d: examples, team, waiting for tree to go green)
[67542](https://github.com/flutter/flutter/pull/67542) Revert "Remove examples/catalog" (a: accessibility, cla: yes, d: examples, team)
[67545](https://github.com/flutter/flutter/pull/67545) Reland removal of examples/catalog (a: accessibility, cla: yes, d: examples, f: material design, framework, team, waiting for tree to go green)
[67940](https://github.com/flutter/flutter/pull/67940) Fix NestedScrollView sample code (a: quality, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[68361](https://github.com/flutter/flutter/pull/68361) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)
[68642](https://github.com/flutter/flutter/pull/68642) Sound null safety for framework and flutter_test (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68729](https://github.com/flutter/flutter/pull/68729) App.framework must support iOS 8 for older Flutter projects (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)
[68736](https://github.com/flutter/flutter/pull/68736) Remove `nullOk` in `MediaQuery.of` (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68744](https://github.com/flutter/flutter/pull/68744) Migrate all of examples/layers to sound null safety (cla: yes, d: examples, team)
[68905](https://github.com/flutter/flutter/pull/68905) Remove `nullOk` parameter from Cupertino color resolution APIs (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[70112](https://github.com/flutter/flutter/pull/70112) [null-safety] migrate hello_world to null safety (cla: yes, d: examples, team)
[70184](https://github.com/flutter/flutter/pull/70184) [FloatingActionButtonLocation] Add diagrams to documentation of FloatingActionButtonLocation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70224](https://github.com/flutter/flutter/pull/70224) Move Flutter.framework to build directory instead of ios/Flutter (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70379](https://github.com/flutter/flutter/pull/70379) Added Tabar Code samples (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70382](https://github.com/flutter/flutter/pull/70382) Update FlexibleSpaceBar dartpad sample (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70808](https://github.com/flutter/flutter/pull/70808) Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[71050](https://github.com/flutter/flutter/pull/71050) Add dartpad sample for AnimatedPadding (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71093](https://github.com/flutter/flutter/pull/71093) AdoptAWidget: ColorFiltered (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71096](https://github.com/flutter/flutter/pull/71096) Revert "Migrate template to Gradle 6.7 and AGP 4.1.0" (a: accessibility, cla: yes, d: examples, team, tool)
[71174](https://github.com/flutter/flutter/pull/71174) AdoptAWidget: PageView (cla: yes, d: api docs, d: examples, documentation, framework)
[71446](https://github.com/flutter/flutter/pull/71446) Relands: Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[71748](https://github.com/flutter/flutter/pull/71748) Profiling Xcode app should use Flutter profile mode (cla: yes, d: examples, platform-mac, team, tool)
[71957](https://github.com/flutter/flutter/pull/71957) Stop using the List constructor (cla: yes, d: examples, team, waiting for tree to go green)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72558](https://github.com/flutter/flutter/pull/72558) Migrate some sample code to NNBD [1] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72761](https://github.com/flutter/flutter/pull/72761) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[73044](https://github.com/flutter/flutter/pull/73044) [Api docs]Added dartpad demo for Bottom App Bar (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[73437](https://github.com/flutter/flutter/pull/73437) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool)
[73508](https://github.com/flutter/flutter/pull/73508) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)
### d: api docs - 34 pull request(s)
[63910](https://github.com/flutter/flutter/pull/63910) Improve Stepper controlsBuilder docs (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[64240](https://github.com/flutter/flutter/pull/64240) Add sample code to FadeTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64638](https://github.com/flutter/flutter/pull/64638) Add sample code to DefaultTextStyleTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64698](https://github.com/flutter/flutter/pull/64698) Added sample code to AnimatedAlign (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[65817](https://github.com/flutter/flutter/pull/65817) Clarify the docs on what scrollUntilVisible does (a: tests, cla: yes, d: api docs, documentation, framework)
[66048](https://github.com/flutter/flutter/pull/66048) Bump dartdoc to 0.34.0 (cla: yes, d: api docs, documentation, team, waiting for tree to go green)
[66213](https://github.com/flutter/flutter/pull/66213) Fixes typos in showDialog documentation (cla: yes, d: api docs, f: material design, framework)
[66639](https://github.com/flutter/flutter/pull/66639) Further explain parent constraints in SizedBox (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[66834](https://github.com/flutter/flutter/pull/66834) GlobalKey docs improvement (cla: yes, d: api docs, documentation, framework)
[66972](https://github.com/flutter/flutter/pull/66972) Nested Scaffolds - Suggested Changes (cla: yes, d: api docs, f: material design, framework)
[67066](https://github.com/flutter/flutter/pull/67066) docs for image disposal (cla: yes, d: api docs, framework)
[67585](https://github.com/flutter/flutter/pull/67585) Add documentation talking about ScrollPhysics.applyTo(null) (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[67811](https://github.com/flutter/flutter/pull/67811) Fix typos in the [BottomNavigationBar] document (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[67940](https://github.com/flutter/flutter/pull/67940) Fix NestedScrollView sample code (a: quality, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[68751](https://github.com/flutter/flutter/pull/68751) router.dart: fix grammer mistake (cla: yes, d: api docs, framework, waiting for tree to go green)
[68968](https://github.com/flutter/flutter/pull/68968) Fix typo in form.dart (cla: yes, d: api docs, framework, waiting for tree to go green)
[69503](https://github.com/flutter/flutter/pull/69503) AdoptAWidget: FittedBox (adopt a widget, cla: yes, d: api docs, framework, waiting for tree to go green)
[69644](https://github.com/flutter/flutter/pull/69644) Center the AnimatedPositioned code sample (cla: yes, d: api docs, framework, waiting for tree to go green)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[70184](https://github.com/flutter/flutter/pull/70184) [FloatingActionButtonLocation] Add diagrams to documentation of FloatingActionButtonLocation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70343](https://github.com/flutter/flutter/pull/70343) Code sample small fixes (adopt a widget, cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[70379](https://github.com/flutter/flutter/pull/70379) Added Tabar Code samples (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70382](https://github.com/flutter/flutter/pull/70382) Update FlexibleSpaceBar dartpad sample (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[71050](https://github.com/flutter/flutter/pull/71050) Add dartpad sample for AnimatedPadding (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71093](https://github.com/flutter/flutter/pull/71093) AdoptAWidget: ColorFiltered (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71174](https://github.com/flutter/flutter/pull/71174) AdoptAWidget: PageView (cla: yes, d: api docs, d: examples, documentation, framework)
[71378](https://github.com/flutter/flutter/pull/71378) [FloatingActionButtonLocation] Add proper formatting to documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[72490](https://github.com/flutter/flutter/pull/72490) Bottom navigation items length docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[72558](https://github.com/flutter/flutter/pull/72558) Migrate some sample code to NNBD [1] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[73018](https://github.com/flutter/flutter/pull/73018) Document TableRowInkWell and DataTable interactions better (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[73044](https://github.com/flutter/flutter/pull/73044) [Api docs]Added dartpad demo for Bottom App Bar (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
### a: internationalization - 30 pull request(s)
[61981](https://github.com/flutter/flutter/pull/61981) Positioning IME bars on iOS (a: fidelity, a: internationalization, a: text input, cla: yes, framework, waiting for tree to go green)
[65010](https://github.com/flutter/flutter/pull/65010) Fix Semi Hidden helpText in showDatePicker (a: internationalization, cla: yes, f: date/time picker, f: material design, framework)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65993](https://github.com/flutter/flutter/pull/65993) Update localizations (a: internationalization, cla: yes, f: material design, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67900](https://github.com/flutter/flutter/pull/67900) Expose date symbols and patterns for en_US in framework (a: internationalization, cla: yes, f: material design, framework, team)
[68074](https://github.com/flutter/flutter/pull/68074) Added CupertinoSearchTextField (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68206](https://github.com/flutter/flutter/pull/68206) [gen_l10n] Create pubspec.yaml in ".dart_tool/flutter_gen" if it does not already exist (a: internationalization, cla: yes, tool)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68374](https://github.com/flutter/flutter/pull/68374) Fix links to GitHub bug template (a: internationalization, cla: yes, framework, waiting for tree to go green)
[68553](https://github.com/flutter/flutter/pull/68553) [gen-l10n] Fix untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)
[68645](https://github.com/flutter/flutter/pull/68645) Migrate flutter_localizations to null safety. (a: internationalization, cla: yes, f: cupertino, f: material design, framework, team)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68774](https://github.com/flutter/flutter/pull/68774) [gen_l10n] Make resource attributes optional for simple cases (a: internationalization, cla: yes, tool)
[69016](https://github.com/flutter/flutter/pull/69016) [gen_l10n] Add base method code comments for improved discoverability (a: internationalization, cla: yes, tool, waiting for tree to go green)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69155](https://github.com/flutter/flutter/pull/69155) Remove intl_translation dependency from gen_l10n integration test (a: internationalization, cla: yes, tool)
[69382](https://github.com/flutter/flutter/pull/69382) [gen_l10n] Fix unintended use of raw string in generateString (a: internationalization, cla: yes, severe: regression, team, tool)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[70157](https://github.com/flutter/flutter/pull/70157) Update cupertino and material translations (a: internationalization, cla: yes, f: cupertino, f: material design)
[70423](https://github.com/flutter/flutter/pull/70423) Add casts to widgets_test.dart to fix the engine roll. (a: internationalization, cla: yes, waiting for tree to go green)
[70491](https://github.com/flutter/flutter/pull/70491) Remove some unnecessary casts, now that changes have rolled from the engine (a: internationalization, a: tests, cla: yes, framework, waiting for tree to go green)
[70500](https://github.com/flutter/flutter/pull/70500) More lints (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, framework, team)
[72944](https://github.com/flutter/flutter/pull/72944) [gen_l10n] Improve status message when untranslated messages are still present (a: internationalization, cla: yes, tool, waiting for tree to go green)
[73514](https://github.com/flutter/flutter/pull/73514) Update outdated links (a: internationalization, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[74439](https://github.com/flutter/flutter/pull/74439) Revert "Update PopupMenuButton to match Material Design spec" (a: internationalization, cla: yes, f: material design, framework)
[74622](https://github.com/flutter/flutter/pull/74622) [flutter_tools] Consistently set the working directory for Flutter Test (a: internationalization, cla: yes, f: cupertino, f: material design, team, tool, waiting for tree to go green)
[74635](https://github.com/flutter/flutter/pull/74635) Update localizations (a: internationalization, cla: yes, f: cupertino, f: material design)
[74657](https://github.com/flutter/flutter/pull/74657) Remove vestigial nullOk parameter from Localizations.localeOf (a: internationalization, cla: yes, framework)
### t: xcode - 29 pull request(s)
[66524](https://github.com/flutter/flutter/pull/66524) [Icons] Update icon version to point to file that iOS will prefer. (cla: yes, f: material design, platform-ios, t: xcode, waiting for tree to go green)
[66590](https://github.com/flutter/flutter/pull/66590) Force plugins to inherit minimum iOS version from Flutter app (cla: yes, platform-ios, t: xcode, team, tool)
[67598](https://github.com/flutter/flutter/pull/67598) Build xcarchive command (cla: yes, platform-ios, t: xcode, team, tool)
[67781](https://github.com/flutter/flutter/pull/67781) Build IPA command (cla: yes, platform-ios, t: xcode, tool)
[68855](https://github.com/flutter/flutter/pull/68855) Apple silicon arch -arm64 to -arm64e (cla: yes, platform-ios, platform-mac, t: xcode, tool, waiting for tree to go green)
[69612](https://github.com/flutter/flutter/pull/69612) Build App.framework directly to build directory (cla: yes, t: xcode, tool, waiting for tree to go green)
[69699](https://github.com/flutter/flutter/pull/69699) Build App.framework directly to build directory (cla: yes, t: xcode, team, tool)
[69731](https://github.com/flutter/flutter/pull/69731) Compile snapshot_assembly with sdk root set in Xcode (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69809](https://github.com/flutter/flutter/pull/69809) Update CocoaPods recommended version to 1.9 (cla: yes, platform-ios, t: xcode, team, tool)
[69837](https://github.com/flutter/flutter/pull/69837) Run more xcodebuild commands in native arm on Apple Silicon (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69846](https://github.com/flutter/flutter/pull/69846) Remove add-to-app Xcode build phase input files (a: existing-apps, cla: yes, t: xcode, tool)
[70224](https://github.com/flutter/flutter/pull/70224) Move Flutter.framework to build directory instead of ios/Flutter (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[70649](https://github.com/flutter/flutter/pull/70649) Exclude ARM from macOS builds architectures (cla: yes, platform-mac, t: xcode, tool, waiting for tree to go green)
[70719](https://github.com/flutter/flutter/pull/70719) Add extra Flutter settings to ios_app_with_extensions Podfile (cla: yes, platform-ios, t: xcode, team, tool)
[70735](https://github.com/flutter/flutter/pull/70735) Force regeneration of old Podfile (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[70896](https://github.com/flutter/flutter/pull/70896) Use module Profile scheme when profiling (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[71170](https://github.com/flutter/flutter/pull/71170) Update CocoaPods minimum version to 1.9 (cla: yes, t: xcode, tool)
[71495](https://github.com/flutter/flutter/pull/71495) Adopt Flutter.xcframework in tool (cla: yes, platform-ios, t: xcode, team, tool)
[71752](https://github.com/flutter/flutter/pull/71752) Remove unused local from xcode_backend (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[71862](https://github.com/flutter/flutter/pull/71862) Remove manual Flutter linking for iOS projects (cla: yes, platform-ios, t: xcode, tool)
[72020](https://github.com/flutter/flutter/pull/72020) Move macOS Podfile logic into the tool (cla: yes, platform-mac, t: xcode, team, tool)
[72761](https://github.com/flutter/flutter/pull/72761) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[73070](https://github.com/flutter/flutter/pull/73070) Use simctl exit code instead of stderr (cla: yes, platform-ios, t: xcode, tool)
[73110](https://github.com/flutter/flutter/pull/73110) Default add-to-app xcode_backend script to be verbose (a: existing-apps, cla: yes, platform-ios, t: xcode, tool)
[73112](https://github.com/flutter/flutter/pull/73112) Optionally include CocoaPods xcconfig (cla: yes, platform-ios, t: xcode, team, tool)
[73458](https://github.com/flutter/flutter/pull/73458) Exclude arm64 from supported iOS simulator architectures (cla: yes, platform-ios, t: xcode, team, tool)
[73508](https://github.com/flutter/flutter/pull/73508) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73630](https://github.com/flutter/flutter/pull/73630) Generate dSYM files during iOS archive (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73808](https://github.com/flutter/flutter/pull/73808) Add recommended Xcode version to doctor (cla: yes, t: xcode, tool)
### f: scrolling - 25 pull request(s)
[64140](https://github.com/flutter/flutter/pull/64140) [ReorderableListView] Fix item dropping animation (a: animation, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[65226](https://github.com/flutter/flutter/pull/65226) Improve the behavior of Scrollable.ensureVisible when Scrollable nested (cla: yes, f: scrolling, framework)
[65323](https://github.com/flutter/flutter/pull/65323) Sliver padding overlap fix (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[66039](https://github.com/flutter/flutter/pull/66039) fix mouse wheel scroll miscontrol of ScrollPosition. (a: desktop, a: mouse, cla: yes, f: scrolling, framework, waiting for tree to go green)
[68199](https://github.com/flutter/flutter/pull/68199) Fix/issue 68182: Fix rounding issue in getMaxChildIndexForScrollOffset (cla: yes, f: scrolling, framework, waiting for tree to go green)
[68644](https://github.com/flutter/flutter/pull/68644) Fix overscroll edge case that puts NestedScrollViews out of sync (cla: yes, f: scrolling, framework, severe: regression, waiting for tree to go green)
[69063](https://github.com/flutter/flutter/pull/69063) Add horizontal gesture support for CupertinoScrollbar (a: desktop, a: quality, cla: yes, f: cupertino, f: scrolling, framework, waiting for tree to go green)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[70953](https://github.com/flutter/flutter/pull/70953) Fix pointer scroll for nested NeverScrollables (a: desktop, cla: yes, f: scrolling, framework, platform-web, severe: regression, waiting for tree to go green)
[71376](https://github.com/flutter/flutter/pull/71376) Added mainAxisExtent to SliverGridDelegateWithFixedCrossAxisCount and SliverGridDelegateWithMaxCrossAxisExtent (cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[71843](https://github.com/flutter/flutter/pull/71843) Improve the ScrollBar behavior when nested (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72300](https://github.com/flutter/flutter/pull/72300) Fixed issue for SliverAppBar collapsedHeight (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72308](https://github.com/flutter/flutter/pull/72308) Add ScrollbarTheme/ScrollbarThemeData (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72316](https://github.com/flutter/flutter/pull/72316) Remove Scrollbar.isAlwaysShown assert based on Scrollbar.controller (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72531](https://github.com/flutter/flutter/pull/72531) Update Scrollbar behavior for mobile devices (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72560](https://github.com/flutter/flutter/pull/72560) Add PrioritizedIntents to support multiple shortcut configurations (a: desktop, cla: yes, f: focus, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72741](https://github.com/flutter/flutter/pull/72741) Apply physics boundary to scrollbar dragging (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[72833](https://github.com/flutter/flutter/pull/72833) Fix scrollbar configuration for hover events (a: desktop, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[73016](https://github.com/flutter/flutter/pull/73016) fix an assertion causes by zero offset pointer scroll (cla: yes, f: scrolling, framework, severe: crash, waiting for tree to go green)
[73195](https://github.com/flutter/flutter/pull/73195) SliverAppBar with ShrinkWrap Patch (a: layout, cla: yes, f: scrolling, framework, waiting for tree to go green)
[73899](https://github.com/flutter/flutter/pull/73899) Restore adaptive nature to new Scrollbar (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[74104](https://github.com/flutter/flutter/pull/74104) Reland "Improve the ScrollBar behavior when nested (#71843)" (cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[74299](https://github.com/flutter/flutter/pull/74299) New Reorderable list widgets (cla: yes, f: material design, f: scrolling, framework, severe: new feature)
### documentation - 25 pull request(s)
[63910](https://github.com/flutter/flutter/pull/63910) Improve Stepper controlsBuilder docs (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[64240](https://github.com/flutter/flutter/pull/64240) Add sample code to FadeTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64638](https://github.com/flutter/flutter/pull/64638) Add sample code to DefaultTextStyleTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64698](https://github.com/flutter/flutter/pull/64698) Added sample code to AnimatedAlign (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[65817](https://github.com/flutter/flutter/pull/65817) Clarify the docs on what scrollUntilVisible does (a: tests, cla: yes, d: api docs, documentation, framework)
[66048](https://github.com/flutter/flutter/pull/66048) Bump dartdoc to 0.34.0 (cla: yes, d: api docs, documentation, team, waiting for tree to go green)
[66639](https://github.com/flutter/flutter/pull/66639) Further explain parent constraints in SizedBox (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[66834](https://github.com/flutter/flutter/pull/66834) GlobalKey docs improvement (cla: yes, d: api docs, documentation, framework)
[67585](https://github.com/flutter/flutter/pull/67585) Add documentation talking about ScrollPhysics.applyTo(null) (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[67940](https://github.com/flutter/flutter/pull/67940) Fix NestedScrollView sample code (a: quality, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[70184](https://github.com/flutter/flutter/pull/70184) [FloatingActionButtonLocation] Add diagrams to documentation of FloatingActionButtonLocation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70379](https://github.com/flutter/flutter/pull/70379) Added Tabar Code samples (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70382](https://github.com/flutter/flutter/pull/70382) Update FlexibleSpaceBar dartpad sample (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[71050](https://github.com/flutter/flutter/pull/71050) Add dartpad sample for AnimatedPadding (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71093](https://github.com/flutter/flutter/pull/71093) AdoptAWidget: ColorFiltered (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71174](https://github.com/flutter/flutter/pull/71174) AdoptAWidget: PageView (cla: yes, d: api docs, d: examples, documentation, framework)
[71859](https://github.com/flutter/flutter/pull/71859) Update integration_test README for iOS (cla: yes, documentation, waiting for tree to go green)
[72558](https://github.com/flutter/flutter/pull/72558) Migrate some sample code to NNBD [1] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[73044](https://github.com/flutter/flutter/pull/73044) [Api docs]Added dartpad demo for Bottom App Bar (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[73247](https://github.com/flutter/flutter/pull/73247) Fixed typo in icon theme (cla: yes, documentation, framework, waiting for tree to go green)
[73761](https://github.com/flutter/flutter/pull/73761) add a readme for the dart fix tests (cla: yes, documentation, framework)
### platform-mac - 22 pull request(s)
[68050](https://github.com/flutter/flutter/pull/68050) Run Xcode command lines tools in native ARM (cla: yes, platform-mac, tool)
[68656](https://github.com/flutter/flutter/pull/68656) Enable dev/bots/ build_tests for macOS (a: desktop, cla: yes, platform-mac, team)
[68855](https://github.com/flutter/flutter/pull/68855) Apple silicon arch -arm64 to -arm64e (cla: yes, platform-ios, platform-mac, t: xcode, tool, waiting for tree to go green)
[69245](https://github.com/flutter/flutter/pull/69245) Show macOS arm64 architecture in doctor and devices list (cla: yes, platform-mac, tool, waiting for tree to go green)
[70649](https://github.com/flutter/flutter/pull/70649) Exclude ARM from macOS builds architectures (cla: yes, platform-mac, t: xcode, tool, waiting for tree to go green)
[70801](https://github.com/flutter/flutter/pull/70801) Detect ARM ffi CocoaPods error, suggest gem install (cla: yes, platform-mac, tool)
[71623](https://github.com/flutter/flutter/pull/71623) Add sysctl file fallbacks (cla: yes, platform-mac, tool, waiting for tree to go green)
[71744](https://github.com/flutter/flutter/pull/71744) Remove Flutter Authors from macOS project organization name (cla: yes, platform-mac, tool)
[71745](https://github.com/flutter/flutter/pull/71745) Update macOS Xcode compatibilityVersion (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71748](https://github.com/flutter/flutter/pull/71748) Profiling Xcode app should use Flutter profile mode (cla: yes, d: examples, platform-mac, team, tool)
[71750](https://github.com/flutter/flutter/pull/71750) Remove missing macOS RunnerUITests (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71760](https://github.com/flutter/flutter/pull/71760) Make macrobenchmarks buildable for macos (a: tests, cla: yes, platform-mac, team)
[71761](https://github.com/flutter/flutter/pull/71761) Check in manual_tests gitignores (cla: yes, platform-mac, team)
[71953](https://github.com/flutter/flutter/pull/71953) Add macOS to lint plugins integration test (cla: yes, platform-mac, team)
[71965](https://github.com/flutter/flutter/pull/71965) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[72020](https://github.com/flutter/flutter/pull/72020) Move macOS Podfile logic into the tool (cla: yes, platform-mac, t: xcode, team, tool)
[72372](https://github.com/flutter/flutter/pull/72372) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[72378](https://github.com/flutter/flutter/pull/72378) Build/copy macOS frameworks to built products instead of ephemeral directory (cla: yes, platform-mac, team, tool)
[72748](https://github.com/flutter/flutter/pull/72748) Exclude ARM from macOS builds (cla: yes, platform-mac, tool, waiting for tree to go green)
[72764](https://github.com/flutter/flutter/pull/72764) Force plugins to inherit minimum macOS version from Flutter app (cla: yes, platform-mac, team, tool)
[73052](https://github.com/flutter/flutter/pull/73052) Avoid broken symlinks in embedded Flutter frameworks (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[74006](https://github.com/flutter/flutter/pull/74006) Remove smoke_catalina_hot_mode_dev_cycle__benchmark (a: tests, cla: yes, platform-mac, team, team: infra)
### a: null-safety - 21 pull request(s)
[62616](https://github.com/flutter/flutter/pull/62616) Migrate foundation test to nullsafety (a: accessibility, a: null-safety, cla: yes, framework)
[62701](https://github.com/flutter/flutter/pull/62701) Migrate gestures, physics and scheduler tests to null safety. (a: null-safety, cla: yes, framework)
[67106](https://github.com/flutter/flutter/pull/67106) [null-safety] allow web shard to compile null-safe tests. (a: null-safety, cla: yes, tool)
[67155](https://github.com/flutter/flutter/pull/67155) [null-safety] migrate app dependencies of flutter driver (a: accessibility, a: null-safety, a: tests, cla: yes, framework, team)
[67171](https://github.com/flutter/flutter/pull/67171) [null-safety] add integration tests for sound null safety modes, add support for sound null safety in dart2js (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[68157](https://github.com/flutter/flutter/pull/68157) [NNBD] Migrate some Widgets tests (a: null-safety, a: tests, cla: yes, framework, team, waiting for tree to go green)
[69005](https://github.com/flutter/flutter/pull/69005) Fix null issue with dynamically updating from zero tabs for TabBar (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[69630](https://github.com/flutter/flutter/pull/69630) Update plugins dependencies for the Gallery test (a: null-safety, a: tests, cla: yes, team, tool)
[70014](https://github.com/flutter/flutter/pull/70014) [flutter_tools] remove workaround for caching sound dill (a: null-safety, cla: yes, team, tool)
[70714](https://github.com/flutter/flutter/pull/70714) [flutter_tools] use frontend_server for web test compilation (a: null-safety, cla: yes, team, tool)
[70718](https://github.com/flutter/flutter/pull/70718) [flutter_tools] display message for current null safety mode (a: null-safety, cla: yes, tool)
[71807](https://github.com/flutter/flutter/pull/71807) StandardMethodCodec.decodeEnvelope should allow null error message (a: null-safety, cla: yes, framework)
[72476](https://github.com/flutter/flutter/pull/72476) Allow nullable tweens in TweenAnimationBuilder (a: animation, a: null-safety, cla: yes, framework, waiting for tree to go green)
[72558](https://github.com/flutter/flutter/pull/72558) Migrate some sample code to NNBD [1] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72794](https://github.com/flutter/flutter/pull/72794) [NNBD] Migrate sample code pt 1 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72798](https://github.com/flutter/flutter/pull/72798) [NNBD] Migrate sample code pt 2 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72837](https://github.com/flutter/flutter/pull/72837) [NNBD] Migrate sample code pt 3 (a: null-safety, cla: yes, f: material design, framework, team, waiting for tree to go green)
[72842](https://github.com/flutter/flutter/pull/72842) [NNBD] Migrate sample code pt 4 (a: null-safety, cla: yes, framework, waiting for tree to go green)
[72939](https://github.com/flutter/flutter/pull/72939) Complete migration to null safety in api documentation (a: null-safety, cla: yes, f: cupertino, f: material design, framework, team)
### will affect goldens - 20 pull request(s)
[64468](https://github.com/flutter/flutter/pull/64468) Fix CupertinoAlertDialog TextStyle (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[65044](https://github.com/flutter/flutter/pull/65044) TextSelectionTheme support (step 2 of 3) (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[67468](https://github.com/flutter/flutter/pull/67468) Remove Cirrus support for Gold (a: tests, cla: yes, framework, team, team: infra, will affect goldens)
[67555](https://github.com/flutter/flutter/pull/67555) Turn timer_picker_test goldens back on (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[68651](https://github.com/flutter/flutter/pull/68651) Roll Engine from ea2aea1c6102 to ed53ff19e83f (22 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[68897](https://github.com/flutter/flutter/pull/68897) Roll Engine from defa8be2b106 to 0b26570e933f (21 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[69709](https://github.com/flutter/flutter/pull/69709) Roll Engine from 346051939814 to 59b01e0e5a3f (35 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[70958](https://github.com/flutter/flutter/pull/70958) Roll Engine from 23a8e027dbbe to 97cacfbfec89 (14 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[71783](https://github.com/flutter/flutter/pull/71783) circleAvatar: foreground Image uses background Image as a fall-back (cla: yes, f: material design, framework, will affect goldens)
[72086](https://github.com/flutter/flutter/pull/72086) Roll Engine from 827aa5d073f3 to 4797b0665242 (12 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[72147](https://github.com/flutter/flutter/pull/72147) Roll Engine from 4797b0665242 to 4794d0448f8f (23 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[72420](https://github.com/flutter/flutter/pull/72420) update cupertino icons to 1.0.2 (cla: yes, team, tool, will affect goldens)
[72526](https://github.com/flutter/flutter/pull/72526) Make RenderColoredBox.paint() skip painting color if it's transparent (cla: yes, framework, will affect goldens)
[73361](https://github.com/flutter/flutter/pull/73361) Add material icons golden test (cla: yes, f: material design, framework, will affect goldens)
[73558](https://github.com/flutter/flutter/pull/73558) snackBar should paint above the bottomSheet (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[73780](https://github.com/flutter/flutter/pull/73780) Fix single ToggleButton border painting bugs (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[74078](https://github.com/flutter/flutter/pull/74078) Roll Engine from a243f4df0711 to 1424dfbe4d57 (6 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[74093](https://github.com/flutter/flutter/pull/74093) ScaffoldMessenger only shows to root nested Scaffold (a: layout, a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green, will affect goldens)
[74126](https://github.com/flutter/flutter/pull/74126) Roll Engine from 1424dfbe4d57 to f392053b1f2a (11 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[74540](https://github.com/flutter/flutter/pull/74540) Roll Engine from fdddf8708039 to 05b4bec8b3c1 (8 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
### severe: API break - 18 pull request(s)
[61366](https://github.com/flutter/flutter/pull/61366) Continue the clipBehavior breaking change (cla: yes, f: cupertino, framework, severe: API break)
[66700](https://github.com/flutter/flutter/pull/66700) Default FittedBox's clipBehavior to none (cla: yes, framework, severe: API break)
[67947](https://github.com/flutter/flutter/pull/67947) Deprecate old SnackBar methods (cla: yes, f: material design, framework, severe: API break, severe: new feature, waiting for tree to go green)
[69620](https://github.com/flutter/flutter/pull/69620) Remove deprecated methods from BuildContext (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[72017](https://github.com/flutter/flutter/pull/72017) Remove deprecated CupertinoTextThemeData.brightness (cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)
[72395](https://github.com/flutter/flutter/pull/72395) Remove deprecated [PointerEnterEvent, PointerExitEvent].fromHoverEvent (cla: yes, framework, severe: API break, waiting for tree to go green)
[72532](https://github.com/flutter/flutter/pull/72532) Remove deprecated showDialog.child (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72890](https://github.com/flutter/flutter/pull/72890) Remove deprecated Scaffold.resizeToAvoidBottomPadding (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72893](https://github.com/flutter/flutter/pull/72893) Remove deprecated WidgetsBinding.[deferFirstFrameReport, allowFirstFrameReport] (cla: yes, framework, severe: API break, waiting for tree to go green)
[72901](https://github.com/flutter/flutter/pull/72901) Remove deprecated StatefulElement.inheritFromElement (cla: yes, framework, severe: API break, waiting for tree to go green)
[72903](https://github.com/flutter/flutter/pull/72903) Remove deprecated Element methods (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[73604](https://github.com/flutter/flutter/pull/73604) Remove deprecated CupertinoDialog (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73745](https://github.com/flutter/flutter/pull/73745) Remove deprecated actionsForegroundColor from Cupertino[Sliver]NavigationBar (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73746](https://github.com/flutter/flutter/pull/73746) Remove deprecated ButtonTheme.bar (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73747](https://github.com/flutter/flutter/pull/73747) Remove span deprecations (cla: yes, framework, severe: API break, waiting for tree to go green)
[73748](https://github.com/flutter/flutter/pull/73748) Remove deprecated RenderView.scheduleInitialFrame (cla: yes, framework, severe: API break, waiting for tree to go green)
[73749](https://github.com/flutter/flutter/pull/73749) Remove deprecated Layer.findAll (cla: yes, framework, severe: API break, waiting for tree to go green)
[73754](https://github.com/flutter/flutter/pull/73754) Remove deprecated WaitUntil[NoTransientCallbacks, NoPendingFrame, FirstFrameRasterized] methods from flutter_driver (a: tests, cla: yes, framework, severe: API break, waiting for tree to go green)
### adopt a widget - 17 pull request(s)
[69498](https://github.com/flutter/flutter/pull/69498) AdoptAWidget - Progress indicator (adopt a widget, cla: yes, f: material design, framework)
[69503](https://github.com/flutter/flutter/pull/69503) AdoptAWidget: FittedBox (adopt a widget, cla: yes, d: api docs, framework, waiting for tree to go green)
[69509](https://github.com/flutter/flutter/pull/69509) AdoptAWidget: aspectRatio (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69513](https://github.com/flutter/flutter/pull/69513) AnimatedPositioned (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69518](https://github.com/flutter/flutter/pull/69518) AdoptAWidget: Tooltip (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69521](https://github.com/flutter/flutter/pull/69521) AdoptAWidget: AbsorbPointer (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69524](https://github.com/flutter/flutter/pull/69524) AdoptAWidget: NotificationListener (adopt a widget, cla: yes, framework)
[69530](https://github.com/flutter/flutter/pull/69530) AdoptAWidget: MaterialBanner (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69535](https://github.com/flutter/flutter/pull/69535) AdoptAWidget: Dismissible (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69563](https://github.com/flutter/flutter/pull/69563) AdoptAWidget: WillPopScope (adopt a widget, cla: yes, framework)
[69717](https://github.com/flutter/flutter/pull/69717) AdoptAWidget - Update ActionListener with an example (adopt a widget, cla: yes, framework)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[70343](https://github.com/flutter/flutter/pull/70343) Code sample small fixes (adopt a widget, cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[70379](https://github.com/flutter/flutter/pull/70379) Added Tabar Code samples (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70382](https://github.com/flutter/flutter/pull/70382) Update FlexibleSpaceBar dartpad sample (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[71050](https://github.com/flutter/flutter/pull/71050) Add dartpad sample for AnimatedPadding (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71093](https://github.com/flutter/flutter/pull/71093) AdoptAWidget: ColorFiltered (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
### team: infra - 15 pull request(s)
[66054](https://github.com/flutter/flutter/pull/66054) Add versioning to gold endpoints (a: quality, a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)
[67337](https://github.com/flutter/flutter/pull/67337) Increase device discovery timeout in devicelab health check (cla: yes, team, team: infra)
[67468](https://github.com/flutter/flutter/pull/67468) Remove Cirrus support for Gold (a: tests, cla: yes, framework, team, team: infra, will affect goldens)
[67689](https://github.com/flutter/flutter/pull/67689) [NNBD] Migrating some Material tests (cla: yes, f: material design, framework, team, team: infra, waiting for tree to go green)
[68822](https://github.com/flutter/flutter/pull/68822) [Doc Fixit 2020] Move dashboard documentation to flutter/cocoon (cla: yes, team, team: infra, waiting for tree to go green)
[69629](https://github.com/flutter/flutter/pull/69629) Initial migration of metrics_center (cla: yes, severe: performance, team, team: infra)
[70804](https://github.com/flutter/flutter/pull/70804) Run module tests on try builders when flutter_tools changes (cla: yes, team, team: infra)
[71531](https://github.com/flutter/flutter/pull/71531) Update CI to CocoaPods 1.10 (cla: yes, platform-ios, team, team: infra)
[71602](https://github.com/flutter/flutter/pull/71602) Turn on dependabot to roll bundler dependencies (cla: yes, team, team: infra, waiting for tree to go green)
[71624](https://github.com/flutter/flutter/pull/71624) Fix dependabot directory (cla: yes, team, team: infra, waiting for tree to go green)
[73586](https://github.com/flutter/flutter/pull/73586) Mark firebase tests as flaky (a: tests, cla: yes, team, team: infra)
[73591](https://github.com/flutter/flutter/pull/73591) Revert "Mark firebase tests as flaky" (cla: yes, team, team: infra)
[73689](https://github.com/flutter/flutter/pull/73689) Bump cocoapods from 1.10.0 to 1.10.1 in /dev/ci/mac (cla: yes, team, team: infra, waiting for tree to go green)
[73728](https://github.com/flutter/flutter/pull/73728) Turn off mac_build_gallery during infra investigation (cla: yes, team, team: infra)
[74006](https://github.com/flutter/flutter/pull/74006) Remove smoke_catalina_hot_mode_dev_cycle__benchmark (a: tests, cla: yes, platform-mac, team, team: infra)
### a: quality - 14 pull request(s)
[64678](https://github.com/flutter/flutter/pull/64678) Wrap PopupMenu with SafeArea to respect status bar (a: layout, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64746](https://github.com/flutter/flutter/pull/64746) FloatingActionButton always keeps the same position when FloatingActionButtonLocation is top. (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[65323](https://github.com/flutter/flutter/pull/65323) Sliver padding overlap fix (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[66054](https://github.com/flutter/flutter/pull/66054) Add versioning to gold endpoints (a: quality, a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)
[66139](https://github.com/flutter/flutter/pull/66139) Fix local gold output for flutter/flutter (a: quality, a: tests, cla: yes, framework, waiting for tree to go green)
[66504](https://github.com/flutter/flutter/pull/66504) Re-land ScaffoldMessenger (a: quality, cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)
[67940](https://github.com/flutter/flutter/pull/67940) Fix NestedScrollView sample code (a: quality, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[69063](https://github.com/flutter/flutter/pull/69063) Add horizontal gesture support for CupertinoScrollbar (a: desktop, a: quality, cla: yes, f: cupertino, f: scrolling, framework, waiting for tree to go green)
[69383](https://github.com/flutter/flutter/pull/69383) Fix the PopupMenuButton offset bug (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[71843](https://github.com/flutter/flutter/pull/71843) Improve the ScrollBar behavior when nested (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72316](https://github.com/flutter/flutter/pull/72316) Remove Scrollbar.isAlwaysShown assert based on Scrollbar.controller (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72741](https://github.com/flutter/flutter/pull/72741) Apply physics boundary to scrollbar dragging (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[73084](https://github.com/flutter/flutter/pull/73084) Improve the Scaffold.bottomSheet update behavior (a: quality, cla: yes, f: focus, f: material design, framework, waiting for tree to go green)
[74093](https://github.com/flutter/flutter/pull/74093) ScaffoldMessenger only shows to root nested Scaffold (a: layout, a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green, will affect goldens)
### platform-web - 14 pull request(s)
[59797](https://github.com/flutter/flutter/pull/59797) [web] Support custom url strategies (cla: yes, f: routes, platform-web, team, waiting for tree to go green)
[65499](https://github.com/flutter/flutter/pull/65499) [web] Inform the engine when read-only flag is flipped (a: tests, a: text input, cla: yes, framework, platform-web, waiting for tree to go green)
[66606](https://github.com/flutter/flutter/pull/66606) [web] Change the web server to support path url strategy (cla: yes, platform-web, tool, waiting for tree to go green)
[67081](https://github.com/flutter/flutter/pull/67081) [web] Update index.html template to support new path strategy (cla: yes, f: routes, platform-web, tool, waiting for tree to go green)
[67088](https://github.com/flutter/flutter/pull/67088) [web] Respond with 404 to non-found asset or package files (cla: yes, platform-web, tool, waiting for tree to go green)
[68814](https://github.com/flutter/flutter/pull/68814) Ignore "unused" analysis for dart:ui imports for web-only API. (cla: yes, framework, platform-web, waiting for tree to go green)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[69990](https://github.com/flutter/flutter/pull/69990) Add PageView benchmark (representative of full screen CustomPainter) (cla: yes, platform-web, team, waiting for tree to go green)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[70953](https://github.com/flutter/flutter/pull/70953) Fix pointer scroll for nested NeverScrollables (a: desktop, cla: yes, f: scrolling, framework, platform-web, severe: regression, waiting for tree to go green)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72560](https://github.com/flutter/flutter/pull/72560) Add PrioritizedIntents to support multiple shortcut configurations (a: desktop, cla: yes, f: focus, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72833](https://github.com/flutter/flutter/pull/72833) Fix scrollbar configuration for hover events (a: desktop, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[73809](https://github.com/flutter/flutter/pull/73809) Mark linux_web_tool_tests not flaky (cla: yes, platform-web, team)
### a: desktop - 14 pull request(s)
[65667](https://github.com/flutter/flutter/pull/65667) Fix the `character` field of the `RawKeyEvent` to hold correct data on non-Android platforms. (a: desktop, a: tests, cla: yes, framework, team)
[66039](https://github.com/flutter/flutter/pull/66039) fix mouse wheel scroll miscontrol of ScrollPosition. (a: desktop, a: mouse, cla: yes, f: scrolling, framework, waiting for tree to go green)
[67029](https://github.com/flutter/flutter/pull/67029) Improve Windows symlink instructions (a: build, a: desktop, cla: yes, platform-windows, tool)
[67197](https://github.com/flutter/flutter/pull/67197) Preserve composing range if possible on sel change (a: desktop, a: text input, cla: yes, framework)
[68656](https://github.com/flutter/flutter/pull/68656) Enable dev/bots/ build_tests for macOS (a: desktop, cla: yes, platform-mac, team)
[68657](https://github.com/flutter/flutter/pull/68657) Enable dev/bots/ build_tests for Windows (a: desktop, cla: yes, platform-windows, team)
[68658](https://github.com/flutter/flutter/pull/68658) Enable dev/bots/ build_tests for Linux (a: desktop, cla: yes, platform-linux, team)
[69063](https://github.com/flutter/flutter/pull/69063) Add horizontal gesture support for CupertinoScrollbar (a: desktop, a: quality, cla: yes, f: cupertino, f: scrolling, framework, waiting for tree to go green)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[70953](https://github.com/flutter/flutter/pull/70953) Fix pointer scroll for nested NeverScrollables (a: desktop, cla: yes, f: scrolling, framework, platform-web, severe: regression, waiting for tree to go green)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72560](https://github.com/flutter/flutter/pull/72560) Add PrioritizedIntents to support multiple shortcut configurations (a: desktop, cla: yes, f: focus, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72833](https://github.com/flutter/flutter/pull/72833) Fix scrollbar configuration for hover events (a: desktop, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
### severe: new feature - 13 pull request(s)
[62927](https://github.com/flutter/flutter/pull/62927) AutocompleteCore (a: text input, cla: yes, framework, severe: new feature)
[66504](https://github.com/flutter/flutter/pull/66504) Re-land ScaffoldMessenger (a: quality, cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)
[67947](https://github.com/flutter/flutter/pull/67947) Deprecate old SnackBar methods (cla: yes, f: material design, framework, severe: API break, severe: new feature, waiting for tree to go green)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[71376](https://github.com/flutter/flutter/pull/71376) Added mainAxisExtent to SliverGridDelegateWithFixedCrossAxisCount and SliverGridDelegateWithMaxCrossAxisExtent (cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[71843](https://github.com/flutter/flutter/pull/71843) Improve the ScrollBar behavior when nested (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72308](https://github.com/flutter/flutter/pull/72308) Add ScrollbarTheme/ScrollbarThemeData (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72316](https://github.com/flutter/flutter/pull/72316) Remove Scrollbar.isAlwaysShown assert based on Scrollbar.controller (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72560](https://github.com/flutter/flutter/pull/72560) Add PrioritizedIntents to support multiple shortcut configurations (a: desktop, cla: yes, f: focus, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72895](https://github.com/flutter/flutter/pull/72895) DeferredComponent utility class for manual handling of Deferred Components (cla: yes, customer: money (g3), engine, framework, severe: new feature, waiting for tree to go green)
[74299](https://github.com/flutter/flutter/pull/74299) New Reorderable list widgets (cla: yes, f: material design, f: scrolling, framework, severe: new feature)
### a: existing-apps - 11 pull request(s)
[69720](https://github.com/flutter/flutter/pull/69720) Deprecate build ios-framework --universal (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[69736](https://github.com/flutter/flutter/pull/69736) Methods in build_ios_framework for universal and XCFrameworks (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)
[69840](https://github.com/flutter/flutter/pull/69840) Build either iphoneos or iphonesimulator App.framework, not both (a: existing-apps, cla: yes, platform-ios, tool)
[69846](https://github.com/flutter/flutter/pull/69846) Remove add-to-app Xcode build phase input files (a: existing-apps, cla: yes, t: xcode, tool)
[70518](https://github.com/flutter/flutter/pull/70518) Remove unused host_app_editable_cocoapods template files (a: existing-apps, cla: yes, tool)
[70647](https://github.com/flutter/flutter/pull/70647) Allow any iOS app to be added to an existing host app (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[71100](https://github.com/flutter/flutter/pull/71100) Make simulator framework test check explicit (a: existing-apps, cla: yes, platform-ios, team, waiting for tree to go green)
[71103](https://github.com/flutter/flutter/pull/71103) Move Flutter.podspec to add-to-app project template (a: existing-apps, cla: yes, platform-ios, tool)
[73110](https://github.com/flutter/flutter/pull/73110) Default add-to-app xcode_backend script to be verbose (a: existing-apps, cla: yes, platform-ios, t: xcode, tool)
[73383](https://github.com/flutter/flutter/pull/73383) Remove build ios-framework --universal flag (a: existing-apps, cla: yes, platform-ios, team, tool)
[74003](https://github.com/flutter/flutter/pull/74003) Build x86_64 iOS apps with simulator local engines (a: existing-apps, cla: yes, platform-ios, tool)
### a: text input - 9 pull request(s)
[61981](https://github.com/flutter/flutter/pull/61981) Positioning IME bars on iOS (a: fidelity, a: internationalization, a: text input, cla: yes, framework, waiting for tree to go green)
[62927](https://github.com/flutter/flutter/pull/62927) AutocompleteCore (a: text input, cla: yes, framework, severe: new feature)
[65499](https://github.com/flutter/flutter/pull/65499) [web] Inform the engine when read-only flag is flipped (a: tests, a: text input, cla: yes, framework, platform-web, waiting for tree to go green)
[66267](https://github.com/flutter/flutter/pull/66267) Add back the autovalidate class property (a: text input, cla: yes, framework)
[67197](https://github.com/flutter/flutter/pull/67197) Preserve composing range if possible on sel change (a: desktop, a: text input, cla: yes, framework)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[69428](https://github.com/flutter/flutter/pull/69428) Material Text Selection Toolbar improvements (a: text input, cla: yes, f: material design, framework)
[74454](https://github.com/flutter/flutter/pull/74454) Space and arrow keys in a text field shouldn't scroll (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74683](https://github.com/flutter/flutter/pull/74683) Swap the Shortcuts widget with its child in TextField (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)
### severe: performance - 7 pull request(s)
[66386](https://github.com/flutter/flutter/pull/66386) Default measureCpuGpu to true (cla: yes, perf: energy, severe: performance, team, waiting for tree to go green)
[66570](https://github.com/flutter/flutter/pull/66570) Let perf tests measure memory by default (cla: yes, perf: memory, severe: performance, team)
[66688](https://github.com/flutter/flutter/pull/66688) Dispose of images after using them (a: tests, cla: yes, framework, perf: memory, severe: performance)
[67147](https://github.com/flutter/flutter/pull/67147) 5x startup test repitition to reduce noise (cla: yes, customer: money (g3), perf: speed, severe: performance, team, waiting for tree to go green)
[67176](https://github.com/flutter/flutter/pull/67176) Add benchmark/test for drawing images across frames (cla: yes, severe: performance, team, waiting for tree to go green)
[68065](https://github.com/flutter/flutter/pull/68065) Improve performance of collectAllElements (a: tests, cla: yes, framework, perf: speed, severe: performance, t: flutter driver, team, waiting for tree to go green)
[69629](https://github.com/flutter/flutter/pull/69629) Initial migration of metrics_center (cla: yes, severe: performance, team, team: infra)
### a: animation - 7 pull request(s)
[48223](https://github.com/flutter/flutter/pull/48223) Add HeroMode widget (a: animation, cla: yes, f: cupertino, f: routes, framework, waiting for tree to go green)
[64140](https://github.com/flutter/flutter/pull/64140) [ReorderableListView] Fix item dropping animation (a: animation, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[65057](https://github.com/flutter/flutter/pull/65057) SpringDescription parameter for the AnimationController fling method (a: animation, cla: yes, f: gestures, framework, waiting for tree to go green)
[65126](https://github.com/flutter/flutter/pull/65126) fix overlay entry remove to remove itself from the overlay first if i… (a: animation, cla: yes, f: routes, framework, waiting for tree to go green)
[72476](https://github.com/flutter/flutter/pull/72476) Allow nullable tweens in TweenAnimationBuilder (a: animation, a: null-safety, cla: yes, framework, waiting for tree to go green)
[72541](https://github.com/flutter/flutter/pull/72541) Proposal : #72346 - expose property to pass AnimationController to showBottomSheet/showModalBottomSheet (a: animation, cla: yes, f: material design, framework)
[72904](https://github.com/flutter/flutter/pull/72904) improve error message when herocontroller is shared by multiple navig… (a: animation, a: error message, cla: yes, framework, waiting for tree to go green)
### f: focus - 5 pull request(s)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[72560](https://github.com/flutter/flutter/pull/72560) Add PrioritizedIntents to support multiple shortcut configurations (a: desktop, cla: yes, f: focus, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[73084](https://github.com/flutter/flutter/pull/73084) Improve the Scaffold.bottomSheet update behavior (a: quality, cla: yes, f: focus, f: material design, framework, waiting for tree to go green)
### f: routes - 4 pull request(s)
[48223](https://github.com/flutter/flutter/pull/48223) Add HeroMode widget (a: animation, cla: yes, f: cupertino, f: routes, framework, waiting for tree to go green)
[59797](https://github.com/flutter/flutter/pull/59797) [web] Support custom url strategies (cla: yes, f: routes, platform-web, team, waiting for tree to go green)
[65126](https://github.com/flutter/flutter/pull/65126) fix overlay entry remove to remove itself from the overlay first if i… (a: animation, cla: yes, f: routes, framework, waiting for tree to go green)
[67081](https://github.com/flutter/flutter/pull/67081) [web] Update index.html template to support new path strategy (cla: yes, f: routes, platform-web, tool, waiting for tree to go green)
### a: state restoration - 4 pull request(s)
[71653](https://github.com/flutter/flutter/pull/71653) [State Restoration] RestorableBoolN (a: state restoration, cla: yes, framework, waiting for tree to go green)
[72708](https://github.com/flutter/flutter/pull/72708) [State Restoration] Adds remaining Restorable{Property}N (a: state restoration, cla: yes, framework, waiting for tree to go green)
[72788](https://github.com/flutter/flutter/pull/72788) [State Restoration] Scaffold.drawer and Scaffold.endDrawer (a: state restoration, cla: yes, f: material design, framework, waiting for tree to go green)
[73082](https://github.com/flutter/flutter/pull/73082) Navigator assert on non restorable routes returned by onGenerateInitialRoutes (a: state restoration, cla: yes, framework, waiting for tree to go green)
### a: layout - 4 pull request(s)
[64678](https://github.com/flutter/flutter/pull/64678) Wrap PopupMenu with SafeArea to respect status bar (a: layout, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64930](https://github.com/flutter/flutter/pull/64930) Add CompositedTransformFollower.{followerAnchor, leaderAnchor} for custom anchoring (a: layout, cla: yes, framework, waiting for tree to go green)
[73195](https://github.com/flutter/flutter/pull/73195) SliverAppBar with ShrinkWrap Patch (a: layout, cla: yes, f: scrolling, framework, waiting for tree to go green)
[74093](https://github.com/flutter/flutter/pull/74093) ScaffoldMessenger only shows to root nested Scaffold (a: layout, a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green, will affect goldens)
### customer: money (g3) - 4 pull request(s)
[66504](https://github.com/flutter/flutter/pull/66504) Re-land ScaffoldMessenger (a: quality, cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)
[67147](https://github.com/flutter/flutter/pull/67147) 5x startup test repitition to reduce noise (cla: yes, customer: money (g3), perf: speed, severe: performance, team, waiting for tree to go green)
[72895](https://github.com/flutter/flutter/pull/72895) DeferredComponent utility class for manual handling of Deferred Components (cla: yes, customer: money (g3), engine, framework, severe: new feature, waiting for tree to go green)
[74093](https://github.com/flutter/flutter/pull/74093) ScaffoldMessenger only shows to root nested Scaffold (a: layout, a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green, will affect goldens)
### f: gestures - 3 pull request(s)
[63813](https://github.com/flutter/flutter/pull/63813) Lazily compute PointerEvent's transformed positions (cla: yes, f: gestures, framework)
[64379](https://github.com/flutter/flutter/pull/64379) Make Dismissible's HitTestBehavior an argument (cla: yes, f: gestures, framework, waiting for tree to go green)
[65057](https://github.com/flutter/flutter/pull/65057) SpringDescription parameter for the AnimationController fling method (a: animation, cla: yes, f: gestures, framework, waiting for tree to go green)
### severe: regression - 3 pull request(s)
[68644](https://github.com/flutter/flutter/pull/68644) Fix overscroll edge case that puts NestedScrollViews out of sync (cla: yes, f: scrolling, framework, severe: regression, waiting for tree to go green)
[69382](https://github.com/flutter/flutter/pull/69382) [gen_l10n] Fix unintended use of raw string in generateString (a: internationalization, cla: yes, severe: regression, team, tool)
[70953](https://github.com/flutter/flutter/pull/70953) Fix pointer scroll for nested NeverScrollables (a: desktop, cla: yes, f: scrolling, framework, platform-web, severe: regression, waiting for tree to go green)
### a: fidelity - 3 pull request(s)
[61981](https://github.com/flutter/flutter/pull/61981) Positioning IME bars on iOS (a: fidelity, a: internationalization, a: text input, cla: yes, framework, waiting for tree to go green)
[70160](https://github.com/flutter/flutter/pull/70160) Update PopupMenuButton to match Material Design spec (a: fidelity, cla: yes, f: material design, framework, waiting for tree to go green)
[72531](https://github.com/flutter/flutter/pull/72531) Update Scrollbar behavior for mobile devices (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
### a: error message - 3 pull request(s)
[62502](https://github.com/flutter/flutter/pull/62502) Fix typo subetting should be subsetting (a: error message, cla: yes, tool, waiting for tree to go green)
[66142](https://github.com/flutter/flutter/pull/66142) Fix 'Invalid Image Data' for local Gold testing (a: error message, a: tests, cla: yes, framework, waiting for tree to go green)
[72904](https://github.com/flutter/flutter/pull/72904) improve error message when herocontroller is shared by multiple navig… (a: animation, a: error message, cla: yes, framework, waiting for tree to go green)
### perf: memory - 2 pull request(s)
[66570](https://github.com/flutter/flutter/pull/66570) Let perf tests measure memory by default (cla: yes, perf: memory, severe: performance, team)
[66688](https://github.com/flutter/flutter/pull/66688) Dispose of images after using them (a: tests, cla: yes, framework, perf: memory, severe: performance)
### perf: speed - 2 pull request(s)
[67147](https://github.com/flutter/flutter/pull/67147) 5x startup test repitition to reduce noise (cla: yes, customer: money (g3), perf: speed, severe: performance, team, waiting for tree to go green)
[68065](https://github.com/flutter/flutter/pull/68065) Improve performance of collectAllElements (a: tests, cla: yes, framework, perf: speed, severe: performance, t: flutter driver, team, waiting for tree to go green)
### platform-android - 2 pull request(s)
[71738](https://github.com/flutter/flutter/pull/71738) Allow flavors and build types when using plugins (cla: yes, platform-android, t: gradle, team, tool, waiting for tree to go green)
[71879](https://github.com/flutter/flutter/pull/71879) Add DynamicFeature system channel (cla: yes, engine, framework, platform-android)
### platform-windows - 2 pull request(s)
[67029](https://github.com/flutter/flutter/pull/67029) Improve Windows symlink instructions (a: build, a: desktop, cla: yes, platform-windows, tool)
[68657](https://github.com/flutter/flutter/pull/68657) Enable dev/bots/ build_tests for Windows (a: desktop, cla: yes, platform-windows, team)
### t: flutter driver - 2 pull request(s)
[68065](https://github.com/flutter/flutter/pull/68065) Improve performance of collectAllElements (a: tests, cla: yes, framework, perf: speed, severe: performance, t: flutter driver, team, waiting for tree to go green)
[68654](https://github.com/flutter/flutter/pull/68654) Driver vm service (a: tests, cla: yes, framework, t: flutter driver, team, waiting for tree to go green)
### t: gradle - 2 pull request(s)
[71738](https://github.com/flutter/flutter/pull/71738) Allow flavors and build types when using plugins (cla: yes, platform-android, t: gradle, team, tool, waiting for tree to go green)
[71964](https://github.com/flutter/flutter/pull/71964) Ensure apps can build while using AGP 3.3.0 (cla: yes, t: gradle, team, tool, waiting for tree to go green)
### team: flakes - 2 pull request(s)
[69339](https://github.com/flutter/flutter/pull/69339) Do not fail if average_memory_usage is not recorded (cla: yes, team, team: flakes)
[74055](https://github.com/flutter/flutter/pull/74055) Skip flaky flutter_immediately_exit test (cla: yes, team: flakes, tool)
### work in progress; do not review - 1 pull request(s)
[70058](https://github.com/flutter/flutter/pull/70058) [flutter_tools] remove branch migration and standardize constructor style for version interface (cla: yes, tool, work in progress; do not review)
### platform-linux - 1 pull request(s)
[68658](https://github.com/flutter/flutter/pull/68658) Enable dev/bots/ build_tests for Linux (a: desktop, cla: yes, platform-linux, team)
### cp: 1.25 completed - 1 pull request(s)
[72120](https://github.com/flutter/flutter/pull/72120) Revert "Remove duplicate code in Element.rebuild() and BuildOwner.buildScope()" (cla: yes, cp: 1.25, cp: 1.25 completed, framework)
### f: date/time picker - 1 pull request(s)
[65010](https://github.com/flutter/flutter/pull/65010) Fix Semi Hidden helpText in showDatePicker (a: internationalization, cla: yes, f: date/time picker, f: material design, framework)
### a: triage improvements - 1 pull request(s)
[66621](https://github.com/flutter/flutter/pull/66621) Remove "Try accepting the local network permissions popup" warning (a: triage improvements, cla: yes, platform-ios, tool, waiting for tree to go green)
### severe: crash - 1 pull request(s)
[73016](https://github.com/flutter/flutter/pull/73016) fix an assertion causes by zero offset pointer scroll (cla: yes, f: scrolling, framework, severe: crash, waiting for tree to go green)
### a: typography - 1 pull request(s)
[66375](https://github.com/flutter/flutter/pull/66375) Provide defaulting for textScaleFactor when passing to dart:ui (a: typography, cla: yes, framework, waiting for tree to go green)
### t: flutter doctor - 1 pull request(s)
[69194](https://github.com/flutter/flutter/pull/69194) Include VS Code + Android Studio URLs in the No IDE message (cla: yes, t: flutter doctor, tool, waiting for tree to go green)
### cp: 1.25 - 1 pull request(s)
[72120](https://github.com/flutter/flutter/pull/72120) Revert "Remove duplicate code in Element.rebuild() and BuildOwner.buildScope()" (cla: yes, cp: 1.25, cp: 1.25 completed, framework)
### a: build - 1 pull request(s)
[67029](https://github.com/flutter/flutter/pull/67029) Improve Windows symlink instructions (a: build, a: desktop, cla: yes, platform-windows, tool)
### p: integration_test - 1 pull request(s)
[71934](https://github.com/flutter/flutter/pull/71934) Add integration_test to integration tests build shard (cla: yes, p: integration_test, team, waiting for tree to go green)
### waiting for customer response - 1 pull request(s)
[71829](https://github.com/flutter/flutter/pull/71829) Add --dart-define option support to build aar command (cla: yes, tool, waiting for customer response)
### perf: energy - 1 pull request(s)
[66386](https://github.com/flutter/flutter/pull/66386) Default measureCpuGpu to true (cla: yes, perf: energy, severe: performance, team, waiting for tree to go green)
### a: mouse - 1 pull request(s)
[66039](https://github.com/flutter/flutter/pull/66039) fix mouse wheel scroll miscontrol of ScrollPosition. (a: desktop, a: mouse, cla: yes, f: scrolling, framework, waiting for tree to go green)
## Merged PRs by labels for `flutter/engine`
### cla: yes - 1864 pull request(s)
[17881](https://github.com/flutter/engine/pull/17881) Enabled metal on ios simulator (cla: yes, waiting for tree to go green)
[18733](https://github.com/flutter/engine/pull/18733) delete opengl texture when it detatch from surfacetexture. (cla: yes, waiting for tree to go green)
[19134](https://github.com/flutter/engine/pull/19134) [web] Support custom url strategies (cla: yes, platform-web)
[19292](https://github.com/flutter/engine/pull/19292) [iOS] Fix platfotm view called multiple times (cla: yes, platform-ios, waiting for tree to go green)
[19405](https://github.com/flutter/engine/pull/19405) Add windows plugin texture support (Work in progress (WIP), cla: yes, waiting for tree to go green)
[19634](https://github.com/flutter/engine/pull/19634) Add accessibility suport to Linux shell. (cla: yes)
[19843](https://github.com/flutter/engine/pull/19843) Migrate Dart_WeakPersistentHandle uses and roll Dart (cla: yes)
[19905](https://github.com/flutter/engine/pull/19905) Updated ColorMatrix to ColorFilter (cla: yes)
[19929](https://github.com/flutter/engine/pull/19929) Implement iOS [UITextInput firstRectForRange:] with markedText (cla: yes, platform-ios)
[19998](https://github.com/flutter/engine/pull/19998) Added GLFW error-callback into FlutterEmbedderGLFW (cla: yes)
[20160](https://github.com/flutter/engine/pull/20160) iOS Text Editing Infinite Loop (cla: yes, platform-ios)
[20254](https://github.com/flutter/engine/pull/20254) Add support of cross-building the engine for ARM64 Linux Host (cla: yes)
[20309](https://github.com/flutter/engine/pull/20309) Exposing ColorFilter to ImageFilter conversion and Compose() (cla: yes, waiting for tree to go green)
[20330](https://github.com/flutter/engine/pull/20330) Minor documentation details/breadcrumbs (cla: yes, platform-android)
[20472](https://github.com/flutter/engine/pull/20472) set old_gen_heap_size to half of available memory on iOS (cla: yes, platform-ios, waiting for tree to go green)
[20473](https://github.com/flutter/engine/pull/20473) Limit heap growth on Android (cla: yes, platform-android)
[20496](https://github.com/flutter/engine/pull/20496) Migration to PlatformDispatcher and multi-window (cla: yes, platform-android, platform-ios)
[20531](https://github.com/flutter/engine/pull/20531) hasStrings Mac (cla: yes)
[20629](https://github.com/flutter/engine/pull/20629) Add Linux Wayland support (cla: yes)
[20643](https://github.com/flutter/engine/pull/20643) SKP based shader warmup (cla: yes, waiting for tree to go green)
[20748](https://github.com/flutter/engine/pull/20748) Git versioning flag (cla: yes)
[20794](https://github.com/flutter/engine/pull/20794) Implement browser history class for router widget (cla: yes, platform-web, waiting for tree to go green)
[20836](https://github.com/flutter/engine/pull/20836) Track lock key down state instead of lock state (affects: desktop, cla: yes, needs tests, platform-linux)
[20868](https://github.com/flutter/engine/pull/20868) Deprecate Android v1 embedding classes (cla: yes, platform-android, waiting for tree to go green)
[20962](https://github.com/flutter/engine/pull/20962) Split out EmbedderTest{Context,Compositor} to handle software and GL separately (cla: yes, waiting for tree to go green)
[20963](https://github.com/flutter/engine/pull/20963) running screenshot tests on ios-safari unit tests (cla: yes)
[20972](https://github.com/flutter/engine/pull/20972) Added keyEvent support for iOS 13.4+ (cla: yes, platform-ios, waiting for tree to go green)
[20981](https://github.com/flutter/engine/pull/20981) Clean up deprecated EncodableValue code (cla: yes)
[20997](https://github.com/flutter/engine/pull/20997) add checker board for clip_path,clip_rect,clip_rrect,physical_shap_layer (cla: yes)
[21048](https://github.com/flutter/engine/pull/21048) [web] Allow updating input configuration while connection is active (cla: yes, platform-web)
[21057](https://github.com/flutter/engine/pull/21057) Create an ImageHandle wrapper (cla: yes)
[21059](https://github.com/flutter/engine/pull/21059) Add a new raster status `kSkipAndRetry` frame (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21062](https://github.com/flutter/engine/pull/21062) Make drain() consistently asynchronous. (cla: yes, waiting for tree to go green)
[21074](https://github.com/flutter/engine/pull/21074) Roll Skia from fb5e0ebef07c to 0b6bf1c9668e (2 revisions) (cla: yes, waiting for tree to go green)
[21076](https://github.com/flutter/engine/pull/21076) add a line to build host for scenario tests (cla: yes, waiting for tree to go green)
[21077](https://github.com/flutter/engine/pull/21077) updating the documentation after integration_test migration (cla: yes)
[21079](https://github.com/flutter/engine/pull/21079) Roll Fuchsia Mac SDK from 5o9onBKYd... to b9rM1nBK1... (cla: yes, waiting for tree to go green)
[21080](https://github.com/flutter/engine/pull/21080) Disable flaky iOS Scenario app tests (cla: yes)
[21081](https://github.com/flutter/engine/pull/21081) Remove deprecated methods from FlutterViewController (cla: yes)
[21082](https://github.com/flutter/engine/pull/21082) Minor windows.h cleanup (cla: yes)
[21083](https://github.com/flutter/engine/pull/21083) Roll Dart SDK from 72393cc698da to 1abce6d054ad (3 revisions) (cla: yes)
[21085](https://github.com/flutter/engine/pull/21085) Roll Skia from 0b6bf1c9668e to 9d6f955f52e9 (8 revisions) (cla: yes, waiting for tree to go green)
[21086](https://github.com/flutter/engine/pull/21086) Roll Fuchsia Linux SDK from l8baHga4c... to XIejclW2X... (cla: yes, waiting for tree to go green)
[21087](https://github.com/flutter/engine/pull/21087) Re-enable (most) iOS Scenarios tests (cla: yes)
[21088](https://github.com/flutter/engine/pull/21088) re-enable scenario tests on iOS (cla: yes)
[21089](https://github.com/flutter/engine/pull/21089) Copyright header hygiene improvements (cla: yes, platform-android)
[21090](https://github.com/flutter/engine/pull/21090) Roll Skia from 9d6f955f52e9 to bbe69951b416 (4 revisions) (cla: yes, waiting for tree to go green)
[21091](https://github.com/flutter/engine/pull/21091) Prefer C++ standard headers to their C counterpart (cla: yes)
[21092](https://github.com/flutter/engine/pull/21092) Roll Dart SDK from 1abce6d054ad to 14f1940f537e (1 revision) (cla: yes, waiting for tree to go green)
[21093](https://github.com/flutter/engine/pull/21093) Roll Dart SDK from 14f1940f537e to 1c887123b92c (1 revision) (cla: yes, waiting for tree to go green)
[21095](https://github.com/flutter/engine/pull/21095) [macOS] Set the display refresh rate (cla: yes)
[21096](https://github.com/flutter/engine/pull/21096) Roll Skia from bbe69951b416 to 6518d77a2200 (1 revision) (cla: yes, waiting for tree to go green)
[21101](https://github.com/flutter/engine/pull/21101) Roll Fuchsia Mac SDK from b9rM1nBK1... to ggoll70iR... (cla: yes, waiting for tree to go green)
[21102](https://github.com/flutter/engine/pull/21102) Handle malloc edge-case in mock_engine (cla: yes)
[21107](https://github.com/flutter/engine/pull/21107) Fix a AppLifecycleTest present time race between the animation and the rest of the test (cla: yes, platform-ios, waiting for tree to go green)
[21109](https://github.com/flutter/engine/pull/21109) Fix erroneous dartdoc @tool directive. (cla: yes, waiting for tree to go green)
[21111](https://github.com/flutter/engine/pull/21111) Update OCMock to version 3.7.1 (cla: yes)
[21112](https://github.com/flutter/engine/pull/21112) [web] Fix mis-aligned widget spans (cla: yes, platform-web)
[21114](https://github.com/flutter/engine/pull/21114) Fix comment indentation (cla: yes, platform-android)
[21115](https://github.com/flutter/engine/pull/21115) web: make a few variables non-null (cla: yes, platform-web)
[21118](https://github.com/flutter/engine/pull/21118) Check for a valid SkSL cache directory before calling VisitFiles (cla: yes)
[21121](https://github.com/flutter/engine/pull/21121) Roll Fuchsia Linux SDK from XIejclW2X... to f3YqG3OdI... (cla: yes, waiting for tree to go green)
[21122](https://github.com/flutter/engine/pull/21122) Roll Skia from 6518d77a2200 to 9eb848ae8218 (20 revisions) (cla: yes, waiting for tree to go green)
[21124](https://github.com/flutter/engine/pull/21124) Roll Skia from 9eb848ae8218 to 582c5a9a84ac (1 revision) (cla: yes, waiting for tree to go green)
[21125](https://github.com/flutter/engine/pull/21125) Disable iOS application lifetime Scenario tests (cla: yes)
[21127](https://github.com/flutter/engine/pull/21127) Clean up C++ header includes (cla: yes, platform-android)
[21128](https://github.com/flutter/engine/pull/21128) Roll Dart SDK from 1c887123b92c to d2ba4fd3275e (1 revision) (cla: yes, waiting for tree to go green)
[21130](https://github.com/flutter/engine/pull/21130) [felt] Use autoninja instead of hardcoding threads (cla: yes)
[21131](https://github.com/flutter/engine/pull/21131) Roll Fuchsia Mac SDK from ggoll70iR... to oINI9fspF... (cla: yes, waiting for tree to go green)
[21132](https://github.com/flutter/engine/pull/21132) Roll Fuchsia Linux SDK from f3YqG3OdI... to hO-ki0WJb... (cla: yes, waiting for tree to go green)
[21133](https://github.com/flutter/engine/pull/21133) Roll Skia from 582c5a9a84ac to 186866c46179 (1 revision) (cla: yes, waiting for tree to go green)
[21134](https://github.com/flutter/engine/pull/21134) Roll Dart SDK from d2ba4fd3275e to 3533cfda999e (1 revision) (cla: yes, waiting for tree to go green)
[21135](https://github.com/flutter/engine/pull/21135) [felt] Eliminate ninja-jobs argument (cla: yes)
[21136](https://github.com/flutter/engine/pull/21136) Roll Fuchsia Mac SDK from oINI9fspF... to C73kzh_IF... (cla: yes, waiting for tree to go green)
[21137](https://github.com/flutter/engine/pull/21137) Roll Dart SDK from 3533cfda999e to 4bf1f624d06e (1 revision) (cla: yes, waiting for tree to go green)
[21138](https://github.com/flutter/engine/pull/21138) Roll Fuchsia Linux SDK from hO-ki0WJb... to 0XXjmMun1... (cla: yes, waiting for tree to go green)
[21139](https://github.com/flutter/engine/pull/21139) Roll Dart SDK from 4bf1f624d06e to b6f67aa2cc72 (1 revision) (cla: yes, waiting for tree to go green)
[21140](https://github.com/flutter/engine/pull/21140) Roll Skia from 186866c46179 to b711737c1384 (1 revision) (cla: yes, waiting for tree to go green)
[21141](https://github.com/flutter/engine/pull/21141) Roll Fuchsia Mac SDK from C73kzh_IF... to 78RTO77Tu... (cla: yes, waiting for tree to go green)
[21142](https://github.com/flutter/engine/pull/21142) Roll Fuchsia Linux SDK from 0XXjmMun1... to KA_kDgY7C... (cla: yes, waiting for tree to go green)
[21143](https://github.com/flutter/engine/pull/21143) Roll Fuchsia Mac SDK from 78RTO77Tu... to m7z9dEdGg... (cla: yes, waiting for tree to go green)
[21144](https://github.com/flutter/engine/pull/21144) Roll Fuchsia Linux SDK from KA_kDgY7C... to zKQw_oHsx... (cla: yes, waiting for tree to go green)
[21146](https://github.com/flutter/engine/pull/21146) Roll Skia from b711737c1384 to 081bc32703b7 (4 revisions) (cla: yes, waiting for tree to go green)
[21147](https://github.com/flutter/engine/pull/21147) Roll Dart SDK from b6f67aa2cc72 to 27d9970dfeb1 (1 revision) (cla: yes, waiting for tree to go green)
[21148](https://github.com/flutter/engine/pull/21148) Fix an include path to match the others. (cla: yes)
[21149](https://github.com/flutter/engine/pull/21149) Add --enable-isolate-groups to allowed flags in switches.cc (cla: yes)
[21151](https://github.com/flutter/engine/pull/21151) Roll Fuchsia Mac SDK from m7z9dEdGg... to arL8NjPHW... (cla: yes, waiting for tree to go green)
[21152](https://github.com/flutter/engine/pull/21152) [fuchsia] set maxframesinflight to be configurable (cla: yes)
[21156](https://github.com/flutter/engine/pull/21156) Roll Skia from 081bc32703b7 to 34b19c575066 (7 revisions) (cla: yes, waiting for tree to go green)
[21157](https://github.com/flutter/engine/pull/21157) Remove suppression of null-related warnings (cla: yes, waiting for tree to go green)
[21159](https://github.com/flutter/engine/pull/21159) Roll Skia from 34b19c575066 to 6253b5787df8 (7 revisions) (cla: yes, waiting for tree to go green)
[21160](https://github.com/flutter/engine/pull/21160) Roll Dart SDK from 27d9970dfeb1 to c835079edda4 (2 revisions) (cla: yes, waiting for tree to go green)
[21161](https://github.com/flutter/engine/pull/21161) [windows] Allow engine flags via environment vars (cla: yes)
[21162](https://github.com/flutter/engine/pull/21162) Roll Skia from 6253b5787df8 to 37fd658981dd (1 revision) (cla: yes, waiting for tree to go green)
[21163](https://github.com/flutter/engine/pull/21163) Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[21164](https://github.com/flutter/engine/pull/21164) Add an explicit API for font change notification (cla: yes)
[21166](https://github.com/flutter/engine/pull/21166) Define _USE_MATH_DEFINES on Windows where needed (cla: yes, waiting for tree to go green)
[21167](https://github.com/flutter/engine/pull/21167) Force builders to run. (cla: yes)
[21169](https://github.com/flutter/engine/pull/21169) Roll Fuchsia Mac SDK from arL8NjPHW... to 8q8xxvY60... (cla: yes, waiting for tree to go green)
[21170](https://github.com/flutter/engine/pull/21170) Roll Skia from 37fd658981dd to 2bc4077c9e42 (4 revisions) (cla: yes, waiting for tree to go green)
[21171](https://github.com/flutter/engine/pull/21171) Roll Fuchsia Linux SDK from zKQw_oHsx... to -iBBiPj1C... (cla: yes, waiting for tree to go green)
[21172](https://github.com/flutter/engine/pull/21172) Roll Skia from 2bc4077c9e42 to aecd484d03d7 (2 revisions) (cla: yes, waiting for tree to go green)
[21176](https://github.com/flutter/engine/pull/21176) Add missing <cstring> header for (strcmp, strrchr) (cla: yes)
[21178](https://github.com/flutter/engine/pull/21178) Roll Skia from aecd484d03d7 to 22aa7d791515 (5 revisions) (cla: yes, waiting for tree to go green)
[21179](https://github.com/flutter/engine/pull/21179) Discard wrong size layer tree instead of rendering it (cla: yes, perf: speed, severe: performance, waiting for tree to go green)
[21181](https://github.com/flutter/engine/pull/21181) Roll Skia from 22aa7d791515 to d911c91d8895 (5 revisions) (cla: yes, waiting for tree to go green)
[21183](https://github.com/flutter/engine/pull/21183) Roll Skia from d911c91d8895 to 6f3ed7f72cd6 (3 revisions) (cla: yes, waiting for tree to go green)
[21186](https://github.com/flutter/engine/pull/21186) Roll Skia from 6f3ed7f72cd6 to 50dd7e15af47 (3 revisions) (cla: yes, waiting for tree to go green)
[21188](https://github.com/flutter/engine/pull/21188) Flutter 1.22.0-12.1.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21189](https://github.com/flutter/engine/pull/21189) Fix NPE in PlatformPlugin.getClipboardData() (cla: yes, platform-android)
[21190](https://github.com/flutter/engine/pull/21190) Roll Skia from 50dd7e15af47 to a195d101f96c (2 revisions) (cla: yes, waiting for tree to go green)
[21191](https://github.com/flutter/engine/pull/21191) Account for current open image in FlutterImageView (cla: yes, platform-android, waiting for tree to go green)
[21193](https://github.com/flutter/engine/pull/21193) [darwin] Header #import hygiene (cla: yes, platform-ios)
[21194](https://github.com/flutter/engine/pull/21194) [web] Integration test for selectable text (affects: text input, cla: yes, platform-web)
[21197](https://github.com/flutter/engine/pull/21197) Roll Fuchsia Linux SDK from -iBBiPj1C... to sXR21ye3r... (cla: yes, waiting for tree to go green)
[21203](https://github.com/flutter/engine/pull/21203) Verify Flutter clang module, add hook for verifying consumer warnings (cla: yes, platform-ios)
[21205](https://github.com/flutter/engine/pull/21205) Roll Skia from a195d101f96c to 3e72b3ff8ca7 (7 revisions) (cla: yes, waiting for tree to go green)
[21206](https://github.com/flutter/engine/pull/21206) Roll Fuchsia Mac SDK from 8q8xxvY60... to VpUd_W9Oi... (cla: yes, waiting for tree to go green)
[21208](https://github.com/flutter/engine/pull/21208) Fix x-axis direction in Offset.direction doc (cla: yes)
[21209](https://github.com/flutter/engine/pull/21209) Roll Dart SDK from c835079edda4 to 7476b58cc9d0 (8 revisions) (cla: yes, waiting for tree to go green)
[21210](https://github.com/flutter/engine/pull/21210) Roll Skia from 3e72b3ff8ca7 to 2610e8261e9e (4 revisions) (cla: yes, waiting for tree to go green)
[21212](https://github.com/flutter/engine/pull/21212) Roll Fuchsia Linux SDK from sXR21ye3r... to G5UItrFeP... (cla: yes, waiting for tree to go green)
[21213](https://github.com/flutter/engine/pull/21213) IME Animation clean up extraneous window inset call (cla: yes, platform-android)
[21216](https://github.com/flutter/engine/pull/21216) Roll Dart SDK from 7476b58cc9d0 to 9b3b9c26a343 (2 revisions) (cla: yes, waiting for tree to go green)
[21217](https://github.com/flutter/engine/pull/21217) Add missing cstring header (fixes fl_renderer_wayland.cc) (cla: yes, waiting for tree to go green)
[21218](https://github.com/flutter/engine/pull/21218) Support Wayland only (without X11 support in gdk) (cla: yes)
[21220](https://github.com/flutter/engine/pull/21220) Roll Skia from 2610e8261e9e to 2564767d24e5 (5 revisions) (cla: yes, waiting for tree to go green)
[21221](https://github.com/flutter/engine/pull/21221) Roll Fuchsia Mac SDK from VpUd_W9Oi... to 13BzEPO47... (cla: yes, waiting for tree to go green)
[21222](https://github.com/flutter/engine/pull/21222) Roll Dart SDK from 9b3b9c26a343 to 83365979ea85 (1 revision) (cla: yes, waiting for tree to go green)
[21224](https://github.com/flutter/engine/pull/21224) Roll Dart SDK from 83365979ea85 to e41a6008746d (1 revision) (cla: yes, waiting for tree to go green)
[21226](https://github.com/flutter/engine/pull/21226) [web] enable ios safari screenshot tests (cla: yes, platform-web)
[21228](https://github.com/flutter/engine/pull/21228) [web] run safari desktop tests on luci (cla: yes)
[21230](https://github.com/flutter/engine/pull/21230) Roll Skia from 2564767d24e5 to bf66ffbbd4ce (27 revisions) (cla: yes, waiting for tree to go green)
[21231](https://github.com/flutter/engine/pull/21231) Enable delayed event delivery for macOS (affects: text input, cla: yes)
[21232](https://github.com/flutter/engine/pull/21232) Roll Fuchsia Linux SDK from G5UItrFeP... to 91U3isvKn... (cla: yes, waiting for tree to go green)
[21233](https://github.com/flutter/engine/pull/21233) Roll Dart SDK from e41a6008746d to eb24e3324908 (1 revision) (cla: yes, waiting for tree to go green)
[21234](https://github.com/flutter/engine/pull/21234) Fix segfault if engine is disposed with an uncompleted task. (cla: yes)
[21235](https://github.com/flutter/engine/pull/21235) Roll Skia from bf66ffbbd4ce to f9fdf291c567 (1 revision) (cla: yes, waiting for tree to go green)
[21238](https://github.com/flutter/engine/pull/21238) Roll Fuchsia Mac SDK from 13BzEPO47... to 2nHpC_AEO... (cla: yes, waiting for tree to go green)
[21239](https://github.com/flutter/engine/pull/21239) Roll Dart SDK from eb24e3324908 to 99970d646dc9 (1 revision) (cla: yes, waiting for tree to go green)
[21241](https://github.com/flutter/engine/pull/21241) [Fix] Replaces call to deprecated method Name.name. (cla: yes)
[21242](https://github.com/flutter/engine/pull/21242) Roll Skia from f9fdf291c567 to 51a7f9559ad4 (5 revisions) (cla: yes, waiting for tree to go green)
[21244](https://github.com/flutter/engine/pull/21244) Roll Skia from 51a7f9559ad4 to 12d06a38427d (3 revisions) (cla: yes, waiting for tree to go green)
[21245](https://github.com/flutter/engine/pull/21245) Roll Dart SDK from 99970d646dc9 to fcaedc6d9587 (3 revisions) (cla: yes, waiting for tree to go green)
[21246](https://github.com/flutter/engine/pull/21246) Roll Fuchsia Linux SDK from 91U3isvKn... to Qi0ptKLxN... (cla: yes, waiting for tree to go green)
[21247](https://github.com/flutter/engine/pull/21247) [web] Remove commented import (cla: yes, platform-web)
[21248](https://github.com/flutter/engine/pull/21248) avoid hard coding OS (cla: yes, waiting for tree to go green)
[21249](https://github.com/flutter/engine/pull/21249) Roll Skia from 12d06a38427d to 45f41b376260 (6 revisions) (cla: yes, waiting for tree to go green)
[21250](https://github.com/flutter/engine/pull/21250) Roll Skia from 45f41b376260 to c21dc07a78b9 (4 revisions) (cla: yes, waiting for tree to go green)
[21254](https://github.com/flutter/engine/pull/21254) Disable ShellTest.SkipAndSubmitFrame for flakes (cla: yes)
[21257](https://github.com/flutter/engine/pull/21257) Roll Dart SDK from fcaedc6d9587 to 2cec6af2652f (1 revision) (cla: yes, waiting for tree to go green)
[21258](https://github.com/flutter/engine/pull/21258) Workaround for an Android emulator EGL bug that can cause inaccurate GL version strings (cla: yes, platform-android, waiting for tree to go green)
[21259](https://github.com/flutter/engine/pull/21259) Do not pass invalid platform view rendering surfaces to the rasterizer (cla: yes, waiting for tree to go green)
[21260](https://github.com/flutter/engine/pull/21260) Roll Skia from c21dc07a78b9 to 31634288fdf3 (5 revisions) (cla: yes, waiting for tree to go green)
[21261](https://github.com/flutter/engine/pull/21261) Roll Dart SDK from 2cec6af2652f to 6f333dbd6a2b (1 revision) (cla: yes, waiting for tree to go green)
[21262](https://github.com/flutter/engine/pull/21262) Roll Fuchsia Mac SDK from 2nHpC_AEO... to i2PBGu2n-... (cla: yes, waiting for tree to go green)
[21265](https://github.com/flutter/engine/pull/21265) Roll Fuchsia Linux SDK from Qi0ptKLxN... to K2Oiy-AYh... (cla: yes, waiting for tree to go green)
[21266](https://github.com/flutter/engine/pull/21266) Roll Skia from 31634288fdf3 to feb4d10f7b2d (4 revisions) (cla: yes, waiting for tree to go green)
[21270](https://github.com/flutter/engine/pull/21270) Fix boolean value checks in StandardMessageCodec (cla: yes, platform-android, waiting for tree to go green)
[21272](https://github.com/flutter/engine/pull/21272) Enforce exclusivity for activity and fragments attached to the FlutterEngine (cla: yes, platform-android)
[21275](https://github.com/flutter/engine/pull/21275) support uri intent launcher in android (cla: yes, platform-android)
[21276](https://github.com/flutter/engine/pull/21276) Roll Dart SDK from 6f333dbd6a2b to 8c45e2e29cb4 (3 revisions) (cla: yes, waiting for tree to go green)
[21277](https://github.com/flutter/engine/pull/21277) Dark mode friendly iOS debugging message (cla: yes, platform-ios, waiting for tree to go green)
[21278](https://github.com/flutter/engine/pull/21278) Roll Dart SDK from 8c45e2e29cb4 to 8bd3017291e5 (1 revision) (cla: yes, waiting for tree to go green)
[21279](https://github.com/flutter/engine/pull/21279) Roll Fuchsia Mac SDK from i2PBGu2n-... to WsUbW2ZnA... (cla: yes, waiting for tree to go green)
[21284](https://github.com/flutter/engine/pull/21284) [web] dispatch browser event on flutter/service_worker channel (cla: yes)
[21286](https://github.com/flutter/engine/pull/21286) Fix iOS platform view's mask view blocking touch events. (cla: yes, platform-ios)
[21290](https://github.com/flutter/engine/pull/21290) SecurityException: Permission Denial (cla: yes, platform-android)
[21297](https://github.com/flutter/engine/pull/21297) Make SkCanvas types @anonymous; reduce logging noise (cla: yes)
[21298](https://github.com/flutter/engine/pull/21298) implement decodeFromPixels (cla: yes, waiting for tree to go green)
[21301](https://github.com/flutter/engine/pull/21301) Do not create a TestGLSurface for software-only rendering in EmbedderTest (cla: yes, waiting for tree to go green)
[21302](https://github.com/flutter/engine/pull/21302) [fuchsia] add frames_in_flight info to trace events (cla: yes)
[21303](https://github.com/flutter/engine/pull/21303) [iOS TextInput] Avoid Unnecessary UndateEditingClient Calls (cla: yes, platform-ios, waiting for tree to go green)
[21304](https://github.com/flutter/engine/pull/21304) Implement toString for Images on web (cla: yes, waiting for tree to go green)
[21307](https://github.com/flutter/engine/pull/21307) Disconnect the view's AndroidKeyProcessor when detaching from the engine (cla: yes, platform-android, waiting for tree to go green)
[21308](https://github.com/flutter/engine/pull/21308) [manual roll] Roll Fuchsia Linux SDK from K2Oiy-AYh... to 2rXyLF0YK (cla: yes, waiting for tree to go green)
[21309](https://github.com/flutter/engine/pull/21309) Roll Skia from feb4d10f7b2d to 371fde549e35 (46 revisions) (cla: yes, waiting for tree to go green)
[21310](https://github.com/flutter/engine/pull/21310) Roll Dart SDK from 8bd3017291e5 to c660a695266a (7 revisions) (cla: yes, waiting for tree to go green)
[21311](https://github.com/flutter/engine/pull/21311) Relax test around a11y updates (cla: yes, waiting for tree to go green)
[21312](https://github.com/flutter/engine/pull/21312) Roll Skia from 371fde549e35 to 1a49a5334c36 (1 revision) (cla: yes, waiting for tree to go green)
[21313](https://github.com/flutter/engine/pull/21313) [web] Add canUpdateAsMatch to PersistedPlatformView. (cla: yes, waiting for tree to go green)
[21314](https://github.com/flutter/engine/pull/21314) Detect errors encoding method channel responses (cla: yes)
[21315](https://github.com/flutter/engine/pull/21315) Roll Dart SDK from c660a695266a to c61a0818e4bd (1 revision) (cla: yes, waiting for tree to go green)
[21316](https://github.com/flutter/engine/pull/21316) Add FlEventChannel (cla: yes, waiting for customer response)
[21317](https://github.com/flutter/engine/pull/21317) Roll Fuchsia Linux SDK from 2rXyLF0YK... to VgNGzw-DQ... (cla: yes, waiting for tree to go green)
[21318](https://github.com/flutter/engine/pull/21318) Roll Skia from 1a49a5334c36 to 7a1f241c0134 (4 revisions) (cla: yes, waiting for tree to go green)
[21319](https://github.com/flutter/engine/pull/21319) Roll Fuchsia Mac SDK from WsUbW2ZnA... to WcbX470pS... (cla: yes, waiting for tree to go green)
[21320](https://github.com/flutter/engine/pull/21320) Roll Dart SDK from c61a0818e4bd to 2b8d00ac48e7 (1 revision) (cla: yes, waiting for tree to go green)
[21321](https://github.com/flutter/engine/pull/21321) Roll Skia from 7a1f241c0134 to 77960d9addc8 (1 revision) (cla: yes, waiting for tree to go green)
[21322](https://github.com/flutter/engine/pull/21322) Roll Skia from 77960d9addc8 to a38945abe337 (5 revisions) (cla: yes, waiting for tree to go green)
[21323](https://github.com/flutter/engine/pull/21323) Roll Skia from a38945abe337 to 84a008fa55b0 (2 revisions) (cla: yes, waiting for tree to go green)
[21324](https://github.com/flutter/engine/pull/21324) creating test result directory before running tests (cla: yes)
[21325](https://github.com/flutter/engine/pull/21325) enable Web Framework tests on try builds (cla: yes)
[21326](https://github.com/flutter/engine/pull/21326) Roll Skia from 84a008fa55b0 to 187b04b35777 (1 revision) (cla: yes, waiting for tree to go green)
[21328](https://github.com/flutter/engine/pull/21328) Roll Skia from 187b04b35777 to c61c895393ea (5 revisions) (cla: yes, waiting for tree to go green)
[21329](https://github.com/flutter/engine/pull/21329) [a11y] Flutter sends node roles as part of Fuchsia semantics updates. (cla: yes, waiting for tree to go green)
[21330](https://github.com/flutter/engine/pull/21330) Retain the WindowInsetsAnimation callback if code shrinking is enabled (cla: yes, platform-android, waiting for tree to go green)
[21331](https://github.com/flutter/engine/pull/21331) clarify that offset is not used in addPlatformView for iOS/Android (cla: yes)
[21332](https://github.com/flutter/engine/pull/21332) Roll Fuchsia Linux SDK from VgNGzw-DQ... to VGnJQMPQM... (cla: yes, waiting for tree to go green)
[21333](https://github.com/flutter/engine/pull/21333) Remove spurious semicolon (cla: yes, platform-ios)
[21336](https://github.com/flutter/engine/pull/21336) Added the ability to set the initial route via launch urls. (cla: yes, platform-ios)
[21338](https://github.com/flutter/engine/pull/21338) Revert "Deprecate Android v1 embedding classes" (cla: yes, platform-android)
[21340](https://github.com/flutter/engine/pull/21340) Roll Skia from c61c895393ea to 2b469ebd0627 (9 revisions) (cla: yes, waiting for tree to go green)
[21341](https://github.com/flutter/engine/pull/21341) disabled the auto assign bot (cla: yes)
[21343](https://github.com/flutter/engine/pull/21343) Roll Skia from 2b469ebd0627 to 3eb813e0cc13 (2 revisions) (cla: yes, waiting for tree to go green)
[21347](https://github.com/flutter/engine/pull/21347) Re-land deprecate Android v1 embedding classes (cla: yes, platform-android)
[21349](https://github.com/flutter/engine/pull/21349) Roll Fuchsia Linux SDK from VGnJQMPQM... to IWfLWIJ93... (cla: yes, waiting for tree to go green)
[21350](https://github.com/flutter/engine/pull/21350) Locale -> LanguageRange conversion to be more general in Android platformResolvedLocale (cla: yes, platform-android, waiting for tree to go green)
[21351](https://github.com/flutter/engine/pull/21351) Roll Skia from 3eb813e0cc13 to 18f4b1c7e31a (4 revisions) (cla: yes, waiting for tree to go green)
[21352](https://github.com/flutter/engine/pull/21352) Roll Skia from 18f4b1c7e31a to 443d2c17b79b (3 revisions) (cla: yes, waiting for tree to go green)
[21353](https://github.com/flutter/engine/pull/21353) remove web_tests from cirrus since they already run on LUCI (cla: yes)
[21354](https://github.com/flutter/engine/pull/21354) Roll Skia from 443d2c17b79b to ba615e892fcb (1 revision) (cla: yes, waiting for tree to go green)
[21355](https://github.com/flutter/engine/pull/21355) Embedder API Support for display settings (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21356](https://github.com/flutter/engine/pull/21356) Add an adjustment to currentLineWidth comparisons when pushing greedy line breaks (cla: yes)
[21357](https://github.com/flutter/engine/pull/21357) Roll Skia from ba615e892fcb to 81fc1fc3bfe6 (2 revisions) (cla: yes, waiting for tree to go green)
[21358](https://github.com/flutter/engine/pull/21358) Roll Fuchsia Mac SDK from WcbX470pS... to z7zaxhmps... (cla: yes, waiting for tree to go green)
[21359](https://github.com/flutter/engine/pull/21359) Remove legacy C++ EncodableValue (cla: yes)
[21362](https://github.com/flutter/engine/pull/21362) Update error text for iOS 14 launch (cla: yes, platform-ios)
[21363](https://github.com/flutter/engine/pull/21363) Roll Skia from 81fc1fc3bfe6 to 7b97b3cb2bd0 (5 revisions) (cla: yes, waiting for tree to go green)
[21364](https://github.com/flutter/engine/pull/21364) Apply dpr transform to fuchsia accessibility bridge (cla: yes, waiting for tree to go green)
[21365](https://github.com/flutter/engine/pull/21365) Roll Skia from 7b97b3cb2bd0 to 59b2a92c96ba (4 revisions) (cla: yes, waiting for tree to go green)
[21366](https://github.com/flutter/engine/pull/21366) Flutter 1.22.0-12.2.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21367](https://github.com/flutter/engine/pull/21367) Reland: Adds fuchsia node roles to accessibility bridge updat… (cla: yes)
[21368](https://github.com/flutter/engine/pull/21368) Roll Skia from 59b2a92c96ba to 1b89eb742a66 (5 revisions) (cla: yes, waiting for tree to go green)
[21369](https://github.com/flutter/engine/pull/21369) Roll Fuchsia Linux SDK from IWfLWIJ93... to -grWUcdOo... (cla: yes, waiting for tree to go green)
[21370](https://github.com/flutter/engine/pull/21370) fix EnginePicture.toImage; implement rawRgba toByteData; add test (cla: yes, platform-web, waiting for tree to go green)
[21371](https://github.com/flutter/engine/pull/21371) isCloneOf for Image (cla: yes, waiting for tree to go green)
[21372](https://github.com/flutter/engine/pull/21372) Fix for issue flutter/#66502. (cla: yes, platform-web)
[21373](https://github.com/flutter/engine/pull/21373) Roll Skia from 1b89eb742a66 to fc396a85e4c8 (1 revision) (cla: yes, waiting for tree to go green)
[21374](https://github.com/flutter/engine/pull/21374) Roll Skia from fc396a85e4c8 to 96d9b52bb948 (2 revisions) (cla: yes, waiting for tree to go green)
[21376](https://github.com/flutter/engine/pull/21376) Roll Dart SDK from 2b8d00ac48e7 to 616bc676e75b (1 revision) (cla: yes, waiting for tree to go green)
[21377](https://github.com/flutter/engine/pull/21377) Roll Fuchsia Mac SDK from z7zaxhmps... to v7dguVBSA... (cla: yes, waiting for tree to go green)
[21378](https://github.com/flutter/engine/pull/21378) Roll Skia from 96d9b52bb948 to cf43fc676856 (1 revision) (cla: yes, waiting for tree to go green)
[21380](https://github.com/flutter/engine/pull/21380) Roll Dart SDK from 616bc676e75b to aac512605bfe (2 revisions) (cla: yes, waiting for tree to go green)
[21381](https://github.com/flutter/engine/pull/21381) Roll Fuchsia Linux SDK from -grWUcdOo... to NeYDIjo58... (cla: yes, waiting for tree to go green)
[21383](https://github.com/flutter/engine/pull/21383) E2e screenshot tests2 (cla: yes, platform-web)
[21384](https://github.com/flutter/engine/pull/21384) Roll Skia from cf43fc676856 to e74cebefdeeb (6 revisions) (cla: yes, waiting for tree to go green)
[21385](https://github.com/flutter/engine/pull/21385) Roll Skia from e74cebefdeeb to 6e51d92a0278 (7 revisions) (cla: yes, waiting for tree to go green)
[21386](https://github.com/flutter/engine/pull/21386) Split out embedder_unittests test cases into GL and non-GL tests (cla: yes, waiting for tree to go green)
[21387](https://github.com/flutter/engine/pull/21387) Roll Dart SDK from aac512605bfe to 62aea7e5112a (1 revision) (cla: yes, waiting for tree to go green)
[21388](https://github.com/flutter/engine/pull/21388) hasStrings Linux (affects: desktop, cla: yes, needs tests, platform-linux)
[21389](https://github.com/flutter/engine/pull/21389) Avoid sending a 0 DPR to framework (cla: yes)
[21390](https://github.com/flutter/engine/pull/21390) Roll Skia from 6e51d92a0278 to fe3d9a23095e (2 revisions) (cla: yes, waiting for tree to go green)
[21391](https://github.com/flutter/engine/pull/21391) Revert "Make drain() consistently asynchronous." (cla: yes)
[21392](https://github.com/flutter/engine/pull/21392) fuchsia: Don't send ViewportMetrics w/ 0 DPR (cla: yes, platform-fuchsia)
[21393](https://github.com/flutter/engine/pull/21393) Roll Skia from fe3d9a23095e to 03c31eca19ce (1 revision) (cla: yes, waiting for tree to go green)
[21395](https://github.com/flutter/engine/pull/21395) Roll Dart SDK from 62aea7e5112a to eb8e6232da02 (1 revision) (cla: yes, waiting for tree to go green)
[21396](https://github.com/flutter/engine/pull/21396) Support dragging native platform views (cla: yes, platform-android)
[21397](https://github.com/flutter/engine/pull/21397) Remove ASCII art from mDNS error log (cla: yes, platform-ios)
[21398](https://github.com/flutter/engine/pull/21398) Roll Fuchsia Mac SDK from v7dguVBSA... to xnB_uJM8T... (cla: yes, waiting for tree to go green)
[21399](https://github.com/flutter/engine/pull/21399) Roll Skia from 03c31eca19ce to 5227335b0add (2 revisions) (cla: yes, waiting for tree to go green)
[21402](https://github.com/flutter/engine/pull/21402) Roll Skia from 5227335b0add to 1748c6a3b8c8 (1 revision) (cla: yes, waiting for tree to go green)
[21403](https://github.com/flutter/engine/pull/21403) Roll Fuchsia Linux SDK from NeYDIjo58... to BFLXvCMVi... (cla: yes, waiting for tree to go green)
[21405](https://github.com/flutter/engine/pull/21405) Add workaround for missing fl_method_xxx_response_get_type() symbols (cla: yes, waiting for tree to go green)
[21406](https://github.com/flutter/engine/pull/21406) fl_method_response.cc: fix lint failures (cla: yes)
[21407](https://github.com/flutter/engine/pull/21407) Roll Dart SDK from eb8e6232da02 to 13b3f2d7b6ea (3 revisions) (cla: yes, waiting for tree to go green)
[21408](https://github.com/flutter/engine/pull/21408) Fix linking issue (missing wayland-client library) (cla: yes)
[21410](https://github.com/flutter/engine/pull/21410) Roll Skia from 1748c6a3b8c8 to 3b88c0772e89 (1 revision) (cla: yes, waiting for tree to go green)
[21411](https://github.com/flutter/engine/pull/21411) Roll Skia from 3b88c0772e89 to d7ab45027877 (1 revision) (cla: yes, waiting for tree to go green)
[21414](https://github.com/flutter/engine/pull/21414) Roll Fuchsia Mac SDK from xnB_uJM8T... to _e0onA6gY... (cla: yes, waiting for tree to go green)
[21415](https://github.com/flutter/engine/pull/21415) Roll Skia from d7ab45027877 to aeae3a58e3da (6 revisions) (cla: yes, waiting for tree to go green)
[21417](https://github.com/flutter/engine/pull/21417) Roll Skia from aeae3a58e3da to 7bd60430299f (1 revision) (cla: yes, waiting for tree to go green)
[21418](https://github.com/flutter/engine/pull/21418) Enable embedder_unittests on Fuchsia (cla: yes, waiting for tree to go green)
[21419](https://github.com/flutter/engine/pull/21419) Roll Dart SDK from 13b3f2d7b6ea to 4fb134a228c7 (2 revisions) (cla: yes, waiting for tree to go green)
[21420](https://github.com/flutter/engine/pull/21420) Roll Fuchsia Linux SDK from BFLXvCMVi... to XcAUWQUZm... (cla: yes)
[21421](https://github.com/flutter/engine/pull/21421) Roll Skia from 7bd60430299f to 68861e391313 (14 revisions) (cla: yes, waiting for tree to go green)
[21422](https://github.com/flutter/engine/pull/21422) Fix getNextFrame (cla: yes)
[21423](https://github.com/flutter/engine/pull/21423) [web] Respond with null for unimplemented method channels (cla: yes, platform-web)
[21424](https://github.com/flutter/engine/pull/21424) Roll Skia from 68861e391313 to a05d27b170ee (1 revision) (cla: yes, waiting for tree to go green)
[21425](https://github.com/flutter/engine/pull/21425) Roll Skia from a05d27b170ee to 5e1545fa00c8 (1 revision) (cla: yes, waiting for tree to go green)
[21426](https://github.com/flutter/engine/pull/21426) Roll Dart SDK from 4fb134a228c7 to db7eb2549480 (1 revision) (cla: yes, waiting for tree to go green)
[21427](https://github.com/flutter/engine/pull/21427) Roll Dart SDK from db7eb2549480 to 200e8da5072a (1 revision) (cla: yes, waiting for tree to go green)
[21430](https://github.com/flutter/engine/pull/21430) Roll Fuchsia Linux SDK from XcAUWQUZm... to 0nW5DAxcC... (cla: yes, waiting for tree to go green)
[21431](https://github.com/flutter/engine/pull/21431) Roll Skia from 5e1545fa00c8 to 766eeb2ac325 (1 revision) (cla: yes, waiting for tree to go green)
[21432](https://github.com/flutter/engine/pull/21432) [ios] Remove unused is_valid_ from IOS Metal Context (cla: yes, platform-ios)
[21433](https://github.com/flutter/engine/pull/21433) Roll Skia from 766eeb2ac325 to 5648572f4a94 (1 revision) (cla: yes, waiting for tree to go green)
[21434](https://github.com/flutter/engine/pull/21434) Roll Fuchsia Mac SDK from _e0onA6gY... to SUSVNJcX5... (cla: yes, waiting for tree to go green)
[21435](https://github.com/flutter/engine/pull/21435) Roll Skia from 5648572f4a94 to eabce08bb2f2 (1 revision) (cla: yes, waiting for tree to go green)
[21436](https://github.com/flutter/engine/pull/21436) Allow hot reload without syncing all asset files to devFS (cla: yes)
[21437](https://github.com/flutter/engine/pull/21437) Roll Dart SDK from 200e8da5072a to c938793e2d6f (1 revision) (cla: yes, waiting for tree to go green)
[21438](https://github.com/flutter/engine/pull/21438) Respect the --debug option in Firefox (cla: yes, platform-web, waiting for tree to go green)
[21439](https://github.com/flutter/engine/pull/21439) Roll Fuchsia Linux SDK from 0nW5DAxcC... to xdxm8rU8b... (cla: yes, waiting for tree to go green)
[21440](https://github.com/flutter/engine/pull/21440) Roll Dart SDK from c938793e2d6f to fe83360d3a7c (1 revision) (cla: yes, waiting for tree to go green)
[21441](https://github.com/flutter/engine/pull/21441) Roll Fuchsia Mac SDK from SUSVNJcX5... to v5Ko06GkT... (cla: yes, waiting for tree to go green)
[21443](https://github.com/flutter/engine/pull/21443) Roll Fuchsia Linux SDK from xdxm8rU8b... to ej-CkfSra... (cla: yes, waiting for tree to go green)
[21444](https://github.com/flutter/engine/pull/21444) Remove unnecessary `?`s from web_ui. (cla: yes)
[21445](https://github.com/flutter/engine/pull/21445) Roll Fuchsia Mac SDK from v5Ko06GkT... to k_lSjZxIH... (cla: yes, waiting for tree to go green)
[21446](https://github.com/flutter/engine/pull/21446) Roll Dart SDK from fe83360d3a7c to 44e4f3958019 (1 revision) (cla: yes, waiting for tree to go green)
[21447](https://github.com/flutter/engine/pull/21447) Roll Fuchsia Linux SDK from ej-CkfSra... to HNNs4gfuM... (cla: yes, waiting for tree to go green)
[21448](https://github.com/flutter/engine/pull/21448) Roll Skia from eabce08bb2f2 to ad6aeace6eee (2 revisions) (cla: yes, waiting for tree to go green)
[21451](https://github.com/flutter/engine/pull/21451) Roll Dart SDK from 44e4f3958019 to e2a4eaba73b8 (1 revision) (cla: yes, waiting for tree to go green)
[21453](https://github.com/flutter/engine/pull/21453) Roll Dart SDK from e2a4eaba73b8 to 13deada5b267 (1 revision) (cla: yes, waiting for tree to go green)
[21454](https://github.com/flutter/engine/pull/21454) Roll Fuchsia Mac SDK from k_lSjZxIH... to qyoO7f9Sk... (cla: yes, waiting for tree to go green)
[21455](https://github.com/flutter/engine/pull/21455) Roll Skia from ad6aeace6eee to 6a189f23af5e (6 revisions) (cla: yes, waiting for tree to go green)
[21456](https://github.com/flutter/engine/pull/21456) Revert multiple display support for embedder API (cla: yes, waiting for tree to go green)
[21458](https://github.com/flutter/engine/pull/21458) Revert "Apply dpr transform to fuchsia accessibility bridge" (cla: yes)
[21459](https://github.com/flutter/engine/pull/21459) Reland Apply dpr transform to fuchsia accessibility bridge (cla: yes)
[21461](https://github.com/flutter/engine/pull/21461) Roll Fuchsia Linux SDK from HNNs4gfuM... to 2NPr4uMi-... (cla: yes, waiting for tree to go green)
[21462](https://github.com/flutter/engine/pull/21462) Run embedder_tests on Fuchsia CI (cla: yes, waiting for tree to go green)
[21463](https://github.com/flutter/engine/pull/21463) Roll Dart SDK from 13deada5b267 to 58248a54dd58 (1 revision) (cla: yes, waiting for tree to go green)
[21464](https://github.com/flutter/engine/pull/21464) Reland multiple display support for embedder API (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21465](https://github.com/flutter/engine/pull/21465) Roll Skia from 6a189f23af5e to d82e2c1ec126 (15 revisions) (cla: yes, waiting for tree to go green)
[21466](https://github.com/flutter/engine/pull/21466) Flutter 1.22.0-12.3.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21467](https://github.com/flutter/engine/pull/21467) Make scoped_nsprotocol::release() private. (cla: yes)
[21468](https://github.com/flutter/engine/pull/21468) [macos] Allow engine flags via environment vars (cla: yes)
[21469](https://github.com/flutter/engine/pull/21469) Roll Skia from d82e2c1ec126 to 427d8ebf308c (4 revisions) (cla: yes, waiting for tree to go green)
[21471](https://github.com/flutter/engine/pull/21471) Roll Skia from 427d8ebf308c to e96cdd18ac5f (6 revisions) (cla: yes, waiting for tree to go green)
[21472](https://github.com/flutter/engine/pull/21472) Roll Dart SDK from 58248a54dd58 to 281f1e388107 (1 revision) (cla: yes, waiting for tree to go green)
[21473](https://github.com/flutter/engine/pull/21473) Clear the Minikin layout cache during engine destruction (cla: yes)
[21474](https://github.com/flutter/engine/pull/21474) Replace kLegacyFontHost_InitType with kUnknown_SkPixelGeometry. (cla: yes)
[21475](https://github.com/flutter/engine/pull/21475) Roll Dart SDK from 281f1e388107 to 4c0245356649 (1 revision) (cla: yes, waiting for tree to go green)
[21476](https://github.com/flutter/engine/pull/21476) Roll Fuchsia Mac SDK from qyoO7f9Sk... to iiCa4hab1... (cla: yes, waiting for tree to go green)
[21477](https://github.com/flutter/engine/pull/21477) Roll Skia from e96cdd18ac5f to 1fdcd389873d (1 revision) (cla: yes, waiting for tree to go green)
[21478](https://github.com/flutter/engine/pull/21478) Do not remove directories in purge (cla: yes)
[21479](https://github.com/flutter/engine/pull/21479) Roll Skia from 1fdcd389873d to 01bbe189b0d0 (1 revision) (cla: yes, waiting for tree to go green)
[21480](https://github.com/flutter/engine/pull/21480) Roll Fuchsia Linux SDK from 2NPr4uMi-... to 4UZwprAK4... (cla: yes, waiting for tree to go green)
[21481](https://github.com/flutter/engine/pull/21481) Roll Skia from 01bbe189b0d0 to 842805ced156 (1 revision) (cla: yes, waiting for tree to go green)
[21482](https://github.com/flutter/engine/pull/21482) Roll Dart SDK from 4c0245356649 to 4ea46a8b10a1 (1 revision) (cla: yes, waiting for tree to go green)
[21483](https://github.com/flutter/engine/pull/21483) Roll Skia from 842805ced156 to c73bff39bd21 (1 revision) (cla: yes, waiting for tree to go green)
[21484](https://github.com/flutter/engine/pull/21484) [fuchsia][a11y] Don't populate hidden state. (accessibility, cla: yes, platform-fuchsia, waiting for tree to go green)
[21485](https://github.com/flutter/engine/pull/21485) Roll Skia from c73bff39bd21 to 4b6f37d90277 (1 revision) (cla: yes, waiting for tree to go green)
[21487](https://github.com/flutter/engine/pull/21487) Roll Skia from 4b6f37d90277 to 0b0fb4d50b75 (2 revisions) (cla: yes, waiting for tree to go green)
[21488](https://github.com/flutter/engine/pull/21488) [fuchsia] fix typo (cla: yes)
[21489](https://github.com/flutter/engine/pull/21489) Roll Dart SDK from 4ea46a8b10a1 to 2a4169b3cfab (1 revision) (cla: yes, waiting for tree to go green)
[21492](https://github.com/flutter/engine/pull/21492) Roll Fuchsia Mac SDK from iiCa4hab1... to tuXjGvikz... (cla: yes, waiting for tree to go green)
[21495](https://github.com/flutter/engine/pull/21495) fuchsia: Remove display device availability check from Flutter (cla: yes)
[21497](https://github.com/flutter/engine/pull/21497) [linux] Allow engine flags via environment vars (affects: desktop, affects: engine, cla: yes, platform-linux)
[21499](https://github.com/flutter/engine/pull/21499) [web] Fix 3d transforms for html backend (cla: yes, platform-web)
[21500](https://github.com/flutter/engine/pull/21500) Roll Skia from 0b0fb4d50b75 to 9ecb3abfdfe8 (12 revisions) (cla: yes, waiting for tree to go green)
[21502](https://github.com/flutter/engine/pull/21502) Roll Fuchsia Linux SDK from 4UZwprAK4... to _ABSfRa7C... (cla: yes, waiting for tree to go green)
[21503](https://github.com/flutter/engine/pull/21503) Roll Skia from 9ecb3abfdfe8 to 4cf00a814f7d (1 revision) (cla: yes, waiting for tree to go green)
[21504](https://github.com/flutter/engine/pull/21504) Support loading assets from Android dynamic feature modules (cla: yes, platform-android)
[21505](https://github.com/flutter/engine/pull/21505) Roll Skia from 4cf00a814f7d to f201af8b00e8 (2 revisions) (cla: yes, waiting for tree to go green)
[21506](https://github.com/flutter/engine/pull/21506) Roll Dart SDK from 2a4169b3cfab to 0ed6ae6d709e (2 revisions) (cla: yes, waiting for tree to go green)
[21507](https://github.com/flutter/engine/pull/21507) Roll Skia from f201af8b00e8 to 8a1ed2a97bf4 (1 revision) (cla: yes, waiting for tree to go green)
[21508](https://github.com/flutter/engine/pull/21508) Roll Skia from 8a1ed2a97bf4 to a87c5076a876 (2 revisions) (cla: yes, waiting for tree to go green)
[21509](https://github.com/flutter/engine/pull/21509) Roll Fuchsia Mac SDK from tuXjGvikz... to aO19K7Ut2... (cla: yes, waiting for tree to go green)
[21511](https://github.com/flutter/engine/pull/21511) Roll Fuchsia Linux SDK from _ABSfRa7C... to sDtTSnOFx... (cla: yes, waiting for tree to go green)
[21513](https://github.com/flutter/engine/pull/21513) Revert "Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android" (cla: yes, platform-android)
[21520](https://github.com/flutter/engine/pull/21520) re-enable CanvasKit path ops test (cla: yes, waiting for tree to go green)
[21522](https://github.com/flutter/engine/pull/21522) Fix windows popup when unit tests have failures (cla: yes)
[21523](https://github.com/flutter/engine/pull/21523) Add missing returns in system channels handlers (affects: desktop, cla: yes, needs tests, platform-windows)
[21525](https://github.com/flutter/engine/pull/21525) Smooth window resizing on macOS (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21526](https://github.com/flutter/engine/pull/21526) iOS: only add explicit transactions when there are platform views (only on main threads) (cla: yes, platform-ios, waiting for tree to go green)
[21527](https://github.com/flutter/engine/pull/21527) fuchsia: Remove Opacity hole-punch (cla: yes, platform-fuchsia)
[21529](https://github.com/flutter/engine/pull/21529) Roll Fuchsia Mac SDK from aO19K7Ut2... to U2Cd8uL4-... (cla: yes, waiting for tree to go green)
[21530](https://github.com/flutter/engine/pull/21530) [web] Fix monotonic quadratic winding (cla: yes)
[21531](https://github.com/flutter/engine/pull/21531) [web] Fix setPreferredOrientations failure on iOS due to NNBD change. (cla: yes)
[21532](https://github.com/flutter/engine/pull/21532) cloning flutter repo for luci recipes (cla: yes)
[21533](https://github.com/flutter/engine/pull/21533) Roll Fuchsia Linux SDK from sDtTSnOFx... to GEYgsTBRM... (cla: yes, waiting for tree to go green)
[21534](https://github.com/flutter/engine/pull/21534) [Android Text Input] Make the editing state listenable and allow batch edits (affects: text input, cla: yes, platform-android, waiting for tree to go green)
[21537](https://github.com/flutter/engine/pull/21537) Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision) (cla: yes, waiting for tree to go green)
[21538](https://github.com/flutter/engine/pull/21538) Roll Fuchsia Mac SDK from U2Cd8uL4-... to UKTUc5UVB... (cla: yes, waiting for tree to go green)
[21540](https://github.com/flutter/engine/pull/21540) Revert "Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision)" (cla: yes)
[21541](https://github.com/flutter/engine/pull/21541) Roll Fuchsia Linux SDK from GEYgsTBRM... to EdtRxRaCS... (cla: yes, waiting for tree to go green)
[21542](https://github.com/flutter/engine/pull/21542) Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision) (cla: yes, waiting for tree to go green)
[21543](https://github.com/flutter/engine/pull/21543) fuchsia: Fix test compile (affects: tests, cla: yes, platform-fuchsia)
[21544](https://github.com/flutter/engine/pull/21544) embedder: Exclude GL code (affects: engine, cla: yes, platform-fuchsia)
[21546](https://github.com/flutter/engine/pull/21546) Writing the commit no to a text file (cla: yes)
[21547](https://github.com/flutter/engine/pull/21547) Add debugDisposed to Image (cla: yes, waiting for tree to go green)
[21548](https://github.com/flutter/engine/pull/21548) Extract the WindowInsetsAnimation.Callback subclass into a separate class that will be lazily loaded (cla: yes, platform-android, waiting for tree to go green)
[21550](https://github.com/flutter/engine/pull/21550) Adds response to view requestFocus platformview message (cla: yes)
[21552](https://github.com/flutter/engine/pull/21552) web: implement frame timings (cla: yes)
[21554](https://github.com/flutter/engine/pull/21554) Roll Fuchsia Mac SDK from UKTUc5UVB... to gZ122oeKO... (cla: yes, waiting for tree to go green)
[21555](https://github.com/flutter/engine/pull/21555) Implement Image.clone for CanvasKit (cla: yes, waiting for tree to go green)
[21556](https://github.com/flutter/engine/pull/21556) Roll Fuchsia Linux SDK from EdtRxRaCS... to CG6NCkBX9... (cla: yes, waiting for tree to go green)
[21562](https://github.com/flutter/engine/pull/21562) Roll Skia from a87c5076a876 to 36366209d412 (55 revisions) (cla: yes, waiting for tree to go green)
[21564](https://github.com/flutter/engine/pull/21564) remove the web integration test (cla: yes)
[21565](https://github.com/flutter/engine/pull/21565) Roll Skia from 36366209d412 to 8cc5f19f439d (1 revision) (cla: yes, waiting for tree to go green)
[21566](https://github.com/flutter/engine/pull/21566) Roll Fuchsia Linux SDK from CG6NCkBX9... to 8Evelbjqf... (cla: yes, waiting for tree to go green)
[21567](https://github.com/flutter/engine/pull/21567) test CkPath.reset() (cla: yes)
[21568](https://github.com/flutter/engine/pull/21568) Roll Skia from 8cc5f19f439d to b509bbb81f36 (3 revisions) (cla: yes, waiting for tree to go green)
[21569](https://github.com/flutter/engine/pull/21569) Roll Dart SDK from ddbeaabe8b3d to 9c89ce329247 (1 revision) (cla: yes, waiting for tree to go green)
[21570](https://github.com/flutter/engine/pull/21570) Roll Skia from b509bbb81f36 to 2d7973afc29d (5 revisions) (cla: yes, waiting for tree to go green)
[21571](https://github.com/flutter/engine/pull/21571) Roll Fuchsia Mac SDK from gZ122oeKO... to 1i9GaCxm8... (cla: yes, waiting for tree to go green)
[21574](https://github.com/flutter/engine/pull/21574) Roll Dart SDK from 9c89ce329247 to 2eab25e4b239 (1 revision) (cla: yes, waiting for tree to go green)
[21576](https://github.com/flutter/engine/pull/21576) Hookup view connected/disconnected events for platform view codepath (cla: yes)
[21577](https://github.com/flutter/engine/pull/21577) Roll Dart SDK from 2eab25e4b239 to 9f810fa15a9e (1 revision) (cla: yes, waiting for tree to go green)
[21578](https://github.com/flutter/engine/pull/21578) Use absolute path in ios_test_flutter target (cla: yes, platform-ios, waiting for tree to go green)
[21580](https://github.com/flutter/engine/pull/21580) Roll Fuchsia Linux SDK from 8Evelbjqf... to J5Qe0sLAi... (cla: yes, waiting for tree to go green)
[21581](https://github.com/flutter/engine/pull/21581) Roll Fuchsia Mac SDK from 1i9GaCxm8... to 0pFgNUM8S... (cla: yes, waiting for tree to go green)
[21584](https://github.com/flutter/engine/pull/21584) [web] Fix CapsLock keyevent (cla: yes)
[21585](https://github.com/flutter/engine/pull/21585) Refactor make_mock_engine into fl_test (cla: yes, waiting for tree to go green)
[21587](https://github.com/flutter/engine/pull/21587) Roll Dart SDK from 9f810fa15a9e to 1a039e595379 (1 revision) (cla: yes, waiting for tree to go green)
[21588](https://github.com/flutter/engine/pull/21588) Roll Fuchsia Linux SDK from J5Qe0sLAi... to tz23Y3d1u... (cla: yes, waiting for tree to go green)
[21589](https://github.com/flutter/engine/pull/21589) Roll Fuchsia Mac SDK from 0pFgNUM8S... to D6xcV5RGw... (cla: yes, waiting for tree to go green)
[21590](https://github.com/flutter/engine/pull/21590) Roll Fuchsia Linux SDK from tz23Y3d1u... to Hq4nRfNIg... (cla: yes, waiting for tree to go green)
[21591](https://github.com/flutter/engine/pull/21591) Roll Skia from 2d7973afc29d to 223ffcdff922 (8 revisions) (cla: yes, waiting for tree to go green)
[21592](https://github.com/flutter/engine/pull/21592) Roll Fuchsia Mac SDK from D6xcV5RGw... to qljWjWwoR... (cla: yes, waiting for tree to go green)
[21595](https://github.com/flutter/engine/pull/21595) Roll Fuchsia Linux SDK from Hq4nRfNIg... to 5KQYmRGqZ... (cla: yes, waiting for tree to go green)
[21596](https://github.com/flutter/engine/pull/21596) Roll Fuchsia Mac SDK from qljWjWwoR... to mhxbBrFZD... (cla: yes, waiting for tree to go green)
[21597](https://github.com/flutter/engine/pull/21597) Roll Skia from 223ffcdff922 to e34a8d7f01ff (2 revisions) (cla: yes, waiting for tree to go green)
[21598](https://github.com/flutter/engine/pull/21598) Roll Dart SDK from 1a039e595379 to 9560a32779fc (1 revision) (cla: yes, waiting for tree to go green)
[21599](https://github.com/flutter/engine/pull/21599) Roll Fuchsia Linux SDK from 5KQYmRGqZ... to DMUD0TMLr... (cla: yes, waiting for tree to go green)
[21600](https://github.com/flutter/engine/pull/21600) Roll Skia from e34a8d7f01ff to bd0881cb58eb (12 revisions) (cla: yes, waiting for tree to go green)
[21601](https://github.com/flutter/engine/pull/21601) Roll Skia from bd0881cb58eb to e2c4999ec340 (5 revisions) (cla: yes, waiting for tree to go green)
[21603](https://github.com/flutter/engine/pull/21603) Use the gpu config for shell_unittests to declare SHELL_ENABLE_{GL,VULKAN} (cla: yes, waiting for tree to go green)
[21604](https://github.com/flutter/engine/pull/21604) Roll Skia from e2c4999ec340 to 0d31ed506863 (5 revisions) (cla: yes, waiting for tree to go green)
[21606](https://github.com/flutter/engine/pull/21606) Roll ICU to 146cb611fb2c1f53e63c2e59bd735d7a8ac6ec8c (cla: yes, waiting for tree to go green)
[21607](https://github.com/flutter/engine/pull/21607) Roll Skia from 0d31ed506863 to d30e9efdab5c (4 revisions) (cla: yes, waiting for tree to go green)
[21608](https://github.com/flutter/engine/pull/21608) Roll Skia from d30e9efdab5c to 41d906752d13 (2 revisions) (cla: yes, waiting for tree to go green)
[21610](https://github.com/flutter/engine/pull/21610) fixing the autofill overlay problem (blue area for chrome) (cla: yes)
[21611](https://github.com/flutter/engine/pull/21611) Preserve specified AssetResolvers when performing a hot restart or updating the asset directory (cla: yes, platform-android)
[21612](https://github.com/flutter/engine/pull/21612) Separate mutators for text and selection (affects: desktop, affects: text input, cla: yes, platform-linux, platform-windows, waiting for tree to go green)
[21613](https://github.com/flutter/engine/pull/21613) running web tests only on DEPS and web directories (cla: yes)
[21615](https://github.com/flutter/engine/pull/21615) Roll Skia from 41d906752d13 to 05162812fd37 (1 revision) (cla: yes, waiting for tree to go green)
[21617](https://github.com/flutter/engine/pull/21617) Roll Skia from 05162812fd37 to 347e5dc37127 (1 revision) (cla: yes, waiting for tree to go green)
[21619](https://github.com/flutter/engine/pull/21619) Roll Fuchsia Mac SDK from mhxbBrFZD... to 8q-OCkyhO... (cla: yes, waiting for tree to go green)
[21620](https://github.com/flutter/engine/pull/21620) Roll Skia from 347e5dc37127 to fa5ff7d234b8 (1 revision) (cla: yes, waiting for tree to go green)
[21621](https://github.com/flutter/engine/pull/21621) Roll Fuchsia Linux SDK from DMUD0TMLr... to HeAkKHbFY... (cla: yes, waiting for tree to go green)
[21622](https://github.com/flutter/engine/pull/21622) Roll Skia from fa5ff7d234b8 to 00dc0bcb4d54 (3 revisions) (cla: yes, waiting for tree to go green)
[21624](https://github.com/flutter/engine/pull/21624) Roll Skia from 00dc0bcb4d54 to e2c6940c36e4 (1 revision) (cla: yes, waiting for tree to go green)
[21625](https://github.com/flutter/engine/pull/21625) Roll Skia from e2c6940c36e4 to c3bdd1c597dc (4 revisions) (cla: yes, waiting for tree to go green)
[21628](https://github.com/flutter/engine/pull/21628) Roll Skia from c3bdd1c597dc to 33b42e12ab71 (6 revisions) (cla: yes, waiting for tree to go green)
[21629](https://github.com/flutter/engine/pull/21629) Add more TextStyle support to Paragraph in CanvasKit mode (cla: yes, platform-web)
[21630](https://github.com/flutter/engine/pull/21630) Roll Fuchsia Linux SDK from HeAkKHbFY... to kr1tNtZvZ... (cla: yes, waiting for tree to go green)
[21632](https://github.com/flutter/engine/pull/21632) Add flag to not publish the observatory port over mDNS (cla: yes, platform-ios)
[21633](https://github.com/flutter/engine/pull/21633) add api_conform_test to analyze step (cla: yes)
[21634](https://github.com/flutter/engine/pull/21634) Roll Skia from 33b42e12ab71 to 107114dd1d6e (5 revisions) (cla: yes, waiting for tree to go green)
[21635](https://github.com/flutter/engine/pull/21635) Roll Fuchsia Mac SDK from 8q-OCkyhO... to xM2vYLfIT... (cla: yes, waiting for tree to go green)
[21648](https://github.com/flutter/engine/pull/21648) Use preTranslate when applying offset to matrix (cla: yes, waiting for tree to go green)
[21656](https://github.com/flutter/engine/pull/21656) Roll Fuchsia Mac SDK from xM2vYLfIT... to m6w8tDXMm... (cla: yes)
[21660](https://github.com/flutter/engine/pull/21660) Run desktop darwin tests in debug mode (cla: yes, waiting for tree to go green)
[21663](https://github.com/flutter/engine/pull/21663) Store selection base/extent as size_t (affects: text input, cla: yes, platform-linux, platform-windows)
[21665](https://github.com/flutter/engine/pull/21665) Ensure JNI is not called from raster thread (cla: yes, platform-android, waiting for tree to go green)
[21666](https://github.com/flutter/engine/pull/21666) Roll Skia from 107114dd1d6e to a7f69c290667 (18 revisions) (cla: yes)
[21668](https://github.com/flutter/engine/pull/21668) Remove dependencies on _product variants of libdart from the Fuchsia release mode build (cla: yes)
[21669](https://github.com/flutter/engine/pull/21669) [flutter_releases] Flutter 1.22.1 Engine Cherrypicks (cla: yes, platform-android, platform-ios)
[21670](https://github.com/flutter/engine/pull/21670) [macOS] Allow loading of AOT snapshots and instructions from elf bundle (cla: yes, waiting for tree to go green)
[21676](https://github.com/flutter/engine/pull/21676) Roll Skia from a7f69c290667 to 041fd0ad7d93 (5 revisions) (cla: yes, waiting for tree to go green)
[21677](https://github.com/flutter/engine/pull/21677) Pass angles for SweepGradient in degrees, not radians (cla: yes, platform-web)
[21678](https://github.com/flutter/engine/pull/21678) Roll Dart SDK from 9560a32779fc to 8f1a96317589 (12 revisions) (cla: yes, waiting for tree to go green)
[21679](https://github.com/flutter/engine/pull/21679) [flutter_releases] fix infra failure for web framework tests (cla: yes, platform-android, platform-ios)
[21680](https://github.com/flutter/engine/pull/21680) Avoid leaking the FlutterEngineAOTData structure in FlutterEngineCollectAOTData. (cla: yes, waiting for tree to go green)
[21681](https://github.com/flutter/engine/pull/21681) [macOS] flutter_desktop_darwin_unittests can be enabled for all runtime modes (cla: yes, waiting for tree to go green)
[21682](https://github.com/flutter/engine/pull/21682) Add multi-step IME support to TextInputModel (affects: text input, cla: yes, platform-linux, platform-windows)
[21683](https://github.com/flutter/engine/pull/21683) Roll Skia from 041fd0ad7d93 to 38e6d226f24e (1 revision) (cla: yes, waiting for tree to go green)
[21684](https://github.com/flutter/engine/pull/21684) Roll Fuchsia Linux SDK from kr1tNtZvZ... to ZJHmp3INU... (cla: yes, waiting for tree to go green)
[21685](https://github.com/flutter/engine/pull/21685) Make TextInputModel::selection_start/end const (affects: text input, cla: yes, platform-linux, platform-windows)
[21686](https://github.com/flutter/engine/pull/21686) Roll Dart SDK from 8f1a96317589 to 8572b5c0f6dc (1 revision) (cla: yes, waiting for tree to go green)
[21687](https://github.com/flutter/engine/pull/21687) Revert "[web] Support custom url strategies" (cla: yes)
[21688](https://github.com/flutter/engine/pull/21688) Roll Skia from 38e6d226f24e to ac0723a06b53 (3 revisions) (cla: yes, waiting for tree to go green)
[21689](https://github.com/flutter/engine/pull/21689) Roll Fuchsia Mac SDK from m6w8tDXMm... to zhRBO0hCr... (cla: yes, waiting for tree to go green)
[21690](https://github.com/flutter/engine/pull/21690) Use buildroot clang for scenario app (cla: yes, waiting for tree to go green)
[21691](https://github.com/flutter/engine/pull/21691) Roll Dart SDK from 8572b5c0f6dc to 98ea0b4971dd (1 revision) (cla: yes, waiting for tree to go green)
[21692](https://github.com/flutter/engine/pull/21692) Roll Skia from ac0723a06b53 to 8d43858ed21a (1 revision) (cla: yes, waiting for tree to go green)
[21694](https://github.com/flutter/engine/pull/21694) Skip flaky test (cla: yes, platform-ios)
[21695](https://github.com/flutter/engine/pull/21695) Roll Dart SDK from 98ea0b4971dd to 44fa3b9e566c (1 revision) (cla: yes, waiting for tree to go green)
[21696](https://github.com/flutter/engine/pull/21696) Forbid android.util.Log (cla: yes, platform-android, waiting for tree to go green)
[21697](https://github.com/flutter/engine/pull/21697) Update PR template to include the presubmit flake form (cla: yes, waiting for tree to go green)
[21698](https://github.com/flutter/engine/pull/21698) Roll Skia from 8d43858ed21a to 9c0b79a35489 (14 revisions) (cla: yes, waiting for tree to go green)
[21699](https://github.com/flutter/engine/pull/21699) [macOS] Fix docs for loadAOTData and minor refactor (affects: desktop, cla: yes, needs tests, platform-macos)
[21701](https://github.com/flutter/engine/pull/21701) Fix engine Xcode projection for newer versions of Xcode. (cla: yes)
[21702](https://github.com/flutter/engine/pull/21702) [web] Reland Support custom url strategies (cla: yes, platform-web)
[21705](https://github.com/flutter/engine/pull/21705) chrome driver for chrome 86 (cla: yes)
[21706](https://github.com/flutter/engine/pull/21706) Fix the offset passed to minikin::GraphemeBreak::isGraphemeBreak (cla: yes)
[21707](https://github.com/flutter/engine/pull/21707) Roll Skia from 9c0b79a35489 to e17b0501963a (15 revisions) (cla: yes, waiting for tree to go green)
[21708](https://github.com/flutter/engine/pull/21708) Roll Dart SDK from 44fa3b9e566c to 4ba58cad60e4 (1 revision) (cla: yes, waiting for tree to go green)
[21709](https://github.com/flutter/engine/pull/21709) Roll Fuchsia Linux SDK from ZJHmp3INU... to wrXNShr_8... (cla: yes, waiting for tree to go green)
[21711](https://github.com/flutter/engine/pull/21711) Perform selection check in DeleteSelected (affects: text input, cla: yes, platform-linux, platform-windows)
[21714](https://github.com/flutter/engine/pull/21714) Revert "fix On iOS, dialog titles are announced twice (#19826)" (cla: yes, platform-ios, waiting for tree to go green)
[21716](https://github.com/flutter/engine/pull/21716) [web] Add ShaderBuilder, change drawVertices to use builder. (cla: yes)
[21718](https://github.com/flutter/engine/pull/21718) Roll Dart SDK from 4ba58cad60e4 to fe566e6d08b1 (1 revision) (cla: yes, waiting for tree to go green)
[21719](https://github.com/flutter/engine/pull/21719) Allow TalkBack navigation while a platform view is rendered (cla: yes, platform-android, waiting for tree to go green)
[21720](https://github.com/flutter/engine/pull/21720) Roll Fuchsia Mac SDK from zhRBO0hCr... to LyP59nILn... (cla: yes, waiting for tree to go green)
[21722](https://github.com/flutter/engine/pull/21722) Extract textrange (affects: text input, cla: yes, platform-linux, platform-windows)
[21723](https://github.com/flutter/engine/pull/21723) Roll Dart SDK from fe566e6d08b1 to 1e7250f91944 (1 revision) (cla: yes, waiting for tree to go green)
[21725](https://github.com/flutter/engine/pull/21725) Roll Dart SDK from 1e7250f91944 to 712e35f7fd0b (1 revision) (cla: yes, waiting for tree to go green)
[21729](https://github.com/flutter/engine/pull/21729) Roll Fuchsia Linux SDK from wrXNShr_8... to EBX49sN_X... (cla: yes, waiting for tree to go green)
[21730](https://github.com/flutter/engine/pull/21730) Fix viewInset.bottom and viewPadding.bottom… (affects: engine, cla: yes, platform-android, waiting for tree to go green)
[21732](https://github.com/flutter/engine/pull/21732) Roll Skia from e17b0501963a to 453f67ff0ade (28 revisions) (cla: yes, waiting for tree to go green)
[21733](https://github.com/flutter/engine/pull/21733) Roll Fuchsia Mac SDK from LyP59nILn... to lqn8xmlDn... (cla: yes, waiting for tree to go green)
[21734](https://github.com/flutter/engine/pull/21734) Forward font collection APIs to the SkParagraph font collection (cla: yes, waiting for tree to go green)
[21736](https://github.com/flutter/engine/pull/21736) Roll Dart SDK from 712e35f7fd0b to 06536d68ca0f (2 revisions) (cla: yes, waiting for tree to go green)
[21737](https://github.com/flutter/engine/pull/21737) Add dart_entrypoint_argc/argv to the FlutterProjectArgs (cla: yes, waiting for tree to go green)
[21739](https://github.com/flutter/engine/pull/21739) Roll Skia from 453f67ff0ade to 269e43fd9830 (11 revisions) (cla: yes, waiting for tree to go green)
[21740](https://github.com/flutter/engine/pull/21740) Fix filesystem access prior to macOS 10.15 (cla: yes, waiting for tree to go green)
[21741](https://github.com/flutter/engine/pull/21741) Remove uses of Dart VM bytecode mode from Flutter engine (cla: yes)
[21742](https://github.com/flutter/engine/pull/21742) Roll Skia from 269e43fd9830 to 88cda17bbeb8 (3 revisions) (cla: yes, waiting for tree to go green)
[21744](https://github.com/flutter/engine/pull/21744) Roll Skia from 88cda17bbeb8 to 61003cde7688 (4 revisions) (cla: yes, waiting for tree to go green)
[21746](https://github.com/flutter/engine/pull/21746) Roll Skia from 61003cde7688 to 13fc260c7080 (1 revision) (cla: yes, waiting for tree to go green)
[21747](https://github.com/flutter/engine/pull/21747) Reland "Create root isolate asynchronously (#20142)" (cla: yes)
[21749](https://github.com/flutter/engine/pull/21749) Roll Fuchsia Mac SDK from lqn8xmlDn... to gzhbqRUap... (cla: yes, waiting for tree to go green)
[21752](https://github.com/flutter/engine/pull/21752) Roll Skia from 13fc260c7080 to aa64c352b349 (1 revision) (cla: yes, waiting for tree to go green)
[21753](https://github.com/flutter/engine/pull/21753) Roll Fuchsia Linux SDK from EBX49sN_X... to YRTc9YoiB... (cla: yes, waiting for tree to go green)
[21754](https://github.com/flutter/engine/pull/21754) Windows: Add UWP target stub [Flutter#14697] (cla: yes, waiting for tree to go green)
[21758](https://github.com/flutter/engine/pull/21758) Roll Skia from aa64c352b349 to d71dc2d25b8b (1 revision) (cla: yes, waiting for tree to go green)
[21759](https://github.com/flutter/engine/pull/21759) Roll Fuchsia Mac SDK from gzhbqRUap... to _0R2HD4c8... (cla: yes, waiting for tree to go green)
[21760](https://github.com/flutter/engine/pull/21760) Roll Fuchsia Linux SDK from YRTc9YoiB... to Nw5-0_sVF... (cla: yes, waiting for tree to go green)
[21762](https://github.com/flutter/engine/pull/21762) Roll Fuchsia Mac SDK from _0R2HD4c8... to 82ankF-Ht... (cla: yes, waiting for tree to go green)
[21768](https://github.com/flutter/engine/pull/21768) Roll Fuchsia Mac SDK from 82ankF-Ht... to FFpTJfmj1... (cla: yes, waiting for tree to go green)
[21771](https://github.com/flutter/engine/pull/21771) Roll Fuchsia Linux SDK from Nw5-0_sVF... to h-DeV4tgE... (cla: yes, waiting for tree to go green)
[21772](https://github.com/flutter/engine/pull/21772) Roll Skia from d71dc2d25b8b to ceb6214a556a (5 revisions) (cla: yes, waiting for tree to go green)
[21773](https://github.com/flutter/engine/pull/21773) Ignore analysis warning for doc comment (cla: yes)
[21774](https://github.com/flutter/engine/pull/21774) Roll Skia from ceb6214a556a to 9213e610ed92 (8 revisions) (cla: yes, waiting for tree to go green)
[21775](https://github.com/flutter/engine/pull/21775) Roll Dart SDK from 06536d68ca0f to e256855d07ba (6 revisions) (cla: yes)
[21777](https://github.com/flutter/engine/pull/21777) Prevent a race between SurfaceTexture.release and updateTexImage (cla: yes, platform-android, waiting for tree to go green)
[21779](https://github.com/flutter/engine/pull/21779) Roll Skia from 9213e610ed92 to 840e8ea7403e (11 revisions) (cla: yes, waiting for tree to go green)
[21780](https://github.com/flutter/engine/pull/21780) Fix documentation build for window changes. (cla: yes)
[21781](https://github.com/flutter/engine/pull/21781) [web] Fix Altgr keyboard crash (cla: yes)
[21782](https://github.com/flutter/engine/pull/21782) Add missing ninja call to analyze.sh so it can be run locally easily (cla: yes, waiting for tree to go green)
[21783](https://github.com/flutter/engine/pull/21783) Roll Skia from 840e8ea7403e to ab6e62c131e9 (7 revisions) (cla: yes, waiting for tree to go green)
[21784](https://github.com/flutter/engine/pull/21784) [null-safety] fix build rule to produce sound dill (cla: yes)
[21786](https://github.com/flutter/engine/pull/21786) Ocmock dylib (cla: yes, platform-ios)
[21789](https://github.com/flutter/engine/pull/21789) [macOS] Add plumbing to grab dart entrypoint args (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21790](https://github.com/flutter/engine/pull/21790) Call PlatformView.dispose when removing hybrid composition platform views (cla: yes, platform-android)
[21792](https://github.com/flutter/engine/pull/21792) Revert "Migration to PlatformDispatcher and multi-window #20496" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21794](https://github.com/flutter/engine/pull/21794) Roll Skia from ab6e62c131e9 to f58db3c94da3 (6 revisions) (cla: yes, waiting for tree to go green)
[21795](https://github.com/flutter/engine/pull/21795) Roll Fuchsia Mac SDK from FFpTJfmj1... to 8Cb2zG9e3... (cla: yes, waiting for tree to go green)
[21797](https://github.com/flutter/engine/pull/21797) Roll Fuchsia Linux SDK from h-DeV4tgE... to gdo4mZ5oI... (cla: yes, waiting for tree to go green)
[21798](https://github.com/flutter/engine/pull/21798) [ios] Create a standalone external view embedder on iOS (cla: yes, platform-ios, waiting for tree to go green)
[21801](https://github.com/flutter/engine/pull/21801) Roll Skia from f58db3c94da3 to 387fd62a1280 (3 revisions) (cla: yes, waiting for tree to go green)
[21802](https://github.com/flutter/engine/pull/21802) Enable lazy-async-stacks by-default in all modes (Take 4) (cla: yes)
[21803](https://github.com/flutter/engine/pull/21803) Roll Skia from 387fd62a1280 to c89a7ee628db (1 revision) (cla: yes, waiting for tree to go green)
[21804](https://github.com/flutter/engine/pull/21804) Roll Skia from c89a7ee628db to fa8891164062 (1 revision) (cla: yes, waiting for tree to go green)
[21805](https://github.com/flutter/engine/pull/21805) Roll Skia from fa8891164062 to 01b93eabe25b (4 revisions) (cla: yes, waiting for tree to go green)
[21806](https://github.com/flutter/engine/pull/21806) Forward Error objects to uncaught exception handler if there is one. (cla: yes, platform-android)
[21807](https://github.com/flutter/engine/pull/21807) [web] enabling firefox screenshot tests. adding to documentation (cla: yes)
[21808](https://github.com/flutter/engine/pull/21808) Roll Dart SDK from e256855d07ba to a3b62f366529 (4 revisions) (cla: yes, waiting for tree to go green)
[21809](https://github.com/flutter/engine/pull/21809) Roll Dart SDK from e256855d07ba to a3b62f366529 (4 revisions) (cla: yes, waiting for tree to go green)
[21810](https://github.com/flutter/engine/pull/21810) Roll Skia from 01b93eabe25b to 2e0c70dc9c3e (10 revisions) (cla: yes, waiting for tree to go green)
[21811](https://github.com/flutter/engine/pull/21811) Switch macOS embedding to proc table embedder API (affects: desktop, affects: engine, cla: yes, platform-macos)
[21813](https://github.com/flutter/engine/pull/21813) Add a proc table version of embedder API (cla: yes, waiting for tree to go green)
[21814](https://github.com/flutter/engine/pull/21814) Roll Fuchsia Linux SDK from gdo4mZ5oI... to 41fVbRhb0... (cla: yes, waiting for tree to go green)
[21816](https://github.com/flutter/engine/pull/21816) Roll Skia from 2e0c70dc9c3e to 7bbdde059685 (10 revisions) (cla: yes, waiting for tree to go green)
[21817](https://github.com/flutter/engine/pull/21817) Enable clipRRect for android platform view hybrid composition (cla: yes, platform-android, waiting for tree to go green)
[21819](https://github.com/flutter/engine/pull/21819) Add a style note about Linux embedding style (cla: yes, waiting for tree to go green)
[21820](https://github.com/flutter/engine/pull/21820) Enable loading snapshots with sound null safety enabled. (cla: yes, waiting for tree to go green)
[21821](https://github.com/flutter/engine/pull/21821) [flutter] add intercept_all_input flag support (cla: yes)
[21823](https://github.com/flutter/engine/pull/21823) Revert "Roll Fuchsia Linux SDK from gdo4mZ5oI... to 41fVbRhb0..." (cla: yes)
[21827](https://github.com/flutter/engine/pull/21827) Upgrade to latest process runner, fix commands that throw to fail test (cla: yes)
[21828](https://github.com/flutter/engine/pull/21828) Collect logs in the background. (cla: yes)
[21829](https://github.com/flutter/engine/pull/21829) Revert Linux Fuchsia SDK rolls to 10/8 (cla: yes)
[21830](https://github.com/flutter/engine/pull/21830) Roll Dart SDK from a3b62f366529 to 4226116043f5 (1 revision) (cla: yes, waiting for tree to go green)
[21831](https://github.com/flutter/engine/pull/21831) Explicitly make the X connection for EGL. (cla: yes)
[21832](https://github.com/flutter/engine/pull/21832) Roll Fuchsia Mac SDK from 8Cb2zG9e3... to SFNhlfVb_... (cla: yes, waiting for tree to go green)
[21834](https://github.com/flutter/engine/pull/21834) Roll Skia from 7bbdde059685 to 99446001182c (5 revisions) (cla: yes, waiting for tree to go green)
[21838](https://github.com/flutter/engine/pull/21838) [flutter_releases] Flutter 1.23.0-18.1.pre Engine Cherrypicks (cla: yes)
[21839](https://github.com/flutter/engine/pull/21839) [android] Refactor surface factory and wire in external view embedder (cla: yes, platform-android, waiting for tree to go green)
[21840](https://github.com/flutter/engine/pull/21840) Fix destruction order in C++ plugin registrar (cla: yes)
[21841](https://github.com/flutter/engine/pull/21841) [flutter_releases] Flutter 1.22.2 engine cherrypicks (cla: yes, platform-android, platform-ios)
[21842](https://github.com/flutter/engine/pull/21842) Update flutter to pass Skia the VkImageUsageFlags and Samples (cla: yes)
[21846](https://github.com/flutter/engine/pull/21846) Roll Dart SDK from 4226116043f5 to 04cf6ade9fc4 (4 revisions) (cla: yes, waiting for tree to go green)
[21847](https://github.com/flutter/engine/pull/21847) [embedder] Platform View owns lifecycle of external view embedder (cla: yes)
[21848](https://github.com/flutter/engine/pull/21848) Roll Skia from 99446001182c to f4bda743ff8d (22 revisions) (cla: yes, waiting for tree to go green)
[21850](https://github.com/flutter/engine/pull/21850) [fuchsia] External view embedder will be shared with platform view (cla: yes, waiting for tree to go green)
[21851](https://github.com/flutter/engine/pull/21851) Revert "Explicitly make the X connection for EGL. (#21831)" (cla: yes)
[21852](https://github.com/flutter/engine/pull/21852) Auto detect mode to determine which rendering backend to use. (cla: yes, platform-web, waiting for tree to go green)
[21854](https://github.com/flutter/engine/pull/21854) Migrate TextInputPlugin API to TextRange (affects: text input, cla: yes, platform-linux, platform-windows)
[21856](https://github.com/flutter/engine/pull/21856) Fixing semantics borders on mobile web (cla: yes, platform-web)
[21864](https://github.com/flutter/engine/pull/21864) Update more class names from GrContext to GrDirectContext (cla: yes, platform-ios)
[21871](https://github.com/flutter/engine/pull/21871) Reland "Explicitly make the X connection for EGL." (cla: yes)
[21873](https://github.com/flutter/engine/pull/21873) [web] Implement sweep gradient (cla: yes, platform-web)
[21874](https://github.com/flutter/engine/pull/21874) Add TextRange::Contains tests spanning base/extent (affects: text input, cla: yes, platform-linux, platform-windows)
[21875](https://github.com/flutter/engine/pull/21875) Fix typos in FlValue docs (cla: yes, waiting for tree to go green)
[21877](https://github.com/flutter/engine/pull/21877) [ios] Refactor IOSSurface factory and unify surface creation (cla: yes, platform-ios)
[21879](https://github.com/flutter/engine/pull/21879) Fix memory leaks in FlTextInputPlugin (cla: yes)
[21882](https://github.com/flutter/engine/pull/21882) Revert "Add flag to not publish the observatory port over mDNS" (cla: yes, platform-ios)
[21883](https://github.com/flutter/engine/pull/21883) Add flag to not publish the observatory port over mDNS (cla: yes, platform-ios)
[21884](https://github.com/flutter/engine/pull/21884) Roll buildroot to 9184ff0695be1b3e4bb20cf64efcfa56daa0a3c0 (cla: yes)
[21889](https://github.com/flutter/engine/pull/21889) Fix incldues to be flutter/shell rather than shell/ (cla: yes, platform-android)
[21890](https://github.com/flutter/engine/pull/21890) Refactored the FlutterEngine to make it easier to implement spawn functionality (cla: yes, platform-ios)
[21891](https://github.com/flutter/engine/pull/21891) Check for null images in ImageFromCompressedData (cla: yes, waiting for tree to go green)
[21892](https://github.com/flutter/engine/pull/21892) Roll Skia from f4bda743ff8d to f1b53836b705 (21 revisions) (cla: yes, waiting for tree to go green)
[21896](https://github.com/flutter/engine/pull/21896) Show OSK on GNOME+Wayland (cla: yes)
[21897](https://github.com/flutter/engine/pull/21897) Add multi-step input method support for Linux (affects: desktop, affects: text input, cla: yes, needs tests, platform-linux)
[21901](https://github.com/flutter/engine/pull/21901) [web] Implement ClipOp.difference (cla: yes)
[21904](https://github.com/flutter/engine/pull/21904) Eliminate FLUTTER_NOLINT where possible (cla: yes, code health, platform-android)
[21906](https://github.com/flutter/engine/pull/21906) Roll Fuchsia Mac SDK from SFNhlfVb_... to _FaRRt69Z... (cla: yes, waiting for tree to go green)
[21909](https://github.com/flutter/engine/pull/21909) Roll Dart SDK from 04cf6ade9fc4 to 80288ca68c49 (6 revisions) (cla: yes, waiting for tree to go green)
[21910](https://github.com/flutter/engine/pull/21910) Roll Skia from f1b53836b705 to db0288d747ae (7 revisions) (cla: yes, waiting for tree to go green)
[21911](https://github.com/flutter/engine/pull/21911) Roll Skia from db0288d747ae to 839fb228ac44 (1 revision) (cla: yes, waiting for tree to go green)
[21915](https://github.com/flutter/engine/pull/21915) Roll Dart SDK from 80288ca68c49 to e655b9a3839e (1 revision) (cla: yes, waiting for tree to go green)
[21917](https://github.com/flutter/engine/pull/21917) Roll Skia from 839fb228ac44 to 418eda2c599a (9 revisions) (cla: yes, waiting for tree to go green)
[21918](https://github.com/flutter/engine/pull/21918) Break the reference cycle between the surface factory and the external view embedder (cla: yes, platform-android)
[21919](https://github.com/flutter/engine/pull/21919) Roll Dart SDK from e655b9a3839e to b58cfe5ab24e (1 revision) (cla: yes, waiting for tree to go green)
[21920](https://github.com/flutter/engine/pull/21920) Roll Dart SDK from e655b9a3839e to b58cfe5ab24e (1 revision) (cla: yes, waiting for tree to go green)
[21921](https://github.com/flutter/engine/pull/21921) Update FLUTTER_NOLINT uses to include issue link (cla: yes, code health)
[21922](https://github.com/flutter/engine/pull/21922) Require that FLUTTER_NOLINT include issue link (cla: yes)
[21923](https://github.com/flutter/engine/pull/21923) Roll Skia from 418eda2c599a to f9c7b2803461 (3 revisions) (cla: yes, waiting for tree to go green)
[21924](https://github.com/flutter/engine/pull/21924) Revert "[fuchsia] External view embedder will be shared with platform view" (cla: yes)
[21926](https://github.com/flutter/engine/pull/21926) Set strokeCap, strokeJoin, and strokeMiter when resurrecting Paint (cla: yes, waiting for tree to go green)
[21927](https://github.com/flutter/engine/pull/21927) Define SK_VULKAN for clang-tidy runs (cla: yes, code health)
[21928](https://github.com/flutter/engine/pull/21928) [web] Fix scroll wheel line delta on Firefox. (cla: yes, platform-web)
[21929](https://github.com/flutter/engine/pull/21929) Roll Skia from f9c7b2803461 to f60a76e2ac01 (4 revisions) (cla: yes, waiting for tree to go green)
[21932](https://github.com/flutter/engine/pull/21932) Reland: Migration to PlatformDispatcher and multi-window (affects: desktop, cla: yes)
[21933](https://github.com/flutter/engine/pull/21933) Plumb through Dart entrypoint arguments on the Linux embedder (affects: desktop, cla: yes, needs tests, platform-linux)
[21934](https://github.com/flutter/engine/pull/21934) [fuchsia] Adds a test for timezone change (cla: yes, waiting for tree to go green)
[21935](https://github.com/flutter/engine/pull/21935) Eliminate unnecessary linter opt-outs (cla: yes, code health)
[21936](https://github.com/flutter/engine/pull/21936) Roll Skia from f60a76e2ac01 to be8004d2fb6c (1 revision) (cla: yes, waiting for tree to go green)
[21937](https://github.com/flutter/engine/pull/21937) Roll the process_runner package used by the formatter script (cla: yes)
[21938](https://github.com/flutter/engine/pull/21938) Roll Dart SDK from b58cfe5ab24e to aaab579579be (1 revision) (cla: yes, waiting for tree to go green)
[21939](https://github.com/flutter/engine/pull/21939) [web] Fix image gap due to svg element without position attribute (cla: yes)
[21940](https://github.com/flutter/engine/pull/21940) Reformat some files that were not auto-formatted (cla: yes, platform-android, waiting for tree to go green)
[21941](https://github.com/flutter/engine/pull/21941) Add FML_UNREACHABLE to declare points in code that should never be reached. (cla: yes, waiting for tree to go green)
[21942](https://github.com/flutter/engine/pull/21942) [null-safety] fix type declaration of Picutre._toImage (cla: yes)
[21944](https://github.com/flutter/engine/pull/21944) Roll Fuchsia Mac SDK from _FaRRt69Z... to XZSNobQCT... (cla: yes, waiting for tree to go green)
[21946](https://github.com/flutter/engine/pull/21946) Roll Dart SDK from aaab579579be to 42a0bf548ea3 (1 revision) (cla: yes, waiting for tree to go green)
[21948](https://github.com/flutter/engine/pull/21948) Roll Dart SDK from 42a0bf548ea3 to 675c7165c071 (1 revision) (cla: yes, waiting for tree to go green)
[21950](https://github.com/flutter/engine/pull/21950) Roll Fuchsia Mac SDK from XZSNobQCT... to 9mMCqUXkF... (cla: yes, waiting for tree to go green)
[21952](https://github.com/flutter/engine/pull/21952) Roll Dart SDK from 675c7165c071 to 5c59a47beda7 (1 revision) (cla: yes, waiting for tree to go green)
[21953](https://github.com/flutter/engine/pull/21953) Restore missing call to RuntimeDelegate.OnRootIsolateCreated (cla: yes)
[21955](https://github.com/flutter/engine/pull/21955) Roll Fuchsia Mac SDK from 9mMCqUXkF... to MR_bRfe8I... (cla: yes, waiting for tree to go green)
[21956](https://github.com/flutter/engine/pull/21956) Roll Skia from be8004d2fb6c to 27f7fe32f49b (1 revision) (cla: yes, waiting for tree to go green)
[21959](https://github.com/flutter/engine/pull/21959) [null-safety] fix return type of some pushLayer native bindings (cla: yes)
[21970](https://github.com/flutter/engine/pull/21970) Revert "[ios] Refactor IOSSurface factory and unify surface creation" (cla: yes, platform-ios, waiting for tree to go green)
[21971](https://github.com/flutter/engine/pull/21971) Temporarily disabled tests that were using latin and arabic characters while we fix them. (cla: yes)
[21974](https://github.com/flutter/engine/pull/21974) Specify the Noto Naskh Arabic font to get consistent results in tests using Arabic characters (cla: yes)
[21975](https://github.com/flutter/engine/pull/21975) Fixes Edge trigger route change announcement (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21976](https://github.com/flutter/engine/pull/21976) Roll Fuchsia Linux SDK from ZJHmp3INU... to dcMRY8S12... (cla: yes, waiting for tree to go green)
[21977](https://github.com/flutter/engine/pull/21977) Fix the initialization of AndroidSurfaceFactoryImpl (cla: yes, platform-android)
[21978](https://github.com/flutter/engine/pull/21978) Roll Dart SDK from 5c59a47beda7 to 902538ea56d5 (2 revisions) (cla: yes, waiting for tree to go green)
[21979](https://github.com/flutter/engine/pull/21979) Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[21980](https://github.com/flutter/engine/pull/21980) Fix native constructor of list of zircon handles and remove unused list factory specializations. (cla: yes, waiting for tree to go green)
[21981](https://github.com/flutter/engine/pull/21981) Roll Dart SDK from 902538ea56d5 to fc82eeed7df3 (1 revision) (cla: yes, waiting for tree to go green)
[21982](https://github.com/flutter/engine/pull/21982) Roll Fuchsia Mac SDK from MR_bRfe8I... to pZ9FgVZTK... (cla: yes, waiting for tree to go green)
[21983](https://github.com/flutter/engine/pull/21983) [null-safety] fix Scene.toImage declaration (cla: yes)
[21984](https://github.com/flutter/engine/pull/21984) Roll Skia from 27f7fe32f49b to ac1ded033136 (15 revisions) (cla: yes, waiting for tree to go green)
[21986](https://github.com/flutter/engine/pull/21986) Revert "[web] Fix image gap due to svg element without position attribute" (cla: yes)
[21987](https://github.com/flutter/engine/pull/21987) [iOS] Fixes leaks of presses key message (cla: yes, platform-ios)
[21988](https://github.com/flutter/engine/pull/21988) Roll Fuchsia Linux SDK from dcMRY8S12... to lPMs_KwnU... (cla: yes, waiting for tree to go green)
[21989](https://github.com/flutter/engine/pull/21989) Roll Skia from ac1ded033136 to a25c0619b5ef (2 revisions) (cla: yes, waiting for tree to go green)
[21990](https://github.com/flutter/engine/pull/21990) Roll Skia from a25c0619b5ef to 4964300530d3 (2 revisions) (cla: yes, waiting for tree to go green)
[21993](https://github.com/flutter/engine/pull/21993) Roll Skia from 4964300530d3 to 51dc28505fb9 (5 revisions) (cla: yes, waiting for tree to go green)
[21994](https://github.com/flutter/engine/pull/21994) [null-safety] fix soundness of Paragraph._addPlaceholder (cla: yes, waiting for tree to go green)
[21995](https://github.com/flutter/engine/pull/21995) Roll Skia from 51dc28505fb9 to 1c823674d957 (8 revisions) (cla: yes, waiting for tree to go green)
[22002](https://github.com/flutter/engine/pull/22002) Roll Dart SDK from fc82eeed7df3 to 8be6a08153cc (1 revision) (cla: yes, waiting for tree to go green)
[22003](https://github.com/flutter/engine/pull/22003) [fuchsia] zx::vmar::map migration (cla: yes)
[22004](https://github.com/flutter/engine/pull/22004) Revert "Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (#21979)" (cla: yes, platform-android)
[22005](https://github.com/flutter/engine/pull/22005) Roll Dart SDK from fc82eeed7df3 to 8be6a08153cc (1 revision) (cla: yes, waiting for tree to go green)
[22007](https://github.com/flutter/engine/pull/22007) Fix FlTextInputPlugin tear down (affects: desktop, cla: yes, needs tests, platform-linux, waiting for tree to go green)
[22008](https://github.com/flutter/engine/pull/22008) Reland fuchsia external view embedder will be shared with platform view (cla: yes)
[22009](https://github.com/flutter/engine/pull/22009) [fuchsia] opt-out null-safety in standalone scripts (cla: yes, waiting for tree to go green)
[22012](https://github.com/flutter/engine/pull/22012) Revert "Define SK_VULKAN for clang-tidy runs (#21927)" (cla: yes)
[22013](https://github.com/flutter/engine/pull/22013) Determine null-safety isolate flags for launches of the service isolate. (cla: yes, waiting for tree to go green)
[22015](https://github.com/flutter/engine/pull/22015) Roll Skia from 1c823674d957 to 2d2f82c00aeb (13 revisions) (cla: yes)
[22016](https://github.com/flutter/engine/pull/22016) Reland [ios] Refactor IOSSurface factory and unify surface creation (cla: yes, platform-ios, waiting for tree to go green)
[22018](https://github.com/flutter/engine/pull/22018) Roll Dart SDK from 8be6a08153cc to 86242db30c23 (2 revisions) (cla: yes, waiting for tree to go green)
[22019](https://github.com/flutter/engine/pull/22019) Allow parse_and_send to use access tokens (cla: yes, waiting for tree to go green)
[22023](https://github.com/flutter/engine/pull/22023) Roll Dart SDK from 86242db30c23 to 874709e52a99 (1 revision) (cla: yes, waiting for tree to go green)
[22026](https://github.com/flutter/engine/pull/22026) Roll Dart SDK from 874709e52a99 to a3d902d8598e (1 revision) (cla: yes, waiting for tree to go green)
[22033](https://github.com/flutter/engine/pull/22033) Add a golden scenario test for fallback font rendering on iOS take 2 (cla: yes, waiting for tree to go green)
[22038](https://github.com/flutter/engine/pull/22038) Run framework tests in sound null safety mode (cla: yes)
[22041](https://github.com/flutter/engine/pull/22041) Ensure root isolate create callback is invoked before the isolate is in the running phase. (cla: yes, waiting for tree to go green)
[22052](https://github.com/flutter/engine/pull/22052) Isolates launched by the engine instance use the settings of that instance. (cla: yes)
[22055](https://github.com/flutter/engine/pull/22055) Roll Fuchsia Mac SDK from pZ9FgVZTK... to WLxBkBnZa... (cla: yes, waiting for tree to go green)
[22057](https://github.com/flutter/engine/pull/22057) Roll Fuchsia Linux SDK from lPMs_KwnU... to gqS_DIjN4... (cla: yes, waiting for tree to go green)
[22058](https://github.com/flutter/engine/pull/22058) Roll Dart SDK from a3d902d8598e to 9f907e198970 (2 revisions) (cla: yes, waiting for tree to go green)
[22059](https://github.com/flutter/engine/pull/22059) Roll Skia from 2d2f82c00aeb to 5c7bb326a7b3 (33 revisions) (cla: yes, waiting for tree to go green)
[22060](https://github.com/flutter/engine/pull/22060) Roll Skia from 5c7bb326a7b3 to 65674e4c2e56 (3 revisions) (cla: yes, waiting for tree to go green)
[22061](https://github.com/flutter/engine/pull/22061) Includes roles for links, checkboxes, and radio buttons in semantics (cla: yes, waiting for tree to go green)
[22062](https://github.com/flutter/engine/pull/22062) Roll Skia from 65674e4c2e56 to 01b05e5b830b (3 revisions) (cla: yes, waiting for tree to go green)
[22063](https://github.com/flutter/engine/pull/22063) Defer macOS arrow and backspace handling to framework (cla: yes)
[22064](https://github.com/flutter/engine/pull/22064) [web] Prevent using DOM nodes for canvas with large number of draws (cla: yes)
[22065](https://github.com/flutter/engine/pull/22065) Roll Skia from 01b05e5b830b to 53281c712159 (1 revision) (cla: yes, waiting for tree to go green)
[22067](https://github.com/flutter/engine/pull/22067) Add "input shield" to capture pointer input for reinjection (cla: yes, waiting for tree to go green)
[22069](https://github.com/flutter/engine/pull/22069) Roll Dart SDK from 9f907e198970 to 37ccceacad41 (3 revisions) (cla: yes, waiting for tree to go green)
[22070](https://github.com/flutter/engine/pull/22070) [web] Fix positioning of canvas elements due to svg filters (cla: yes, platform-web)
[22072](https://github.com/flutter/engine/pull/22072) [web] Fix image getting evicted after being consumed from CrossFrameCache (cla: yes)
[22073](https://github.com/flutter/engine/pull/22073) Roll Fuchsia Mac SDK from WLxBkBnZa... to zDfaxkqlv... (cla: yes, waiting for tree to go green)
[22074](https://github.com/flutter/engine/pull/22074) Roll Fuchsia Linux SDK from gqS_DIjN4... to vuKxZmSVj... (cla: yes, waiting for tree to go green)
[22075](https://github.com/flutter/engine/pull/22075) Roll Skia from 53281c712159 to 58cf3fe83b93 (5 revisions) (cla: yes, waiting for tree to go green)
[22078](https://github.com/flutter/engine/pull/22078) Revert dart rolls (cla: yes)
[22080](https://github.com/flutter/engine/pull/22080) add web framework tests to the prod builder (cla: yes, waiting for tree to go green)
[22081](https://github.com/flutter/engine/pull/22081) Roll Skia from 58cf3fe83b93 to 7c64798b3d0c (5 revisions) (cla: yes, waiting for tree to go green)
[22082](https://github.com/flutter/engine/pull/22082) [ios] Convert FlutterPlatformViewsController to smart pointer (cla: yes, platform-ios)
[22084](https://github.com/flutter/engine/pull/22084) Roll Fuchsia Linux SDK from vuKxZmSVj... to ivUuUUnOL... (cla: yes, waiting for tree to go green)
[22085](https://github.com/flutter/engine/pull/22085) Implement Scene.toImage() in CanvasKit mode. (cla: yes, platform-web)
[22086](https://github.com/flutter/engine/pull/22086) Add metrics scripts in preparation to move the builder to LUCI. (cla: yes)
[22087](https://github.com/flutter/engine/pull/22087) Roll Fuchsia Mac SDK from zDfaxkqlv... to kCSI3uPt1... (cla: yes, waiting for tree to go green)
[22089](https://github.com/flutter/engine/pull/22089) Fix _lerpInt precision bug (cla: yes)
[22090](https://github.com/flutter/engine/pull/22090) Roll Dart SDK from a3d902d8598e to ae67d4be7d8e (9 revisions) (cla: yes, waiting for tree to go green)
[22091](https://github.com/flutter/engine/pull/22091) Remove some obsolete code from RuntimeController (cla: yes, waiting for tree to go green)
[22094](https://github.com/flutter/engine/pull/22094) Add plumbing for command line arguments on Windows (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22095](https://github.com/flutter/engine/pull/22095) Revert "Add a golden scenario test for fallback font rendering on iOS take 2" (cla: yes)
[22096](https://github.com/flutter/engine/pull/22096) Roll Dart SDK from ae67d4be7d8e to 51b403c0134a (2 revisions) (cla: yes, waiting for tree to go green)
[22097](https://github.com/flutter/engine/pull/22097) Roll Fuchsia Linux SDK from ivUuUUnOL... to gHKi9MwVc... (cla: yes, waiting for tree to go green)
[22098](https://github.com/flutter/engine/pull/22098) Roll Fuchsia Mac SDK from kCSI3uPt1... to pis4h1dA0... (cla: yes, waiting for tree to go green)
[22100](https://github.com/flutter/engine/pull/22100) Roll Dart SDK from 51b403c0134a to 11d1c3de8d01 (1 revision) (cla: yes, waiting for tree to go green)
[22101](https://github.com/flutter/engine/pull/22101) Roll Skia from 7c64798b3d0c to 312535b47d38 (9 revisions) (cla: yes, waiting for tree to go green)
[22103](https://github.com/flutter/engine/pull/22103) Roll Dart SDK from 11d1c3de8d01 to 1897e02f5b1c (2 revisions) (cla: yes, waiting for tree to go green)
[22106](https://github.com/flutter/engine/pull/22106) Roll Fuchsia Mac SDK from pis4h1dA0... to xFEwU5hU7... (cla: yes, waiting for tree to go green)
[22107](https://github.com/flutter/engine/pull/22107) Roll Fuchsia Linux SDK from gHKi9MwVc... to 33fGX8ZWr... (cla: yes, waiting for tree to go green)
[22108](https://github.com/flutter/engine/pull/22108) Roll Skia from 312535b47d38 to aea82732415c (1 revision) (cla: yes, waiting for tree to go green)
[22110](https://github.com/flutter/engine/pull/22110) Roll Fuchsia Linux SDK from 33fGX8ZWr... to d3HGOZddM... (cla: yes, waiting for tree to go green)
[22112](https://github.com/flutter/engine/pull/22112) Roll Fuchsia Mac SDK from xFEwU5hU7... to GcGZpyAMA... (cla: yes, waiting for tree to go green)
[22113](https://github.com/flutter/engine/pull/22113) Roll Dart SDK from 1897e02f5b1c to 96369fde1083 (2 revisions) (cla: yes, waiting for tree to go green)
[22114](https://github.com/flutter/engine/pull/22114) Roll Fuchsia Linux SDK from d3HGOZddM... to 5teTtbQ9-... (cla: yes, waiting for tree to go green)
[22115](https://github.com/flutter/engine/pull/22115) Roll Dart SDK from 96369fde1083 to 9ba287dfd221 (1 revision) (cla: yes, waiting for tree to go green)
[22116](https://github.com/flutter/engine/pull/22116) Roll Fuchsia Mac SDK from GcGZpyAMA... to n-yA0KEMT... (cla: yes, waiting for tree to go green)
[22117](https://github.com/flutter/engine/pull/22117) Roll Dart SDK from 9ba287dfd221 to 6e015bd9cddb (1 revision) (cla: yes, waiting for tree to go green)
[22118](https://github.com/flutter/engine/pull/22118) Roll Skia from aea82732415c to c493eabd56d0 (2 revisions) (cla: yes, waiting for tree to go green)
[22119](https://github.com/flutter/engine/pull/22119) Roll Skia from c493eabd56d0 to 189ecd485ade (3 revisions) (cla: yes, waiting for tree to go green)
[22121](https://github.com/flutter/engine/pull/22121) Roll Skia from 189ecd485ade to 5bbbb49f1da0 (4 revisions) (cla: yes, waiting for tree to go green)
[22124](https://github.com/flutter/engine/pull/22124) add a package config file to const finder test fixtures (cla: yes, waiting for tree to go green)
[22125](https://github.com/flutter/engine/pull/22125) Fix possible use of std::moved value in Rasterizer (cla: yes, waiting for tree to go green)
[22127](https://github.com/flutter/engine/pull/22127) Roll Fuchsia Linux SDK from 5teTtbQ9-... to XYN02FThN... (cla: yes, waiting for tree to go green)
[22129](https://github.com/flutter/engine/pull/22129) Set strut font to Roboto if the given font hasn't been registered (cla: yes)
[22130](https://github.com/flutter/engine/pull/22130) Add braces on if statements to match linter style (cla: yes)
[22134](https://github.com/flutter/engine/pull/22134) [null-safety] update path version (cla: yes)
[22135](https://github.com/flutter/engine/pull/22135) Fix incorrect parameter used for self object (cla: yes, waiting for tree to go green)
[22136](https://github.com/flutter/engine/pull/22136) Fix warning when no entrypoint args provided. (affects: desktop, cla: yes, needs tests, platform-linux)
[22138](https://github.com/flutter/engine/pull/22138) Roll Fuchsia Mac SDK from n-yA0KEMT... to GKPwGj1Ux... (cla: yes, waiting for tree to go green)
[22140](https://github.com/flutter/engine/pull/22140) Roll Skia from 5bbbb49f1da0 to 7737a5bd2510 (13 revisions) (cla: yes, waiting for tree to go green)
[22142](https://github.com/flutter/engine/pull/22142) Add dart-lang/sdk's new package:clock dependency (cla: yes)
[22146](https://github.com/flutter/engine/pull/22146) Roll Skia from 7737a5bd2510 to 5567a6091ceb (8 revisions) (cla: yes, waiting for tree to go green)
[22147](https://github.com/flutter/engine/pull/22147) Roll Fuchsia Linux SDK from XYN02FThN... to UKgKCjxSA... (cla: yes, waiting for tree to go green)
[22150](https://github.com/flutter/engine/pull/22150) [web] Clean up unused previousStyle logic (cla: yes, platform-web, waiting for tree to go green)
[22151](https://github.com/flutter/engine/pull/22151) Roll Fuchsia Mac SDK from GKPwGj1Ux... to xHjtLQPQ5... (cla: yes, waiting for tree to go green)
[22153](https://github.com/flutter/engine/pull/22153) Manual Dart SDK roll 6e015bd9cddb to 9c6e76468ca4 (6 revisions) (cla: yes, waiting for tree to go green)
[22155](https://github.com/flutter/engine/pull/22155) Roll Skia from 5567a6091ceb to f548a028ce70 (7 revisions) (cla: yes, waiting for tree to go green)
[22157](https://github.com/flutter/engine/pull/22157) Invalidate the cached SkParagraph font collection when a new font manager is installed (cla: yes)
[22159](https://github.com/flutter/engine/pull/22159) Report error when instantiating CanvasKit network image (cla: yes, platform-web)
[22160](https://github.com/flutter/engine/pull/22160) [web] Fixes canvas pixelation and overallocation due to transforms. (cla: yes, platform-web)
[22169](https://github.com/flutter/engine/pull/22169) Update constraint to latest integration test (cla: yes)
[22170](https://github.com/flutter/engine/pull/22170) [profiling] Handle thread_info to account for killed threads (cla: yes, platform-ios)
[22171](https://github.com/flutter/engine/pull/22171) [flutter_releases] Flutter 1.22.3 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22172](https://github.com/flutter/engine/pull/22172) [web] Fix transform not invalidating path bounds causing debugValidate failure (cla: yes, platform-web)
[22175](https://github.com/flutter/engine/pull/22175) Roll Fuchsia Linux SDK from UKgKCjxSA... to PY5hNI-wY... (cla: yes, waiting for tree to go green)
[22177](https://github.com/flutter/engine/pull/22177) Roll ANGLE to latest version (cla: yes)
[22179](https://github.com/flutter/engine/pull/22179) Split AOT Android Embedder and shell (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22180](https://github.com/flutter/engine/pull/22180) Standardize macro names for dartdoc macros (cla: yes, waiting for tree to go green)
[22181](https://github.com/flutter/engine/pull/22181) Refactor platform message logic (cla: yes, waiting for tree to go green)
[22182](https://github.com/flutter/engine/pull/22182) [web] Fix for firefox custom clipping (cla: yes, platform-web, waiting for tree to go green)
[22184](https://github.com/flutter/engine/pull/22184) [web] Assign default natural width/height for svgs that report 0,0 on firefox and ie11 (cla: yes, platform-web)
[22188](https://github.com/flutter/engine/pull/22188) Roll Fuchsia Mac SDK from xHjtLQPQ5... to ICK_JlnKJ... (cla: yes, waiting for tree to go green)
[22194](https://github.com/flutter/engine/pull/22194) [iOS] Fixes DisplayLinkManager leaks (cla: yes, platform-ios)
[22195](https://github.com/flutter/engine/pull/22195) Update painting.dart with an annotation error. (cla: yes, waiting for tree to go green)
[22197](https://github.com/flutter/engine/pull/22197) Roll Fuchsia Linux SDK from PY5hNI-wY... to Usec4YBzR... (cla: yes, waiting for tree to go green)
[22198](https://github.com/flutter/engine/pull/22198) Migrate runZoned to runZonedGuarded (cla: yes, waiting for tree to go green)
[22201](https://github.com/flutter/engine/pull/22201) bring back build_test to ensure we validate licenses (cla: yes)
[22203](https://github.com/flutter/engine/pull/22203) Fix some serious lifecycle bugs with Android embedding code (cla: yes, platform-android, waiting for tree to go green)
[22205](https://github.com/flutter/engine/pull/22205) makes android semanticsnode to ignore hittest if it is not focusable (cla: yes, platform-android, waiting for tree to go green)
[22206](https://github.com/flutter/engine/pull/22206) [ios] Surface factory holds the canonical reference to the external view embedder (cla: yes, platform-ios)
[22207](https://github.com/flutter/engine/pull/22207) Defer Windows arrow key and delete handling (cla: yes)
[22211](https://github.com/flutter/engine/pull/22211) Switch Windows embedding to proc table embedder API (cla: yes)
[22212](https://github.com/flutter/engine/pull/22212) use the dart analyze command to analyze source (cla: yes)
[22213](https://github.com/flutter/engine/pull/22213) Manual Roll of Dart to ba80ed989cc...9c6e76468ca (cla: yes, waiting for tree to go green)
[22214](https://github.com/flutter/engine/pull/22214) Platform views have CreateExternalViewEmbedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22215](https://github.com/flutter/engine/pull/22215) [web] Canoncalize font family on input fields (cla: yes, platform-web, waiting for tree to go green)
[22216](https://github.com/flutter/engine/pull/22216) Manual roll of Dart 1a18fff9ad2e...ba80ed989cc (cla: yes, waiting for tree to go green)
[22219](https://github.com/flutter/engine/pull/22219) Roll Fuchsia Mac SDK from ICK_JlnKJ... to mhak7e_o6... (cla: yes, waiting for tree to go green)
[22220](https://github.com/flutter/engine/pull/22220) Roll Fuchsia Linux SDK from Usec4YBzR... to sNx8qabBn... (cla: yes, waiting for tree to go green)
[22221](https://github.com/flutter/engine/pull/22221) Update painting.dart (cla: yes, waiting for tree to go green)
[22222](https://github.com/flutter/engine/pull/22222) Roll Dart SDK from 1a18fff9ad2e to f01bcdc24ec6 (2 revisions) (cla: yes, waiting for tree to go green)
[22223](https://github.com/flutter/engine/pull/22223) Roll Dart SDK from f01bcdc24ec6 to fed66f60a3bc (1 revision) (cla: yes, waiting for tree to go green)
[22224](https://github.com/flutter/engine/pull/22224) Roll Skia from f548a028ce70 to c21902c0d3cc (46 revisions) (cla: yes, waiting for tree to go green)
[22225](https://github.com/flutter/engine/pull/22225) Roll Dart SDK from fed66f60a3bc to 25ef5dc559cf (1 revision) (cla: yes, waiting for tree to go green)
[22226](https://github.com/flutter/engine/pull/22226) Roll Skia from c21902c0d3cc to 9615bcf71f2a (1 revision) (cla: yes, waiting for tree to go green)
[22227](https://github.com/flutter/engine/pull/22227) Fix includes to start with shell (cla: yes, platform-ios)
[22230](https://github.com/flutter/engine/pull/22230) Report image diff status for iOS scenario golden tests (cla: yes)
[22231](https://github.com/flutter/engine/pull/22231) Roll Fuchsia Mac SDK from mhak7e_o6... to 8SkbMXJJ9... (cla: yes, waiting for tree to go green)
[22234](https://github.com/flutter/engine/pull/22234) Roll Skia from 9615bcf71f2a to d5e6368fffd0 (8 revisions) (cla: yes, waiting for tree to go green)
[22235](https://github.com/flutter/engine/pull/22235) updating integration tests version. (cla: yes)
[22236](https://github.com/flutter/engine/pull/22236) disable AppLifecycleTests (cla: yes)
[22237](https://github.com/flutter/engine/pull/22237) Roll Skia from d5e6368fffd0 to 7585a65ac709 (7 revisions) (cla: yes, waiting for tree to go green)
[22239](https://github.com/flutter/engine/pull/22239) [web] Put the paragraph painting logic in the Paragraph class (cla: yes, platform-web)
[22240](https://github.com/flutter/engine/pull/22240) Remove the metrics task from cirrus. (cla: yes)
[22243](https://github.com/flutter/engine/pull/22243) Roll Dart SDK from 25ef5dc559cf to 5acb5fcf84cb (4 revisions) (cla: yes, waiting for tree to go green)
[22244](https://github.com/flutter/engine/pull/22244) Roll Fuchsia Linux SDK from sNx8qabBn... to QqGvMWaYk... (cla: yes, waiting for tree to go green)
[22246](https://github.com/flutter/engine/pull/22246) Roll Fuchsia Mac SDK from 8SkbMXJJ9... to Pz4ZHZrUp... (cla: yes, waiting for tree to go green)
[22247](https://github.com/flutter/engine/pull/22247) scenario app: update golden for platform view opacity test (cla: yes)
[22248](https://github.com/flutter/engine/pull/22248) [web] fix type error during hot restart in font manager (cla: yes)
[22250](https://github.com/flutter/engine/pull/22250) Roll Skia from 7585a65ac709 to dffd20efe95c (14 revisions) (cla: yes, waiting for tree to go green)
[22251](https://github.com/flutter/engine/pull/22251) fix _getArrayBuffer signature (cla: yes)
[22252](https://github.com/flutter/engine/pull/22252) [web] Fix nullability issue with Image.network (cla: yes)
[22255](https://github.com/flutter/engine/pull/22255) Roll Dart SDK from 5acb5fcf84cb to a9d583383410 (4 revisions) (cla: yes, waiting for tree to go green)
[22256](https://github.com/flutter/engine/pull/22256) [web] Add test for Image.network (cla: yes)
[22257](https://github.com/flutter/engine/pull/22257) do not print in _computePixelDensity (cla: yes, waiting for tree to go green)
[22258](https://github.com/flutter/engine/pull/22258) Roll Dart SDK from a9d583383410 to d2577410a501 (1 revision) (cla: yes, waiting for tree to go green)
[22260](https://github.com/flutter/engine/pull/22260) Upgrades to felt (running on multiple modes, multiple backends, single test target option) (cla: yes, platform-web)
[22261](https://github.com/flutter/engine/pull/22261) web: make some errors more idiomatic (cla: yes, platform-web)
[22262](https://github.com/flutter/engine/pull/22262) Roll Fuchsia Mac SDK from Pz4ZHZrUp... to 6yEx5GNGG... (cla: yes, waiting for tree to go green)
[22264](https://github.com/flutter/engine/pull/22264) Roll Fuchsia Linux SDK from QqGvMWaYk... to oLF1FW-gC... (cla: yes, waiting for tree to go green)
[22265](https://github.com/flutter/engine/pull/22265) Roll Dart SDK from 52783837369d to b43baaaa477d (723 revisions) (cla: yes, waiting for tree to go green)
[22267](https://github.com/flutter/engine/pull/22267) Make `PlatformDispatcher.locale` and `locales` return consistent values (cla: yes)
[22268](https://github.com/flutter/engine/pull/22268) Fix Linux handling of window exposure events (affects: desktop, cla: yes, needs tests, platform-linux)
[22269](https://github.com/flutter/engine/pull/22269) Roll Dart SDK from b43baaaa477d to a4fbabcd73dc (1 revision) (cla: yes, waiting for tree to go green)
[22270](https://github.com/flutter/engine/pull/22270) Fix code style issues in MacOS embedder (cla: yes, waiting for tree to go green)
[22271](https://github.com/flutter/engine/pull/22271) Roll Fuchsia Mac SDK from 6yEx5GNGG... to o45EAhxJZ... (cla: yes, waiting for tree to go green)
[22272](https://github.com/flutter/engine/pull/22272) Remove GetExternalViewEmbedder from surface (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22273](https://github.com/flutter/engine/pull/22273) [web] Fix repaint logic for cullrect,transform changes (cla: yes)
[22275](https://github.com/flutter/engine/pull/22275) Do not involve external_view_embedder in submit frame process if threads are not merged. (cla: yes, platform-ios, waiting for tree to go green)
[22276](https://github.com/flutter/engine/pull/22276) Roll Fuchsia Linux SDK from oLF1FW-gC... to Esyuo1am1... (cla: yes, waiting for tree to go green)
[22277](https://github.com/flutter/engine/pull/22277) Roll Skia from dffd20efe95c to 6e7cfaff1817 (37 revisions) (cla: yes, waiting for tree to go green)
[22280](https://github.com/flutter/engine/pull/22280) Switch Linux embedding to proc table embedder API (cla: yes)
[22281](https://github.com/flutter/engine/pull/22281) Roll Skia from 6e7cfaff1817 to 0e54309477ac (2 revisions) (cla: yes, waiting for tree to go green)
[22282](https://github.com/flutter/engine/pull/22282) added unit tests to the rasterizer (cla: yes, waiting for tree to go green)
[22283](https://github.com/flutter/engine/pull/22283) Roll Dart SDK from a4fbabcd73dc to 57bb12dc24d2 (1 revision) (cla: yes, waiting for tree to go green)
[22284](https://github.com/flutter/engine/pull/22284) [linux] Change the buildroot DEPS for Linux Arm64 support (cla: yes, waiting for tree to go green)
[22285](https://github.com/flutter/engine/pull/22285) [web] Enable Control+MouseWheel browser zoom (cla: yes)
[22286](https://github.com/flutter/engine/pull/22286) Roll Skia from 0e54309477ac to 938932225cef (1 revision) (cla: yes, waiting for tree to go green)
[22287](https://github.com/flutter/engine/pull/22287) Roll Dart SDK from 57bb12dc24d2 to 599329b5cd98 (1 revision) (cla: yes, waiting for tree to go green)
[22288](https://github.com/flutter/engine/pull/22288) Roll Skia from 938932225cef to 97469f4abe0a (2 revisions) (cla: yes, waiting for tree to go green)
[22289](https://github.com/flutter/engine/pull/22289) Roll Fuchsia Mac SDK from o45EAhxJZ... to m1uK0SlYN... (cla: yes, waiting for tree to go green)
[22291](https://github.com/flutter/engine/pull/22291) Roll Dart SDK from 599329b5cd98 to fbc56c1561ba (1 revision) (cla: yes, waiting for tree to go green)
[22292](https://github.com/flutter/engine/pull/22292) Updated return-type for PathMetric.extractPath to be non-nullable (cla: yes, waiting for tree to go green)
[22293](https://github.com/flutter/engine/pull/22293) Roll Dart SDK from fbc56c1561ba to bf751197ddb9 (1 revision) (cla: yes, waiting for tree to go green)
[22294](https://github.com/flutter/engine/pull/22294) Roll Skia from 97469f4abe0a to a8f4c91114b5 (1 revision) (cla: yes, waiting for tree to go green)
[22295](https://github.com/flutter/engine/pull/22295) Roll Fuchsia Linux SDK from Esyuo1am1... to Z1HqmxtPR... (cla: yes, waiting for tree to go green)
[22296](https://github.com/flutter/engine/pull/22296) Roll Skia from a8f4c91114b5 to 3744b2a36638 (6 revisions) (cla: yes, waiting for tree to go green)
[22297](https://github.com/flutter/engine/pull/22297) Roll Skia from 3744b2a36638 to 007d97d69962 (2 revisions) (cla: yes, waiting for tree to go green)
[22298](https://github.com/flutter/engine/pull/22298) Revert "support uri intent launcher in android (#21275)" (cla: yes, platform-android, waiting for tree to go green)
[22299](https://github.com/flutter/engine/pull/22299) Roll Dart SDK from bf751197ddb9 to e182eac158cf (1 revision) (cla: yes, waiting for tree to go green)
[22302](https://github.com/flutter/engine/pull/22302) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22304](https://github.com/flutter/engine/pull/22304) Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[22306](https://github.com/flutter/engine/pull/22306) Roll Skia from 007d97d69962 to 68dcf542b79f (12 revisions) (cla: yes, waiting for tree to go green)
[22307](https://github.com/flutter/engine/pull/22307) [web] Split the EngineParagraph interface from the legacy implementation (cla: yes, platform-web)
[22309](https://github.com/flutter/engine/pull/22309) Roll the path package in web_ui and web_test_utils to match the version used by the framework (cla: yes)
[22316](https://github.com/flutter/engine/pull/22316) Roll Fuchsia Mac SDK from m1uK0SlYN... to NimIr5BT-... (cla: yes, waiting for tree to go green)
[22317](https://github.com/flutter/engine/pull/22317) Roll Fuchsia Linux SDK from Z1HqmxtPR... to 2rLs0vAIz... (cla: yes, waiting for tree to go green)
[22319](https://github.com/flutter/engine/pull/22319) Roll Skia from 68dcf542b79f to 694ff1735711 (5 revisions) (cla: yes, waiting for tree to go green)
[22320](https://github.com/flutter/engine/pull/22320) Move common graphics utils to //flutter/common/graphics (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22321](https://github.com/flutter/engine/pull/22321) Revert "Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (#22304)" (cla: yes, platform-android)
[22322](https://github.com/flutter/engine/pull/22322) [null-safety] increase sky engine min sdk (cla: yes)
[22323](https://github.com/flutter/engine/pull/22323) Add initial settings message to Windows embedding (affects: desktop, cla: yes, platform-windows)
[22324](https://github.com/flutter/engine/pull/22324) Roll Skia from 694ff1735711 to 71624de2c5d9 (12 revisions) (cla: yes, waiting for tree to go green)
[22326](https://github.com/flutter/engine/pull/22326) Ignore several import_of_legacy_library_into_null_safe (cla: yes)
[22328](https://github.com/flutter/engine/pull/22328) [web] Improve dom canvas speed. Fix density calculation regression in recomputeTransformClip (cla: yes)
[22330](https://github.com/flutter/engine/pull/22330) Roll Fuchsia Mac SDK from NimIr5BT-... to XV9_JbDD-... (cla: yes, waiting for tree to go green)
[22331](https://github.com/flutter/engine/pull/22331) Roll Fuchsia Linux SDK from 2rLs0vAIz... to pCIhWatQU... (cla: yes, waiting for tree to go green)
[22332](https://github.com/flutter/engine/pull/22332) Roll dart e182eac158cf..9bc7d4604277 (cla: yes, waiting for tree to go green)
[22333](https://github.com/flutter/engine/pull/22333) Roll Skia from 71624de2c5d9 to f8f23b203079 (8 revisions) (cla: yes, waiting for tree to go green)
[22335](https://github.com/flutter/engine/pull/22335) [web] Remove sink parameter since _BaseAdapter exposes _callback (cla: yes)
[22336](https://github.com/flutter/engine/pull/22336) Move layer clip culling to Paint() method to fix child caching (cla: yes, waiting for tree to go green)
[22337](https://github.com/flutter/engine/pull/22337) Revert "Added the ability to set the initial route via launch urls. (… (cla: yes, platform-ios, waiting for tree to go green)
[22339](https://github.com/flutter/engine/pull/22339) Roll Skia from f8f23b203079 to 8d0f710ef0e0 (2 revisions) (cla: yes, waiting for tree to go green)
[22340](https://github.com/flutter/engine/pull/22340) Use dispatchKeyEvent, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[22341](https://github.com/flutter/engine/pull/22341) Roll Dart SDK from 9bc7d4604277 to 1936a7d1909d (2 revisions) (cla: yes, waiting for tree to go green)
[22342](https://github.com/flutter/engine/pull/22342) [web] Fix recycling same canvas more than once and add assert to detect (cla: yes)
[22343](https://github.com/flutter/engine/pull/22343) Roll Skia from 8d0f710ef0e0 to 92bc649cd7e6 (1 revision) (cla: yes, waiting for tree to go green)
[22344](https://github.com/flutter/engine/pull/22344) Roll Skia from 92bc649cd7e6 to 05f74f28d688 (3 revisions) (cla: yes, waiting for tree to go green)
[22345](https://github.com/flutter/engine/pull/22345) move deprecation from the PluginRegistry outer interface to inner, v1-specific fields (cla: yes, platform-android)
[22346](https://github.com/flutter/engine/pull/22346) Roll Fuchsia Mac SDK from XV9_JbDD-... to TwfKJxO8r... (cla: yes, waiting for tree to go green)
[22347](https://github.com/flutter/engine/pull/22347) Roll Fuchsia Linux SDK from pCIhWatQU... to oNrhKDRLZ... (cla: yes, waiting for tree to go green)
[22348](https://github.com/flutter/engine/pull/22348) Rasterizer is initialized with an external view embedder (cla: yes)
[22349](https://github.com/flutter/engine/pull/22349) Roll Skia from 05f74f28d688 to 6cafdc069bdb (1 revision) (cla: yes, waiting for tree to go green)
[22350](https://github.com/flutter/engine/pull/22350) Roll Dart SDK from 1936a7d1909d to fe12b0536f42 (1 revision) (cla: yes, waiting for tree to go green)
[22352](https://github.com/flutter/engine/pull/22352) Roll Skia from 6cafdc069bdb to ba9a04fb8d5a (3 revisions) (cla: yes, waiting for tree to go green)
[22353](https://github.com/flutter/engine/pull/22353) PlatformViewIOS CreateExternalViewEmbedder refactor (cla: yes, platform-android, platform-ios)
[22355](https://github.com/flutter/engine/pull/22355) Roll Skia from ba9a04fb8d5a to 4eb7c23d5289 (4 revisions) (cla: yes, waiting for tree to go green)
[22356](https://github.com/flutter/engine/pull/22356) Reland deeplinking with info.plist check (cla: yes, platform-ios, waiting for tree to go green)
[22357](https://github.com/flutter/engine/pull/22357) [web] Remove as checks (_generalNullableAsCheckImplementation) / pushSurface calls (cla: yes)
[22358](https://github.com/flutter/engine/pull/22358) Roll Skia from 4eb7c23d5289 to b8123cc87770 (6 revisions) (cla: yes, waiting for tree to go green)
[22360](https://github.com/flutter/engine/pull/22360) [android] Platform view creates external view embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22361](https://github.com/flutter/engine/pull/22361) Roll Skia from b8123cc87770 to e886b8e8b10b (7 revisions) (cla: yes, waiting for tree to go green)
[22362](https://github.com/flutter/engine/pull/22362) Remove extra method in ComputePlatformResolvedLocale (cla: yes)
[22363](https://github.com/flutter/engine/pull/22363) reland support uri launch in android (cla: yes, platform-android)
[22364](https://github.com/flutter/engine/pull/22364) Roll Skia from e886b8e8b10b to 86d4cfdf8edc (2 revisions) (cla: yes, waiting for tree to go green)
[22365](https://github.com/flutter/engine/pull/22365) [web] Implement style inheritance during paragraph construction (cla: yes, platform-web)
[22366](https://github.com/flutter/engine/pull/22366) Update pubspecs to null-safe dependencies (cla: yes)
[22367](https://github.com/flutter/engine/pull/22367) Revert "Rasterizer is initialized with an external view embedder (#22348)" (cla: yes, platform-ios)
[22368](https://github.com/flutter/engine/pull/22368) Roll Skia from 86d4cfdf8edc to c2bfcff07225 (1 revision) (cla: yes, waiting for tree to go green)
[22369](https://github.com/flutter/engine/pull/22369) Roll Fuchsia Mac SDK from TwfKJxO8r... to VMNxgZGv9... (cla: yes, waiting for tree to go green)
[22371](https://github.com/flutter/engine/pull/22371) [web] Restore the ability to set a custom url strategy (cla: yes, platform-web)
[22372](https://github.com/flutter/engine/pull/22372) Reland "Do not involve external_view_embedder in submit frame process if threads are not merged. #22275" (cla: yes, platform-ios, waiting for tree to go green)
[22373](https://github.com/flutter/engine/pull/22373) loadFontFromList returns void instead of string (cla: yes, waiting for tree to go green)
[22375](https://github.com/flutter/engine/pull/22375) Add SDK constraint to a pubspec (cla: yes, waiting for tree to go green)
[22376](https://github.com/flutter/engine/pull/22376) Roll Fuchsia Linux SDK from oNrhKDRLZ... to KMV-UCyzK... (cla: yes, waiting for tree to go green)
[22378](https://github.com/flutter/engine/pull/22378) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22379](https://github.com/flutter/engine/pull/22379) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22380](https://github.com/flutter/engine/pull/22380) Roll ICU to 715ec351c0bcdd6b2d22f36e7d33b8e2ec519846 (cla: yes)
[22381](https://github.com/flutter/engine/pull/22381) Roll Fuchsia Mac SDK from VMNxgZGv9... to rMD6SyXwO... (cla: yes, waiting for tree to go green)
[22382](https://github.com/flutter/engine/pull/22382) Roll Skia from c2bfcff07225 to ed435953dfd6 (1 revision) (cla: yes, waiting for tree to go green)
[22383](https://github.com/flutter/engine/pull/22383) Roll Fuchsia Linux SDK from KMV-UCyzK... to e9vV76ZgA... (cla: yes, waiting for tree to go green)
[22385](https://github.com/flutter/engine/pull/22385) Revert "Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision)" (cla: yes)
[22386](https://github.com/flutter/engine/pull/22386) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22389](https://github.com/flutter/engine/pull/22389) Roll Fuchsia Mac SDK from rMD6SyXwO... to ZOJgUMChm... (cla: yes, waiting for tree to go green)
[22390](https://github.com/flutter/engine/pull/22390) Roll Fuchsia Linux SDK from e9vV76ZgA... to OBQ4E_4kG... (cla: yes, waiting for tree to go green)
[22391](https://github.com/flutter/engine/pull/22391) Roll Skia from ed435953dfd6 to cfe647c02fb4 (1 revision) (cla: yes, waiting for tree to go green)
[22392](https://github.com/flutter/engine/pull/22392) Roll Fuchsia Mac SDK from ZOJgUMChm... to 5rXlkcaVT... (cla: yes, waiting for tree to go green)
[22393](https://github.com/flutter/engine/pull/22393) Roll Fuchsia Linux SDK from OBQ4E_4kG... to g6EuxMthn... (cla: yes, waiting for tree to go green)
[22398](https://github.com/flutter/engine/pull/22398) Roll Fuchsia Mac SDK from 5rXlkcaVT... to fkTLW7DRc... (cla: yes, waiting for tree to go green)
[22399](https://github.com/flutter/engine/pull/22399) Roll Skia from cfe647c02fb4 to ee0ce9858cbc (1 revision) (cla: yes, waiting for tree to go green)
[22400](https://github.com/flutter/engine/pull/22400) Roll Dart SDK from a188781c9fc8 to 26219fa05863 (1 revision) (cla: yes, waiting for tree to go green)
[22402](https://github.com/flutter/engine/pull/22402) Roll Skia from ee0ce9858cbc to 5de0b38dd133 (6 revisions) (cla: yes, waiting for tree to go green)
[22403](https://github.com/flutter/engine/pull/22403) [PlatformViewsController] Clear root_views_ in Reset (cla: yes, platform-ios, waiting for tree to go green)
[22404](https://github.com/flutter/engine/pull/22404) Roll Skia from 5de0b38dd133 to ee1098db15b2 (4 revisions) (cla: yes, waiting for tree to go green)
[22405](https://github.com/flutter/engine/pull/22405) Rasterizer is initialized with an external view embedder (cla: yes, waiting for tree to go green)
[22406](https://github.com/flutter/engine/pull/22406) PlatformViewsController always make sure the touch events are finished (cla: yes, platform-ios, waiting for tree to go green)
[22408](https://github.com/flutter/engine/pull/22408) [web] Speed up PageView/CustomPainter rendering (cla: yes)
[22409](https://github.com/flutter/engine/pull/22409) Simplify API for scheduling Skia object deletions (cla: yes)
[22411](https://github.com/flutter/engine/pull/22411) Roll Skia from ee1098db15b2 to 84d503b21322 (3 revisions) (cla: yes, waiting for tree to go green)
[22412](https://github.com/flutter/engine/pull/22412) Add D3D9 fallback path for ANGLE and ensure fallbacks are actually attempted (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22413](https://github.com/flutter/engine/pull/22413) Roll Dart SDK from 26219fa05863 to 8749fdff07f5 (2 revisions) (cla: yes, waiting for tree to go green)
[22415](https://github.com/flutter/engine/pull/22415) Simplify refs from CkImage to SkImage (cla: yes, waiting for tree to go green)
[22416](https://github.com/flutter/engine/pull/22416) Roll Fuchsia Mac SDK from fkTLW7DRc... to w10eytxvc... (cla: yes, waiting for tree to go green)
[22417](https://github.com/flutter/engine/pull/22417) Roll Fuchsia Linux SDK from g6EuxMthn... to DzZi2gPbF... (cla: yes, waiting for tree to go green)
[22418](https://github.com/flutter/engine/pull/22418) Roll Skia from 84d503b21322 to 5b8598952931 (7 revisions) (cla: yes, waiting for tree to go green)
[22419](https://github.com/flutter/engine/pull/22419) Roll Skia from 5b8598952931 to 02dd0ed8ce5e (1 revision) (cla: yes, waiting for tree to go green)
[22420](https://github.com/flutter/engine/pull/22420) Roll Skia from 02dd0ed8ce5e to fb5850f41043 (4 revisions) (cla: yes, waiting for tree to go green)
[22421](https://github.com/flutter/engine/pull/22421) Roll Skia from fb5850f41043 to 008d63e23dab (6 revisions) (cla: yes, waiting for tree to go green)
[22422](https://github.com/flutter/engine/pull/22422) Roll Skia from 008d63e23dab to 267826c86552 (4 revisions) (cla: yes, waiting for tree to go green)
[22423](https://github.com/flutter/engine/pull/22423) Roll Fuchsia Mac SDK from w10eytxvc... to e-4Jm-yWa... (cla: yes, waiting for tree to go green)
[22424](https://github.com/flutter/engine/pull/22424) Roll Skia from 267826c86552 to 88e8bb2fe2d5 (3 revisions) (cla: yes, waiting for tree to go green)
[22425](https://github.com/flutter/engine/pull/22425) Roll Skia from 88e8bb2fe2d5 to a0a5146ba9d1 (2 revisions) (cla: yes, waiting for tree to go green)
[22426](https://github.com/flutter/engine/pull/22426) Fix typo in documentation for FlPlatformPlugin (cla: yes)
[22427](https://github.com/flutter/engine/pull/22427) Roll Fuchsia Linux SDK from DzZi2gPbF... to Z-OUQ5Dti... (cla: yes, waiting for tree to go green)
[22428](https://github.com/flutter/engine/pull/22428) Roll Skia from a0a5146ba9d1 to 1fe2b80dc782 (2 revisions) (cla: yes, waiting for tree to go green)
[22429](https://github.com/flutter/engine/pull/22429) Fix talkback in hybrid composition while using FlutterFragmentActivity (cla: yes, platform-android)
[22430](https://github.com/flutter/engine/pull/22430) fuchsia: Add licenses to CIPD (cla: yes, platform-fuchsia)
[22432](https://github.com/flutter/engine/pull/22432) Roll Skia from 1fe2b80dc782 to 24c18526a564 (1 revision) (cla: yes, waiting for tree to go green)
[22433](https://github.com/flutter/engine/pull/22433) Roll Skia from 24c18526a564 to 7006e15df59d (1 revision) (cla: yes, waiting for tree to go green)
[22434](https://github.com/flutter/engine/pull/22434) Revert "[Android Text Input] Make the editing state listenable and allow batch edits " (cla: yes, platform-android, waiting for tree to go green)
[22435](https://github.com/flutter/engine/pull/22435) [Android text input] Reland #21534 (cla: yes, platform-android, waiting for tree to go green)
[22437](https://github.com/flutter/engine/pull/22437) Roll Skia from 7006e15df59d to 869eb97f6c29 (4 revisions) (cla: yes, waiting for tree to go green)
[22439](https://github.com/flutter/engine/pull/22439) [fuchsia] shader warmup fixes (cla: yes)
[22440](https://github.com/flutter/engine/pull/22440) Roll Fuchsia Linux SDK from Z-OUQ5Dti... to pWW5QaeNe... (cla: yes, waiting for tree to go green)
[22442](https://github.com/flutter/engine/pull/22442) [web] Better structure to prepare for rich text measurement (cla: yes, platform-web)
[22443](https://github.com/flutter/engine/pull/22443) [web] Refactor _measureSubstring to better suit rich text measurement (cla: yes, platform-web)
[22444](https://github.com/flutter/engine/pull/22444) [web] Reuse the existing font string builer in TextStyle (cla: yes, platform-web)
[22445](https://github.com/flutter/engine/pull/22445) fuchsia: Update buildroot (cla: yes, platform-fuchsia)
[22446](https://github.com/flutter/engine/pull/22446) Make CkPath resurrectable (cla: yes, waiting for tree to go green)
[22447](https://github.com/flutter/engine/pull/22447) Roll Fuchsia Mac SDK from e-4Jm-yWa... to 9t3yDRxI8... (cla: yes, waiting for tree to go green)
[22449](https://github.com/flutter/engine/pull/22449) [flutter_releases] Flutter 1.22.4 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22450](https://github.com/flutter/engine/pull/22450) Roll Dart SDK from 8749fdff07f5 to 40a4d9b44d72 (1 revision) (cla: yes, waiting for tree to go green)
[22451](https://github.com/flutter/engine/pull/22451) libtxt: use a placeholder run's width as the width of the placeholder character's glyph (cla: yes, waiting for tree to go green)
[22452](https://github.com/flutter/engine/pull/22452) Roll Skia from 869eb97f6c29 to 70eba23828a3 (20 revisions) (cla: yes, waiting for tree to go green)
[22454](https://github.com/flutter/engine/pull/22454) Also maintain the zone on the ChannelBuffers.push callback (cla: yes, waiting for tree to go green)
[22455](https://github.com/flutter/engine/pull/22455) Fix the event size parameters in the Embedder ComplexClip test (cla: yes, waiting for tree to go green)
[22457](https://github.com/flutter/engine/pull/22457) [macOS] Disable synchronous resizing until a frame is produced (affects: desktop, cla: yes, needs tests, platform-macos)
[22458](https://github.com/flutter/engine/pull/22458) Roll Skia from 70eba23828a3 to 59bafeeaa7de (3 revisions) (cla: yes, waiting for tree to go green)
[22459](https://github.com/flutter/engine/pull/22459) make CkContourMeasureIter and CkContourMeasure resurrectable (cla: yes)
[22460](https://github.com/flutter/engine/pull/22460) Roll Dart SDK from 40a4d9b44d72 to 620cf701720d (1 revision) (cla: yes, waiting for tree to go green)
[22461](https://github.com/flutter/engine/pull/22461) Revert "Make `PlatformDispatcher.locale` and `locales` return consistent values" (cla: yes)
[22462](https://github.com/flutter/engine/pull/22462) Roll Fuchsia Linux SDK from pWW5QaeNe... to fULjPqtx9... (cla: yes, waiting for tree to go green)
[22464](https://github.com/flutter/engine/pull/22464) Roll Fuchsia Mac SDK from 9t3yDRxI8... to 8ZF4hapvg... (cla: yes, waiting for tree to go green)
[22465](https://github.com/flutter/engine/pull/22465) Roll ICU to c2a4cae149aae7fd30c4cbe3cf1b30df03b386f1 (cla: yes)
[22466](https://github.com/flutter/engine/pull/22466) Add an include in minikin (cla: yes)
[22467](https://github.com/flutter/engine/pull/22467) Roll Skia from 59bafeeaa7de to 43f0a7d724aa (1 revision) (cla: yes, waiting for tree to go green)
[22468](https://github.com/flutter/engine/pull/22468) Reverts 2 commits that remove surface dependance on external view embedder (cla: yes, platform-android, platform-ios)
[22469](https://github.com/flutter/engine/pull/22469) Default to 2.7 when generating the package config (cla: yes)
[22470](https://github.com/flutter/engine/pull/22470) Reland "remove surface dependance on external view embedder (#22468)" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22473](https://github.com/flutter/engine/pull/22473) Reland: "Make `PlatformDispatcher.locale` and `locales` return consistent values (#22267)" (cla: yes)
[22478](https://github.com/flutter/engine/pull/22478) [flutter_release] Flutter 1.22.4 engine cherry-pick build error fix (cla: yes, platform-android, platform-ios)
[22479](https://github.com/flutter/engine/pull/22479) Roll Skia from 43f0a7d724aa to fc4fdc5b25f4 (27 revisions) (cla: yes, waiting for tree to go green)
[22480](https://github.com/flutter/engine/pull/22480) Roll Dart SDK from 620cf701720d to 3e502e0c7e04 (4 revisions) (cla: yes, waiting for tree to go green)
[22481](https://github.com/flutter/engine/pull/22481) [web]Update @dart annotation. Change shaders to allocate smaller canvas (cla: yes)
[22482](https://github.com/flutter/engine/pull/22482) Roll Skia from fc4fdc5b25f4 to a06b63c56ecd (2 revisions) (cla: yes, waiting for tree to go green)
[22483](https://github.com/flutter/engine/pull/22483) TBR: remove the extra values which was overshadowing the test result (cla: yes)
[22485](https://github.com/flutter/engine/pull/22485) Add and use --quiet flag on the license checker (cla: yes, waiting for tree to go green)
[22486](https://github.com/flutter/engine/pull/22486) Implement settings channel for the Linux shell (cla: yes)
[22487](https://github.com/flutter/engine/pull/22487) Roll Skia from a06b63c56ecd to 8ead30d51c86 (1 revision) (cla: yes, waiting for tree to go green)
[22490](https://github.com/flutter/engine/pull/22490) Roll Fuchsia Linux SDK from fULjPqtx9... to B4PaMsNWM... (cla: yes, waiting for tree to go green)
[22491](https://github.com/flutter/engine/pull/22491) Roll Dart SDK from 3e502e0c7e04 to 41893ff76b0f (1 revision) (cla: yes, waiting for tree to go green)
[22493](https://github.com/flutter/engine/pull/22493) Roll Skia from 8ead30d51c86 to 011218edb590 (4 revisions) (cla: yes, waiting for tree to go green)
[22497](https://github.com/flutter/engine/pull/22497) Roll Fuchsia Mac SDK from 8ZF4hapvg... to vjuGOKwGt... (cla: yes, waiting for tree to go green)
[22498](https://github.com/flutter/engine/pull/22498) Roll Dart SDK from 41893ff76b0f to bf20abbb8e22 (2 revisions) (cla: yes, waiting for tree to go green)
[22499](https://github.com/flutter/engine/pull/22499) Roll Skia from 011218edb590 to efd628a1a965 (2 revisions) (cla: yes, waiting for tree to go green)
[22501](https://github.com/flutter/engine/pull/22501) [flutter_releases] Flutter 1.24.0-10.1.pre engine cherrypicks (cla: yes)
[22502](https://github.com/flutter/engine/pull/22502) Opt in fixtures to nullsafety (cla: yes)
[22503](https://github.com/flutter/engine/pull/22503) Roll Skia from efd628a1a965 to cae335d5b18f (5 revisions) (cla: yes, waiting for tree to go green)
[22504](https://github.com/flutter/engine/pull/22504) Roll Fuchsia Linux SDK from B4PaMsNWM... to S4lxhP7Qt... (cla: yes, waiting for tree to go green)
[22505](https://github.com/flutter/engine/pull/22505) Remove the Window class now that it is no longer used. (cla: yes)
[22506](https://github.com/flutter/engine/pull/22506) Add xcframework to ios out (cla: yes, platform-ios)
[22509](https://github.com/flutter/engine/pull/22509) [flutter releases] more 1.24 engine CPs (cla: yes)
[22511](https://github.com/flutter/engine/pull/22511) Migrate to CanvasKit 0.19.0 (cla: yes)
[22514](https://github.com/flutter/engine/pull/22514) Roll Skia from cae335d5b18f to 031a76756e24 (8 revisions) (cla: yes, waiting for tree to go green)
[22515](https://github.com/flutter/engine/pull/22515) Roll Dart SDK from bf20abbb8e22 to 7bbace20d14f (1 revision) (cla: yes, waiting for tree to go green)
[22516](https://github.com/flutter/engine/pull/22516) Manual roll of Dart from 7bbace20d1 to 5ea7e4d39f (cla: yes)
[22518](https://github.com/flutter/engine/pull/22518) Roll Dart SDK from 5ea7e4d39f43 to 6a805f4dbcf4 (1 revision) (cla: yes, waiting for tree to go green)
[22519](https://github.com/flutter/engine/pull/22519) Revert "Remove the Window class now that it is no longer used." (cla: yes)
[22521](https://github.com/flutter/engine/pull/22521) Roll Fuchsia Mac SDK from vjuGOKwGt... to 6gGbW-hRH... (cla: yes, waiting for tree to go green)
[22522](https://github.com/flutter/engine/pull/22522) Roll Fuchsia Linux SDK from S4lxhP7Qt... to ywh3expSX... (cla: yes, waiting for tree to go green)
[22523](https://github.com/flutter/engine/pull/22523) Roll Dart SDK from 6a805f4dbcf4 to 6135aed34f56 (1 revision) (cla: yes, waiting for tree to go green)
[22524](https://github.com/flutter/engine/pull/22524) Roll Dart SDK from 6135aed34f56 to 12c5be745bb5 (1 revision) (cla: yes, waiting for tree to go green)
[22525](https://github.com/flutter/engine/pull/22525) Remove the wasm library from the sky_engine package (cla: yes)
[22526](https://github.com/flutter/engine/pull/22526) Roll Fuchsia Mac SDK from 6gGbW-hRH... to wSCtFA1Mj... (cla: yes, waiting for tree to go green)
[22527](https://github.com/flutter/engine/pull/22527) Roll Fuchsia Linux SDK from ywh3expSX... to WVpXfkg-V... (cla: yes, waiting for tree to go green)
[22528](https://github.com/flutter/engine/pull/22528) Roll Fuchsia Mac SDK from wSCtFA1Mj... to 6LXPsNi-P... (cla: yes, waiting for tree to go green)
[22529](https://github.com/flutter/engine/pull/22529) Roll Fuchsia Linux SDK from WVpXfkg-V... to E3briMHHv... (cla: yes, waiting for tree to go green)
[22530](https://github.com/flutter/engine/pull/22530) Replace dead links in docs (cla: yes, waiting for tree to go green)
[22531](https://github.com/flutter/engine/pull/22531) Roll Dart SDK from 12c5be745bb5 to 92e087bf82e2 (1 revision) (cla: yes, waiting for tree to go green)
[22533](https://github.com/flutter/engine/pull/22533) Roll Skia from 031a76756e24 to cce84d1fd893 (4 revisions) (cla: yes, waiting for tree to go green)
[22534](https://github.com/flutter/engine/pull/22534) Roll Fuchsia Mac SDK from 6LXPsNi-P... to LOnq8wpIx... (cla: yes, waiting for tree to go green)
[22536](https://github.com/flutter/engine/pull/22536) Roll Dart SDK from 92e087bf82e2 to d67a5c245285 (1 revision) (cla: yes, waiting for tree to go green)
[22537](https://github.com/flutter/engine/pull/22537) Roll Fuchsia Linux SDK from E3briMHHv... to 2R7OWHAQq... (cla: yes, waiting for tree to go green)
[22538](https://github.com/flutter/engine/pull/22538) [Android] Add systemNavigationBarDividerColor (cla: yes, platform-android, waiting for tree to go green)
[22539](https://github.com/flutter/engine/pull/22539) Roll Skia from cce84d1fd893 to 5a89ed542f06 (7 revisions) (cla: yes, waiting for tree to go green)
[22540](https://github.com/flutter/engine/pull/22540) Fix and clean up scenario app for Android (cla: yes, waiting for tree to go green)
[22541](https://github.com/flutter/engine/pull/22541) Roll Skia from 5a89ed542f06 to ef8d52d8b2bb (3 revisions) (cla: yes, waiting for tree to go green)
[22544](https://github.com/flutter/engine/pull/22544) Roll Dart SDK from d67a5c245285 to 4bf74ee7d04e (2 revisions) (cla: yes, waiting for tree to go green)
[22545](https://github.com/flutter/engine/pull/22545) Check valid view_holder ptr before updating view (cla: yes, platform-fuchsia)
[22546](https://github.com/flutter/engine/pull/22546) Re-enable ShellTest.SkipAndSubmitFrame (cla: yes, waiting for tree to go green)
[22548](https://github.com/flutter/engine/pull/22548) Roll Skia from ef8d52d8b2bb to 396974683cbd (5 revisions) (cla: yes, waiting for tree to go green)
[22549](https://github.com/flutter/engine/pull/22549) Refactor CanvasKit image ref counting; fix a minor memory leak (cla: yes, waiting for tree to go green)
[22550](https://github.com/flutter/engine/pull/22550) [goma] Use depot_tools vended goma when it is present (cla: yes, waiting for tree to go green)
[22551](https://github.com/flutter/engine/pull/22551) Add SDK licenses to DEPS (cla: yes)
[22554](https://github.com/flutter/engine/pull/22554) Roll Skia from 396974683cbd to ee33a3a07262 (1 revision) (cla: yes, waiting for tree to go green)
[22555](https://github.com/flutter/engine/pull/22555) Make the AndroidContext superclass destructor virtual (cla: yes, platform-android)
[22556](https://github.com/flutter/engine/pull/22556) Roll Skia from ee33a3a07262 to 1ce8964db113 (1 revision) (cla: yes, waiting for tree to go green)
[22558](https://github.com/flutter/engine/pull/22558) Roll Dart SDK from 4bf74ee7d04e to 061817652723 (1 revision) (cla: yes, waiting for tree to go green)
[22560](https://github.com/flutter/engine/pull/22560) Use flutter public package for the time being (cla: yes)
[22561](https://github.com/flutter/engine/pull/22561) Roll Fuchsia Linux SDK from 2R7OWHAQq... to NWl53Ll5C... (cla: yes, waiting for tree to go green)
[22562](https://github.com/flutter/engine/pull/22562) Roll Fuchsia Mac SDK from LOnq8wpIx... to 7W0E0ZKtm... (cla: yes, waiting for tree to go green)
[22563](https://github.com/flutter/engine/pull/22563) Roll Skia from 1ce8964db113 to c634fc4a664c (16 revisions) (cla: yes, waiting for tree to go green)
[22566](https://github.com/flutter/engine/pull/22566) Reland: Remove the Window class now that it is no longer used. (cla: yes)
[22567](https://github.com/flutter/engine/pull/22567) Roll Skia from c634fc4a664c to 75c38f94efd6 (2 revisions) (cla: yes, waiting for tree to go green)
[22568](https://github.com/flutter/engine/pull/22568) [flutter_releases] Flutter 1.24.0-10.2.pre engine cherrypicks (cla: yes)
[22569](https://github.com/flutter/engine/pull/22569) [macOS] Isolate openGL rendering to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22570](https://github.com/flutter/engine/pull/22570) Roll Skia from 75c38f94efd6 to 8f46ecc84fab (1 revision) (cla: yes, waiting for tree to go green)
[22572](https://github.com/flutter/engine/pull/22572) [macOS] Move the glContext generation to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22574](https://github.com/flutter/engine/pull/22574) PlatformViewsController: clear composition_order_ in the beginning of each frame. (cla: yes, platform-ios, waiting for tree to go green)
[22575](https://github.com/flutter/engine/pull/22575) Implement image resurrection (cla: yes, waiting for tree to go green)
[22576](https://github.com/flutter/engine/pull/22576) Fix typos and fix some env var state leakage in tests (cla: yes)
[22577](https://github.com/flutter/engine/pull/22577) Add delayed event delivery for Linux. (cla: yes)
[22578](https://github.com/flutter/engine/pull/22578) Roll Skia from 8f46ecc84fab to 6aeb414df947 (1 revision) (cla: yes, waiting for tree to go green)
[22579](https://github.com/flutter/engine/pull/22579) Roll Skia from 6aeb414df947 to a1112b326a79 (3 revisions) (cla: yes, waiting for tree to go green)
[22581](https://github.com/flutter/engine/pull/22581) Roll Fuchsia Linux SDK from NWl53Ll5C... to Oh__c-W9V... (cla: yes, waiting for tree to go green)
[22583](https://github.com/flutter/engine/pull/22583) Roll Fuchsia Linux SDK from Oh__c-W9V... to cwFOtNvhn... (cla: yes, waiting for tree to go green)
[22584](https://github.com/flutter/engine/pull/22584) Roll Skia from a1112b326a79 to 2efafe688dd1 (1 revision) (cla: yes, waiting for tree to go green)
[22587](https://github.com/flutter/engine/pull/22587) Roll Fuchsia Mac SDK from 7W0E0ZKtm... to aqxbkh0hC... (cla: yes, waiting for tree to go green)
[22591](https://github.com/flutter/engine/pull/22591) Made tools/gn error out if it can't find goma (cla: yes, waiting for tree to go green)
[22592](https://github.com/flutter/engine/pull/22592) [macOS] Revert breaking change to FlutterEngine public API (cla: yes, waiting for tree to go green)
[22593](https://github.com/flutter/engine/pull/22593) fuchsia: Clamp compositor surface size (cla: yes, platform-fuchsia)
[22594](https://github.com/flutter/engine/pull/22594) libtxt: Clone an ICU line break iterator for each Paragraph/WordBreaker (cla: yes, waiting for tree to go green)
[22596](https://github.com/flutter/engine/pull/22596) Roll Skia from 2efafe688dd1 to d1d872905b0f (28 revisions) (cla: yes, waiting for tree to go green)
[22597](https://github.com/flutter/engine/pull/22597) [web] Implement tilemode for gradient shaders. (cla: yes, platform-web)
[22598](https://github.com/flutter/engine/pull/22598) Replace support libraries for AndroidX (cla: yes, platform-android, waiting for tree to go green)
[22599](https://github.com/flutter/engine/pull/22599) Rename padding->viewPadding to match framework naming conventions (cla: yes, platform-android, waiting for tree to go green)
[22602](https://github.com/flutter/engine/pull/22602) Roll Fuchsia Linux SDK from cwFOtNvhn... to aAb3NJv_h... (cla: yes, waiting for tree to go green)
[22603](https://github.com/flutter/engine/pull/22603) Remove opt outs for dart:ui (cla: yes)
[22604](https://github.com/flutter/engine/pull/22604) Roll Fuchsia Mac SDK from aqxbkh0hC... to DQpWjEN59... (cla: yes, waiting for tree to go green)
[22607](https://github.com/flutter/engine/pull/22607) [macos] Re-land FlutterOpenGLRenderer isolation (cla: yes)
[22608](https://github.com/flutter/engine/pull/22608) Fix PlatformDispatcher.locale to return something meaningful when there are no locales. (cla: yes)
[22610](https://github.com/flutter/engine/pull/22610) Update the log tag for FlutterEngineConnectionRegistry to be 23 characters (cla: yes, platform-android)
[22611](https://github.com/flutter/engine/pull/22611) Introduce a delegate class for gpu metal rendering (cla: yes, platform-ios)
[22615](https://github.com/flutter/engine/pull/22615) Roll Dart SDK from 061817652723 to 12fded61a2bc (12 revisions) (cla: yes, waiting for tree to go green)
[22616](https://github.com/flutter/engine/pull/22616) Roll Skia from d1d872905b0f to 9496fe5bcec9 (25 revisions) (cla: yes, waiting for tree to go green)
[22618](https://github.com/flutter/engine/pull/22618) [web] Fix test failure on high dpi device (cla: yes, platform-web)
[22620](https://github.com/flutter/engine/pull/22620) Set SkPath::setIsVolatile based on whether the path survives at least two frames (cla: yes, perf: memory, perf: speed, severe: performance)
[22621](https://github.com/flutter/engine/pull/22621) Roll Skia from 9496fe5bcec9 to ed289e777cfa (2 revisions) (cla: yes, waiting for tree to go green)
[22622](https://github.com/flutter/engine/pull/22622) [web] Optimize Matrix4.identity (cla: yes, perf: speed, platform-web)
[22623](https://github.com/flutter/engine/pull/22623) Roll Dart SDK from 12fded61a2bc to a06d469024fd (1 revision) (cla: yes, waiting for tree to go green)
[22624](https://github.com/flutter/engine/pull/22624) Split AOT Engine Runtime (affects: engine, cla: yes, waiting for tree to go green)
[22626](https://github.com/flutter/engine/pull/22626) Fix double delete on backspace on Android (cla: yes, platform-android, waiting for tree to go green)
[22628](https://github.com/flutter/engine/pull/22628) Fix java warnings for unchecked conversions in PlayStoreDynamicFeatureManager (cla: yes, platform-android)
[22630](https://github.com/flutter/engine/pull/22630) Roll Dart SDK from a06d469024fd to b8fea79a2549 (1 revision) (cla: yes, waiting for tree to go green)
[22631](https://github.com/flutter/engine/pull/22631) Roll Fuchsia Linux SDK from aAb3NJv_h... to X1ue-JZsc... (cla: yes, waiting for tree to go green)
[22632](https://github.com/flutter/engine/pull/22632) Roll Skia from ed289e777cfa to 9dce4d081f8a (3 revisions) (cla: yes, waiting for tree to go green)
[22633](https://github.com/flutter/engine/pull/22633) Roll Fuchsia Mac SDK from DQpWjEN59... to wGZWtwuY4... (cla: yes, waiting for tree to go green)
[22634](https://github.com/flutter/engine/pull/22634) Roll Dart SDK from b8fea79a2549 to 861ebcb175b6 (1 revision) (cla: yes, waiting for tree to go green)
[22635](https://github.com/flutter/engine/pull/22635) Roll Skia from 9dce4d081f8a to 8c5889937172 (1 revision) (cla: yes, waiting for tree to go green)
[22636](https://github.com/flutter/engine/pull/22636) Roll Dart SDK from 861ebcb175b6 to 1adf3d5fa9d0 (1 revision) (cla: yes, waiting for tree to go green)
[22637](https://github.com/flutter/engine/pull/22637) Roll Skia from 8c5889937172 to 0006ad01ce55 (4 revisions) (cla: yes, waiting for tree to go green)
[22641](https://github.com/flutter/engine/pull/22641) Add more runtime intrinsic symbols to the export checker script (cla: yes)
[22646](https://github.com/flutter/engine/pull/22646) Roll buildroot (cla: yes)
[22647](https://github.com/flutter/engine/pull/22647) Roll Dart SDK from 1adf3d5fa9d0 to d189db64441c (1 revision) (cla: yes, waiting for tree to go green)
[22649](https://github.com/flutter/engine/pull/22649) Roll Fuchsia Linux SDK from X1ue-JZsc... to mw1Z23AQ4... (cla: yes, waiting for tree to go green)
[22650](https://github.com/flutter/engine/pull/22650) Add Instrumentation class to web engine (cla: yes, waiting for tree to go green)
[22652](https://github.com/flutter/engine/pull/22652) Roll Fuchsia Mac SDK from wGZWtwuY4... to OFI5mVERq... (cla: yes, waiting for tree to go green)
[22654](https://github.com/flutter/engine/pull/22654) Fix the unchecked conversion warning for searchPaths in PlayStoreDynamicFeatureManager (cla: yes, platform-android)
[22656](https://github.com/flutter/engine/pull/22656) Create FlutterFrameBufferProvider class (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22657](https://github.com/flutter/engine/pull/22657) [embedder][glfw] Add support for locales to glfw shell (cla: yes)
[22658](https://github.com/flutter/engine/pull/22658) Fix race condition in key event handling on Android (cla: yes, platform-android)
[22659](https://github.com/flutter/engine/pull/22659) Roll Skia from 0006ad01ce55 to 0dd83e165ae9 (21 revisions) (cla: yes, waiting for tree to go green)
[22660](https://github.com/flutter/engine/pull/22660) Roll Dart SDK from d189db64441c to 2ff016f0416d (1 revision) (cla: yes, waiting for tree to go green)
[22662](https://github.com/flutter/engine/pull/22662) Enabling semantics tests for safari, ios-safari and firefox (cla: yes, waiting for tree to go green)
[22663](https://github.com/flutter/engine/pull/22663) Create wrapper for IOSurface (affects: desktop, cla: yes, needs tests, platform-macos)
[22664](https://github.com/flutter/engine/pull/22664) Generate XCFramework in recipe package script (cla: yes, waiting for tree to go green)
[22665](https://github.com/flutter/engine/pull/22665) Make AndroidContext::IsValid virtual (cla: yes, platform-android)
[22666](https://github.com/flutter/engine/pull/22666) Roll Fuchsia Linux SDK from mw1Z23AQ4... to L78XAIrlz... (cla: yes, waiting for tree to go green)
[22667](https://github.com/flutter/engine/pull/22667) Roll Fuchsia Mac SDK from OFI5mVERq... to jh5hQRJsk... (cla: yes, waiting for tree to go green)
[22668](https://github.com/flutter/engine/pull/22668) Roll Skia from 0dd83e165ae9 to ee40ec6dd679 (6 revisions) (cla: yes, waiting for tree to go green)
[22671](https://github.com/flutter/engine/pull/22671) Roll Fuchsia Linux SDK from L78XAIrlz... to Nmo4pkY2s... (cla: yes, waiting for tree to go green)
[22673](https://github.com/flutter/engine/pull/22673) Roll Fuchsia Mac SDK from jh5hQRJsk... to qC9Z6PMoY... (cla: yes, waiting for tree to go green)
[22674](https://github.com/flutter/engine/pull/22674) Request quickReject results from correct drawing canvas (cla: yes)
[22677](https://github.com/flutter/engine/pull/22677) Roll Dart SDK from 2ff016f0416d to 962ef010aedd (2 revisions) (cla: yes, waiting for tree to go green)
[22678](https://github.com/flutter/engine/pull/22678) cherrypick: Fix double delete on backspace on Android (#22626) (cla: yes, platform-android)
[22680](https://github.com/flutter/engine/pull/22680) Roll Skia from ee40ec6dd679 to b27f39c92410 (14 revisions) (cla: yes, waiting for tree to go green)
[22683](https://github.com/flutter/engine/pull/22683) Fix shell_unittests flakes related to external_view_embedder (cla: yes, waiting for tree to go green)
[22684](https://github.com/flutter/engine/pull/22684) Roll Skia from b27f39c92410 to 95b5fb9213d7 (2 revisions) (cla: yes, waiting for tree to go green)
[22685](https://github.com/flutter/engine/pull/22685) Generate Maven metadata files for engine artifacts (cla: yes, platform-android, waiting for tree to go green)
[22687](https://github.com/flutter/engine/pull/22687) fuchsia: Ensure full-screen input interceptor (cla: yes, platform-fuchsia)
[22690](https://github.com/flutter/engine/pull/22690) Roll Dart SDK from 962ef010aedd to cde050a4c0b4 (2 revisions) (cla: yes, waiting for tree to go green)
[22692](https://github.com/flutter/engine/pull/22692) Let FlutterFragment not pop the whole activity by default when more fragments are in the activity (cla: yes, platform-android, waiting for tree to go green)
[22704](https://github.com/flutter/engine/pull/22704) Roll Fuchsia Linux SDK from Nmo4pkY2s... to GlHwWVGTU... (cla: yes, waiting for tree to go green)
[22707](https://github.com/flutter/engine/pull/22707) Roll Fuchsia Mac SDK from qC9Z6PMoY... to QKCl4nBGL... (cla: yes, waiting for tree to go green)
[22709](https://github.com/flutter/engine/pull/22709) Roll Dart SDK from cde050a4c0b4 to ed9894865fa3 (2 revisions) (cla: yes, waiting for tree to go green)
[22711](https://github.com/flutter/engine/pull/22711) Roll Skia from 95b5fb9213d7 to 68ac3b9ec3ca (17 revisions) (cla: yes, waiting for tree to go green)
[22712](https://github.com/flutter/engine/pull/22712) Roll Fuchsia Linux SDK from GlHwWVGTU... to eyiA9UhTG... (cla: yes, waiting for tree to go green)
[22713](https://github.com/flutter/engine/pull/22713) Roll Skia from 95b5fb9213d7 to 68ac3b9ec3ca (17 revisions) (cla: yes, waiting for tree to go green)
[22714](https://github.com/flutter/engine/pull/22714) Fix use of uninitialized memory in animator (cla: yes)
[22715](https://github.com/flutter/engine/pull/22715) Roll Skia from 68ac3b9ec3ca to 4dfa9774300c (3 revisions) (cla: yes, waiting for tree to go green)
[22719](https://github.com/flutter/engine/pull/22719) Roll Skia from 4dfa9774300c to 6c5e78d09940 (6 revisions) (cla: yes, waiting for tree to go green)
[22724](https://github.com/flutter/engine/pull/22724) Roll Skia from 6c5e78d09940 to ee792d6c96d9 (8 revisions) (cla: yes, waiting for tree to go green)
[22726](https://github.com/flutter/engine/pull/22726) Roll Fuchsia Mac SDK from QKCl4nBGL... to aXfbrLuUK... (cla: yes, waiting for tree to go green)
[22727](https://github.com/flutter/engine/pull/22727) Roll Dart SDK from ed9894865fa3 to cd7b857e70a7 (1 revision) (cla: yes, waiting for tree to go green)
[22732](https://github.com/flutter/engine/pull/22732) Roll Skia from ee792d6c96d9 to 36d06a806f69 (9 revisions) (cla: yes, waiting for tree to go green)
[22733](https://github.com/flutter/engine/pull/22733) Roll Fuchsia Linux SDK from eyiA9UhTG... to gkfmiRsIl... (cla: yes, waiting for tree to go green)
[22735](https://github.com/flutter/engine/pull/22735) Roll Skia from 36d06a806f69 to 888c5d3e57eb (2 revisions) (cla: yes, waiting for tree to go green)
[22736](https://github.com/flutter/engine/pull/22736) Add a golden scenario test for fallback font rendering on iOS take 3 (cla: yes, waiting for tree to go green)
[22737](https://github.com/flutter/engine/pull/22737) Roll Fuchsia Mac SDK from aXfbrLuUK... to 36uDTGJQp... (cla: yes, waiting for tree to go green)
[22738](https://github.com/flutter/engine/pull/22738) Roll Dart SDK from cd7b857e70a7 to ce76503f5b46 (1 revision) (cla: yes, waiting for tree to go green)
[22744](https://github.com/flutter/engine/pull/22744) Roll Fuchsia Linux SDK from gkfmiRsIl... to un3JixwuO... (cla: yes, waiting for tree to go green)
[22745](https://github.com/flutter/engine/pull/22745) Don't register CanvasKit with `define` (cla: yes)
[22746](https://github.com/flutter/engine/pull/22746) Roll Skia from 888c5d3e57eb to 51b74afb84d4 (12 revisions) (cla: yes, waiting for tree to go green)
[22749](https://github.com/flutter/engine/pull/22749) Roll Skia from 51b74afb84d4 to 452369182f6e (1 revision) (cla: yes, waiting for tree to go green)
[22750](https://github.com/flutter/engine/pull/22750) Roll Skia from 452369182f6e to f2efb80bc316 (4 revisions) (cla: yes, waiting for tree to go green)
[22752](https://github.com/flutter/engine/pull/22752) Add FlutterPlayStoreSplitApplication for simpler opt in to Split AOT (affects: engine, cla: yes, platform-android)
[22753](https://github.com/flutter/engine/pull/22753) Roll Fuchsia Mac SDK from 36uDTGJQp... to qpkZl0s5J... (cla: yes, waiting for tree to go green)
[22754](https://github.com/flutter/engine/pull/22754) Roll Skia from f2efb80bc316 to 8d78da910e45 (5 revisions) (cla: yes, waiting for tree to go green)
[22757](https://github.com/flutter/engine/pull/22757) Roll Fuchsia Linux SDK from un3JixwuO... to Bnaeivv07... (cla: yes, waiting for tree to go green)
[22760](https://github.com/flutter/engine/pull/22760) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios)
[22762](https://github.com/flutter/engine/pull/22762) PlatformViewsController: clear composition_order_ in the beginning of each frame. (cla: yes, platform-ios)
[22766](https://github.com/flutter/engine/pull/22766) Manual roll of Dart SDK from ce76503f5b46 to dcd5a8f005a (cla: yes)
[22768](https://github.com/flutter/engine/pull/22768) Roll Dart SDK from dcd5a8f005a2 to 960620d2e811 (794 revisions) (cla: yes, waiting for tree to go green)
[22769](https://github.com/flutter/engine/pull/22769) Cleanup dart_runner examples & tests. (cla: yes, waiting for tree to go green)
[22770](https://github.com/flutter/engine/pull/22770) add file package to deps in prep for glob update (cla: yes, waiting for tree to go green)
[22771](https://github.com/flutter/engine/pull/22771) [web] Add new line break type (prohibited) (cla: yes, platform-web)
[22772](https://github.com/flutter/engine/pull/22772) Roll Skia from 8d78da910e45 to fd41d878b13d (20 revisions) (cla: yes, waiting for tree to go green)
[22775](https://github.com/flutter/engine/pull/22775) Revert "Introduce a delegate class for gpu metal rendering (#22611)" (cla: yes, platform-ios)
[22776](https://github.com/flutter/engine/pull/22776) Roll Skia from fd41d878b13d to 70fe17e12f38 (6 revisions) (cla: yes, waiting for tree to go green)
[22777](https://github.com/flutter/engine/pull/22777) Reland "Introduce a delegate class for gpu metal rendering (#22611)" (cla: yes, platform-ios)
[22778](https://github.com/flutter/engine/pull/22778) Roll Dart SDK from 960620d2e811 to 7a2a3968ef53 (12 revisions) (cla: yes, waiting for tree to go green)
[22779](https://github.com/flutter/engine/pull/22779) [web] Initial rich measurement implementation (cla: yes, platform-web, waiting for tree to go green)
[22780](https://github.com/flutter/engine/pull/22780) [embedder] Compositor can specify that no backing stores be cached (cla: yes)
[22781](https://github.com/flutter/engine/pull/22781) Roll Skia from 70fe17e12f38 to 4c6f57a23e63 (1 revision) (cla: yes, waiting for tree to go green)
[22782](https://github.com/flutter/engine/pull/22782) (MacOS) Add FlutterGLCompositor with support for rendering multiple layers (cla: yes)
[22793](https://github.com/flutter/engine/pull/22793) Stop using the List constructor. (cla: yes, waiting for tree to go green)
[22794](https://github.com/flutter/engine/pull/22794) Add package:file to DEPS (cla: yes)
[22801](https://github.com/flutter/engine/pull/22801) Roll Dart SDK from 7a2a3968ef53 to e9a03fd98faa (5 revisions) (cla: yes, waiting for tree to go green)
[22802](https://github.com/flutter/engine/pull/22802) Roll Skia from 4c6f57a23e63 to a927771c9cce (10 revisions) (cla: yes, waiting for tree to go green)
[22803](https://github.com/flutter/engine/pull/22803) Roll Skia from a927771c9cce to 7b776b514933 (3 revisions) (cla: yes, waiting for tree to go green)
[22804](https://github.com/flutter/engine/pull/22804) Roll buildroot and benchmark (cla: yes, waiting for tree to go green)
[22805](https://github.com/flutter/engine/pull/22805) Roll Fuchsia Mac SDK from qpkZl0s5J... to 7O11wjLVX... (cla: yes, waiting for tree to go green)
[22807](https://github.com/flutter/engine/pull/22807) Make CkPicture resurrectable (cla: yes)
[22808](https://github.com/flutter/engine/pull/22808) Roll Skia from 7b776b514933 to c504ecda03b8 (6 revisions) (cla: yes, waiting for tree to go green)
[22809](https://github.com/flutter/engine/pull/22809) Better handle image codec instantiation failure (cla: yes)
[22810](https://github.com/flutter/engine/pull/22810) Roll Dart SDK from e9a03fd98faa to 5acaa5f14b03 (1 revision) (cla: yes, waiting for tree to go green)
[22811](https://github.com/flutter/engine/pull/22811) Add static text trait to plain semantics object with label in iOS (cla: yes, platform-ios, waiting for tree to go green)
[22812](https://github.com/flutter/engine/pull/22812) Add trace kernel flag to allowlist (cla: yes)
[22813](https://github.com/flutter/engine/pull/22813) [web] Fix event transform between mousedown/up due to mouse move event (cla: yes)
[22816](https://github.com/flutter/engine/pull/22816) Revert "Roll buildroot and benchmark" (cla: yes)
[22817](https://github.com/flutter/engine/pull/22817) Roll Fuchsia Linux SDK from Bnaeivv07... to W14Qninrb... (cla: yes, waiting for tree to go green)
[22818](https://github.com/flutter/engine/pull/22818) Generate gen_snapshot_armv7 and gen_snapshot_arm64 (cla: yes, platform-ios)
[22819](https://github.com/flutter/engine/pull/22819) More rename from GPU thread to raster thread (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22820](https://github.com/flutter/engine/pull/22820) Roll Fuchsia Mac SDK from 7O11wjLVX... to Z_-ciOYM9... (cla: yes, waiting for tree to go green)
[22823](https://github.com/flutter/engine/pull/22823) Revert "Fix race condition in key event handling on Android (#22658)" (cla: yes, platform-android)
[22824](https://github.com/flutter/engine/pull/22824) Temporarily reduce e2e test matrix to stop flaky web engine builds (cla: yes)
[22827](https://github.com/flutter/engine/pull/22827) Roll Dart SDK from 5acaa5f14b03 to cfaa7606cbf5 (2 revisions) (cla: yes, waiting for tree to go green)
[22828](https://github.com/flutter/engine/pull/22828) Roll Skia from c504ecda03b8 to 9443d58af292 (16 revisions) (cla: yes, waiting for tree to go green)
[22829](https://github.com/flutter/engine/pull/22829) upgrade Firefox to 83 (cla: yes, platform-web)
[22833](https://github.com/flutter/engine/pull/22833) DynamicFeatureChannel MethodChannel and Install state tracking (cla: yes, platform-android)
[22834](https://github.com/flutter/engine/pull/22834) Reland: "Fix race condition in key event handling on Android (#22658)" (cla: yes, platform-android, waiting for tree to go green)
[22838](https://github.com/flutter/engine/pull/22838) Implement pushColorFilter in CanvasKit (cla: yes, platform-web)
[22839](https://github.com/flutter/engine/pull/22839) Roll Skia from 9443d58af292 to c7112edbe0f4 (10 revisions) (cla: yes, waiting for tree to go green)
[22840](https://github.com/flutter/engine/pull/22840) Roll Dart SDK from cfaa7606cbf5 to 97cfd05b3cb3 (2 revisions) (cla: yes, waiting for tree to go green)
[22841](https://github.com/flutter/engine/pull/22841) Roll Fuchsia Mac SDK from Z_-ciOYM9... to DRN4P3zbe... (cla: yes, waiting for tree to go green)
[22842](https://github.com/flutter/engine/pull/22842) Roll Fuchsia Linux SDK from W14Qninrb... to M_8svVndh... (cla: yes, waiting for tree to go green)
[22844](https://github.com/flutter/engine/pull/22844) Roll Skia from c7112edbe0f4 to d39aec0e40ec (17 revisions) (cla: yes, waiting for tree to go green)
[22845](https://github.com/flutter/engine/pull/22845) opt into new Skia APIs (cla: yes, platform-android, waiting for tree to go green)
[22846](https://github.com/flutter/engine/pull/22846) leaving only html tests (cla: yes, waiting for tree to go green)
[22847](https://github.com/flutter/engine/pull/22847) Roll Skia from d39aec0e40ec to 38921cafe1bb (7 revisions) (cla: yes, waiting for tree to go green)
[22848](https://github.com/flutter/engine/pull/22848) memoize the fallback SkPaint in paragraph (cla: yes, platform-web)
[22849](https://github.com/flutter/engine/pull/22849) Roll Dart SDK from 97cfd05b3cb3 to a37a4d42e53d (4 revisions) (cla: yes)
[22851](https://github.com/flutter/engine/pull/22851) Roll Skia from 38921cafe1bb to abcc1ecdfd0c (8 revisions) (cla: yes, waiting for tree to go green)
[22852](https://github.com/flutter/engine/pull/22852) Fix NPE when platform plugin delegate is null (cla: yes, platform-android)
[22853](https://github.com/flutter/engine/pull/22853) Handle null platform plugin delegate for v1 embedding (cla: yes, platform-android, waiting for tree to go green)
[22854](https://github.com/flutter/engine/pull/22854) [embedder] [metal] Add support for Metal Renderer Config in the embedder API (cla: yes, waiting for tree to go green)
[22855](https://github.com/flutter/engine/pull/22855) Roll Skia from abcc1ecdfd0c to c0c5106bd4d4 (3 revisions) (cla: yes, waiting for tree to go green)
[22856](https://github.com/flutter/engine/pull/22856) [web] Optimize BitmapCanvas. Fixes overallocation of canvas elements (cla: yes)
[22857](https://github.com/flutter/engine/pull/22857) Add split AOT loading unit failure/error code path (cla: yes, platform-android, waiting for tree to go green)
[22858](https://github.com/flutter/engine/pull/22858) Remove spammy ELF load log (cla: yes, waiting for tree to go green)
[22859](https://github.com/flutter/engine/pull/22859) Roll Dart SDK from a37a4d42e53d to 2c74e62a050c (1 revision) (cla: yes, waiting for tree to go green)
[22864](https://github.com/flutter/engine/pull/22864) Roll Fuchsia Mac SDK from DRN4P3zbe... to 1EKjnjmeP... (cla: yes, waiting for tree to go green)
[22871](https://github.com/flutter/engine/pull/22871) Update sites to use new SkMatrix factories (cla: yes, platform-ios)
[22872](https://github.com/flutter/engine/pull/22872) Roll Skia from c0c5106bd4d4 to fdb8dbe69cc2 (8 revisions) (cla: yes, waiting for tree to go green)
[22873](https://github.com/flutter/engine/pull/22873) [web] Handle overflow and maxLines in rich text (cla: yes, platform-web)
[22874](https://github.com/flutter/engine/pull/22874) re-enable pointer events inside platform views (cla: yes)
[22877](https://github.com/flutter/engine/pull/22877) Roll Skia from fdb8dbe69cc2 to bc3c41b8742a (3 revisions) (cla: yes, waiting for tree to go green)
[22878](https://github.com/flutter/engine/pull/22878) copy the glibc fix to felt (cla: yes)
[22879](https://github.com/flutter/engine/pull/22879) Roll Fuchsia Mac SDK from 1EKjnjmeP... to eEeK509UF... (cla: yes, waiting for tree to go green)
[22880](https://github.com/flutter/engine/pull/22880) Roll Fuchsia Linux SDK from M_8svVndh... to IuiLYXJbt... (cla: yes, waiting for tree to go green)
[22881](https://github.com/flutter/engine/pull/22881) Roll Dart SDK from 2c74e62a050c to f9760fc12871 (5 revisions) (cla: yes, waiting for tree to go green)
[22882](https://github.com/flutter/engine/pull/22882) Roll Skia from bc3c41b8742a to f2bd501ce3bf (1 revision) (cla: yes, waiting for tree to go green)
[22883](https://github.com/flutter/engine/pull/22883) Roll Dart SDK from 2c74e62a050c to f9760fc12871 (5 revisions) (cla: yes, waiting for tree to go green)
[22884](https://github.com/flutter/engine/pull/22884) [web] sharding change is merged. re-enable tests (cla: yes)
[22885](https://github.com/flutter/engine/pull/22885) Roll Skia from f2bd501ce3bf to 30217950419d (2 revisions) (cla: yes, waiting for tree to go green)
[22887](https://github.com/flutter/engine/pull/22887) Allow the root layout to be overriden. (cla: yes, platform-android)
[22888](https://github.com/flutter/engine/pull/22888) Roll Dart SDK from f9760fc12871 to 2736bd161251 (1 revision) (cla: yes, waiting for tree to go green)
[22889](https://github.com/flutter/engine/pull/22889) Roll Dart SDK from 2736bd161251 to 2ec3ea2df38e (1 revision) (cla: yes, waiting for tree to go green)
[22890](https://github.com/flutter/engine/pull/22890) [canvaskit] fix TransformLayer.preroll (cla: yes)
[22891](https://github.com/flutter/engine/pull/22891) Roll Fuchsia Mac SDK from eEeK509UF... to dx6dSD8vc... (cla: yes, waiting for tree to go green)
[22892](https://github.com/flutter/engine/pull/22892) Roll Fuchsia Linux SDK from IuiLYXJbt... to Ety7pAnEH... (cla: yes, waiting for tree to go green)
[22893](https://github.com/flutter/engine/pull/22893) Roll Dart SDK from 2ec3ea2df38e to db7d75e2239c (1 revision) (cla: yes, waiting for tree to go green)
[22895](https://github.com/flutter/engine/pull/22895) Roll Fuchsia Mac SDK from dx6dSD8vc... to bbMFXPW6S... (cla: yes, waiting for tree to go green)
[22896](https://github.com/flutter/engine/pull/22896) Roll Fuchsia Linux SDK from Ety7pAnEH... to q0Z9X9luW... (cla: yes, waiting for tree to go green)
[22898](https://github.com/flutter/engine/pull/22898) Roll Skia from 30217950419d to edb22ec49866 (3 revisions) (cla: yes, waiting for tree to go green)
[22899](https://github.com/flutter/engine/pull/22899) Roll Dart SDK from db7d75e2239c to baa92e08fee4 (4 revisions) (cla: yes, waiting for tree to go green)
[22900](https://github.com/flutter/engine/pull/22900) Add engine tests for Linux shell (cla: yes)
[22902](https://github.com/flutter/engine/pull/22902) Roll Fuchsia Linux SDK from q0Z9X9luW... to kZi1s5bIk... (cla: yes, waiting for tree to go green)
[22904](https://github.com/flutter/engine/pull/22904) Roll Fuchsia Mac SDK from bbMFXPW6S... to y_h5kQEmN... (cla: yes, waiting for tree to go green)
[22906](https://github.com/flutter/engine/pull/22906) Roll Skia from edb22ec49866 to 3c7298922f69 (14 revisions) (cla: yes, waiting for tree to go green)
[22907](https://github.com/flutter/engine/pull/22907) [scenario app] Update golden images for android (cla: yes)
[22908](https://github.com/flutter/engine/pull/22908) Roll Skia from 3c7298922f69 to 011a77357ec4 (3 revisions) (cla: yes, waiting for tree to go green)
[22910](https://github.com/flutter/engine/pull/22910) [web] Fix edge cases when force-breaking lines (cla: yes, platform-web)
[22911](https://github.com/flutter/engine/pull/22911) Roll Skia from 011a77357ec4 to bf282c05e58c (3 revisions) (cla: yes, waiting for tree to go green)
[22913](https://github.com/flutter/engine/pull/22913) Roll Skia from bf282c05e58c to 529b25929c85 (2 revisions) (cla: yes, waiting for tree to go green)
[22915](https://github.com/flutter/engine/pull/22915) Roll Skia from 529b25929c85 to f639a24c5041 (1 revision) (cla: yes, waiting for tree to go green)
[22916](https://github.com/flutter/engine/pull/22916) Move the WindowInsetsAnimation.Callback implementation to an inner class to avoid Android class loader warnings (cla: yes, platform-android, waiting for tree to go green)
[22917](https://github.com/flutter/engine/pull/22917) Stop potential lockup due to GHashTable being modified when cleared. (cla: yes)
[22918](https://github.com/flutter/engine/pull/22918) Roll Skia from f639a24c5041 to 554e7574e960 (1 revision) (cla: yes, waiting for tree to go green)
[22919](https://github.com/flutter/engine/pull/22919) Roll Fuchsia Mac SDK from y_h5kQEmN... to 8cOXjqyWN... (cla: yes, waiting for tree to go green)
[22920](https://github.com/flutter/engine/pull/22920) Roll Fuchsia Linux SDK from kZi1s5bIk... to hIxVxIVhE... (cla: yes, waiting for tree to go green)
[22922](https://github.com/flutter/engine/pull/22922) Roll Skia from 554e7574e960 to 03d69876ff0e (1 revision) (cla: yes, waiting for tree to go green)
[22923](https://github.com/flutter/engine/pull/22923) Roll Skia from 03d69876ff0e to 60a2ec03b662 (3 revisions) (cla: yes, waiting for tree to go green)
[22924](https://github.com/flutter/engine/pull/22924) Roll Skia from 60a2ec03b662 to ff18ff6b295c (2 revisions) (cla: yes, waiting for tree to go green)
[22925](https://github.com/flutter/engine/pull/22925) Use List.filled constructor instead of soon-to-be-deprecated List constructor. (cla: yes)
[22927](https://github.com/flutter/engine/pull/22927) Roll Skia from ff18ff6b295c to b87975c13381 (2 revisions) (cla: yes, waiting for tree to go green)
[22928](https://github.com/flutter/engine/pull/22928) Roll Dart SDK from baa92e08fee4 to d75741b19133 (7 revisions) (cla: yes, waiting for tree to go green)
[22930](https://github.com/flutter/engine/pull/22930) [flutter_releases] Flutter 1.22.5 engine cherry-pick PlatformViewsController: clear composition_order_ in the beginning of each frame (cla: yes, platform-android, platform-ios)
[22931](https://github.com/flutter/engine/pull/22931) [flutter_release] Flutter 1.22.5 engine cherry-pick (cla: yes, platform-android, platform-ios)
[22932](https://github.com/flutter/engine/pull/22932) Roll Skia from b87975c13381 to cdd6cced4520 (3 revisions) (cla: yes, waiting for tree to go green)
[22933](https://github.com/flutter/engine/pull/22933) Roll Fuchsia Mac SDK from 8cOXjqyWN... to 1LDC_Iu1_... (cla: yes, waiting for tree to go green)
[22934](https://github.com/flutter/engine/pull/22934) Roll Fuchsia Linux SDK from hIxVxIVhE... to 3EfPHtl7G... (cla: yes, waiting for tree to go green)
[22935](https://github.com/flutter/engine/pull/22935) Roll Skia from cdd6cced4520 to 99c944647fcc (4 revisions) (cla: yes, waiting for tree to go green)
[22936](https://github.com/flutter/engine/pull/22936) Implement SystemSound.play (cla: yes)
[22937](https://github.com/flutter/engine/pull/22937) CanvasKit fix embedded view clipping (cla: yes, platform-web, waiting for tree to go green)
[22938](https://github.com/flutter/engine/pull/22938) [flutter_releases] Flutter Stable Engine 1.22.5 Cherrypicks (cla: yes, platform-android, platform-ios)
[22939](https://github.com/flutter/engine/pull/22939) [web] Cache CSS font string instead of the style object (cla: yes, platform-web, waiting for tree to go green)
[22940](https://github.com/flutter/engine/pull/22940) Roll Skia from 99c944647fcc to 759ff5b38c23 (3 revisions) (cla: yes, waiting for tree to go green)
[22941](https://github.com/flutter/engine/pull/22941) [web] Default styles for rich text (cla: yes, platform-web)
[22942](https://github.com/flutter/engine/pull/22942) [web] Introduce flag to enable new rich text implementation (cla: yes, platform-web)
[22944](https://github.com/flutter/engine/pull/22944) Roll Dart SDK from d75741b19133 to a92baed5f8e2 (1 revision) (cla: yes, waiting for tree to go green)
[22945](https://github.com/flutter/engine/pull/22945) Fix platform view transforms in CanvasKit (cla: yes, waiting for tree to go green)
[22946](https://github.com/flutter/engine/pull/22946) [web] Fix drag failure when RMB pointer up event is not received (cla: yes)
[22947](https://github.com/flutter/engine/pull/22947) Replace g_object_weak_ref with g_object_add_weak_pointer (cla: yes)
[22948](https://github.com/flutter/engine/pull/22948) [web] Add complex rich text test cases and fix them (cla: yes, platform-web)
[22949](https://github.com/flutter/engine/pull/22949) Roll Skia from 759ff5b38c23 to 51ab694cbb86 (4 revisions) (cla: yes, waiting for tree to go green)
[22950](https://github.com/flutter/engine/pull/22950) [flutter_releases] Fix build error (cla: yes, platform-android, platform-ios)
[22951](https://github.com/flutter/engine/pull/22951) [canvaskit] improve image error handling and messaging (cla: yes, platform-web)
[22952](https://github.com/flutter/engine/pull/22952) Roll Skia from 51ab694cbb86 to 9a6cece5a830 (1 revision) (cla: yes, waiting for tree to go green)
[22953](https://github.com/flutter/engine/pull/22953) [web] For Firefox focusing on the DOM element after blur propagates (cla: yes)
[22956](https://github.com/flutter/engine/pull/22956) Roll Dart SDK from a92baed5f8e2 to 9fdb86dba562 (1 revision) (cla: yes, waiting for tree to go green)
[22957](https://github.com/flutter/engine/pull/22957) Roll Skia from 9a6cece5a830 to 5e744acfad58 (5 revisions) (cla: yes)
[22958](https://github.com/flutter/engine/pull/22958) Roll Fuchsia Mac SDK from 1LDC_Iu1_... to xL_mp7rvV... (cla: yes, waiting for tree to go green)
[22959](https://github.com/flutter/engine/pull/22959) Roll Dart SDK from 9fdb86dba562 to b440879831a8 (1 revision) (cla: yes, waiting for tree to go green)
[22960](https://github.com/flutter/engine/pull/22960) Roll Fuchsia Linux SDK from 3EfPHtl7G... to mz03TfHP9... (cla: yes, waiting for tree to go green)
[22961](https://github.com/flutter/engine/pull/22961) Roll Dart SDK from b440879831a8 to f1e6a33d1db5 (1 revision) (cla: yes, waiting for tree to go green)
[22963](https://github.com/flutter/engine/pull/22963) Roll Skia from 5e744acfad58 to 123501fd19a8 (8 revisions) (cla: yes, waiting for tree to go green)
[22964](https://github.com/flutter/engine/pull/22964) [web] Separate the height ruler from the other rulers (cla: yes, platform-web, waiting for tree to go green)
[22965](https://github.com/flutter/engine/pull/22965) Fix ios voiceover (for safari >13.4) (cla: yes)
[22966](https://github.com/flutter/engine/pull/22966) [canvaskit] reuse canvases when window resizes (cla: yes, platform-web)
[22968](https://github.com/flutter/engine/pull/22968) [web] update browser changing docs (cla: yes)
[22972](https://github.com/flutter/engine/pull/22972) Roll Fuchsia Mac SDK from xL_mp7rvV... to G_O-vV26O... (cla: yes, waiting for tree to go green)
[22973](https://github.com/flutter/engine/pull/22973) Roll Fuchsia Linux SDK from mz03TfHP9... to 0kx01Ik6Y... (cla: yes, waiting for tree to go green)
[22974](https://github.com/flutter/engine/pull/22974) [flutter_releases] Flutter Engine 1.22.5 Cherrypick revert (cla: yes, platform-android, platform-ios)
[22975](https://github.com/flutter/engine/pull/22975) Implemented FlutterEngineGroup and Spawn API. (cla: yes, platform-ios)
[22977](https://github.com/flutter/engine/pull/22977) [web] Do not reset 'cursor' in PersistedPlatformView. (cla: yes, platform-web, waiting for tree to go green)
[22978](https://github.com/flutter/engine/pull/22978) Roll Skia from 123501fd19a8 to ff7bfea4ab76 (23 revisions) (cla: yes, waiting for tree to go green)
[22979](https://github.com/flutter/engine/pull/22979) Load macOS dart bundle by URL fallback (cla: yes, platform-macos)
[22982](https://github.com/flutter/engine/pull/22982) Allow Tile mode for blur filter and add new decal TileMode (cla: yes, waiting for tree to go green)
[22983](https://github.com/flutter/engine/pull/22983) Roll Dart SDK from f1e6a33d1db5 to 8c085176125f (3 revisions) (cla: yes, waiting for tree to go green)
[22984](https://github.com/flutter/engine/pull/22984) Freiling warmup memory (cla: yes)
[22985](https://github.com/flutter/engine/pull/22985) Roll Skia from ff7bfea4ab76 to af11a00f7849 (1 revision) (cla: yes, waiting for tree to go green)
[22986](https://github.com/flutter/engine/pull/22986) Roll Skia from af11a00f7849 to 22f80a60b17f (2 revisions) (cla: yes, waiting for tree to go green)
[22989](https://github.com/flutter/engine/pull/22989) Roll Fuchsia Mac SDK from G_O-vV26O... to OUQEzH1oE... (cla: yes, waiting for tree to go green)
[22992](https://github.com/flutter/engine/pull/22992) Roll Dart SDK from 8c085176125f to e4c9b06267d3 (2 revisions) (cla: yes, waiting for tree to go green)
[22993](https://github.com/flutter/engine/pull/22993) Roll Fuchsia Linux SDK from 0kx01Ik6Y... to rnN_X2o75... (cla: yes, waiting for tree to go green)
[22997](https://github.com/flutter/engine/pull/22997) Load iOS dart bundle by URL fallback (cla: yes, platform-ios, waiting for tree to go green)
[22999](https://github.com/flutter/engine/pull/22999) [web] Fix regression in paragraph foreground style (cla: yes, platform-web)
[23000](https://github.com/flutter/engine/pull/23000) add ffi_struct_patch.dart to libraries.yaml (cla: yes)
[23005](https://github.com/flutter/engine/pull/23005) Roll Skia from 22f80a60b17f to 6b07e0eb497c (26 revisions) (cla: yes, waiting for tree to go green)
[23006](https://github.com/flutter/engine/pull/23006) Roll Dart SDK from e4c9b06267d3 to a4e6fe145bf7 (2 revisions) (cla: yes, waiting for tree to go green)
[23007](https://github.com/flutter/engine/pull/23007) Revert "Freiling warmup memory (#22984)" (cla: yes)
[23009](https://github.com/flutter/engine/pull/23009) warmup memory reland (cla: yes, waiting for tree to go green)
[23010](https://github.com/flutter/engine/pull/23010) Roll Fuchsia Linux SDK from rnN_X2o75... to ESzmO-yOF... (cla: yes, waiting for tree to go green)
[23012](https://github.com/flutter/engine/pull/23012) Started shutting down the sampler when it gets deleted (cla: yes)
[23013](https://github.com/flutter/engine/pull/23013) Stopped mocking the a flutter engine to make sure we delete the FlutterViewController. (cla: yes, platform-ios)
[23014](https://github.com/flutter/engine/pull/23014) Turned on malloc scribble and randomized the tests. (cla: yes, waiting for tree to go green)
[23018](https://github.com/flutter/engine/pull/23018) Roll Skia from 6b07e0eb497c to f7cce2b243b2 (6 revisions) (cla: yes, waiting for tree to go green)
[23019](https://github.com/flutter/engine/pull/23019) fix crash in FontCollection::init() when FontFamily is empty (cla: yes, waiting for tree to go green)
[23020](https://github.com/flutter/engine/pull/23020) Roll Fuchsia Linux SDK from ESzmO-yOF... to K4cPd0-Xd... (cla: yes, waiting for tree to go green)
[23021](https://github.com/flutter/engine/pull/23021) Roll Skia from f7cce2b243b2 to b0cb8372c1ef (3 revisions) (cla: yes, waiting for tree to go green)
[23023](https://github.com/flutter/engine/pull/23023) Roll Skia from b0cb8372c1ef to 5284e96599a8 (2 revisions) (cla: yes, waiting for tree to go green)
[23024](https://github.com/flutter/engine/pull/23024) Roll Dart SDK from a4e6fe145bf7 to c287db6bf232 (2 revisions) (cla: yes, waiting for tree to go green)
[23025](https://github.com/flutter/engine/pull/23025) Roll Fuchsia Mac SDK from OUQEzH1oE... to a9yuHfriB... (cla: yes, waiting for tree to go green)
[23026](https://github.com/flutter/engine/pull/23026) Roll Dart SDK from c287db6bf232 to 2553a84fe438 (1 revision) (cla: yes, waiting for tree to go green)
[23027](https://github.com/flutter/engine/pull/23027) Roll Skia from 5284e96599a8 to f7fdf1aa2911 (1 revision) (cla: yes, waiting for tree to go green)
[23029](https://github.com/flutter/engine/pull/23029) Roll Dart SDK from 2553a84fe438 to 95e1709c9e54 (1 revision) (cla: yes, waiting for tree to go green)
[23033](https://github.com/flutter/engine/pull/23033) Roll Fuchsia Linux SDK from K4cPd0-Xd... to BA2UmYXNr... (cla: yes, waiting for tree to go green)
[23035](https://github.com/flutter/engine/pull/23035) Use include for C/C++ headers in darwin/macos (cla: yes, waiting for tree to go green)
[23037](https://github.com/flutter/engine/pull/23037) Started tearing down the mock engine in tearDown in FlutterViewControllerTest (cla: yes, platform-ios)
[23039](https://github.com/flutter/engine/pull/23039) Roll Fuchsia Mac SDK from a9yuHfriB... to QbeeeTiub... (cla: yes, waiting for tree to go green)
[23041](https://github.com/flutter/engine/pull/23041) Roll buildroot to flutter/buildroot@64bf32094b19bfecc2515aedb7e130f7ba15d297 (cla: yes)
[23042](https://github.com/flutter/engine/pull/23042) Roll Skia from f7fdf1aa2911 to 346dd53ac087 (25 revisions) (cla: yes, waiting for tree to go green)
[23043](https://github.com/flutter/engine/pull/23043) [web] Align offset for lines of rich text (cla: yes, platform-web, waiting for tree to go green)
[23044](https://github.com/flutter/engine/pull/23044) Revert "Set SkPath::setIsVolatile based on whether the path survives at least two frames" (cla: yes)
[23045](https://github.com/flutter/engine/pull/23045) Roll Dart SDK from 95e1709c9e54 to 68d1c7504f7d (2 revisions) (cla: yes, waiting for tree to go green)
[23046](https://github.com/flutter/engine/pull/23046) Roll Skia from 346dd53ac087 to 1aa1f5fcbac6 (1 revision) (cla: yes, waiting for tree to go green)
[23047](https://github.com/flutter/engine/pull/23047) fuchsia: Fix incorrect scale (cla: yes, platform-fuchsia)
[23048](https://github.com/flutter/engine/pull/23048) Roll Fuchsia Linux SDK from BA2UmYXNr... to QniFAAjTT... (cla: yes, waiting for tree to go green)
[23049](https://github.com/flutter/engine/pull/23049) Roll Fuchsia Mac SDK from QbeeeTiub... to L7-xj4Yqz... (cla: yes, waiting for tree to go green)
[23054](https://github.com/flutter/engine/pull/23054) Revert "Load iOS dart bundle by URL fallback" (cla: yes, platform-ios, waiting for tree to go green)
[23055](https://github.com/flutter/engine/pull/23055) Roll Dart SDK from 68d1c7504f7d to f166571c7bc4 (1 revision) (cla: yes, waiting for tree to go green)
[23056](https://github.com/flutter/engine/pull/23056) Roll Dart SDK from 68d1c7504f7d to f166571c7bc4 (1 revision) (cla: yes, waiting for tree to go green)
[23058](https://github.com/flutter/engine/pull/23058) Roll Skia from 1aa1f5fcbac6 to 1d2b075ce060 (28 revisions) (cla: yes, waiting for tree to go green)
[23061](https://github.com/flutter/engine/pull/23061) [canvaskit] cache and reuse platform view overlays (cla: yes)
[23062](https://github.com/flutter/engine/pull/23062) Roll Skia from 1d2b075ce060 to 1c50643b3cef (1 revision) (cla: yes, waiting for tree to go green)
[23063](https://github.com/flutter/engine/pull/23063) Reland path volatility tracker (cla: yes)
[23064](https://github.com/flutter/engine/pull/23064) [web] Calculate height and baseline for rich text (cla: yes, platform-web)
[23065](https://github.com/flutter/engine/pull/23065) Roll Skia from 1c50643b3cef to f607dbbbe81f (1 revision) (cla: yes, waiting for tree to go green)
[23066](https://github.com/flutter/engine/pull/23066) Added golden test to make sure that spawn engines work. (cla: yes, platform-ios)
[23067](https://github.com/flutter/engine/pull/23067) bump fuchsia toolchain to clang-12 (cla: yes)
[23068](https://github.com/flutter/engine/pull/23068) Roll Skia from f607dbbbe81f to f124108e2325 (2 revisions) (cla: yes, waiting for tree to go green)
[23069](https://github.com/flutter/engine/pull/23069) Roll Dart SDK from f166571c7bc4 to 8233c4763a9c (1 revision) (cla: yes, waiting for tree to go green)
[23070](https://github.com/flutter/engine/pull/23070) Disable flaky/hanging split AOT test (cla: yes, waiting for tree to go green)
[23071](https://github.com/flutter/engine/pull/23071) Roll Skia from f124108e2325 to 4df3fea42692 (2 revisions) (cla: yes, waiting for tree to go green)
[23073](https://github.com/flutter/engine/pull/23073) Roll Skia from 4df3fea42692 to 0765022c1517 (1 revision) (cla: yes, waiting for tree to go green)
[23074](https://github.com/flutter/engine/pull/23074) Roll Dart SDK from 8233c4763a9c to e01119c6fd09 (1 revision) (cla: yes, waiting for tree to go green)
[23075](https://github.com/flutter/engine/pull/23075) Roll Fuchsia Mac SDK from L7-xj4Yqz... to n0XovQHCz... (cla: yes, waiting for tree to go green)
[23076](https://github.com/flutter/engine/pull/23076) Roll Fuchsia Linux SDK from QniFAAjTT... to 5Rxyho8VL... (cla: yes, waiting for tree to go green)
[23078](https://github.com/flutter/engine/pull/23078) Roll Dart SDK from e01119c6fd09 to 5cec31739703 (1 revision) (cla: yes, waiting for tree to go green)
[23079](https://github.com/flutter/engine/pull/23079) Roll Skia from 0765022c1517 to 4bdc12142a0e (1 revision) (cla: yes, waiting for tree to go green)
[23081](https://github.com/flutter/engine/pull/23081) Roll Skia from 4bdc12142a0e to 2bacaf973d79 (4 revisions) (cla: yes, waiting for tree to go green)
[23082](https://github.com/flutter/engine/pull/23082) [fuchsia] Remove fuchsia.netstack.Netstack (cla: yes, waiting for tree to go green)
[23083](https://github.com/flutter/engine/pull/23083) Roll Dart SDK from 5cec31739703 to d7266520ca18 (1 revision) (cla: yes, waiting for tree to go green)
[23084](https://github.com/flutter/engine/pull/23084) Roll Skia from 2bacaf973d79 to adc688922877 (6 revisions) (cla: yes, waiting for tree to go green)
[23085](https://github.com/flutter/engine/pull/23085) [flutter_releases] Flutter 1.25.0-8.1.pre engine cherrypicks (cla: yes)
[23086](https://github.com/flutter/engine/pull/23086) Roll Skia from adc688922877 to a298431a1370 (6 revisions) (cla: yes, waiting for tree to go green)
[23087](https://github.com/flutter/engine/pull/23087) Initial import of accessibility code from Chromium (cla: yes)
[23089](https://github.com/flutter/engine/pull/23089) Prevent recycling of canvas multiple times (cla: yes)
[23090](https://github.com/flutter/engine/pull/23090) [web] Switch web-render option default to auto (cla: yes)
[23092](https://github.com/flutter/engine/pull/23092) Roll Fuchsia Mac SDK from n0XovQHCz... to 716FtmoF4... (cla: yes, waiting for tree to go green)
[23093](https://github.com/flutter/engine/pull/23093) Roll Dart SDK from d7266520ca18 to 1297e4ae2140 (1 revision) (cla: yes, waiting for tree to go green)
[23094](https://github.com/flutter/engine/pull/23094) Roll Skia from a298431a1370 to f2876b0b9e4a (9 revisions) (cla: yes, waiting for tree to go green)
[23095](https://github.com/flutter/engine/pull/23095) Roll Fuchsia Linux SDK from 5Rxyho8VL... to Lj6L6i7vj... (cla: yes, waiting for tree to go green)
[23096](https://github.com/flutter/engine/pull/23096) [CanvasKit] Automatically fall back to Noto fonts (cla: yes)
[23097](https://github.com/flutter/engine/pull/23097) [web] Tests for rich paragraph DOM (cla: yes, platform-web)
[23098](https://github.com/flutter/engine/pull/23098) [web] Rich paragraph getBoxesForRange (cla: yes, platform-web)
[23099](https://github.com/flutter/engine/pull/23099) Roll Skia from f2876b0b9e4a to 2078cbe3d4d9 (1 revision) (cla: yes, waiting for tree to go green)
[23101](https://github.com/flutter/engine/pull/23101) Return null in Future<WebSocketChannel>.catchError handler (cla: yes, platform-web)
[23102](https://github.com/flutter/engine/pull/23102) removed variable-sized array (cla: yes)
[23103](https://github.com/flutter/engine/pull/23103) Roll Skia from 2078cbe3d4d9 to 15f51848df7f (6 revisions) (cla: yes, waiting for tree to go green)
[23104](https://github.com/flutter/engine/pull/23104) Roll Dart SDK from 1297e4ae2140 to 5969f5653830 (2 revisions) (cla: yes, waiting for tree to go green)
[23105](https://github.com/flutter/engine/pull/23105) Roll Fuchsia Mac SDK from 716FtmoF4... to acylwa3i4... (cla: yes, waiting for tree to go green)
[23106](https://github.com/flutter/engine/pull/23106) Roll Fuchsia Linux SDK from Lj6L6i7vj... to TIKHoiQyP... (cla: yes, waiting for tree to go green)
[23108](https://github.com/flutter/engine/pull/23108) Roll Skia from 15f51848df7f to 6e110c89ed50 (4 revisions) (cla: yes, waiting for tree to go green)
[23109](https://github.com/flutter/engine/pull/23109) Roll Skia from 6e110c89ed50 to f52a8112909c (5 revisions) (cla: yes, waiting for tree to go green)
[23110](https://github.com/flutter/engine/pull/23110) Apply local patch to chromium accessibility code (cla: yes, waiting for tree to go green)
[23111](https://github.com/flutter/engine/pull/23111) Correct button state on synthetic pointer events (cla: yes)
[23112](https://github.com/flutter/engine/pull/23112) Roll Skia from f52a8112909c to 632a23afa487 (10 revisions) (cla: yes, waiting for tree to go green)
[23114](https://github.com/flutter/engine/pull/23114) Roll Skia from 632a23afa487 to 6f31e27f1e29 (1 revision) (cla: yes, waiting for tree to go green)
[23115](https://github.com/flutter/engine/pull/23115) Fix recursive access to SkImage in image resurrector (cla: yes)
[23118](https://github.com/flutter/engine/pull/23118) Roll Skia from 6f31e27f1e29 to 85fa75616dfe (7 revisions) (cla: yes, waiting for tree to go green)
[23119](https://github.com/flutter/engine/pull/23119) Roll Skia from 85fa75616dfe to d6f2338ab194 (3 revisions) (cla: yes, waiting for tree to go green)
[23120](https://github.com/flutter/engine/pull/23120) Rename PointerState.isDown as per style guide (cla: yes)
[23122](https://github.com/flutter/engine/pull/23122) Roll Skia from d6f2338ab194 to 1d89532d5988 (1 revision) (cla: yes, waiting for tree to go green)
[23124](https://github.com/flutter/engine/pull/23124) Add missing sdk constriant in pubspec.yaml files. (cla: yes)
[23125](https://github.com/flutter/engine/pull/23125) Roll Fuchsia Mac SDK from acylwa3i4... to chLTYsKMR... (cla: yes, waiting for tree to go green)
[23126](https://github.com/flutter/engine/pull/23126) Roll Skia from 1d89532d5988 to 7839f66540b6 (1 revision) (cla: yes, waiting for tree to go green)
[23127](https://github.com/flutter/engine/pull/23127) Roll Fuchsia Linux SDK from TIKHoiQyP... to wu6yV-_BL... (cla: yes, waiting for tree to go green)
[23128](https://github.com/flutter/engine/pull/23128) [fuchsia] Add wrapper for zx_clock_get_monotonic. (cla: yes, platform-fuchsia)
[23129](https://github.com/flutter/engine/pull/23129) Roll Skia from 7839f66540b6 to 20f1b3462878 (1 revision) (cla: yes, waiting for tree to go green)
[23130](https://github.com/flutter/engine/pull/23130) AssetResolver updating in AssetManager for Dynamic features (cla: yes, platform-android, waiting for tree to go green)
[23131](https://github.com/flutter/engine/pull/23131) Fix engine in preparation for implementing https://github.com/dart-lang/language/issues/1274 (cla: yes)
[23132](https://github.com/flutter/engine/pull/23132) Roll Skia from 20f1b3462878 to 995f0366bd21 (2 revisions) (cla: yes, waiting for tree to go green)
[23133](https://github.com/flutter/engine/pull/23133) [web] Rich paragraph getPositionForOffset (cla: yes, platform-web)
[23135](https://github.com/flutter/engine/pull/23135) Roll Skia from 995f0366bd21 to b64da3907f76 (1 revision) (cla: yes, waiting for tree to go green)
[23136](https://github.com/flutter/engine/pull/23136) [web] Rich text painting on bitmap canvas (cla: yes, platform-web, waiting for tree to go green)
[23138](https://github.com/flutter/engine/pull/23138) Fix argument specifier and type for g_warning() (cla: yes, waiting for tree to go green)
[23142](https://github.com/flutter/engine/pull/23142) Roll Skia from b64da3907f76 to 81da68af2ecf (7 revisions) (cla: yes, waiting for tree to go green)
[23143](https://github.com/flutter/engine/pull/23143) Roll Fuchsia Mac SDK from chLTYsKMR... to RDUxjnng0... (cla: yes, waiting for tree to go green)
[23144](https://github.com/flutter/engine/pull/23144) Add --strict_null_safety_checks to the Dart flag allowlist (cla: yes)
[23145](https://github.com/flutter/engine/pull/23145) Roll Fuchsia Linux SDK from wu6yV-_BL... to _l04etgVd... (cla: yes, waiting for tree to go green)
[23150](https://github.com/flutter/engine/pull/23150) Make it easier to turn on Xcode symlinks (cla: yes, waiting for tree to go green)
[23151](https://github.com/flutter/engine/pull/23151) Force android_lint to run in unsound null safety mode (cla: yes)
[23152](https://github.com/flutter/engine/pull/23152) Roll Skia from 81da68af2ecf to 7b920446a8fc (14 revisions) (cla: yes, waiting for tree to go green)
[23153](https://github.com/flutter/engine/pull/23153) Update ios to use new YUVA texture SkImage factory (cla: yes, platform-ios)
[23154](https://github.com/flutter/engine/pull/23154) Fix macOS crash when modifier keys pressed. (cla: yes)
[23155](https://github.com/flutter/engine/pull/23155) Roll fuchsia toolchain (cla: yes)
[23158](https://github.com/flutter/engine/pull/23158) Update FlutterPlatformViewsTests (cla: yes, platform-ios, waiting for tree to go green)
[23160](https://github.com/flutter/engine/pull/23160) [web] Placeholders for rich paragraphs (cla: yes, platform-web)
[23161](https://github.com/flutter/engine/pull/23161) Revert "[web] Switch web-render option default to auto" (cla: yes)
[23162](https://github.com/flutter/engine/pull/23162) [web] Enable the new rich paragraph implementation (cla: yes, platform-web)
[23164](https://github.com/flutter/engine/pull/23164) Roll Skia from 7b920446a8fc to dfc880bd9ba0 (14 revisions) (cla: yes, waiting for tree to go green)
[23165](https://github.com/flutter/engine/pull/23165) Manual Roll Dart SDK from 5969f5653830 to b59de86059f3 (9 revisions) (cla: yes)
[23166](https://github.com/flutter/engine/pull/23166) Disable FlutterPluginAppLifeCycleDelegateTest testWillResignActive (cla: yes, platform-ios)
[23170](https://github.com/flutter/engine/pull/23170) Roll Fuchsia Linux SDK from _l04etgVd... to nkgnDjAl3... (cla: yes, waiting for tree to go green)
[23175](https://github.com/flutter/engine/pull/23175) Fix background crash when FlutterView going appear while app goes background (cla: yes, platform-ios, waiting for tree to go green)
[23177](https://github.com/flutter/engine/pull/23177) Roll Fuchsia Mac SDK from RDUxjnng0... to QDs-PyheO... (cla: yes, waiting for tree to go green)
[23179](https://github.com/flutter/engine/pull/23179) Roll Dart SDK from b59de86059f3 to 2a78a2978983 (1 revision) (cla: yes, waiting for tree to go green)
[23180](https://github.com/flutter/engine/pull/23180) Roll Skia from dfc880bd9ba0 to 5d3227096daa (8 revisions) (cla: yes, waiting for tree to go green)
[23181](https://github.com/flutter/engine/pull/23181) Roll Dart SDK from 2a78a2978983 to c91b639b4cb3 (1 revision) (cla: yes, waiting for tree to go green)
[23182](https://github.com/flutter/engine/pull/23182) Roll Skia from 5d3227096daa to 7bfdb1044916 (1 revision) (cla: yes, waiting for tree to go green)
[23187](https://github.com/flutter/engine/pull/23187) Re-merge Switch web-render option default to auto. Add documentation (cla: yes)
[23188](https://github.com/flutter/engine/pull/23188) Call JavaVM::AttachCurrentThread only once per thread (cla: yes, platform-android, waiting for tree to go green)
[23190](https://github.com/flutter/engine/pull/23190) Roll Fuchsia Linux SDK from nkgnDjAl3... to EAlB-FVPL... (cla: yes, waiting for tree to go green)
[23192](https://github.com/flutter/engine/pull/23192) Roll Fuchsia Mac SDK from QDs-PyheO... to zCiq3y-6p... (cla: yes, waiting for tree to go green)
[23195](https://github.com/flutter/engine/pull/23195) Roll Skia from 7bfdb1044916 to 80dc74b30b5a (2 revisions) (cla: yes, waiting for tree to go green)
[23196](https://github.com/flutter/engine/pull/23196) Roll Fuchsia Linux SDK from EAlB-FVPL... to Dc8mL2839... (cla: yes, waiting for tree to go green)
[23198](https://github.com/flutter/engine/pull/23198) Roll Skia from 80dc74b30b5a to e78f8cebca01 (1 revision) (cla: yes, waiting for tree to go green)
[23199](https://github.com/flutter/engine/pull/23199) Roll Skia from e78f8cebca01 to 2d44549a1f3a (1 revision) (cla: yes, waiting for tree to go green)
[23200](https://github.com/flutter/engine/pull/23200) Roll Fuchsia Mac SDK from zCiq3y-6p... to h_iq6T_cf... (cla: yes, waiting for tree to go green)
[23201](https://github.com/flutter/engine/pull/23201) Roll Fuchsia Linux SDK from Dc8mL2839... to byrJ9URZU... (cla: yes, waiting for tree to go green)
[23207](https://github.com/flutter/engine/pull/23207) Roll Fuchsia Linux SDK from byrJ9URZU... to RpLap5pIv... (cla: yes, waiting for tree to go green)
[23208](https://github.com/flutter/engine/pull/23208) Roll Fuchsia Mac SDK from h_iq6T_cf... to 5LKY3wsMO... (cla: yes, waiting for tree to go green)
[23209](https://github.com/flutter/engine/pull/23209) Roll Skia from 2d44549a1f3a to f4ad8c537982 (1 revision) (cla: yes, waiting for tree to go green)
[23210](https://github.com/flutter/engine/pull/23210) Roll Skia from f4ad8c537982 to 88883c4ca259 (2 revisions) (cla: yes, waiting for tree to go green)
[23211](https://github.com/flutter/engine/pull/23211) Roll Dart SDK from c91b639b4cb3 to 1f7dd915f40a (1 revision) (cla: yes, waiting for tree to go green)
[23212](https://github.com/flutter/engine/pull/23212) Roll Fuchsia Linux SDK from RpLap5pIv... to zN1Y7c3i4... (cla: yes, waiting for tree to go green)
[23213](https://github.com/flutter/engine/pull/23213) Roll Skia from 88883c4ca259 to 6aea07880248 (1 revision) (cla: yes, waiting for tree to go green)
[23216](https://github.com/flutter/engine/pull/23216) Roll Skia from 6aea07880248 to e42716032b4b (1 revision) (cla: yes, waiting for tree to go green)
[23218](https://github.com/flutter/engine/pull/23218) fork additional raw chromium a11y code (cla: yes)
[23220](https://github.com/flutter/engine/pull/23220) Revert "Reland path volatility tracker" (cla: yes)
[23221](https://github.com/flutter/engine/pull/23221) Load App.framework in macOS app (cla: yes)
[23222](https://github.com/flutter/engine/pull/23222) Roll Skia from e42716032b4b to c3622f43c189 (2 revisions) (cla: yes, waiting for tree to go green)
[23223](https://github.com/flutter/engine/pull/23223) Roll Fuchsia Mac SDK from 5LKY3wsMO... to WQ0J2Yoll... (cla: yes, waiting for tree to go green)
[23224](https://github.com/flutter/engine/pull/23224) Rename DynamicFeature->DeferredComponent and impl uninstall DeferredComponents (cla: yes, platform-android)
[23226](https://github.com/flutter/engine/pull/23226) Reland path volatility tracker, disabling it if deterministic rendering is requested (cla: yes)
[23227](https://github.com/flutter/engine/pull/23227) Roll Skia from c3622f43c189 to 960bd2dbaa6a (3 revisions) (cla: yes, waiting for tree to go green)
[23228](https://github.com/flutter/engine/pull/23228) Roll Dart SDK from 1f7dd915f40a to 0e52b2abe517 (2 revisions) (cla: yes, waiting for tree to go green)
[23230](https://github.com/flutter/engine/pull/23230) cache closures from hooks.dart (cla: yes)
[23231](https://github.com/flutter/engine/pull/23231) Roll Fuchsia Linux SDK from zN1Y7c3i4... to C00LDxUk0... (cla: yes, waiting for tree to go green)
[23232](https://github.com/flutter/engine/pull/23232) Roll Dart SDK from 0e52b2abe517 to 1604b1a3437f (1 revision) (cla: yes, waiting for tree to go green)
[23235](https://github.com/flutter/engine/pull/23235) Roll Dart SDK from 1604b1a3437f to 62b0361d470f (1 revision) (cla: yes, waiting for tree to go green)
[23236](https://github.com/flutter/engine/pull/23236) Roll Fuchsia Mac SDK from WQ0J2Yoll... to PzW6aMw3A... (cla: yes, waiting for tree to go green)
[23237](https://github.com/flutter/engine/pull/23237) Roll Skia from 960bd2dbaa6a to f02df4db6118 (3 revisions) (cla: yes, waiting for tree to go green)
[23239](https://github.com/flutter/engine/pull/23239) Revert "Reland path volatility tracker (#23063)" (#23220) (cla: yes)
[23240](https://github.com/flutter/engine/pull/23240) Roll Skia from f02df4db6118 to 47726a1cff59 (5 revisions) (cla: yes, waiting for tree to go green)
[23241](https://github.com/flutter/engine/pull/23241) Roll Fuchsia Linux SDK from C00LDxUk0... to KR8LcMqAc... (cla: yes, waiting for tree to go green)
[23243](https://github.com/flutter/engine/pull/23243) fuchsia: Shutdown Dart VM properly (cla: yes, platform-fuchsia)
[23245](https://github.com/flutter/engine/pull/23245) Roll Skia from 47726a1cff59 to f2ce4e91a2a5 (1 revision) (cla: yes, waiting for tree to go green)
[23246](https://github.com/flutter/engine/pull/23246) Revert "Re-merge Switch web-render option default to auto. Add documentation" (cla: yes)
[23250](https://github.com/flutter/engine/pull/23250) Roll Skia from f2ce4e91a2a5 to c5ff48648ada (6 revisions) (cla: yes, waiting for tree to go green)
[23251](https://github.com/flutter/engine/pull/23251) Roll Dart SDK from 62b0361d470f to 7d35f9bc72fb (1 revision) (cla: yes, waiting for tree to go green)
[23254](https://github.com/flutter/engine/pull/23254) Roll Skia from c5ff48648ada to 3624aba91f44 (10 revisions) (cla: yes, waiting for tree to go green)
[23255](https://github.com/flutter/engine/pull/23255) fixes android deeplink to push the path only (cla: yes, platform-android, waiting for tree to go green)
[23256](https://github.com/flutter/engine/pull/23256) fixes text area transitions both for mobile and desktop (cla: yes)
[23257](https://github.com/flutter/engine/pull/23257) Roll Fuchsia Mac SDK from PzW6aMw3A... to gVgXlVNti... (cla: yes, waiting for tree to go green)
[23258](https://github.com/flutter/engine/pull/23258) Roll Dart SDK from 7d35f9bc72fb to f5b451f0dc86 (1 revision) (cla: yes, waiting for tree to go green)
[23259](https://github.com/flutter/engine/pull/23259) Roll Skia from 3624aba91f44 to fa711c4c756a (1 revision) (cla: yes, waiting for tree to go green)
[23260](https://github.com/flutter/engine/pull/23260) Roll Dart SDK from f5b451f0dc86 to 6e1161e70a00 (1 revision) (cla: yes, waiting for tree to go green)
[23261](https://github.com/flutter/engine/pull/23261) Roll Fuchsia Linux SDK from KR8LcMqAc... to E4CJZ_QRf... (cla: yes, waiting for tree to go green)
[23262](https://github.com/flutter/engine/pull/23262) [fuchsia][input] Migrate Flutter to "input3" (cla: yes, platform-fuchsia, waiting for tree to go green)
[23263](https://github.com/flutter/engine/pull/23263) Roll Skia from fa711c4c756a to 4e0e8d4124f5 (1 revision) (cla: yes, waiting for tree to go green)
[23264](https://github.com/flutter/engine/pull/23264) Roll Fuchsia Mac SDK from gVgXlVNti... to IwRHzb2yJ... (cla: yes, waiting for tree to go green)
[23265](https://github.com/flutter/engine/pull/23265) Roll Skia from 4e0e8d4124f5 to 6bba3d8a5a23 (1 revision) (cla: yes, waiting for tree to go green)
[23268](https://github.com/flutter/engine/pull/23268) Roll Skia from 6bba3d8a5a23 to 839eef3e9a99 (8 revisions) (cla: yes, waiting for tree to go green)
[23269](https://github.com/flutter/engine/pull/23269) Roll Skia from 839eef3e9a99 to 20fad3206488 (5 revisions) (cla: yes, waiting for tree to go green)
[23270](https://github.com/flutter/engine/pull/23270) Roll Fuchsia Linux SDK from E4CJZ_QRf... to 08xLMgNKn... (cla: yes, waiting for tree to go green)
[23271](https://github.com/flutter/engine/pull/23271) Roll Skia from 20fad3206488 to 61f17c10d61d (3 revisions) (cla: yes, waiting for tree to go green)
[23272](https://github.com/flutter/engine/pull/23272) Roll Dart SDK from 6e1161e70a00 to f79fb10acca8 (1 revision) (cla: yes, waiting for tree to go green)
[23273](https://github.com/flutter/engine/pull/23273) Roll Skia from 61f17c10d61d to 0247e9ea1c73 (5 revisions) (cla: yes, waiting for tree to go green)
[23277](https://github.com/flutter/engine/pull/23277) Roll Fuchsia Mac SDK from IwRHzb2yJ... to 3SiIWhiUi... (cla: yes, waiting for tree to go green)
[23278](https://github.com/flutter/engine/pull/23278) Roll Skia from 0247e9ea1c73 to d12c91ba318b (1 revision) (cla: yes, waiting for tree to go green)
[23280](https://github.com/flutter/engine/pull/23280) Roll Skia from d12c91ba318b to 33079a7c5a98 (3 revisions) (cla: yes, waiting for tree to go green)
[23281](https://github.com/flutter/engine/pull/23281) Roll Dart SDK from f79fb10acca8 to 1c14d9bb3528 (2 revisions) (cla: yes, waiting for tree to go green)
[23282](https://github.com/flutter/engine/pull/23282) Roll Fuchsia Linux SDK from 08xLMgNKn... to 2Vw2BjQjZ... (cla: yes, waiting for tree to go green)
[23285](https://github.com/flutter/engine/pull/23285) Roll Fuchsia Mac SDK from 3SiIWhiUi... to 1X7xvxZM_... (cla: yes, waiting for tree to go green)
[23289](https://github.com/flutter/engine/pull/23289) Roll Fuchsia Linux SDK from 2Vw2BjQjZ... to umbXBk__x... (cla: yes, waiting for tree to go green)
[23293](https://github.com/flutter/engine/pull/23293) Roll Fuchsia Mac SDK from 1X7xvxZM_... to fFxQZY6fB... (cla: yes, waiting for tree to go green)
[23297](https://github.com/flutter/engine/pull/23297) Roll Fuchsia Mac SDK from fFxQZY6fB... to SFmThOFqb... (cla: yes, waiting for tree to go green)
[23301](https://github.com/flutter/engine/pull/23301) Roll Fuchsia Linux SDK from umbXBk__x... to br-O-oiDW... (cla: yes, waiting for tree to go green)
[23304](https://github.com/flutter/engine/pull/23304) Roll Fuchsia Mac SDK from SFmThOFqb... to 6vW4LheTp... (cla: yes, waiting for tree to go green)
[23305](https://github.com/flutter/engine/pull/23305) Roll Fuchsia Linux SDK from br-O-oiDW... to XqTqmKfJI... (cla: yes, waiting for tree to go green)
[23310](https://github.com/flutter/engine/pull/23310) Roll Skia from 33079a7c5a98 to 9a27566e0cbc (4 revisions) (cla: yes, waiting for tree to go green)
[23312](https://github.com/flutter/engine/pull/23312) Roll Skia from 9a27566e0cbc to f94348fdd528 (11 revisions) (cla: yes, waiting for tree to go green)
[23313](https://github.com/flutter/engine/pull/23313) [web] Reland - Switch web-render option default to auto (cla: yes)
[23315](https://github.com/flutter/engine/pull/23315) [web] Prevent recycling canvas twice due to paint queue (cla: yes)
[23316](https://github.com/flutter/engine/pull/23316) Roll Skia from f94348fdd528 to 16d86135b739 (5 revisions) (cla: yes, waiting for tree to go green)
[23319](https://github.com/flutter/engine/pull/23319) Roll Skia from 16d86135b739 to 52130b09093d (2 revisions) (cla: yes, waiting for tree to go green)
[23320](https://github.com/flutter/engine/pull/23320) Roll Skia from 52130b09093d to d1b593f446d3 (1 revision) (cla: yes, waiting for tree to go green)
[23321](https://github.com/flutter/engine/pull/23321) Revert "[web] Reland - Switch web-render option default to auto" (cla: yes)
[23324](https://github.com/flutter/engine/pull/23324) Roll Fuchsia Linux SDK from XqTqmKfJI... to 0g8KXafVZ... (cla: yes, waiting for tree to go green)
[23325](https://github.com/flutter/engine/pull/23325) Roll Fuchsia Mac SDK from 6vW4LheTp... to NO2OUA57b... (cla: yes, waiting for tree to go green)
[23326](https://github.com/flutter/engine/pull/23326) Roll Skia from d1b593f446d3 to c85bce8ea6c8 (1 revision) (cla: yes, waiting for tree to go green)
[23327](https://github.com/flutter/engine/pull/23327) Roll Skia from c85bce8ea6c8 to 964f0a028e67 (9 revisions) (cla: yes, waiting for tree to go green)
[23328](https://github.com/flutter/engine/pull/23328) Roll Skia from 964f0a028e67 to d9b9c83e8757 (2 revisions) (cla: yes, waiting for tree to go green)
[23329](https://github.com/flutter/engine/pull/23329) Roll Fuchsia Linux SDK from 0g8KXafVZ... to gj7bWTfxu... (cla: yes, waiting for tree to go green)
[23330](https://github.com/flutter/engine/pull/23330) Roll Skia from d9b9c83e8757 to fe4611c18e9d (2 revisions) (cla: yes, waiting for tree to go green)
[23332](https://github.com/flutter/engine/pull/23332) Roll Skia from fe4611c18e9d to 36129133f106 (1 revision) (cla: yes, waiting for tree to go green)
[23333](https://github.com/flutter/engine/pull/23333) Roll Skia from 36129133f106 to c56e2e5aa65d (3 revisions) (cla: yes, waiting for tree to go green)
[23334](https://github.com/flutter/engine/pull/23334) Roll Skia from c56e2e5aa65d to 791f8d8c3bd5 (1 revision) (cla: yes, waiting for tree to go green)
[23335](https://github.com/flutter/engine/pull/23335) Roll Skia from 791f8d8c3bd5 to f84dfd69861a (1 revision) (cla: yes, waiting for tree to go green)
[23336](https://github.com/flutter/engine/pull/23336) Add support for different simulator architectures (cla: yes)
[23337](https://github.com/flutter/engine/pull/23337) Roll Fuchsia Mac SDK from NO2OUA57b... to hIpDO_txN... (cla: yes, waiting for tree to go green)
[23339](https://github.com/flutter/engine/pull/23339) Roll Skia from f84dfd69861a to d150a58c04ed (1 revision) (cla: yes, waiting for tree to go green)
[23340](https://github.com/flutter/engine/pull/23340) Roll Skia from d150a58c04ed to d3a91db48d57 (3 revisions) (cla: yes, waiting for tree to go green)
[23341](https://github.com/flutter/engine/pull/23341) Roll Fuchsia Linux SDK from gj7bWTfxu... to GK7mTxGcs... (cla: yes, waiting for tree to go green)
[23344](https://github.com/flutter/engine/pull/23344) Roll Skia from d3a91db48d57 to 8f924ac0ce63 (1 revision) (cla: yes, waiting for tree to go green)
[23347](https://github.com/flutter/engine/pull/23347) Roll Skia from 8f924ac0ce63 to 4f23dec7427b (5 revisions) (cla: yes, waiting for tree to go green)
[23348](https://github.com/flutter/engine/pull/23348) Roll CanvasKit to 0.22 (cla: yes, platform-web)
[23350](https://github.com/flutter/engine/pull/23350) Switch to new virtuals on SkCanvas (cla: yes)
[23351](https://github.com/flutter/engine/pull/23351) Roll Skia from 4f23dec7427b to 6d4577bc5208 (5 revisions) (cla: yes, waiting for tree to go green)
[23353](https://github.com/flutter/engine/pull/23353) Roll Fuchsia Mac SDK from hIpDO_txN... to Sjhog2e8Z... (cla: yes, waiting for tree to go green)
[23354](https://github.com/flutter/engine/pull/23354) Roll Skia from 6d4577bc5208 to b39d076b6096 (1 revision) (cla: yes, waiting for tree to go green)
[23355](https://github.com/flutter/engine/pull/23355) Roll Fuchsia Linux SDK from GK7mTxGcs... to Sa7TryuTn... (cla: yes, waiting for tree to go green)
[23356](https://github.com/flutter/engine/pull/23356) Roll Skia from b39d076b6096 to 818fd6d35788 (7 revisions) (cla: yes, waiting for tree to go green)
[23357](https://github.com/flutter/engine/pull/23357) Revert "[CanvasKit] Automatically fall back to Noto fonts (#23096)" (cla: yes)
[23359](https://github.com/flutter/engine/pull/23359) Roll Skia from 818fd6d35788 to 0d07e14f1e28 (4 revisions) (cla: yes, waiting for tree to go green)
[23361](https://github.com/flutter/engine/pull/23361) [web] fixing text editing for autofill with semantics (cla: yes)
[23362](https://github.com/flutter/engine/pull/23362) Support Mice in iPadOS 13.4+ (cla: yes, platform-ios)
[23363](https://github.com/flutter/engine/pull/23363) Remove dead code for 3x3 matrices (cla: yes)
[23365](https://github.com/flutter/engine/pull/23365) Roll Fuchsia Mac SDK from Sjhog2e8Z... to w3l6o5YIn... (cla: yes, waiting for tree to go green)
[23367](https://github.com/flutter/engine/pull/23367) Roll Fuchsia Linux SDK from Sa7TryuTn... to 9zYti9vPP... (cla: yes, waiting for tree to go green)
[23378](https://github.com/flutter/engine/pull/23378) Roll Skia from 0d07e14f1e28 to af35386f2e28 (10 revisions) (cla: yes, waiting for tree to go green)
[23382](https://github.com/flutter/engine/pull/23382) Roll Fuchsia Mac SDK from w3l6o5YIn... to xAJyFB5RF... (cla: yes, waiting for tree to go green)
[23390](https://github.com/flutter/engine/pull/23390) Roll Fuchsia Linux SDK from 9zYti9vPP... to -LcFx-dyk... (cla: yes, waiting for tree to go green)
[23391](https://github.com/flutter/engine/pull/23391) Roll Fuchsia Mac SDK from xAJyFB5RF... to jVpF41b-V... (cla: yes, waiting for tree to go green)
[23398](https://github.com/flutter/engine/pull/23398) Roll Fuchsia Linux SDK from -LcFx-dyk... to PJX9mmc_C... (cla: yes, waiting for tree to go green)
[23400](https://github.com/flutter/engine/pull/23400) Roll Fuchsia Mac SDK from jVpF41b-V... to zKX_gO4KU... (cla: yes, waiting for tree to go green)
[23401](https://github.com/flutter/engine/pull/23401) Roll Skia from af35386f2e28 to 8898c4d02bbd (1 revision) (cla: yes, waiting for tree to go green)
[23402](https://github.com/flutter/engine/pull/23402) Roll Skia from 8898c4d02bbd to fc914f43cdee (1 revision) (cla: yes, waiting for tree to go green)
[23403](https://github.com/flutter/engine/pull/23403) Roll Fuchsia Linux SDK from PJX9mmc_C... to lxKr8i_TC... (cla: yes, waiting for tree to go green)
[23404](https://github.com/flutter/engine/pull/23404) Roll Fuchsia Mac SDK from zKX_gO4KU... to kPkJqgYZ-... (cla: yes, waiting for tree to go green)
[23405](https://github.com/flutter/engine/pull/23405) Roll Skia from fc914f43cdee to 2a92f13579fb (1 revision) (cla: yes, waiting for tree to go green)
[23406](https://github.com/flutter/engine/pull/23406) Roll Skia from 2a92f13579fb to d8ff313e4485 (2 revisions) (cla: yes, waiting for tree to go green)
[23407](https://github.com/flutter/engine/pull/23407) Roll Skia from d8ff313e4485 to eae5c1619083 (1 revision) (cla: yes, waiting for tree to go green)
[23411](https://github.com/flutter/engine/pull/23411) Roll Fuchsia Linux SDK from lxKr8i_TC... to nVvyfiqlp... (cla: yes, waiting for tree to go green)
[23413](https://github.com/flutter/engine/pull/23413) Roll Skia from eae5c1619083 to 04ccda6c28c4 (1 revision) (cla: yes, waiting for tree to go green)
[23415](https://github.com/flutter/engine/pull/23415) Roll Fuchsia Mac SDK from kPkJqgYZ-... to AqAeIeknz... (cla: yes, waiting for tree to go green)
[23416](https://github.com/flutter/engine/pull/23416) Roll Skia from 04ccda6c28c4 to 2207edd88cfe (1 revision) (cla: yes, waiting for tree to go green)
[23417](https://github.com/flutter/engine/pull/23417) Roll Skia from 2207edd88cfe to df49e6927b43 (2 revisions) (cla: yes, waiting for tree to go green)
[23419](https://github.com/flutter/engine/pull/23419) Roll Skia from df49e6927b43 to dc435fa60df6 (1 revision) (cla: yes, waiting for tree to go green)
[23421](https://github.com/flutter/engine/pull/23421) Roll Fuchsia Linux SDK from nVvyfiqlp... to 597LHqqTy... (cla: yes, waiting for tree to go green)
[23422](https://github.com/flutter/engine/pull/23422) Roll Skia from dc435fa60df6 to 1efa14d9f4f5 (2 revisions) (cla: yes, waiting for tree to go green)
[23424](https://github.com/flutter/engine/pull/23424) Roll Fuchsia Mac SDK from AqAeIeknz... to zMCnd-3cP... (cla: yes, waiting for tree to go green)
[23426](https://github.com/flutter/engine/pull/23426) Roll Skia from 1efa14d9f4f5 to 0bfbfe5d30c0 (4 revisions) (cla: yes, waiting for tree to go green)
[23427](https://github.com/flutter/engine/pull/23427) Roll Skia from 0bfbfe5d30c0 to 6356cb1904b8 (4 revisions) (cla: yes, waiting for tree to go green)
[23429](https://github.com/flutter/engine/pull/23429) Use syslog for logging on Fuchsia (cla: yes, platform-fuchsia)
[23430](https://github.com/flutter/engine/pull/23430) Add flt-renderer and flt-build-mode debug attributes to <body> (cla: yes, platform-web)
[23431](https://github.com/flutter/engine/pull/23431) Roll Skia from 6356cb1904b8 to 2833b08efbe6 (6 revisions) (cla: yes, waiting for tree to go green)
[23432](https://github.com/flutter/engine/pull/23432) [metal] [macos] Suffix for metal builds macos (cla: yes)
[23433](https://github.com/flutter/engine/pull/23433) [web] specify all defines used for html, ck, auto rendering modes (cla: yes)
[23434](https://github.com/flutter/engine/pull/23434) Roll Skia from 2833b08efbe6 to 736c992966b5 (4 revisions) (cla: yes, waiting for tree to go green)
[23435](https://github.com/flutter/engine/pull/23435) started sharing GPU contexts between spawned engines (cla: yes, platform-ios)
[23439](https://github.com/flutter/engine/pull/23439) Update the web profiler_test to wrap benchmark callbacks with allowInterop (cla: yes)
[23440](https://github.com/flutter/engine/pull/23440) add linux arm host builder (cla: yes, waiting for tree to go green)
[23441](https://github.com/flutter/engine/pull/23441) Roll Skia from 736c992966b5 to 854ee85736e3 (2 revisions) (cla: yes, waiting for tree to go green)
[23442](https://github.com/flutter/engine/pull/23442) Disable focused_text_field golden on Firefox (cla: yes)
[23444](https://github.com/flutter/engine/pull/23444) Roll Dart SDK from 1c14d9bb3528 to df54886d1295 (14 revisions) (cla: yes, waiting for tree to go green)
[23445](https://github.com/flutter/engine/pull/23445) Roll Fuchsia Linux SDK from 597LHqqTy... to 0R7_vIAML... (cla: yes, waiting for tree to go green)
[23446](https://github.com/flutter/engine/pull/23446) Roll Skia from 854ee85736e3 to 2ca39919583f (2 revisions) (cla: yes, waiting for tree to go green)
[23449](https://github.com/flutter/engine/pull/23449) Roll Fuchsia Mac SDK from zMCnd-3cP... to de_114mvQ... (cla: yes, waiting for tree to go green)
[23450](https://github.com/flutter/engine/pull/23450) Roll Dart SDK from df54886d1295 to 996a58122821 (1 revision) (cla: yes, waiting for tree to go green)
[23453](https://github.com/flutter/engine/pull/23453) Roll Skia from 2ca39919583f to 32d68537a88c (11 revisions) (cla: yes, waiting for tree to go green)
[23454](https://github.com/flutter/engine/pull/23454) [web] Reland - Switch web-render option default to auto (cla: yes)
[23455](https://github.com/flutter/engine/pull/23455) Roll Skia from 32d68537a88c to 417743f806d1 (4 revisions) (cla: yes, waiting for tree to go green)
[23456](https://github.com/flutter/engine/pull/23456) Revert "bump fuchsia toolchain to clang-12" (cla: yes)
[23457](https://github.com/flutter/engine/pull/23457) Fix SurfaceView usage when status bar is transparent (cla: yes, platform-android)
[23459](https://github.com/flutter/engine/pull/23459) Switch to directional shadows (cla: yes)
[23461](https://github.com/flutter/engine/pull/23461) Roll Fuchsia Linux SDK from 0R7_vIAML... to 5jKxFxRiQ... (cla: yes, waiting for tree to go green)
[23463](https://github.com/flutter/engine/pull/23463) Roll Dart SDK from 996a58122821 to 9542c7bc569a (3 revisions) (cla: yes, waiting for tree to go green)
[23464](https://github.com/flutter/engine/pull/23464) Roll Skia from 417743f806d1 to a7b7964a237a (19 revisions) (cla: yes, waiting for tree to go green)
[23470](https://github.com/flutter/engine/pull/23470) [web] Draw shadows for text in rich paragraphs (cla: yes, platform-web)
[23471](https://github.com/flutter/engine/pull/23471) update browser history switching (cla: yes, platform-web, waiting for tree to go green)
[23472](https://github.com/flutter/engine/pull/23472) Revert Dart roll (#23444) (cla: yes, waiting for tree to go green)
[23474](https://github.com/flutter/engine/pull/23474) Provide a runtime switch for selecting SkParagraph text layout (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23476](https://github.com/flutter/engine/pull/23476) Update virtual to take sampling (cla: yes, waiting for tree to go green)
[23479](https://github.com/flutter/engine/pull/23479) Roll Skia from a7b7964a237a to d64a3193cd49 (5 revisions) (cla: yes, waiting for tree to go green)
[23482](https://github.com/flutter/engine/pull/23482) Roll Fuchsia Mac SDK from de_114mvQ... to cLR0CUb-e... (cla: yes, waiting for tree to go green)
[23484](https://github.com/flutter/engine/pull/23484) Roll Fuchsia Linux SDK from 5jKxFxRiQ... to qedaMC5nT... (cla: yes, waiting for tree to go green)
[23486](https://github.com/flutter/engine/pull/23486) Roll Dart SDK from 1c14d9bb3528 to 6a6a854523fd (21 revisions) (cla: yes, waiting for tree to go green)
[23487](https://github.com/flutter/engine/pull/23487) Roll Skia from d64a3193cd49 to be0b3b7363a9 (3 revisions) (cla: yes, waiting for tree to go green)
[23488](https://github.com/flutter/engine/pull/23488) Switched engine to use buffer collection. (cla: yes)
[23489](https://github.com/flutter/engine/pull/23489) [tests] Normalize SkImage before comparison. (cla: yes)
[23491](https://github.com/flutter/engine/pull/23491) Implements accessibility bridge in common library (accessibility, affects: desktop, cla: yes, waiting for tree to go green)
[23493](https://github.com/flutter/engine/pull/23493) SDK constraints are now just generally required (cla: yes, waiting for tree to go green)
[23494](https://github.com/flutter/engine/pull/23494) Sync the pull request template with the flutter/flutter version (cla: yes)
[23495](https://github.com/flutter/engine/pull/23495) State Restoration for iOS (cla: yes, platform-ios, waiting for tree to go green)
[23499](https://github.com/flutter/engine/pull/23499) Adds a mechanism for announce events to be forwarded to a11y. (cla: yes, waiting for tree to go green)
[23503](https://github.com/flutter/engine/pull/23503) During image decoding, avoid using smart pointers for DartWrappables that cross thread-boundaries. (cla: yes, waiting for tree to go green)
[23504](https://github.com/flutter/engine/pull/23504) Make pending event handling more lenient to allow out of order responses (cla: yes)
[23506](https://github.com/flutter/engine/pull/23506) Revert "bump fuchsia toolchain to clang-12" (#23456) (cla: yes)
[23508](https://github.com/flutter/engine/pull/23508) Started sharing skia contexts on the io thread (cla: yes)
[23509](https://github.com/flutter/engine/pull/23509) Roll Fuchsia Mac SDK from cLR0CUb-e... to IGtSAREVb... (cla: yes, waiting for tree to go green)
[23511](https://github.com/flutter/engine/pull/23511) disable UnassignedIdsAreReused flaky test (cla: yes)
[23512](https://github.com/flutter/engine/pull/23512) Roll Fuchsia Linux SDK from qedaMC5nT... to R9qkTURF2... (cla: yes, waiting for tree to go green)
[23513](https://github.com/flutter/engine/pull/23513) Update outdated links (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23515](https://github.com/flutter/engine/pull/23515) [web] Fix tests in preparation for enabling new rich paragraph implementation (cla: yes, platform-web)
[23516](https://github.com/flutter/engine/pull/23516) Skip the FlEngineTest.SettingsPlugin test (cla: yes)
[23518](https://github.com/flutter/engine/pull/23518) fix ax unique id flake (cla: yes, waiting for tree to go green)
[23522](https://github.com/flutter/engine/pull/23522) ci: Print output in case of compile error (cla: yes)
[23523](https://github.com/flutter/engine/pull/23523) Fix double free in settings plugin tests (cla: yes)
[23524](https://github.com/flutter/engine/pull/23524) Implement delayed key event synthesis for Windows (cla: yes)
[23525](https://github.com/flutter/engine/pull/23525) Roll Skia from be0b3b7363a9 to c6e25754c4ad (22 revisions) (cla: yes, waiting for tree to go green)
[23527](https://github.com/flutter/engine/pull/23527) Manual roll of Dart 60175b98ac...6a6a854523 (cla: yes)
[23528](https://github.com/flutter/engine/pull/23528) Roll Skia from c6e25754c4ad to f4ea30580c91 (1 revision) (cla: yes, waiting for tree to go green)
[23529](https://github.com/flutter/engine/pull/23529) Manual roll of Dart d7624b6ec7b...60175b98ac3 (cla: yes)
[23531](https://github.com/flutter/engine/pull/23531) Roll Skia from f4ea30580c91 to cb3bcf88e382 (3 revisions) (cla: yes, waiting for tree to go green)
[23532](https://github.com/flutter/engine/pull/23532) Roll Skia from cb3bcf88e382 to d2f51b18065a (1 revision) (cla: yes, waiting for tree to go green)
[23533](https://github.com/flutter/engine/pull/23533) Roll Skia from d2f51b18065a to f5aed172c693 (1 revision) (cla: yes, waiting for tree to go green)
[23534](https://github.com/flutter/engine/pull/23534) Roll Fuchsia Mac SDK from IGtSAREVb... to 80NV-ZWKC... (cla: yes, waiting for tree to go green)
[23536](https://github.com/flutter/engine/pull/23536) Roll Skia from f5aed172c693 to 0355118f220e (1 revision) (cla: yes, waiting for tree to go green)
[23537](https://github.com/flutter/engine/pull/23537) Use Fractal rather than Improved noise in shader mask flow unit test (cla: yes)
[23539](https://github.com/flutter/engine/pull/23539) Started asserting that metal gpu contexts are shared (cla: yes, platform-ios)
[23540](https://github.com/flutter/engine/pull/23540) [metal] Disable image comparison for gradient_metal test (cla: yes)
[23541](https://github.com/flutter/engine/pull/23541) Roll Skia from 0355118f220e to 2a735ba1cb32 (7 revisions) (cla: yes, waiting for tree to go green)
[23542](https://github.com/flutter/engine/pull/23542) [canvaskit] push methods return layers with correct class names (cla: yes, platform-web)
[23543](https://github.com/flutter/engine/pull/23543) Roll Fuchsia Linux SDK from R9qkTURF2... to kYdpRwQ7N... (cla: yes, waiting for tree to go green)
[23544](https://github.com/flutter/engine/pull/23544) Roll Skia from 2a735ba1cb32 to 00e43df25bea (6 revisions) (cla: yes, waiting for tree to go green)
[23545](https://github.com/flutter/engine/pull/23545) Add a keep annotation to the ImeSyncDeferringInsetsCallback.AnimationCallback inner class (cla: yes, platform-android)
[23547](https://github.com/flutter/engine/pull/23547) Fix leak when parsing base64. (cla: yes)
[23548](https://github.com/flutter/engine/pull/23548) Roll Skia from 00e43df25bea to 047d5bb8d39c (2 revisions) (cla: yes, waiting for tree to go green)
[23549](https://github.com/flutter/engine/pull/23549) Plumbing refactor to allow the usage of Dart_CreateIsolateInGroup (cla: yes)
[23550](https://github.com/flutter/engine/pull/23550) [canvaskit] embedded views: apply inverse scale on the left (cla: yes)
[23551](https://github.com/flutter/engine/pull/23551) [web] Fix more tests that are specific to DomParagraph (cla: yes, platform-web, waiting for tree to go green)
[23553](https://github.com/flutter/engine/pull/23553) Roll Skia from 047d5bb8d39c to 6bf6963198aa (1 revision) (cla: yes, waiting for tree to go green)
[23555](https://github.com/flutter/engine/pull/23555) Roll Skia from 6bf6963198aa to 17ce8c5ec6f4 (2 revisions) (cla: yes, waiting for tree to go green)
[23556](https://github.com/flutter/engine/pull/23556) Roll Skia from 17ce8c5ec6f4 to ae562bd177d9 (1 revision) (cla: yes, waiting for tree to go green)
[23557](https://github.com/flutter/engine/pull/23557) Roll Skia from ae562bd177d9 to 5045de33e754 (2 revisions) (cla: yes, waiting for tree to go green)
[23558](https://github.com/flutter/engine/pull/23558) Roll Fuchsia Mac SDK from 80NV-ZWKC... to mDPWTwJns... (cla: yes, waiting for tree to go green)
[23560](https://github.com/flutter/engine/pull/23560) Roll Skia from 5045de33e754 to 8f282f5d9f30 (1 revision) (cla: yes, waiting for tree to go green)
[23561](https://github.com/flutter/engine/pull/23561) Android deeplink sends "path + query" instead of just path (cla: yes, platform-android)
[23562](https://github.com/flutter/engine/pull/23562) iOS deeplink sends "path + query" instead of just path (cla: yes, platform-ios, waiting for tree to go green)
[23564](https://github.com/flutter/engine/pull/23564) Roll Fuchsia Linux SDK from kYdpRwQ7N... to KAsjGNhH6... (cla: yes, waiting for tree to go green)
[23565](https://github.com/flutter/engine/pull/23565) Roll Fuchsia Mac SDK from mDPWTwJns... to dYtTUrjF2... (cla: yes, waiting for tree to go green)
[23570](https://github.com/flutter/engine/pull/23570) Roll Fuchsia Mac SDK from dYtTUrjF2... to Zvqkcgk0A... (cla: yes, waiting for tree to go green)
[23575](https://github.com/flutter/engine/pull/23575) Roll Skia from 8f282f5d9f30 to 2199cde1f52b (1 revision) (cla: yes, waiting for tree to go green)
[23578](https://github.com/flutter/engine/pull/23578) Roll Dart SDK from d7624b6ec7bb to e7983fd4adb9 (7 revisions) (cla: yes, waiting for tree to go green)
[23579](https://github.com/flutter/engine/pull/23579) Roll Skia from 2199cde1f52b to a7548393d370 (1 revision) (cla: yes, waiting for tree to go green)
[23580](https://github.com/flutter/engine/pull/23580) Roll Fuchsia Mac SDK from Zvqkcgk0A... to UxTIYduaG... (cla: yes, waiting for tree to go green)
[23582](https://github.com/flutter/engine/pull/23582) Roll Fuchsia Linux SDK from KAsjGNhH6... to lbQ4FeXvV... (cla: yes, waiting for tree to go green)
[23583](https://github.com/flutter/engine/pull/23583) Roll Skia from a7548393d370 to 97eede48be1e (5 revisions) (cla: yes, waiting for tree to go green)
[23586](https://github.com/flutter/engine/pull/23586) Roll Dart SDK from e7983fd4adb9 to 0145b9604d3c (1 revision) (cla: yes, waiting for tree to go green)
[23587](https://github.com/flutter/engine/pull/23587) Roll Skia from 97eede48be1e to 58a8ccc59190 (2 revisions) (cla: yes, waiting for tree to go green)
[23589](https://github.com/flutter/engine/pull/23589) Roll Skia from 58a8ccc59190 to eb54bb51b112 (6 revisions) (cla: yes, waiting for tree to go green)
[23590](https://github.com/flutter/engine/pull/23590) Roll Fuchsia Mac SDK from UxTIYduaG... to oll0Dgp9o... (cla: yes, waiting for tree to go green)
[23591](https://github.com/flutter/engine/pull/23591) Roll Fuchsia Linux SDK from lbQ4FeXvV... to UB6RsTbdU... (cla: yes, waiting for tree to go green)
[23592](https://github.com/flutter/engine/pull/23592) use the profile build of CanvasKit in --profile mode (cla: yes)
[23593](https://github.com/flutter/engine/pull/23593) Roll Skia from eb54bb51b112 to 0a145b77f708 (2 revisions) (cla: yes, waiting for tree to go green)
[23594](https://github.com/flutter/engine/pull/23594) Roll Dart SDK from 0145b9604d3c to 28ec4cc111cf (1 revision) (cla: yes, waiting for tree to go green)
[23595](https://github.com/flutter/engine/pull/23595) Roll Skia from 0a145b77f708 to 52a7eca13d45 (6 revisions) (cla: yes, waiting for tree to go green)
[23596](https://github.com/flutter/engine/pull/23596) [web] Apply font-family and other styles to the paragraph element (cla: yes, platform-web, waiting for tree to go green)
[23597](https://github.com/flutter/engine/pull/23597) [web] Convert Ctrl+mousewheel to pointerdata (cla: yes)
[23598](https://github.com/flutter/engine/pull/23598) Fix indexing error in Linux key event handling (cla: yes)
[23599](https://github.com/flutter/engine/pull/23599) Add support for rendering using Metal on macOS (cla: yes, platform-ios)
[23601](https://github.com/flutter/engine/pull/23601) [web] Fix semantic node order for webkit (cla: yes)
[23602](https://github.com/flutter/engine/pull/23602) Roll Skia from 52a7eca13d45 to 9a4904f4e0cf (8 revisions) (cla: yes, waiting for tree to go green)
[23603](https://github.com/flutter/engine/pull/23603) share font collections between spawn engines (cla: yes)
[23604](https://github.com/flutter/engine/pull/23604) Make android more lenient when it comes to out-of-order key event responses (cla: yes, platform-android)
[23605](https://github.com/flutter/engine/pull/23605) Roll Skia from 9a4904f4e0cf to aed808c7567e (2 revisions) (cla: yes, waiting for tree to go green)
[23606](https://github.com/flutter/engine/pull/23606) Roll Dart SDK from 28ec4cc111cf to 7fcbd388b620 (1 revision) (cla: yes, waiting for tree to go green)
[23607](https://github.com/flutter/engine/pull/23607) Roll wuffs to google/wuffs@c86add25f790360f0aca026c4f1c2c4e2d12408d (cla: yes)
[23608](https://github.com/flutter/engine/pull/23608) [dart-runner] Avoid calling Destroy on nullptr (cla: yes, waiting for tree to go green)
[23609](https://github.com/flutter/engine/pull/23609) Only remove weak pointers that are set. (cla: yes)
[23610](https://github.com/flutter/engine/pull/23610) Revert "Support Mice in iPadOS 13.4+" (cla: yes, platform-ios)
[23612](https://github.com/flutter/engine/pull/23612) Roll Skia from aed808c7567e to 7cf3addb1bd8 (1 revision) (cla: yes, waiting for tree to go green)
[23614](https://github.com/flutter/engine/pull/23614) Roll Skia from 7cf3addb1bd8 to 93c2d81f199a (1 revision) (cla: yes, waiting for tree to go green)
[23623](https://github.com/flutter/engine/pull/23623) Windows textures: Add placeholder flutter_texture_registrar.h (cla: yes, waiting for tree to go green)
[23626](https://github.com/flutter/engine/pull/23626) Link SkShaper/SkParagraph into the engine by default (cla: yes, waiting for tree to go green)
[23628](https://github.com/flutter/engine/pull/23628) Roll Dart SDK from 7fcbd388b620 to ef8bf7f0a667 (5 revisions) (cla: yes)
[23630](https://github.com/flutter/engine/pull/23630) [flutter_releases] Flutter 1.25.0-8.3.pre engine cherrypicks (cla: yes)
[23633](https://github.com/flutter/engine/pull/23633) Roll Fuchsia Linux SDK from UB6RsTbdU... to FfWbbB4r8... (cla: yes, waiting for tree to go green)
[23634](https://github.com/flutter/engine/pull/23634) implemented GetMainContext() for opengl (cla: yes, platform-ios)
[23635](https://github.com/flutter/engine/pull/23635) Roll Skia from 93c2d81f199a to 9fd75e96d712 (29 revisions) (cla: yes, waiting for tree to go green)
[23636](https://github.com/flutter/engine/pull/23636) Support Mice in iPadOS 13.4+ (cla: yes, platform-ios)
[23638](https://github.com/flutter/engine/pull/23638) [web] Fix text cutoff when rendering paragraphs on DomCanvas (cla: yes, platform-web, waiting for tree to go green)
[23639](https://github.com/flutter/engine/pull/23639) Roll Dart SDK from ef8bf7f0a667 to 636ff0ec97e0 (1 revision) (cla: yes, waiting for tree to go green)
[23640](https://github.com/flutter/engine/pull/23640) Fix slow scroll speed in Wayland. (cla: yes)
[23641](https://github.com/flutter/engine/pull/23641) Roll Fuchsia Mac SDK from oll0Dgp9o... to JSzm8D59u... (cla: yes, waiting for tree to go green)
[23642](https://github.com/flutter/engine/pull/23642) Roll Dart SDK from 636ff0ec97e0 to d3d7b77e8165 (1 revision) (cla: yes, waiting for tree to go green)
[23643](https://github.com/flutter/engine/pull/23643) Roll Skia from 9fd75e96d712 to 38ca513408d1 (1 revision) (cla: yes, waiting for tree to go green)
[23644](https://github.com/flutter/engine/pull/23644) Roll Skia from 38ca513408d1 to be2a8614c5d6 (2 revisions) (cla: yes, waiting for tree to go green)
[23645](https://github.com/flutter/engine/pull/23645) Roll Dart SDK from d3d7b77e8165 to 010633edc631 (1 revision) (cla: yes, waiting for tree to go green)
[23646](https://github.com/flutter/engine/pull/23646) Roll Fuchsia Linux SDK from FfWbbB4r8... to BUsKF6z4t... (cla: yes, waiting for tree to go green)
[23647](https://github.com/flutter/engine/pull/23647) Roll Dart SDK from 010633edc631 to 724d9e5e7d71 (1 revision) (cla: yes, waiting for tree to go green)
[23648](https://github.com/flutter/engine/pull/23648) Roll Skia from be2a8614c5d6 to 0d7de6bc9ac3 (1 revision) (cla: yes, waiting for tree to go green)
[23649](https://github.com/flutter/engine/pull/23649) Use non-deprecated SkImageFilter factory functions (cla: yes)
[23650](https://github.com/flutter/engine/pull/23650) Roll Fuchsia Mac SDK from JSzm8D59u... to BsUY1yjWh... (cla: yes, waiting for tree to go green)
[23651](https://github.com/flutter/engine/pull/23651) Revert "[web] Enable the new rich paragraph implementation" (cla: yes)
[23652](https://github.com/flutter/engine/pull/23652) Roll Skia from 0d7de6bc9ac3 to 92969f265686 (7 revisions) (cla: yes, waiting for tree to go green)
[23653](https://github.com/flutter/engine/pull/23653) [web] Fix layout exception when text is null (cla: yes, platform-web, waiting for tree to go green)
[23654](https://github.com/flutter/engine/pull/23654) Roll Skia from 92969f265686 to d8e9436a78bf (6 revisions) (cla: yes, waiting for tree to go green)
[23655](https://github.com/flutter/engine/pull/23655) Implement handling of framework-handled key events (cla: yes, waiting for tree to go green)
[23656](https://github.com/flutter/engine/pull/23656) Reland - bump fuchsia toolchain to clang 12 (cla: yes)
[23657](https://github.com/flutter/engine/pull/23657) Roll Skia from d8e9436a78bf to 0e4a29af9db2 (6 revisions) (cla: yes, waiting for tree to go green)
[23659](https://github.com/flutter/engine/pull/23659) [web] Reland: Enable the new rich paragraph implementation (cla: yes, platform-web, waiting for tree to go green)
[23662](https://github.com/flutter/engine/pull/23662) Add winuwp as one of the choices in `--target-os`. (cla: yes)
[23666](https://github.com/flutter/engine/pull/23666) Roll FreeType to 2.10.4 (cla: yes)
[23667](https://github.com/flutter/engine/pull/23667) SkParagraph: enable the ICU breaker cache (cla: yes, waiting for tree to go green)
[23668](https://github.com/flutter/engine/pull/23668) Roll Fuchsia Linux SDK from BUsKF6z4t... to a7ezEWPM5... (cla: yes, waiting for tree to go green)
[23669](https://github.com/flutter/engine/pull/23669) Remove unused fml::Message serializer (cla: yes, waiting for tree to go green)
[23670](https://github.com/flutter/engine/pull/23670) Roll Skia from 0e4a29af9db2 to af9b58e287b5 (10 revisions) (cla: yes, waiting for tree to go green)
[23671](https://github.com/flutter/engine/pull/23671) Roll Skia from af9b58e287b5 to f435ada424df (1 revision) (cla: yes, waiting for tree to go green)
[23672](https://github.com/flutter/engine/pull/23672) Roll Fuchsia Mac SDK from BsUY1yjWh... to BoBy7Eobf... (cla: yes, waiting for tree to go green)
[23675](https://github.com/flutter/engine/pull/23675) FlutterEngineGroup for Android (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23676](https://github.com/flutter/engine/pull/23676) Roll Fuchsia Linux SDK from a7ezEWPM5... to erwxDS3kf... (cla: yes, waiting for tree to go green)
[23680](https://github.com/flutter/engine/pull/23680) Roll Skia from f435ada424df to 8f78d5528438 (7 revisions) (cla: yes, waiting for tree to go green)
[23681](https://github.com/flutter/engine/pull/23681) Roll Dart SDK from 724d9e5e7d71 to 3629a798353d (1 revision) (cla: yes)
[23683](https://github.com/flutter/engine/pull/23683) [web] Fix letter spacing for rich paragraphs (cla: yes, platform-web)
[23685](https://github.com/flutter/engine/pull/23685) [canvaskit] fix addPlaceholder JS bindings; add paragraph test (cla: yes, platform-web, waiting for tree to go green)
[23687](https://github.com/flutter/engine/pull/23687) Revert "[web] Enable the new rich paragraph implementation" (cla: yes)
[23689](https://github.com/flutter/engine/pull/23689) Added missing export for the flutter engine group. (cla: yes, platform-ios)
[23691](https://github.com/flutter/engine/pull/23691) [web] Fix linear gradient tiling offset. (cla: yes, platform-web)
[23692](https://github.com/flutter/engine/pull/23692) Roll Skia from 8f78d5528438 to 890b2b406a60 (9 revisions) (cla: yes, waiting for tree to go green)
[23693](https://github.com/flutter/engine/pull/23693) Roll Fuchsia Mac SDK from BoBy7Eobf... to DVYrV15dq... (cla: yes, waiting for tree to go green)
[23694](https://github.com/flutter/engine/pull/23694) Ensure gen_snapshot for the target is built when needed (cla: yes, waiting for tree to go green)
[23696](https://github.com/flutter/engine/pull/23696) [web] Reland: Enable the new rich paragraph implementation (cla: yes, platform-web)
[23698](https://github.com/flutter/engine/pull/23698) Roll buildroot to 92a8d2eb7aad592068f808e39b8330fd2bce25e3, Clang to 12.0.0 (cla: yes)
[23699](https://github.com/flutter/engine/pull/23699) Roll Dart SDK from 3629a798353d to a461c2b3366d (1 revision) (cla: yes, waiting for tree to go green)
[23700](https://github.com/flutter/engine/pull/23700) Roll Skia from 890b2b406a60 to 3df6c20a050a (11 revisions) (cla: yes, waiting for tree to go green)
[23701](https://github.com/flutter/engine/pull/23701) [windows] Enable smooth resizing on windows (cla: yes)
[23703](https://github.com/flutter/engine/pull/23703) Roll Skia from 3df6c20a050a to 68b8bd5ba7f3 (3 revisions) (cla: yes, waiting for tree to go green)
[23704](https://github.com/flutter/engine/pull/23704) Populates fuchsia a11y toggled state. (cla: yes)
[23706](https://github.com/flutter/engine/pull/23706) Roll Fuchsia Linux SDK from erwxDS3kf... to y-4SPFGg7... (cla: yes, waiting for tree to go green)
[23707](https://github.com/flutter/engine/pull/23707) Roll Dart SDK from a461c2b3366d to 82cec4d65743 (2 revisions) (cla: yes, waiting for tree to go green)
[23708](https://github.com/flutter/engine/pull/23708) Roll Skia from 68b8bd5ba7f3 to 1895425ffc90 (2 revisions) (cla: yes, waiting for tree to go green)
[23709](https://github.com/flutter/engine/pull/23709) Roll Skia from 1895425ffc90 to 7f81cb6901ae (2 revisions) (cla: yes, waiting for tree to go green)
[23710](https://github.com/flutter/engine/pull/23710) Roll Fuchsia Mac SDK from DVYrV15dq... to 058reL2R_... (cla: yes, waiting for tree to go green)
[23711](https://github.com/flutter/engine/pull/23711) Roll Dart SDK from 82cec4d65743 to c262c3e0d9d2 (1 revision) (cla: yes, waiting for tree to go green)
[23712](https://github.com/flutter/engine/pull/23712) Roll Skia from 7f81cb6901ae to 70ea0d97c1c5 (1 revision) (cla: yes, waiting for tree to go green)
[23713](https://github.com/flutter/engine/pull/23713) Roll Dart SDK from c262c3e0d9d2 to 0554c17398ef (1 revision) (cla: yes, waiting for tree to go green)
[23714](https://github.com/flutter/engine/pull/23714) Roll Skia from 70ea0d97c1c5 to 4f4c064d5b74 (7 revisions) (cla: yes, waiting for tree to go green)
[23715](https://github.com/flutter/engine/pull/23715) Roll Fuchsia Linux SDK from y-4SPFGg7... to f6HozEhK-... (cla: yes, waiting for tree to go green)
[23717](https://github.com/flutter/engine/pull/23717) Skia can now build with 10.11 as the min deployment version (cla: yes)
[23720](https://github.com/flutter/engine/pull/23720) Roll Skia from 4f4c064d5b74 to 9f079f7c0d16 (11 revisions) (cla: yes, waiting for tree to go green)
[23721](https://github.com/flutter/engine/pull/23721) Roll Skia from 9f079f7c0d16 to bfd330d08195 (2 revisions) (cla: yes, waiting for tree to go green)
[23722](https://github.com/flutter/engine/pull/23722) Roll Fuchsia Mac SDK from 058reL2R_... to -f95YWvck... (cla: yes, waiting for tree to go green)
[23725](https://github.com/flutter/engine/pull/23725) Roll Skia from bfd330d08195 to d414e600b24b (5 revisions) (cla: yes, waiting for tree to go green)
[23726](https://github.com/flutter/engine/pull/23726) Removes deprecated WLAN API dependency. (cla: yes, waiting for tree to go green)
[23727](https://github.com/flutter/engine/pull/23727) [web] Add --watch flag to 'felt test' (cla: yes, platform-web)
[23728](https://github.com/flutter/engine/pull/23728) Automatically download Noto fonts as backup fonts in CanvasKit mode (cla: yes)
[23729](https://github.com/flutter/engine/pull/23729) Unconditionally enable some tracing on startup (cla: yes)
[23731](https://github.com/flutter/engine/pull/23731) [fuchsia] Add missing static binding check. (cla: yes, waiting for tree to go green)
[23732](https://github.com/flutter/engine/pull/23732) Roll Skia from d414e600b24b to 05e5446145a6 (4 revisions) (cla: yes, waiting for tree to go green)
[23733](https://github.com/flutter/engine/pull/23733) block thread merging with shared engines (cla: yes, waiting for tree to go green)
[23734](https://github.com/flutter/engine/pull/23734) Revert "Roll buildroot to 92a8d2eb7aad592068f808e39b8330fd2bce25e3, Clang to 12.0.0" (cla: yes)
[23735](https://github.com/flutter/engine/pull/23735) Roll Dart SDK from 0554c17398ef to 93a7e1189a8a (3 revisions) (cla: yes, waiting for tree to go green)
[23737](https://github.com/flutter/engine/pull/23737) Roll Fuchsia Linux SDK from f6HozEhK-... to 9jHAc8Xal... (cla: yes, waiting for tree to go green)
[23738](https://github.com/flutter/engine/pull/23738) Roll Dart SDK from 93a7e1189a8a to c962a50422d3 (2 revisions) (cla: yes, waiting for tree to go green)
[23740](https://github.com/flutter/engine/pull/23740) Roll Fuchsia Mac SDK from -f95YWvck... to WDEyMachh... (cla: yes, waiting for tree to go green)
[23742](https://github.com/flutter/engine/pull/23742) Roll buildroot to 7832e9ed954bd5b22d043ab49a67e93babd291e6, clang to 12.0.0 mark 2 (cla: yes)
[23744](https://github.com/flutter/engine/pull/23744) Roll Fuchsia Linux SDK from 9jHAc8Xal... to Slp6mtN7o... (cla: yes, waiting for tree to go green)
[23747](https://github.com/flutter/engine/pull/23747) Roll Dart SDK from c962a50422d3 to 3a72a508f5a0 (1 revision) (cla: yes, waiting for tree to go green)
[23748](https://github.com/flutter/engine/pull/23748) Roll Dart SDK from 3a72a508f5a0 to f0c507184d5d (1 revision) (cla: yes, waiting for tree to go green)
[23751](https://github.com/flutter/engine/pull/23751) Roll clang further, fix buggy test (cla: yes)
[23752](https://github.com/flutter/engine/pull/23752) Roll Fuchsia Mac SDK from WDEyMachh... to _UK6XxiMu... (cla: yes, waiting for tree to go green)
[23755](https://github.com/flutter/engine/pull/23755) Roll Fuchsia Linux SDK from Slp6mtN7o... to -tixwZamE... (cla: yes, waiting for tree to go green)
[23756](https://github.com/flutter/engine/pull/23756) Roll Fuchsia Mac SDK from _UK6XxiMu... to gifLPMkX1... (cla: yes, waiting for tree to go green)
[23758](https://github.com/flutter/engine/pull/23758) Roll Dart SDK from f0c507184d5d to 091e9f17809e (1 revision) (cla: yes, waiting for tree to go green)
[23759](https://github.com/flutter/engine/pull/23759) Roll Skia from 05e5446145a6 to 26a84431ff72 (2 revisions) (cla: yes, waiting for tree to go green)
[23762](https://github.com/flutter/engine/pull/23762) Roll Dart SDK from 091e9f17809e to c4214e6daaac (3 revisions) (cla: yes, waiting for tree to go green)
[23763](https://github.com/flutter/engine/pull/23763) Roll Fuchsia Mac SDK from gifLPMkX1... to pc_veLlry... (cla: yes, waiting for tree to go green)
[23764](https://github.com/flutter/engine/pull/23764) Roll Fuchsia Linux SDK from -tixwZamE... to fByXAJ76e... (cla: yes, waiting for tree to go green)
[23765](https://github.com/flutter/engine/pull/23765) Allow creation of symlinks for Goma via an environment variable. (cla: yes, waiting for tree to go green)
[23766](https://github.com/flutter/engine/pull/23766) Roll Skia from 26a84431ff72 to bde06cc511d2 (12 revisions) (cla: yes, waiting for tree to go green)
[23767](https://github.com/flutter/engine/pull/23767) Migrate to use the published metrics_center (cla: yes)
[23769](https://github.com/flutter/engine/pull/23769) [web] Fix shadow rendering using boxshadow due to webkit repaint area bug (cla: yes, waiting for tree to go green)
[23770](https://github.com/flutter/engine/pull/23770) Roll Dart SDK from c4214e6daaac to 4a6764bf28c2 (4 revisions) (cla: yes, waiting for tree to go green)
[23772](https://github.com/flutter/engine/pull/23772) Roll Skia from bde06cc511d2 to f3087d8297fe (7 revisions) (cla: yes, waiting for tree to go green)
[23773](https://github.com/flutter/engine/pull/23773) [web] Fix drawPoints api crash when strokeWidth is not specified. (cla: yes)
[23775](https://github.com/flutter/engine/pull/23775) skip flaky test (cla: yes, platform-ios)
[23778](https://github.com/flutter/engine/pull/23778) [web] Make null paint color consistent with mobile&desktop (cla: yes)
[23781](https://github.com/flutter/engine/pull/23781) Roll Skia from f3087d8297fe to e0fe62adaa3e (9 revisions) (cla: yes, waiting for tree to go green)
[23782](https://github.com/flutter/engine/pull/23782) Started using Dart_CreateInGroup when using spawn on a release build (cla: yes, waiting for tree to go green)
[23783](https://github.com/flutter/engine/pull/23783) Fix typo in embedder unit tests (cla: yes)
[23784](https://github.com/flutter/engine/pull/23784) Roll Skia from e0fe62adaa3e to 18aeb5731b51 (1 revision) (cla: yes, waiting for tree to go green)
[23785](https://github.com/flutter/engine/pull/23785) Fix JNI void vs object method call - Deferred Components (cla: yes, platform-android, waiting for tree to go green)
[23786](https://github.com/flutter/engine/pull/23786) Roll Skia from 18aeb5731b51 to 7aa7f039b9ee (1 revision) (cla: yes, waiting for tree to go green)
[23787](https://github.com/flutter/engine/pull/23787) Roll Fuchsia Mac SDK from pc_veLlry... to xYraItnQp... (cla: yes, waiting for tree to go green)
[23788](https://github.com/flutter/engine/pull/23788) Roll Fuchsia Linux SDK from fByXAJ76e... to vs54lOVoj... (cla: yes, waiting for tree to go green)
[23790](https://github.com/flutter/engine/pull/23790) Roll Skia from 7aa7f039b9ee to 6eb610f75cad (3 revisions) (cla: yes, waiting for tree to go green)
[23791](https://github.com/flutter/engine/pull/23791) Revert "Roll Dart SDK from c4214e6daaac to 4a6764bf28c2 (4 revisions)" (cla: yes)
[23795](https://github.com/flutter/engine/pull/23795) Notify Win32FlutterWindow of cursor updates (affects: desktop, affects: text input, cla: yes, platform-windows)
[23796](https://github.com/flutter/engine/pull/23796) Roll Dart SDK from c4214e6daaac to 0265477b0534 (5 revisions) (cla: yes, waiting for tree to go green)
[23798](https://github.com/flutter/engine/pull/23798) Share Android surface GrDirectContext (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23799](https://github.com/flutter/engine/pull/23799) Roll Skia from 6eb610f75cad to 489e55252ee3 (6 revisions) (cla: yes, waiting for tree to go green)
[23802](https://github.com/flutter/engine/pull/23802) Roll Skia from 489e55252ee3 to 81bfabeb18e6 (3 revisions) (cla: yes, waiting for tree to go green)
[23803](https://github.com/flutter/engine/pull/23803) [flutter_releases] Flutter Stable 1.22.6 Engine Cherrypicks (cla: yes)
[23804](https://github.com/flutter/engine/pull/23804) Roll Fuchsia Linux SDK from vs54lOVoj... to E4eFE0Bz6... (cla: yes, waiting for tree to go green)
[23805](https://github.com/flutter/engine/pull/23805) Roll Skia from 81bfabeb18e6 to cdeabcaf5705 (1 revision) (cla: yes, waiting for tree to go green)
[23806](https://github.com/flutter/engine/pull/23806) Roll Fuchsia Mac SDK from xYraItnQp... to MrtHftV0U... (cla: yes, waiting for tree to go green)
[23808](https://github.com/flutter/engine/pull/23808) add ffi_allocation_patch.dart to libraries.yaml (cla: yes, waiting for tree to go green)
[23810](https://github.com/flutter/engine/pull/23810) Split platforms for clang in DEPS to prepare for autoroller (cla: yes)
[23811](https://github.com/flutter/engine/pull/23811) Roll Dart SDK from 0265477b0534 to 970d74c42472 (1 revision) (cla: yes, waiting for tree to go green)
[23812](https://github.com/flutter/engine/pull/23812) Roll Skia from cdeabcaf5705 to dd069a9188cc (2 revisions) (cla: yes, waiting for tree to go green)
[23813](https://github.com/flutter/engine/pull/23813) Call Dart plugin registrant if available (cla: yes, waiting for tree to go green)
[23815](https://github.com/flutter/engine/pull/23815) [flutter_releases] Flutter Stable 1.22.6 Engine additional cherrypick (cla: yes, platform-android, platform-ios)
[23816](https://github.com/flutter/engine/pull/23816) Roll Skia from dd069a9188cc to 08f5311ae142 (5 revisions) (cla: yes, waiting for tree to go green)
[23818](https://github.com/flutter/engine/pull/23818) Roll Skia from 08f5311ae142 to 821a84558bd4 (1 revision) (cla: yes, waiting for tree to go green)
[23819](https://github.com/flutter/engine/pull/23819) Roll Dart SDK from 970d74c42472 to fd72dbb5b82b (1 revision) (cla: yes, waiting for tree to go green)
[23820](https://github.com/flutter/engine/pull/23820) Roll Dart SDK from 970d74c42472 to fd72dbb5b82b (1 revision) (cla: yes, waiting for tree to go green)
[23821](https://github.com/flutter/engine/pull/23821) Cherry pick 920a33a0fc3a1d9913d889a77593161e175f1863 (cla: yes)
[23822](https://github.com/flutter/engine/pull/23822) revert path volatility tracker (cla: yes, waiting for tree to go green)
[23823](https://github.com/flutter/engine/pull/23823) Fix typo in textureFrameAvailable on macOS (cla: yes)
[23824](https://github.com/flutter/engine/pull/23824) Pass the filename directly to JNI for loading deferred component. (cla: yes, platform-android)
[23825](https://github.com/flutter/engine/pull/23825) Roll Skia from 821a84558bd4 to 87a055b02027 (4 revisions) (cla: yes, waiting for tree to go green)
[23826](https://github.com/flutter/engine/pull/23826) Roll Fuchsia Linux SDK from E4eFE0Bz6... to UGavhI1zv... (cla: yes, waiting for tree to go green)
[23827](https://github.com/flutter/engine/pull/23827) Roll Fuchsia Mac SDK from MrtHftV0U... to 7nZajqutF... (cla: yes, waiting for tree to go green)
[23828](https://github.com/flutter/engine/pull/23828) Roll Dart SDK from fd72dbb5b82b to 5e24a66b1bb8 (1 revision) (cla: yes, waiting for tree to go green)
[23829](https://github.com/flutter/engine/pull/23829) Roll Skia from 87a055b02027 to e0d023562bd9 (1 revision) (cla: yes, waiting for tree to go green)
[23830](https://github.com/flutter/engine/pull/23830) [web] Fix shadows for arbitrary paths on PhysicalShape (cla: yes, platform-web)
[23831](https://github.com/flutter/engine/pull/23831) Roll Skia from e0d023562bd9 to 982127b7d57d (4 revisions) (cla: yes, waiting for tree to go green)
[23832](https://github.com/flutter/engine/pull/23832) Roll Fuchsia Linux Toolchain from git_revision:2c0536b76b35fa592ac7b4a0e4bb176eaf55af75 to IJxh_9dNS... (cla: yes, waiting for tree to go green)
[23834](https://github.com/flutter/engine/pull/23834) Roll Skia from 982127b7d57d to 6de1e52d0b12 (1 revision) (cla: yes, waiting for tree to go green)
[23836](https://github.com/flutter/engine/pull/23836) Roll Skia from 6de1e52d0b12 to 8a37fb2c605b (5 revisions) (cla: yes, waiting for tree to go green)
[23837](https://github.com/flutter/engine/pull/23837) Use references when iterating over SkParagraph text boxes (cla: yes, waiting for tree to go green)
[23838](https://github.com/flutter/engine/pull/23838) Roll Dart SDK from 5e24a66b1bb8 to 704928da5702 (2 revisions) (cla: yes, waiting for tree to go green)
[23839](https://github.com/flutter/engine/pull/23839) Roll Skia from 8a37fb2c605b to 37d16f135265 (4 revisions) (cla: yes, waiting for tree to go green)
[23840](https://github.com/flutter/engine/pull/23840) Reland vol tracker (cla: yes)
[23841](https://github.com/flutter/engine/pull/23841) Roll Skia from 37d16f135265 to e89d8ea20b62 (2 revisions) (cla: yes, waiting for tree to go green)
[23842](https://github.com/flutter/engine/pull/23842) use the toolchain in //build for fuchsia (cla: yes, waiting for tree to go green)
[23843](https://github.com/flutter/engine/pull/23843) Roll Skia from e89d8ea20b62 to c09761f57605 (1 revision) (cla: yes, waiting for tree to go green)
[23846](https://github.com/flutter/engine/pull/23846) Roll Dart SDK from 704928da5702 to 1db2d4d95562 (1 revision) (cla: yes, waiting for tree to go green)
[23848](https://github.com/flutter/engine/pull/23848) Roll Fuchsia Linux SDK from UGavhI1zv... to mODEe2CNk... (cla: yes, waiting for tree to go green)
[23849](https://github.com/flutter/engine/pull/23849) Search multiple paths when loading deferred component .so files. (cla: yes, platform-android)
[23850](https://github.com/flutter/engine/pull/23850) fix concurrent threads cannot set thread name on Android issue (cla: yes, waiting for tree to go green)
[23851](https://github.com/flutter/engine/pull/23851) Roll Skia from c09761f57605 to 450f8565c7f3 (5 revisions) (cla: yes, waiting for tree to go green)
[23853](https://github.com/flutter/engine/pull/23853) Add support for IME-based text input on Windows (affects: desktop, affects: text input, cla: yes, platform-windows)
[23855](https://github.com/flutter/engine/pull/23855) Roll Skia from 450f8565c7f3 to 372791761157 (1 revision) (cla: yes, waiting for tree to go green)
[23857](https://github.com/flutter/engine/pull/23857) Roll Fuchsia Mac SDK from 7nZajqutF... to tuJCioUf3... (cla: yes, waiting for tree to go green)
[23858](https://github.com/flutter/engine/pull/23858) Roll Skia from 372791761157 to ce75036b3eaf (4 revisions) (cla: yes, waiting for tree to go green)
[23859](https://github.com/flutter/engine/pull/23859) Revert "implemented GetMainContext() for opengl" (cla: yes, platform-ios, waiting for tree to go green)
[23860](https://github.com/flutter/engine/pull/23860) Roll Skia from ce75036b3eaf to cc6961b9ac5e (3 revisions) (cla: yes, waiting for tree to go green)
[23861](https://github.com/flutter/engine/pull/23861) Roll Dart SDK from 1db2d4d95562 to 82b4c77fb17f (2 revisions) (cla: yes, waiting for tree to go green)
[23862](https://github.com/flutter/engine/pull/23862) Remove workarounds now that type promotion accounts for local boolean variables. (cla: yes)
[23863](https://github.com/flutter/engine/pull/23863) [flutter_releases] Flutter 1.22.6 Engine Infra Cherrypick (cla: yes, platform-android, platform-ios)
[23864](https://github.com/flutter/engine/pull/23864) Roll Skia from cc6961b9ac5e to 6a272434c2b2 (3 revisions) (cla: yes, waiting for tree to go green)
[23865](https://github.com/flutter/engine/pull/23865) implemented GetMainContext() for opengl - reland (cla: yes, platform-ios)
[23867](https://github.com/flutter/engine/pull/23867) Roll Skia from 6a272434c2b2 to bfc9be0f773f (2 revisions) (cla: yes, waiting for tree to go green)
[23868](https://github.com/flutter/engine/pull/23868) Read loading unit mapping from AndroidManifest instead of strings (cla: yes, platform-android, waiting for tree to go green)
[23872](https://github.com/flutter/engine/pull/23872) Roll Skia from bfc9be0f773f to 3193ff271628 (5 revisions) (cla: yes, waiting for tree to go green)
[23873](https://github.com/flutter/engine/pull/23873) Roll Fuchsia Linux SDK from mODEe2CNk... to edqShE0QE... (cla: yes, waiting for tree to go green)
[23874](https://github.com/flutter/engine/pull/23874) Roll Dart SDK from 82b4c77fb17f to 748993c3997a (1 revision) (cla: yes, waiting for tree to go green)
[23875](https://github.com/flutter/engine/pull/23875) Roll Skia from 3193ff271628 to 2a4c0fbdca1a (3 revisions) (cla: yes, waiting for tree to go green)
[23876](https://github.com/flutter/engine/pull/23876) Roll Fuchsia Linux Toolchain from IJxh_9dNS... to 8LaTdqf7w... (cla: yes, waiting for tree to go green)
[23878](https://github.com/flutter/engine/pull/23878) Roll Skia from 2a4c0fbdca1a to 8a42b09c162e (9 revisions) (cla: yes, waiting for tree to go green)
[23881](https://github.com/flutter/engine/pull/23881) Roll Dart SDK from 748993c3997a to 2ddf810f71f6 (1 revision) (cla: yes, waiting for tree to go green)
[23882](https://github.com/flutter/engine/pull/23882) Roll Skia from 8a42b09c162e to 9702fc6f3852 (1 revision) (cla: yes, waiting for tree to go green)
[23883](https://github.com/flutter/engine/pull/23883) Roll Fuchsia Mac SDK from tuJCioUf3... to 9Lh_vPIXU... (cla: yes, waiting for tree to go green)
[23886](https://github.com/flutter/engine/pull/23886) Roll Fuchsia Linux SDK from edqShE0QE... to uMOnDLfvl... (cla: yes, waiting for tree to go green)
[23887](https://github.com/flutter/engine/pull/23887) Roll FreeType to 2.10.4 (#23666) (cla: yes)
[23888](https://github.com/flutter/engine/pull/23888) Roll Fuchsia Mac SDK from 9Lh_vPIXU... to PsYsfVNbW... (cla: yes, waiting for tree to go green)
[23890](https://github.com/flutter/engine/pull/23890) Roll Skia from 9702fc6f3852 to 07c5f52c947d (2 revisions) (cla: yes, waiting for tree to go green)
[23892](https://github.com/flutter/engine/pull/23892) Roll Skia from 07c5f52c947d to 8d29ab630996 (1 revision) (cla: yes, waiting for tree to go green)
[23893](https://github.com/flutter/engine/pull/23893) Roll Skia from 8d29ab630996 to d396cd50ff15 (1 revision) (cla: yes, waiting for tree to go green)
[23894](https://github.com/flutter/engine/pull/23894) Roll Fuchsia Linux SDK from uMOnDLfvl... to VYUnZ3Tbh... (cla: yes, waiting for tree to go green)
[23897](https://github.com/flutter/engine/pull/23897) Roll Fuchsia Mac SDK from PsYsfVNbW... to 6swTf93jz... (cla: yes, waiting for tree to go green)
[23898](https://github.com/flutter/engine/pull/23898) Roll Skia from d396cd50ff15 to 5bbf72757349 (2 revisions) (cla: yes, waiting for tree to go green)
[23900](https://github.com/flutter/engine/pull/23900) Roll Skia from 5bbf72757349 to 069e484cc3b9 (2 revisions) (cla: yes, waiting for tree to go green)
[23903](https://github.com/flutter/engine/pull/23903) Roll Fuchsia Linux SDK from VYUnZ3Tbh... to mrFdelzNr... (cla: yes, waiting for tree to go green)
[23904](https://github.com/flutter/engine/pull/23904) Roll Fuchsia Mac SDK from 6swTf93jz... to 7LGbVIHUD... (cla: yes, waiting for tree to go green)
[23905](https://github.com/flutter/engine/pull/23905) Rename TextInputManager to TextInputManagerWin32 (cla: yes)
[23907](https://github.com/flutter/engine/pull/23907) Roll Skia from 069e484cc3b9 to 607a382298b2 (1 revision) (cla: yes, waiting for tree to go green)
[23910](https://github.com/flutter/engine/pull/23910) Roll Skia from 607a382298b2 to fe8a4faa4bb2 (4 revisions) (cla: yes, waiting for tree to go green)
[23913](https://github.com/flutter/engine/pull/23913) Roll Fuchsia Linux SDK from mrFdelzNr... to GLRm7LJRm... (cla: yes, waiting for tree to go green)
[23915](https://github.com/flutter/engine/pull/23915) Use ToStringTransformer from dart frontend_server (cla: yes)
[23920](https://github.com/flutter/engine/pull/23920) Roll Skia from fe8a4faa4bb2 to bd91660b6e12 (4 revisions) (cla: yes, waiting for tree to go green)
[23922](https://github.com/flutter/engine/pull/23922) Roll Dart SDK from 2ddf810f71f6 to 70c7daa78288 (1 revision) (cla: yes, waiting for tree to go green)
[23924](https://github.com/flutter/engine/pull/23924) [macos] Support smooth resizing for Metal (cla: yes, waiting for tree to go green)
[23925](https://github.com/flutter/engine/pull/23925) Allow naming shared libraries in deferred component via AndroidManifest (cla: yes, platform-android)
[23928](https://github.com/flutter/engine/pull/23928) Adds Roboto as a global font fallback in CanvasKit (cla: yes, waiting for tree to go green)
[23929](https://github.com/flutter/engine/pull/23929) Roll Skia from bd91660b6e12 to fff4099358bd (9 revisions) (cla: yes, waiting for tree to go green)
[23930](https://github.com/flutter/engine/pull/23930) Roll Fuchsia Mac SDK from 7LGbVIHUD... to PGWwkVe7c... (cla: yes, waiting for tree to go green)
[23933](https://github.com/flutter/engine/pull/23933) rename flutter_export to flutter_darwin_export to prevent naming conf… (cla: yes, platform-ios)
[23935](https://github.com/flutter/engine/pull/23935) Roll Fuchsia Linux Toolchain from git_revision:7d48eff8ba172216fca3649a3c452de4c7c16c00 to 8LaTdqf7w... (cla: yes)
[23936](https://github.com/flutter/engine/pull/23936) Roll Fuchsia Mac Toolchain from git_revision:7d48eff8ba172216fca3649a3c452de4c7c16c00 to 139p8dSfW... (cla: yes, waiting for tree to go green)
[23937](https://github.com/flutter/engine/pull/23937) Roll Skia from fff4099358bd to 3f31f3027f69 (10 revisions) (cla: yes, waiting for tree to go green)
[23938](https://github.com/flutter/engine/pull/23938) Roll Dart SDK from 70c7daa78288 to f9e1d1ab4001 (1 revision) (cla: yes, waiting for tree to go green)
[23939](https://github.com/flutter/engine/pull/23939) Roll Skia from 3f31f3027f69 to 3419dda0588d (1 revision) (cla: yes, waiting for tree to go green)
[23940](https://github.com/flutter/engine/pull/23940) Roll Skia from 3419dda0588d to 76389b7d2444 (1 revision) (cla: yes, waiting for tree to go green)
[23943](https://github.com/flutter/engine/pull/23943) Roll Fuchsia Linux SDK from GLRm7LJRm... to DLfskqEUx... (cla: yes, waiting for tree to go green)
[23945](https://github.com/flutter/engine/pull/23945) Roll Skia from 76389b7d2444 to 02621c33b426 (3 revisions) (cla: yes, waiting for tree to go green)
[23946](https://github.com/flutter/engine/pull/23946) Roll Dart SDK from f9e1d1ab4001 to 2607b01bec99 (2 revisions) (cla: yes, waiting for tree to go green)
[23949](https://github.com/flutter/engine/pull/23949) Roll Skia from 02621c33b426 to bbc5288f2bb1 (4 revisions) (cla: yes, waiting for tree to go green)
[23953](https://github.com/flutter/engine/pull/23953) Roll Dart SDK from 2607b01bec99 to 38c2cddbe277 (2 revisions) (cla: yes, waiting for tree to go green)
[23954](https://github.com/flutter/engine/pull/23954) add ffi_allocation_patch.dart to libraries.yaml 2 (cla: yes)
[23956](https://github.com/flutter/engine/pull/23956) Roll Skia from bbc5288f2bb1 to 98c990eba005 (1 revision) (cla: yes, waiting for tree to go green)
[23957](https://github.com/flutter/engine/pull/23957) Roll Fuchsia Mac SDK from PGWwkVe7c... to FtwF654ce... (cla: yes, waiting for tree to go green)
[23958](https://github.com/flutter/engine/pull/23958) Roll Skia from 98c990eba005 to f661ec788b14 (3 revisions) (cla: yes, waiting for tree to go green)
[23959](https://github.com/flutter/engine/pull/23959) Roll Dart SDK from 38c2cddbe277 to 15dfe858c4a6 (1 revision) (cla: yes, waiting for tree to go green)
### waiting for tree to go green - 1287 pull request(s)
[17881](https://github.com/flutter/engine/pull/17881) Enabled metal on ios simulator (cla: yes, waiting for tree to go green)
[18733](https://github.com/flutter/engine/pull/18733) delete opengl texture when it detatch from surfacetexture. (cla: yes, waiting for tree to go green)
[19292](https://github.com/flutter/engine/pull/19292) [iOS] Fix platfotm view called multiple times (cla: yes, platform-ios, waiting for tree to go green)
[19405](https://github.com/flutter/engine/pull/19405) Add windows plugin texture support (Work in progress (WIP), cla: yes, waiting for tree to go green)
[20309](https://github.com/flutter/engine/pull/20309) Exposing ColorFilter to ImageFilter conversion and Compose() (cla: yes, waiting for tree to go green)
[20472](https://github.com/flutter/engine/pull/20472) set old_gen_heap_size to half of available memory on iOS (cla: yes, platform-ios, waiting for tree to go green)
[20643](https://github.com/flutter/engine/pull/20643) SKP based shader warmup (cla: yes, waiting for tree to go green)
[20794](https://github.com/flutter/engine/pull/20794) Implement browser history class for router widget (cla: yes, platform-web, waiting for tree to go green)
[20868](https://github.com/flutter/engine/pull/20868) Deprecate Android v1 embedding classes (cla: yes, platform-android, waiting for tree to go green)
[20962](https://github.com/flutter/engine/pull/20962) Split out EmbedderTest{Context,Compositor} to handle software and GL separately (cla: yes, waiting for tree to go green)
[20972](https://github.com/flutter/engine/pull/20972) Added keyEvent support for iOS 13.4+ (cla: yes, platform-ios, waiting for tree to go green)
[21059](https://github.com/flutter/engine/pull/21059) Add a new raster status `kSkipAndRetry` frame (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21062](https://github.com/flutter/engine/pull/21062) Make drain() consistently asynchronous. (cla: yes, waiting for tree to go green)
[21074](https://github.com/flutter/engine/pull/21074) Roll Skia from fb5e0ebef07c to 0b6bf1c9668e (2 revisions) (cla: yes, waiting for tree to go green)
[21076](https://github.com/flutter/engine/pull/21076) add a line to build host for scenario tests (cla: yes, waiting for tree to go green)
[21079](https://github.com/flutter/engine/pull/21079) Roll Fuchsia Mac SDK from 5o9onBKYd... to b9rM1nBK1... (cla: yes, waiting for tree to go green)
[21085](https://github.com/flutter/engine/pull/21085) Roll Skia from 0b6bf1c9668e to 9d6f955f52e9 (8 revisions) (cla: yes, waiting for tree to go green)
[21086](https://github.com/flutter/engine/pull/21086) Roll Fuchsia Linux SDK from l8baHga4c... to XIejclW2X... (cla: yes, waiting for tree to go green)
[21090](https://github.com/flutter/engine/pull/21090) Roll Skia from 9d6f955f52e9 to bbe69951b416 (4 revisions) (cla: yes, waiting for tree to go green)
[21092](https://github.com/flutter/engine/pull/21092) Roll Dart SDK from 1abce6d054ad to 14f1940f537e (1 revision) (cla: yes, waiting for tree to go green)
[21093](https://github.com/flutter/engine/pull/21093) Roll Dart SDK from 14f1940f537e to 1c887123b92c (1 revision) (cla: yes, waiting for tree to go green)
[21096](https://github.com/flutter/engine/pull/21096) Roll Skia from bbe69951b416 to 6518d77a2200 (1 revision) (cla: yes, waiting for tree to go green)
[21101](https://github.com/flutter/engine/pull/21101) Roll Fuchsia Mac SDK from b9rM1nBK1... to ggoll70iR... (cla: yes, waiting for tree to go green)
[21107](https://github.com/flutter/engine/pull/21107) Fix a AppLifecycleTest present time race between the animation and the rest of the test (cla: yes, platform-ios, waiting for tree to go green)
[21109](https://github.com/flutter/engine/pull/21109) Fix erroneous dartdoc @tool directive. (cla: yes, waiting for tree to go green)
[21121](https://github.com/flutter/engine/pull/21121) Roll Fuchsia Linux SDK from XIejclW2X... to f3YqG3OdI... (cla: yes, waiting for tree to go green)
[21122](https://github.com/flutter/engine/pull/21122) Roll Skia from 6518d77a2200 to 9eb848ae8218 (20 revisions) (cla: yes, waiting for tree to go green)
[21124](https://github.com/flutter/engine/pull/21124) Roll Skia from 9eb848ae8218 to 582c5a9a84ac (1 revision) (cla: yes, waiting for tree to go green)
[21128](https://github.com/flutter/engine/pull/21128) Roll Dart SDK from 1c887123b92c to d2ba4fd3275e (1 revision) (cla: yes, waiting for tree to go green)
[21131](https://github.com/flutter/engine/pull/21131) Roll Fuchsia Mac SDK from ggoll70iR... to oINI9fspF... (cla: yes, waiting for tree to go green)
[21132](https://github.com/flutter/engine/pull/21132) Roll Fuchsia Linux SDK from f3YqG3OdI... to hO-ki0WJb... (cla: yes, waiting for tree to go green)
[21133](https://github.com/flutter/engine/pull/21133) Roll Skia from 582c5a9a84ac to 186866c46179 (1 revision) (cla: yes, waiting for tree to go green)
[21134](https://github.com/flutter/engine/pull/21134) Roll Dart SDK from d2ba4fd3275e to 3533cfda999e (1 revision) (cla: yes, waiting for tree to go green)
[21136](https://github.com/flutter/engine/pull/21136) Roll Fuchsia Mac SDK from oINI9fspF... to C73kzh_IF... (cla: yes, waiting for tree to go green)
[21137](https://github.com/flutter/engine/pull/21137) Roll Dart SDK from 3533cfda999e to 4bf1f624d06e (1 revision) (cla: yes, waiting for tree to go green)
[21138](https://github.com/flutter/engine/pull/21138) Roll Fuchsia Linux SDK from hO-ki0WJb... to 0XXjmMun1... (cla: yes, waiting for tree to go green)
[21139](https://github.com/flutter/engine/pull/21139) Roll Dart SDK from 4bf1f624d06e to b6f67aa2cc72 (1 revision) (cla: yes, waiting for tree to go green)
[21140](https://github.com/flutter/engine/pull/21140) Roll Skia from 186866c46179 to b711737c1384 (1 revision) (cla: yes, waiting for tree to go green)
[21141](https://github.com/flutter/engine/pull/21141) Roll Fuchsia Mac SDK from C73kzh_IF... to 78RTO77Tu... (cla: yes, waiting for tree to go green)
[21142](https://github.com/flutter/engine/pull/21142) Roll Fuchsia Linux SDK from 0XXjmMun1... to KA_kDgY7C... (cla: yes, waiting for tree to go green)
[21143](https://github.com/flutter/engine/pull/21143) Roll Fuchsia Mac SDK from 78RTO77Tu... to m7z9dEdGg... (cla: yes, waiting for tree to go green)
[21144](https://github.com/flutter/engine/pull/21144) Roll Fuchsia Linux SDK from KA_kDgY7C... to zKQw_oHsx... (cla: yes, waiting for tree to go green)
[21146](https://github.com/flutter/engine/pull/21146) Roll Skia from b711737c1384 to 081bc32703b7 (4 revisions) (cla: yes, waiting for tree to go green)
[21147](https://github.com/flutter/engine/pull/21147) Roll Dart SDK from b6f67aa2cc72 to 27d9970dfeb1 (1 revision) (cla: yes, waiting for tree to go green)
[21151](https://github.com/flutter/engine/pull/21151) Roll Fuchsia Mac SDK from m7z9dEdGg... to arL8NjPHW... (cla: yes, waiting for tree to go green)
[21156](https://github.com/flutter/engine/pull/21156) Roll Skia from 081bc32703b7 to 34b19c575066 (7 revisions) (cla: yes, waiting for tree to go green)
[21157](https://github.com/flutter/engine/pull/21157) Remove suppression of null-related warnings (cla: yes, waiting for tree to go green)
[21159](https://github.com/flutter/engine/pull/21159) Roll Skia from 34b19c575066 to 6253b5787df8 (7 revisions) (cla: yes, waiting for tree to go green)
[21160](https://github.com/flutter/engine/pull/21160) Roll Dart SDK from 27d9970dfeb1 to c835079edda4 (2 revisions) (cla: yes, waiting for tree to go green)
[21162](https://github.com/flutter/engine/pull/21162) Roll Skia from 6253b5787df8 to 37fd658981dd (1 revision) (cla: yes, waiting for tree to go green)
[21166](https://github.com/flutter/engine/pull/21166) Define _USE_MATH_DEFINES on Windows where needed (cla: yes, waiting for tree to go green)
[21169](https://github.com/flutter/engine/pull/21169) Roll Fuchsia Mac SDK from arL8NjPHW... to 8q8xxvY60... (cla: yes, waiting for tree to go green)
[21170](https://github.com/flutter/engine/pull/21170) Roll Skia from 37fd658981dd to 2bc4077c9e42 (4 revisions) (cla: yes, waiting for tree to go green)
[21171](https://github.com/flutter/engine/pull/21171) Roll Fuchsia Linux SDK from zKQw_oHsx... to -iBBiPj1C... (cla: yes, waiting for tree to go green)
[21172](https://github.com/flutter/engine/pull/21172) Roll Skia from 2bc4077c9e42 to aecd484d03d7 (2 revisions) (cla: yes, waiting for tree to go green)
[21178](https://github.com/flutter/engine/pull/21178) Roll Skia from aecd484d03d7 to 22aa7d791515 (5 revisions) (cla: yes, waiting for tree to go green)
[21179](https://github.com/flutter/engine/pull/21179) Discard wrong size layer tree instead of rendering it (cla: yes, perf: speed, severe: performance, waiting for tree to go green)
[21181](https://github.com/flutter/engine/pull/21181) Roll Skia from 22aa7d791515 to d911c91d8895 (5 revisions) (cla: yes, waiting for tree to go green)
[21183](https://github.com/flutter/engine/pull/21183) Roll Skia from d911c91d8895 to 6f3ed7f72cd6 (3 revisions) (cla: yes, waiting for tree to go green)
[21186](https://github.com/flutter/engine/pull/21186) Roll Skia from 6f3ed7f72cd6 to 50dd7e15af47 (3 revisions) (cla: yes, waiting for tree to go green)
[21190](https://github.com/flutter/engine/pull/21190) Roll Skia from 50dd7e15af47 to a195d101f96c (2 revisions) (cla: yes, waiting for tree to go green)
[21191](https://github.com/flutter/engine/pull/21191) Account for current open image in FlutterImageView (cla: yes, platform-android, waiting for tree to go green)
[21197](https://github.com/flutter/engine/pull/21197) Roll Fuchsia Linux SDK from -iBBiPj1C... to sXR21ye3r... (cla: yes, waiting for tree to go green)
[21205](https://github.com/flutter/engine/pull/21205) Roll Skia from a195d101f96c to 3e72b3ff8ca7 (7 revisions) (cla: yes, waiting for tree to go green)
[21206](https://github.com/flutter/engine/pull/21206) Roll Fuchsia Mac SDK from 8q8xxvY60... to VpUd_W9Oi... (cla: yes, waiting for tree to go green)
[21209](https://github.com/flutter/engine/pull/21209) Roll Dart SDK from c835079edda4 to 7476b58cc9d0 (8 revisions) (cla: yes, waiting for tree to go green)
[21210](https://github.com/flutter/engine/pull/21210) Roll Skia from 3e72b3ff8ca7 to 2610e8261e9e (4 revisions) (cla: yes, waiting for tree to go green)
[21212](https://github.com/flutter/engine/pull/21212) Roll Fuchsia Linux SDK from sXR21ye3r... to G5UItrFeP... (cla: yes, waiting for tree to go green)
[21216](https://github.com/flutter/engine/pull/21216) Roll Dart SDK from 7476b58cc9d0 to 9b3b9c26a343 (2 revisions) (cla: yes, waiting for tree to go green)
[21217](https://github.com/flutter/engine/pull/21217) Add missing cstring header (fixes fl_renderer_wayland.cc) (cla: yes, waiting for tree to go green)
[21220](https://github.com/flutter/engine/pull/21220) Roll Skia from 2610e8261e9e to 2564767d24e5 (5 revisions) (cla: yes, waiting for tree to go green)
[21221](https://github.com/flutter/engine/pull/21221) Roll Fuchsia Mac SDK from VpUd_W9Oi... to 13BzEPO47... (cla: yes, waiting for tree to go green)
[21222](https://github.com/flutter/engine/pull/21222) Roll Dart SDK from 9b3b9c26a343 to 83365979ea85 (1 revision) (cla: yes, waiting for tree to go green)
[21224](https://github.com/flutter/engine/pull/21224) Roll Dart SDK from 83365979ea85 to e41a6008746d (1 revision) (cla: yes, waiting for tree to go green)
[21230](https://github.com/flutter/engine/pull/21230) Roll Skia from 2564767d24e5 to bf66ffbbd4ce (27 revisions) (cla: yes, waiting for tree to go green)
[21232](https://github.com/flutter/engine/pull/21232) Roll Fuchsia Linux SDK from G5UItrFeP... to 91U3isvKn... (cla: yes, waiting for tree to go green)
[21233](https://github.com/flutter/engine/pull/21233) Roll Dart SDK from e41a6008746d to eb24e3324908 (1 revision) (cla: yes, waiting for tree to go green)
[21235](https://github.com/flutter/engine/pull/21235) Roll Skia from bf66ffbbd4ce to f9fdf291c567 (1 revision) (cla: yes, waiting for tree to go green)
[21238](https://github.com/flutter/engine/pull/21238) Roll Fuchsia Mac SDK from 13BzEPO47... to 2nHpC_AEO... (cla: yes, waiting for tree to go green)
[21239](https://github.com/flutter/engine/pull/21239) Roll Dart SDK from eb24e3324908 to 99970d646dc9 (1 revision) (cla: yes, waiting for tree to go green)
[21242](https://github.com/flutter/engine/pull/21242) Roll Skia from f9fdf291c567 to 51a7f9559ad4 (5 revisions) (cla: yes, waiting for tree to go green)
[21244](https://github.com/flutter/engine/pull/21244) Roll Skia from 51a7f9559ad4 to 12d06a38427d (3 revisions) (cla: yes, waiting for tree to go green)
[21245](https://github.com/flutter/engine/pull/21245) Roll Dart SDK from 99970d646dc9 to fcaedc6d9587 (3 revisions) (cla: yes, waiting for tree to go green)
[21246](https://github.com/flutter/engine/pull/21246) Roll Fuchsia Linux SDK from 91U3isvKn... to Qi0ptKLxN... (cla: yes, waiting for tree to go green)
[21248](https://github.com/flutter/engine/pull/21248) avoid hard coding OS (cla: yes, waiting for tree to go green)
[21249](https://github.com/flutter/engine/pull/21249) Roll Skia from 12d06a38427d to 45f41b376260 (6 revisions) (cla: yes, waiting for tree to go green)
[21250](https://github.com/flutter/engine/pull/21250) Roll Skia from 45f41b376260 to c21dc07a78b9 (4 revisions) (cla: yes, waiting for tree to go green)
[21257](https://github.com/flutter/engine/pull/21257) Roll Dart SDK from fcaedc6d9587 to 2cec6af2652f (1 revision) (cla: yes, waiting for tree to go green)
[21258](https://github.com/flutter/engine/pull/21258) Workaround for an Android emulator EGL bug that can cause inaccurate GL version strings (cla: yes, platform-android, waiting for tree to go green)
[21259](https://github.com/flutter/engine/pull/21259) Do not pass invalid platform view rendering surfaces to the rasterizer (cla: yes, waiting for tree to go green)
[21260](https://github.com/flutter/engine/pull/21260) Roll Skia from c21dc07a78b9 to 31634288fdf3 (5 revisions) (cla: yes, waiting for tree to go green)
[21261](https://github.com/flutter/engine/pull/21261) Roll Dart SDK from 2cec6af2652f to 6f333dbd6a2b (1 revision) (cla: yes, waiting for tree to go green)
[21262](https://github.com/flutter/engine/pull/21262) Roll Fuchsia Mac SDK from 2nHpC_AEO... to i2PBGu2n-... (cla: yes, waiting for tree to go green)
[21265](https://github.com/flutter/engine/pull/21265) Roll Fuchsia Linux SDK from Qi0ptKLxN... to K2Oiy-AYh... (cla: yes, waiting for tree to go green)
[21266](https://github.com/flutter/engine/pull/21266) Roll Skia from 31634288fdf3 to feb4d10f7b2d (4 revisions) (cla: yes, waiting for tree to go green)
[21270](https://github.com/flutter/engine/pull/21270) Fix boolean value checks in StandardMessageCodec (cla: yes, platform-android, waiting for tree to go green)
[21276](https://github.com/flutter/engine/pull/21276) Roll Dart SDK from 6f333dbd6a2b to 8c45e2e29cb4 (3 revisions) (cla: yes, waiting for tree to go green)
[21277](https://github.com/flutter/engine/pull/21277) Dark mode friendly iOS debugging message (cla: yes, platform-ios, waiting for tree to go green)
[21278](https://github.com/flutter/engine/pull/21278) Roll Dart SDK from 8c45e2e29cb4 to 8bd3017291e5 (1 revision) (cla: yes, waiting for tree to go green)
[21279](https://github.com/flutter/engine/pull/21279) Roll Fuchsia Mac SDK from i2PBGu2n-... to WsUbW2ZnA... (cla: yes, waiting for tree to go green)
[21298](https://github.com/flutter/engine/pull/21298) implement decodeFromPixels (cla: yes, waiting for tree to go green)
[21301](https://github.com/flutter/engine/pull/21301) Do not create a TestGLSurface for software-only rendering in EmbedderTest (cla: yes, waiting for tree to go green)
[21303](https://github.com/flutter/engine/pull/21303) [iOS TextInput] Avoid Unnecessary UndateEditingClient Calls (cla: yes, platform-ios, waiting for tree to go green)
[21304](https://github.com/flutter/engine/pull/21304) Implement toString for Images on web (cla: yes, waiting for tree to go green)
[21307](https://github.com/flutter/engine/pull/21307) Disconnect the view's AndroidKeyProcessor when detaching from the engine (cla: yes, platform-android, waiting for tree to go green)
[21308](https://github.com/flutter/engine/pull/21308) [manual roll] Roll Fuchsia Linux SDK from K2Oiy-AYh... to 2rXyLF0YK (cla: yes, waiting for tree to go green)
[21309](https://github.com/flutter/engine/pull/21309) Roll Skia from feb4d10f7b2d to 371fde549e35 (46 revisions) (cla: yes, waiting for tree to go green)
[21310](https://github.com/flutter/engine/pull/21310) Roll Dart SDK from 8bd3017291e5 to c660a695266a (7 revisions) (cla: yes, waiting for tree to go green)
[21311](https://github.com/flutter/engine/pull/21311) Relax test around a11y updates (cla: yes, waiting for tree to go green)
[21312](https://github.com/flutter/engine/pull/21312) Roll Skia from 371fde549e35 to 1a49a5334c36 (1 revision) (cla: yes, waiting for tree to go green)
[21313](https://github.com/flutter/engine/pull/21313) [web] Add canUpdateAsMatch to PersistedPlatformView. (cla: yes, waiting for tree to go green)
[21315](https://github.com/flutter/engine/pull/21315) Roll Dart SDK from c660a695266a to c61a0818e4bd (1 revision) (cla: yes, waiting for tree to go green)
[21317](https://github.com/flutter/engine/pull/21317) Roll Fuchsia Linux SDK from 2rXyLF0YK... to VgNGzw-DQ... (cla: yes, waiting for tree to go green)
[21318](https://github.com/flutter/engine/pull/21318) Roll Skia from 1a49a5334c36 to 7a1f241c0134 (4 revisions) (cla: yes, waiting for tree to go green)
[21319](https://github.com/flutter/engine/pull/21319) Roll Fuchsia Mac SDK from WsUbW2ZnA... to WcbX470pS... (cla: yes, waiting for tree to go green)
[21320](https://github.com/flutter/engine/pull/21320) Roll Dart SDK from c61a0818e4bd to 2b8d00ac48e7 (1 revision) (cla: yes, waiting for tree to go green)
[21321](https://github.com/flutter/engine/pull/21321) Roll Skia from 7a1f241c0134 to 77960d9addc8 (1 revision) (cla: yes, waiting for tree to go green)
[21322](https://github.com/flutter/engine/pull/21322) Roll Skia from 77960d9addc8 to a38945abe337 (5 revisions) (cla: yes, waiting for tree to go green)
[21323](https://github.com/flutter/engine/pull/21323) Roll Skia from a38945abe337 to 84a008fa55b0 (2 revisions) (cla: yes, waiting for tree to go green)
[21326](https://github.com/flutter/engine/pull/21326) Roll Skia from 84a008fa55b0 to 187b04b35777 (1 revision) (cla: yes, waiting for tree to go green)
[21328](https://github.com/flutter/engine/pull/21328) Roll Skia from 187b04b35777 to c61c895393ea (5 revisions) (cla: yes, waiting for tree to go green)
[21329](https://github.com/flutter/engine/pull/21329) [a11y] Flutter sends node roles as part of Fuchsia semantics updates. (cla: yes, waiting for tree to go green)
[21330](https://github.com/flutter/engine/pull/21330) Retain the WindowInsetsAnimation callback if code shrinking is enabled (cla: yes, platform-android, waiting for tree to go green)
[21332](https://github.com/flutter/engine/pull/21332) Roll Fuchsia Linux SDK from VgNGzw-DQ... to VGnJQMPQM... (cla: yes, waiting for tree to go green)
[21340](https://github.com/flutter/engine/pull/21340) Roll Skia from c61c895393ea to 2b469ebd0627 (9 revisions) (cla: yes, waiting for tree to go green)
[21343](https://github.com/flutter/engine/pull/21343) Roll Skia from 2b469ebd0627 to 3eb813e0cc13 (2 revisions) (cla: yes, waiting for tree to go green)
[21349](https://github.com/flutter/engine/pull/21349) Roll Fuchsia Linux SDK from VGnJQMPQM... to IWfLWIJ93... (cla: yes, waiting for tree to go green)
[21350](https://github.com/flutter/engine/pull/21350) Locale -> LanguageRange conversion to be more general in Android platformResolvedLocale (cla: yes, platform-android, waiting for tree to go green)
[21351](https://github.com/flutter/engine/pull/21351) Roll Skia from 3eb813e0cc13 to 18f4b1c7e31a (4 revisions) (cla: yes, waiting for tree to go green)
[21352](https://github.com/flutter/engine/pull/21352) Roll Skia from 18f4b1c7e31a to 443d2c17b79b (3 revisions) (cla: yes, waiting for tree to go green)
[21354](https://github.com/flutter/engine/pull/21354) Roll Skia from 443d2c17b79b to ba615e892fcb (1 revision) (cla: yes, waiting for tree to go green)
[21355](https://github.com/flutter/engine/pull/21355) Embedder API Support for display settings (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21357](https://github.com/flutter/engine/pull/21357) Roll Skia from ba615e892fcb to 81fc1fc3bfe6 (2 revisions) (cla: yes, waiting for tree to go green)
[21358](https://github.com/flutter/engine/pull/21358) Roll Fuchsia Mac SDK from WcbX470pS... to z7zaxhmps... (cla: yes, waiting for tree to go green)
[21363](https://github.com/flutter/engine/pull/21363) Roll Skia from 81fc1fc3bfe6 to 7b97b3cb2bd0 (5 revisions) (cla: yes, waiting for tree to go green)
[21364](https://github.com/flutter/engine/pull/21364) Apply dpr transform to fuchsia accessibility bridge (cla: yes, waiting for tree to go green)
[21365](https://github.com/flutter/engine/pull/21365) Roll Skia from 7b97b3cb2bd0 to 59b2a92c96ba (4 revisions) (cla: yes, waiting for tree to go green)
[21368](https://github.com/flutter/engine/pull/21368) Roll Skia from 59b2a92c96ba to 1b89eb742a66 (5 revisions) (cla: yes, waiting for tree to go green)
[21369](https://github.com/flutter/engine/pull/21369) Roll Fuchsia Linux SDK from IWfLWIJ93... to -grWUcdOo... (cla: yes, waiting for tree to go green)
[21370](https://github.com/flutter/engine/pull/21370) fix EnginePicture.toImage; implement rawRgba toByteData; add test (cla: yes, platform-web, waiting for tree to go green)
[21371](https://github.com/flutter/engine/pull/21371) isCloneOf for Image (cla: yes, waiting for tree to go green)
[21373](https://github.com/flutter/engine/pull/21373) Roll Skia from 1b89eb742a66 to fc396a85e4c8 (1 revision) (cla: yes, waiting for tree to go green)
[21374](https://github.com/flutter/engine/pull/21374) Roll Skia from fc396a85e4c8 to 96d9b52bb948 (2 revisions) (cla: yes, waiting for tree to go green)
[21376](https://github.com/flutter/engine/pull/21376) Roll Dart SDK from 2b8d00ac48e7 to 616bc676e75b (1 revision) (cla: yes, waiting for tree to go green)
[21377](https://github.com/flutter/engine/pull/21377) Roll Fuchsia Mac SDK from z7zaxhmps... to v7dguVBSA... (cla: yes, waiting for tree to go green)
[21378](https://github.com/flutter/engine/pull/21378) Roll Skia from 96d9b52bb948 to cf43fc676856 (1 revision) (cla: yes, waiting for tree to go green)
[21380](https://github.com/flutter/engine/pull/21380) Roll Dart SDK from 616bc676e75b to aac512605bfe (2 revisions) (cla: yes, waiting for tree to go green)
[21381](https://github.com/flutter/engine/pull/21381) Roll Fuchsia Linux SDK from -grWUcdOo... to NeYDIjo58... (cla: yes, waiting for tree to go green)
[21384](https://github.com/flutter/engine/pull/21384) Roll Skia from cf43fc676856 to e74cebefdeeb (6 revisions) (cla: yes, waiting for tree to go green)
[21385](https://github.com/flutter/engine/pull/21385) Roll Skia from e74cebefdeeb to 6e51d92a0278 (7 revisions) (cla: yes, waiting for tree to go green)
[21386](https://github.com/flutter/engine/pull/21386) Split out embedder_unittests test cases into GL and non-GL tests (cla: yes, waiting for tree to go green)
[21387](https://github.com/flutter/engine/pull/21387) Roll Dart SDK from aac512605bfe to 62aea7e5112a (1 revision) (cla: yes, waiting for tree to go green)
[21390](https://github.com/flutter/engine/pull/21390) Roll Skia from 6e51d92a0278 to fe3d9a23095e (2 revisions) (cla: yes, waiting for tree to go green)
[21393](https://github.com/flutter/engine/pull/21393) Roll Skia from fe3d9a23095e to 03c31eca19ce (1 revision) (cla: yes, waiting for tree to go green)
[21395](https://github.com/flutter/engine/pull/21395) Roll Dart SDK from 62aea7e5112a to eb8e6232da02 (1 revision) (cla: yes, waiting for tree to go green)
[21398](https://github.com/flutter/engine/pull/21398) Roll Fuchsia Mac SDK from v7dguVBSA... to xnB_uJM8T... (cla: yes, waiting for tree to go green)
[21399](https://github.com/flutter/engine/pull/21399) Roll Skia from 03c31eca19ce to 5227335b0add (2 revisions) (cla: yes, waiting for tree to go green)
[21402](https://github.com/flutter/engine/pull/21402) Roll Skia from 5227335b0add to 1748c6a3b8c8 (1 revision) (cla: yes, waiting for tree to go green)
[21403](https://github.com/flutter/engine/pull/21403) Roll Fuchsia Linux SDK from NeYDIjo58... to BFLXvCMVi... (cla: yes, waiting for tree to go green)
[21405](https://github.com/flutter/engine/pull/21405) Add workaround for missing fl_method_xxx_response_get_type() symbols (cla: yes, waiting for tree to go green)
[21407](https://github.com/flutter/engine/pull/21407) Roll Dart SDK from eb8e6232da02 to 13b3f2d7b6ea (3 revisions) (cla: yes, waiting for tree to go green)
[21410](https://github.com/flutter/engine/pull/21410) Roll Skia from 1748c6a3b8c8 to 3b88c0772e89 (1 revision) (cla: yes, waiting for tree to go green)
[21411](https://github.com/flutter/engine/pull/21411) Roll Skia from 3b88c0772e89 to d7ab45027877 (1 revision) (cla: yes, waiting for tree to go green)
[21414](https://github.com/flutter/engine/pull/21414) Roll Fuchsia Mac SDK from xnB_uJM8T... to _e0onA6gY... (cla: yes, waiting for tree to go green)
[21415](https://github.com/flutter/engine/pull/21415) Roll Skia from d7ab45027877 to aeae3a58e3da (6 revisions) (cla: yes, waiting for tree to go green)
[21417](https://github.com/flutter/engine/pull/21417) Roll Skia from aeae3a58e3da to 7bd60430299f (1 revision) (cla: yes, waiting for tree to go green)
[21418](https://github.com/flutter/engine/pull/21418) Enable embedder_unittests on Fuchsia (cla: yes, waiting for tree to go green)
[21419](https://github.com/flutter/engine/pull/21419) Roll Dart SDK from 13b3f2d7b6ea to 4fb134a228c7 (2 revisions) (cla: yes, waiting for tree to go green)
[21421](https://github.com/flutter/engine/pull/21421) Roll Skia from 7bd60430299f to 68861e391313 (14 revisions) (cla: yes, waiting for tree to go green)
[21424](https://github.com/flutter/engine/pull/21424) Roll Skia from 68861e391313 to a05d27b170ee (1 revision) (cla: yes, waiting for tree to go green)
[21425](https://github.com/flutter/engine/pull/21425) Roll Skia from a05d27b170ee to 5e1545fa00c8 (1 revision) (cla: yes, waiting for tree to go green)
[21426](https://github.com/flutter/engine/pull/21426) Roll Dart SDK from 4fb134a228c7 to db7eb2549480 (1 revision) (cla: yes, waiting for tree to go green)
[21427](https://github.com/flutter/engine/pull/21427) Roll Dart SDK from db7eb2549480 to 200e8da5072a (1 revision) (cla: yes, waiting for tree to go green)
[21430](https://github.com/flutter/engine/pull/21430) Roll Fuchsia Linux SDK from XcAUWQUZm... to 0nW5DAxcC... (cla: yes, waiting for tree to go green)
[21431](https://github.com/flutter/engine/pull/21431) Roll Skia from 5e1545fa00c8 to 766eeb2ac325 (1 revision) (cla: yes, waiting for tree to go green)
[21433](https://github.com/flutter/engine/pull/21433) Roll Skia from 766eeb2ac325 to 5648572f4a94 (1 revision) (cla: yes, waiting for tree to go green)
[21434](https://github.com/flutter/engine/pull/21434) Roll Fuchsia Mac SDK from _e0onA6gY... to SUSVNJcX5... (cla: yes, waiting for tree to go green)
[21435](https://github.com/flutter/engine/pull/21435) Roll Skia from 5648572f4a94 to eabce08bb2f2 (1 revision) (cla: yes, waiting for tree to go green)
[21437](https://github.com/flutter/engine/pull/21437) Roll Dart SDK from 200e8da5072a to c938793e2d6f (1 revision) (cla: yes, waiting for tree to go green)
[21438](https://github.com/flutter/engine/pull/21438) Respect the --debug option in Firefox (cla: yes, platform-web, waiting for tree to go green)
[21439](https://github.com/flutter/engine/pull/21439) Roll Fuchsia Linux SDK from 0nW5DAxcC... to xdxm8rU8b... (cla: yes, waiting for tree to go green)
[21440](https://github.com/flutter/engine/pull/21440) Roll Dart SDK from c938793e2d6f to fe83360d3a7c (1 revision) (cla: yes, waiting for tree to go green)
[21441](https://github.com/flutter/engine/pull/21441) Roll Fuchsia Mac SDK from SUSVNJcX5... to v5Ko06GkT... (cla: yes, waiting for tree to go green)
[21443](https://github.com/flutter/engine/pull/21443) Roll Fuchsia Linux SDK from xdxm8rU8b... to ej-CkfSra... (cla: yes, waiting for tree to go green)
[21445](https://github.com/flutter/engine/pull/21445) Roll Fuchsia Mac SDK from v5Ko06GkT... to k_lSjZxIH... (cla: yes, waiting for tree to go green)
[21446](https://github.com/flutter/engine/pull/21446) Roll Dart SDK from fe83360d3a7c to 44e4f3958019 (1 revision) (cla: yes, waiting for tree to go green)
[21447](https://github.com/flutter/engine/pull/21447) Roll Fuchsia Linux SDK from ej-CkfSra... to HNNs4gfuM... (cla: yes, waiting for tree to go green)
[21448](https://github.com/flutter/engine/pull/21448) Roll Skia from eabce08bb2f2 to ad6aeace6eee (2 revisions) (cla: yes, waiting for tree to go green)
[21451](https://github.com/flutter/engine/pull/21451) Roll Dart SDK from 44e4f3958019 to e2a4eaba73b8 (1 revision) (cla: yes, waiting for tree to go green)
[21453](https://github.com/flutter/engine/pull/21453) Roll Dart SDK from e2a4eaba73b8 to 13deada5b267 (1 revision) (cla: yes, waiting for tree to go green)
[21454](https://github.com/flutter/engine/pull/21454) Roll Fuchsia Mac SDK from k_lSjZxIH... to qyoO7f9Sk... (cla: yes, waiting for tree to go green)
[21455](https://github.com/flutter/engine/pull/21455) Roll Skia from ad6aeace6eee to 6a189f23af5e (6 revisions) (cla: yes, waiting for tree to go green)
[21456](https://github.com/flutter/engine/pull/21456) Revert multiple display support for embedder API (cla: yes, waiting for tree to go green)
[21461](https://github.com/flutter/engine/pull/21461) Roll Fuchsia Linux SDK from HNNs4gfuM... to 2NPr4uMi-... (cla: yes, waiting for tree to go green)
[21462](https://github.com/flutter/engine/pull/21462) Run embedder_tests on Fuchsia CI (cla: yes, waiting for tree to go green)
[21463](https://github.com/flutter/engine/pull/21463) Roll Dart SDK from 13deada5b267 to 58248a54dd58 (1 revision) (cla: yes, waiting for tree to go green)
[21464](https://github.com/flutter/engine/pull/21464) Reland multiple display support for embedder API (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21465](https://github.com/flutter/engine/pull/21465) Roll Skia from 6a189f23af5e to d82e2c1ec126 (15 revisions) (cla: yes, waiting for tree to go green)
[21469](https://github.com/flutter/engine/pull/21469) Roll Skia from d82e2c1ec126 to 427d8ebf308c (4 revisions) (cla: yes, waiting for tree to go green)
[21471](https://github.com/flutter/engine/pull/21471) Roll Skia from 427d8ebf308c to e96cdd18ac5f (6 revisions) (cla: yes, waiting for tree to go green)
[21472](https://github.com/flutter/engine/pull/21472) Roll Dart SDK from 58248a54dd58 to 281f1e388107 (1 revision) (cla: yes, waiting for tree to go green)
[21475](https://github.com/flutter/engine/pull/21475) Roll Dart SDK from 281f1e388107 to 4c0245356649 (1 revision) (cla: yes, waiting for tree to go green)
[21476](https://github.com/flutter/engine/pull/21476) Roll Fuchsia Mac SDK from qyoO7f9Sk... to iiCa4hab1... (cla: yes, waiting for tree to go green)
[21477](https://github.com/flutter/engine/pull/21477) Roll Skia from e96cdd18ac5f to 1fdcd389873d (1 revision) (cla: yes, waiting for tree to go green)
[21479](https://github.com/flutter/engine/pull/21479) Roll Skia from 1fdcd389873d to 01bbe189b0d0 (1 revision) (cla: yes, waiting for tree to go green)
[21480](https://github.com/flutter/engine/pull/21480) Roll Fuchsia Linux SDK from 2NPr4uMi-... to 4UZwprAK4... (cla: yes, waiting for tree to go green)
[21481](https://github.com/flutter/engine/pull/21481) Roll Skia from 01bbe189b0d0 to 842805ced156 (1 revision) (cla: yes, waiting for tree to go green)
[21482](https://github.com/flutter/engine/pull/21482) Roll Dart SDK from 4c0245356649 to 4ea46a8b10a1 (1 revision) (cla: yes, waiting for tree to go green)
[21483](https://github.com/flutter/engine/pull/21483) Roll Skia from 842805ced156 to c73bff39bd21 (1 revision) (cla: yes, waiting for tree to go green)
[21484](https://github.com/flutter/engine/pull/21484) [fuchsia][a11y] Don't populate hidden state. (accessibility, cla: yes, platform-fuchsia, waiting for tree to go green)
[21485](https://github.com/flutter/engine/pull/21485) Roll Skia from c73bff39bd21 to 4b6f37d90277 (1 revision) (cla: yes, waiting for tree to go green)
[21487](https://github.com/flutter/engine/pull/21487) Roll Skia from 4b6f37d90277 to 0b0fb4d50b75 (2 revisions) (cla: yes, waiting for tree to go green)
[21489](https://github.com/flutter/engine/pull/21489) Roll Dart SDK from 4ea46a8b10a1 to 2a4169b3cfab (1 revision) (cla: yes, waiting for tree to go green)
[21492](https://github.com/flutter/engine/pull/21492) Roll Fuchsia Mac SDK from iiCa4hab1... to tuXjGvikz... (cla: yes, waiting for tree to go green)
[21500](https://github.com/flutter/engine/pull/21500) Roll Skia from 0b0fb4d50b75 to 9ecb3abfdfe8 (12 revisions) (cla: yes, waiting for tree to go green)
[21502](https://github.com/flutter/engine/pull/21502) Roll Fuchsia Linux SDK from 4UZwprAK4... to _ABSfRa7C... (cla: yes, waiting for tree to go green)
[21503](https://github.com/flutter/engine/pull/21503) Roll Skia from 9ecb3abfdfe8 to 4cf00a814f7d (1 revision) (cla: yes, waiting for tree to go green)
[21505](https://github.com/flutter/engine/pull/21505) Roll Skia from 4cf00a814f7d to f201af8b00e8 (2 revisions) (cla: yes, waiting for tree to go green)
[21506](https://github.com/flutter/engine/pull/21506) Roll Dart SDK from 2a4169b3cfab to 0ed6ae6d709e (2 revisions) (cla: yes, waiting for tree to go green)
[21507](https://github.com/flutter/engine/pull/21507) Roll Skia from f201af8b00e8 to 8a1ed2a97bf4 (1 revision) (cla: yes, waiting for tree to go green)
[21508](https://github.com/flutter/engine/pull/21508) Roll Skia from 8a1ed2a97bf4 to a87c5076a876 (2 revisions) (cla: yes, waiting for tree to go green)
[21509](https://github.com/flutter/engine/pull/21509) Roll Fuchsia Mac SDK from tuXjGvikz... to aO19K7Ut2... (cla: yes, waiting for tree to go green)
[21511](https://github.com/flutter/engine/pull/21511) Roll Fuchsia Linux SDK from _ABSfRa7C... to sDtTSnOFx... (cla: yes, waiting for tree to go green)
[21520](https://github.com/flutter/engine/pull/21520) re-enable CanvasKit path ops test (cla: yes, waiting for tree to go green)
[21525](https://github.com/flutter/engine/pull/21525) Smooth window resizing on macOS (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21526](https://github.com/flutter/engine/pull/21526) iOS: only add explicit transactions when there are platform views (only on main threads) (cla: yes, platform-ios, waiting for tree to go green)
[21529](https://github.com/flutter/engine/pull/21529) Roll Fuchsia Mac SDK from aO19K7Ut2... to U2Cd8uL4-... (cla: yes, waiting for tree to go green)
[21533](https://github.com/flutter/engine/pull/21533) Roll Fuchsia Linux SDK from sDtTSnOFx... to GEYgsTBRM... (cla: yes, waiting for tree to go green)
[21534](https://github.com/flutter/engine/pull/21534) [Android Text Input] Make the editing state listenable and allow batch edits (affects: text input, cla: yes, platform-android, waiting for tree to go green)
[21537](https://github.com/flutter/engine/pull/21537) Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision) (cla: yes, waiting for tree to go green)
[21538](https://github.com/flutter/engine/pull/21538) Roll Fuchsia Mac SDK from U2Cd8uL4-... to UKTUc5UVB... (cla: yes, waiting for tree to go green)
[21541](https://github.com/flutter/engine/pull/21541) Roll Fuchsia Linux SDK from GEYgsTBRM... to EdtRxRaCS... (cla: yes, waiting for tree to go green)
[21542](https://github.com/flutter/engine/pull/21542) Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision) (cla: yes, waiting for tree to go green)
[21547](https://github.com/flutter/engine/pull/21547) Add debugDisposed to Image (cla: yes, waiting for tree to go green)
[21548](https://github.com/flutter/engine/pull/21548) Extract the WindowInsetsAnimation.Callback subclass into a separate class that will be lazily loaded (cla: yes, platform-android, waiting for tree to go green)
[21554](https://github.com/flutter/engine/pull/21554) Roll Fuchsia Mac SDK from UKTUc5UVB... to gZ122oeKO... (cla: yes, waiting for tree to go green)
[21555](https://github.com/flutter/engine/pull/21555) Implement Image.clone for CanvasKit (cla: yes, waiting for tree to go green)
[21556](https://github.com/flutter/engine/pull/21556) Roll Fuchsia Linux SDK from EdtRxRaCS... to CG6NCkBX9... (cla: yes, waiting for tree to go green)
[21562](https://github.com/flutter/engine/pull/21562) Roll Skia from a87c5076a876 to 36366209d412 (55 revisions) (cla: yes, waiting for tree to go green)
[21565](https://github.com/flutter/engine/pull/21565) Roll Skia from 36366209d412 to 8cc5f19f439d (1 revision) (cla: yes, waiting for tree to go green)
[21566](https://github.com/flutter/engine/pull/21566) Roll Fuchsia Linux SDK from CG6NCkBX9... to 8Evelbjqf... (cla: yes, waiting for tree to go green)
[21568](https://github.com/flutter/engine/pull/21568) Roll Skia from 8cc5f19f439d to b509bbb81f36 (3 revisions) (cla: yes, waiting for tree to go green)
[21569](https://github.com/flutter/engine/pull/21569) Roll Dart SDK from ddbeaabe8b3d to 9c89ce329247 (1 revision) (cla: yes, waiting for tree to go green)
[21570](https://github.com/flutter/engine/pull/21570) Roll Skia from b509bbb81f36 to 2d7973afc29d (5 revisions) (cla: yes, waiting for tree to go green)
[21571](https://github.com/flutter/engine/pull/21571) Roll Fuchsia Mac SDK from gZ122oeKO... to 1i9GaCxm8... (cla: yes, waiting for tree to go green)
[21574](https://github.com/flutter/engine/pull/21574) Roll Dart SDK from 9c89ce329247 to 2eab25e4b239 (1 revision) (cla: yes, waiting for tree to go green)
[21577](https://github.com/flutter/engine/pull/21577) Roll Dart SDK from 2eab25e4b239 to 9f810fa15a9e (1 revision) (cla: yes, waiting for tree to go green)
[21578](https://github.com/flutter/engine/pull/21578) Use absolute path in ios_test_flutter target (cla: yes, platform-ios, waiting for tree to go green)
[21580](https://github.com/flutter/engine/pull/21580) Roll Fuchsia Linux SDK from 8Evelbjqf... to J5Qe0sLAi... (cla: yes, waiting for tree to go green)
[21581](https://github.com/flutter/engine/pull/21581) Roll Fuchsia Mac SDK from 1i9GaCxm8... to 0pFgNUM8S... (cla: yes, waiting for tree to go green)
[21585](https://github.com/flutter/engine/pull/21585) Refactor make_mock_engine into fl_test (cla: yes, waiting for tree to go green)
[21587](https://github.com/flutter/engine/pull/21587) Roll Dart SDK from 9f810fa15a9e to 1a039e595379 (1 revision) (cla: yes, waiting for tree to go green)
[21588](https://github.com/flutter/engine/pull/21588) Roll Fuchsia Linux SDK from J5Qe0sLAi... to tz23Y3d1u... (cla: yes, waiting for tree to go green)
[21589](https://github.com/flutter/engine/pull/21589) Roll Fuchsia Mac SDK from 0pFgNUM8S... to D6xcV5RGw... (cla: yes, waiting for tree to go green)
[21590](https://github.com/flutter/engine/pull/21590) Roll Fuchsia Linux SDK from tz23Y3d1u... to Hq4nRfNIg... (cla: yes, waiting for tree to go green)
[21591](https://github.com/flutter/engine/pull/21591) Roll Skia from 2d7973afc29d to 223ffcdff922 (8 revisions) (cla: yes, waiting for tree to go green)
[21592](https://github.com/flutter/engine/pull/21592) Roll Fuchsia Mac SDK from D6xcV5RGw... to qljWjWwoR... (cla: yes, waiting for tree to go green)
[21595](https://github.com/flutter/engine/pull/21595) Roll Fuchsia Linux SDK from Hq4nRfNIg... to 5KQYmRGqZ... (cla: yes, waiting for tree to go green)
[21596](https://github.com/flutter/engine/pull/21596) Roll Fuchsia Mac SDK from qljWjWwoR... to mhxbBrFZD... (cla: yes, waiting for tree to go green)
[21597](https://github.com/flutter/engine/pull/21597) Roll Skia from 223ffcdff922 to e34a8d7f01ff (2 revisions) (cla: yes, waiting for tree to go green)
[21598](https://github.com/flutter/engine/pull/21598) Roll Dart SDK from 1a039e595379 to 9560a32779fc (1 revision) (cla: yes, waiting for tree to go green)
[21599](https://github.com/flutter/engine/pull/21599) Roll Fuchsia Linux SDK from 5KQYmRGqZ... to DMUD0TMLr... (cla: yes, waiting for tree to go green)
[21600](https://github.com/flutter/engine/pull/21600) Roll Skia from e34a8d7f01ff to bd0881cb58eb (12 revisions) (cla: yes, waiting for tree to go green)
[21601](https://github.com/flutter/engine/pull/21601) Roll Skia from bd0881cb58eb to e2c4999ec340 (5 revisions) (cla: yes, waiting for tree to go green)
[21603](https://github.com/flutter/engine/pull/21603) Use the gpu config for shell_unittests to declare SHELL_ENABLE_{GL,VULKAN} (cla: yes, waiting for tree to go green)
[21604](https://github.com/flutter/engine/pull/21604) Roll Skia from e2c4999ec340 to 0d31ed506863 (5 revisions) (cla: yes, waiting for tree to go green)
[21606](https://github.com/flutter/engine/pull/21606) Roll ICU to 146cb611fb2c1f53e63c2e59bd735d7a8ac6ec8c (cla: yes, waiting for tree to go green)
[21607](https://github.com/flutter/engine/pull/21607) Roll Skia from 0d31ed506863 to d30e9efdab5c (4 revisions) (cla: yes, waiting for tree to go green)
[21608](https://github.com/flutter/engine/pull/21608) Roll Skia from d30e9efdab5c to 41d906752d13 (2 revisions) (cla: yes, waiting for tree to go green)
[21612](https://github.com/flutter/engine/pull/21612) Separate mutators for text and selection (affects: desktop, affects: text input, cla: yes, platform-linux, platform-windows, waiting for tree to go green)
[21615](https://github.com/flutter/engine/pull/21615) Roll Skia from 41d906752d13 to 05162812fd37 (1 revision) (cla: yes, waiting for tree to go green)
[21617](https://github.com/flutter/engine/pull/21617) Roll Skia from 05162812fd37 to 347e5dc37127 (1 revision) (cla: yes, waiting for tree to go green)
[21619](https://github.com/flutter/engine/pull/21619) Roll Fuchsia Mac SDK from mhxbBrFZD... to 8q-OCkyhO... (cla: yes, waiting for tree to go green)
[21620](https://github.com/flutter/engine/pull/21620) Roll Skia from 347e5dc37127 to fa5ff7d234b8 (1 revision) (cla: yes, waiting for tree to go green)
[21621](https://github.com/flutter/engine/pull/21621) Roll Fuchsia Linux SDK from DMUD0TMLr... to HeAkKHbFY... (cla: yes, waiting for tree to go green)
[21622](https://github.com/flutter/engine/pull/21622) Roll Skia from fa5ff7d234b8 to 00dc0bcb4d54 (3 revisions) (cla: yes, waiting for tree to go green)
[21624](https://github.com/flutter/engine/pull/21624) Roll Skia from 00dc0bcb4d54 to e2c6940c36e4 (1 revision) (cla: yes, waiting for tree to go green)
[21625](https://github.com/flutter/engine/pull/21625) Roll Skia from e2c6940c36e4 to c3bdd1c597dc (4 revisions) (cla: yes, waiting for tree to go green)
[21628](https://github.com/flutter/engine/pull/21628) Roll Skia from c3bdd1c597dc to 33b42e12ab71 (6 revisions) (cla: yes, waiting for tree to go green)
[21630](https://github.com/flutter/engine/pull/21630) Roll Fuchsia Linux SDK from HeAkKHbFY... to kr1tNtZvZ... (cla: yes, waiting for tree to go green)
[21634](https://github.com/flutter/engine/pull/21634) Roll Skia from 33b42e12ab71 to 107114dd1d6e (5 revisions) (cla: yes, waiting for tree to go green)
[21635](https://github.com/flutter/engine/pull/21635) Roll Fuchsia Mac SDK from 8q-OCkyhO... to xM2vYLfIT... (cla: yes, waiting for tree to go green)
[21648](https://github.com/flutter/engine/pull/21648) Use preTranslate when applying offset to matrix (cla: yes, waiting for tree to go green)
[21660](https://github.com/flutter/engine/pull/21660) Run desktop darwin tests in debug mode (cla: yes, waiting for tree to go green)
[21665](https://github.com/flutter/engine/pull/21665) Ensure JNI is not called from raster thread (cla: yes, platform-android, waiting for tree to go green)
[21670](https://github.com/flutter/engine/pull/21670) [macOS] Allow loading of AOT snapshots and instructions from elf bundle (cla: yes, waiting for tree to go green)
[21676](https://github.com/flutter/engine/pull/21676) Roll Skia from a7f69c290667 to 041fd0ad7d93 (5 revisions) (cla: yes, waiting for tree to go green)
[21678](https://github.com/flutter/engine/pull/21678) Roll Dart SDK from 9560a32779fc to 8f1a96317589 (12 revisions) (cla: yes, waiting for tree to go green)
[21680](https://github.com/flutter/engine/pull/21680) Avoid leaking the FlutterEngineAOTData structure in FlutterEngineCollectAOTData. (cla: yes, waiting for tree to go green)
[21681](https://github.com/flutter/engine/pull/21681) [macOS] flutter_desktop_darwin_unittests can be enabled for all runtime modes (cla: yes, waiting for tree to go green)
[21683](https://github.com/flutter/engine/pull/21683) Roll Skia from 041fd0ad7d93 to 38e6d226f24e (1 revision) (cla: yes, waiting for tree to go green)
[21684](https://github.com/flutter/engine/pull/21684) Roll Fuchsia Linux SDK from kr1tNtZvZ... to ZJHmp3INU... (cla: yes, waiting for tree to go green)
[21686](https://github.com/flutter/engine/pull/21686) Roll Dart SDK from 8f1a96317589 to 8572b5c0f6dc (1 revision) (cla: yes, waiting for tree to go green)
[21688](https://github.com/flutter/engine/pull/21688) Roll Skia from 38e6d226f24e to ac0723a06b53 (3 revisions) (cla: yes, waiting for tree to go green)
[21689](https://github.com/flutter/engine/pull/21689) Roll Fuchsia Mac SDK from m6w8tDXMm... to zhRBO0hCr... (cla: yes, waiting for tree to go green)
[21690](https://github.com/flutter/engine/pull/21690) Use buildroot clang for scenario app (cla: yes, waiting for tree to go green)
[21691](https://github.com/flutter/engine/pull/21691) Roll Dart SDK from 8572b5c0f6dc to 98ea0b4971dd (1 revision) (cla: yes, waiting for tree to go green)
[21692](https://github.com/flutter/engine/pull/21692) Roll Skia from ac0723a06b53 to 8d43858ed21a (1 revision) (cla: yes, waiting for tree to go green)
[21695](https://github.com/flutter/engine/pull/21695) Roll Dart SDK from 98ea0b4971dd to 44fa3b9e566c (1 revision) (cla: yes, waiting for tree to go green)
[21696](https://github.com/flutter/engine/pull/21696) Forbid android.util.Log (cla: yes, platform-android, waiting for tree to go green)
[21697](https://github.com/flutter/engine/pull/21697) Update PR template to include the presubmit flake form (cla: yes, waiting for tree to go green)
[21698](https://github.com/flutter/engine/pull/21698) Roll Skia from 8d43858ed21a to 9c0b79a35489 (14 revisions) (cla: yes, waiting for tree to go green)
[21707](https://github.com/flutter/engine/pull/21707) Roll Skia from 9c0b79a35489 to e17b0501963a (15 revisions) (cla: yes, waiting for tree to go green)
[21708](https://github.com/flutter/engine/pull/21708) Roll Dart SDK from 44fa3b9e566c to 4ba58cad60e4 (1 revision) (cla: yes, waiting for tree to go green)
[21709](https://github.com/flutter/engine/pull/21709) Roll Fuchsia Linux SDK from ZJHmp3INU... to wrXNShr_8... (cla: yes, waiting for tree to go green)
[21714](https://github.com/flutter/engine/pull/21714) Revert "fix On iOS, dialog titles are announced twice (#19826)" (cla: yes, platform-ios, waiting for tree to go green)
[21718](https://github.com/flutter/engine/pull/21718) Roll Dart SDK from 4ba58cad60e4 to fe566e6d08b1 (1 revision) (cla: yes, waiting for tree to go green)
[21719](https://github.com/flutter/engine/pull/21719) Allow TalkBack navigation while a platform view is rendered (cla: yes, platform-android, waiting for tree to go green)
[21720](https://github.com/flutter/engine/pull/21720) Roll Fuchsia Mac SDK from zhRBO0hCr... to LyP59nILn... (cla: yes, waiting for tree to go green)
[21723](https://github.com/flutter/engine/pull/21723) Roll Dart SDK from fe566e6d08b1 to 1e7250f91944 (1 revision) (cla: yes, waiting for tree to go green)
[21725](https://github.com/flutter/engine/pull/21725) Roll Dart SDK from 1e7250f91944 to 712e35f7fd0b (1 revision) (cla: yes, waiting for tree to go green)
[21729](https://github.com/flutter/engine/pull/21729) Roll Fuchsia Linux SDK from wrXNShr_8... to EBX49sN_X... (cla: yes, waiting for tree to go green)
[21730](https://github.com/flutter/engine/pull/21730) Fix viewInset.bottom and viewPadding.bottom… (affects: engine, cla: yes, platform-android, waiting for tree to go green)
[21732](https://github.com/flutter/engine/pull/21732) Roll Skia from e17b0501963a to 453f67ff0ade (28 revisions) (cla: yes, waiting for tree to go green)
[21733](https://github.com/flutter/engine/pull/21733) Roll Fuchsia Mac SDK from LyP59nILn... to lqn8xmlDn... (cla: yes, waiting for tree to go green)
[21734](https://github.com/flutter/engine/pull/21734) Forward font collection APIs to the SkParagraph font collection (cla: yes, waiting for tree to go green)
[21736](https://github.com/flutter/engine/pull/21736) Roll Dart SDK from 712e35f7fd0b to 06536d68ca0f (2 revisions) (cla: yes, waiting for tree to go green)
[21737](https://github.com/flutter/engine/pull/21737) Add dart_entrypoint_argc/argv to the FlutterProjectArgs (cla: yes, waiting for tree to go green)
[21739](https://github.com/flutter/engine/pull/21739) Roll Skia from 453f67ff0ade to 269e43fd9830 (11 revisions) (cla: yes, waiting for tree to go green)
[21740](https://github.com/flutter/engine/pull/21740) Fix filesystem access prior to macOS 10.15 (cla: yes, waiting for tree to go green)
[21742](https://github.com/flutter/engine/pull/21742) Roll Skia from 269e43fd9830 to 88cda17bbeb8 (3 revisions) (cla: yes, waiting for tree to go green)
[21744](https://github.com/flutter/engine/pull/21744) Roll Skia from 88cda17bbeb8 to 61003cde7688 (4 revisions) (cla: yes, waiting for tree to go green)
[21746](https://github.com/flutter/engine/pull/21746) Roll Skia from 61003cde7688 to 13fc260c7080 (1 revision) (cla: yes, waiting for tree to go green)
[21749](https://github.com/flutter/engine/pull/21749) Roll Fuchsia Mac SDK from lqn8xmlDn... to gzhbqRUap... (cla: yes, waiting for tree to go green)
[21752](https://github.com/flutter/engine/pull/21752) Roll Skia from 13fc260c7080 to aa64c352b349 (1 revision) (cla: yes, waiting for tree to go green)
[21753](https://github.com/flutter/engine/pull/21753) Roll Fuchsia Linux SDK from EBX49sN_X... to YRTc9YoiB... (cla: yes, waiting for tree to go green)
[21754](https://github.com/flutter/engine/pull/21754) Windows: Add UWP target stub [Flutter#14697] (cla: yes, waiting for tree to go green)
[21758](https://github.com/flutter/engine/pull/21758) Roll Skia from aa64c352b349 to d71dc2d25b8b (1 revision) (cla: yes, waiting for tree to go green)
[21759](https://github.com/flutter/engine/pull/21759) Roll Fuchsia Mac SDK from gzhbqRUap... to _0R2HD4c8... (cla: yes, waiting for tree to go green)
[21760](https://github.com/flutter/engine/pull/21760) Roll Fuchsia Linux SDK from YRTc9YoiB... to Nw5-0_sVF... (cla: yes, waiting for tree to go green)
[21762](https://github.com/flutter/engine/pull/21762) Roll Fuchsia Mac SDK from _0R2HD4c8... to 82ankF-Ht... (cla: yes, waiting for tree to go green)
[21768](https://github.com/flutter/engine/pull/21768) Roll Fuchsia Mac SDK from 82ankF-Ht... to FFpTJfmj1... (cla: yes, waiting for tree to go green)
[21771](https://github.com/flutter/engine/pull/21771) Roll Fuchsia Linux SDK from Nw5-0_sVF... to h-DeV4tgE... (cla: yes, waiting for tree to go green)
[21772](https://github.com/flutter/engine/pull/21772) Roll Skia from d71dc2d25b8b to ceb6214a556a (5 revisions) (cla: yes, waiting for tree to go green)
[21774](https://github.com/flutter/engine/pull/21774) Roll Skia from ceb6214a556a to 9213e610ed92 (8 revisions) (cla: yes, waiting for tree to go green)
[21777](https://github.com/flutter/engine/pull/21777) Prevent a race between SurfaceTexture.release and updateTexImage (cla: yes, platform-android, waiting for tree to go green)
[21779](https://github.com/flutter/engine/pull/21779) Roll Skia from 9213e610ed92 to 840e8ea7403e (11 revisions) (cla: yes, waiting for tree to go green)
[21782](https://github.com/flutter/engine/pull/21782) Add missing ninja call to analyze.sh so it can be run locally easily (cla: yes, waiting for tree to go green)
[21783](https://github.com/flutter/engine/pull/21783) Roll Skia from 840e8ea7403e to ab6e62c131e9 (7 revisions) (cla: yes, waiting for tree to go green)
[21789](https://github.com/flutter/engine/pull/21789) [macOS] Add plumbing to grab dart entrypoint args (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21792](https://github.com/flutter/engine/pull/21792) Revert "Migration to PlatformDispatcher and multi-window #20496" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21794](https://github.com/flutter/engine/pull/21794) Roll Skia from ab6e62c131e9 to f58db3c94da3 (6 revisions) (cla: yes, waiting for tree to go green)
[21795](https://github.com/flutter/engine/pull/21795) Roll Fuchsia Mac SDK from FFpTJfmj1... to 8Cb2zG9e3... (cla: yes, waiting for tree to go green)
[21797](https://github.com/flutter/engine/pull/21797) Roll Fuchsia Linux SDK from h-DeV4tgE... to gdo4mZ5oI... (cla: yes, waiting for tree to go green)
[21798](https://github.com/flutter/engine/pull/21798) [ios] Create a standalone external view embedder on iOS (cla: yes, platform-ios, waiting for tree to go green)
[21801](https://github.com/flutter/engine/pull/21801) Roll Skia from f58db3c94da3 to 387fd62a1280 (3 revisions) (cla: yes, waiting for tree to go green)
[21803](https://github.com/flutter/engine/pull/21803) Roll Skia from 387fd62a1280 to c89a7ee628db (1 revision) (cla: yes, waiting for tree to go green)
[21804](https://github.com/flutter/engine/pull/21804) Roll Skia from c89a7ee628db to fa8891164062 (1 revision) (cla: yes, waiting for tree to go green)
[21805](https://github.com/flutter/engine/pull/21805) Roll Skia from fa8891164062 to 01b93eabe25b (4 revisions) (cla: yes, waiting for tree to go green)
[21808](https://github.com/flutter/engine/pull/21808) Roll Dart SDK from e256855d07ba to a3b62f366529 (4 revisions) (cla: yes, waiting for tree to go green)
[21809](https://github.com/flutter/engine/pull/21809) Roll Dart SDK from e256855d07ba to a3b62f366529 (4 revisions) (cla: yes, waiting for tree to go green)
[21810](https://github.com/flutter/engine/pull/21810) Roll Skia from 01b93eabe25b to 2e0c70dc9c3e (10 revisions) (cla: yes, waiting for tree to go green)
[21813](https://github.com/flutter/engine/pull/21813) Add a proc table version of embedder API (cla: yes, waiting for tree to go green)
[21814](https://github.com/flutter/engine/pull/21814) Roll Fuchsia Linux SDK from gdo4mZ5oI... to 41fVbRhb0... (cla: yes, waiting for tree to go green)
[21816](https://github.com/flutter/engine/pull/21816) Roll Skia from 2e0c70dc9c3e to 7bbdde059685 (10 revisions) (cla: yes, waiting for tree to go green)
[21817](https://github.com/flutter/engine/pull/21817) Enable clipRRect for android platform view hybrid composition (cla: yes, platform-android, waiting for tree to go green)
[21819](https://github.com/flutter/engine/pull/21819) Add a style note about Linux embedding style (cla: yes, waiting for tree to go green)
[21820](https://github.com/flutter/engine/pull/21820) Enable loading snapshots with sound null safety enabled. (cla: yes, waiting for tree to go green)
[21830](https://github.com/flutter/engine/pull/21830) Roll Dart SDK from a3b62f366529 to 4226116043f5 (1 revision) (cla: yes, waiting for tree to go green)
[21832](https://github.com/flutter/engine/pull/21832) Roll Fuchsia Mac SDK from 8Cb2zG9e3... to SFNhlfVb_... (cla: yes, waiting for tree to go green)
[21834](https://github.com/flutter/engine/pull/21834) Roll Skia from 7bbdde059685 to 99446001182c (5 revisions) (cla: yes, waiting for tree to go green)
[21839](https://github.com/flutter/engine/pull/21839) [android] Refactor surface factory and wire in external view embedder (cla: yes, platform-android, waiting for tree to go green)
[21846](https://github.com/flutter/engine/pull/21846) Roll Dart SDK from 4226116043f5 to 04cf6ade9fc4 (4 revisions) (cla: yes, waiting for tree to go green)
[21848](https://github.com/flutter/engine/pull/21848) Roll Skia from 99446001182c to f4bda743ff8d (22 revisions) (cla: yes, waiting for tree to go green)
[21850](https://github.com/flutter/engine/pull/21850) [fuchsia] External view embedder will be shared with platform view (cla: yes, waiting for tree to go green)
[21852](https://github.com/flutter/engine/pull/21852) Auto detect mode to determine which rendering backend to use. (cla: yes, platform-web, waiting for tree to go green)
[21875](https://github.com/flutter/engine/pull/21875) Fix typos in FlValue docs (cla: yes, waiting for tree to go green)
[21891](https://github.com/flutter/engine/pull/21891) Check for null images in ImageFromCompressedData (cla: yes, waiting for tree to go green)
[21892](https://github.com/flutter/engine/pull/21892) Roll Skia from f4bda743ff8d to f1b53836b705 (21 revisions) (cla: yes, waiting for tree to go green)
[21906](https://github.com/flutter/engine/pull/21906) Roll Fuchsia Mac SDK from SFNhlfVb_... to _FaRRt69Z... (cla: yes, waiting for tree to go green)
[21909](https://github.com/flutter/engine/pull/21909) Roll Dart SDK from 04cf6ade9fc4 to 80288ca68c49 (6 revisions) (cla: yes, waiting for tree to go green)
[21910](https://github.com/flutter/engine/pull/21910) Roll Skia from f1b53836b705 to db0288d747ae (7 revisions) (cla: yes, waiting for tree to go green)
[21911](https://github.com/flutter/engine/pull/21911) Roll Skia from db0288d747ae to 839fb228ac44 (1 revision) (cla: yes, waiting for tree to go green)
[21915](https://github.com/flutter/engine/pull/21915) Roll Dart SDK from 80288ca68c49 to e655b9a3839e (1 revision) (cla: yes, waiting for tree to go green)
[21917](https://github.com/flutter/engine/pull/21917) Roll Skia from 839fb228ac44 to 418eda2c599a (9 revisions) (cla: yes, waiting for tree to go green)
[21919](https://github.com/flutter/engine/pull/21919) Roll Dart SDK from e655b9a3839e to b58cfe5ab24e (1 revision) (cla: yes, waiting for tree to go green)
[21920](https://github.com/flutter/engine/pull/21920) Roll Dart SDK from e655b9a3839e to b58cfe5ab24e (1 revision) (cla: yes, waiting for tree to go green)
[21923](https://github.com/flutter/engine/pull/21923) Roll Skia from 418eda2c599a to f9c7b2803461 (3 revisions) (cla: yes, waiting for tree to go green)
[21926](https://github.com/flutter/engine/pull/21926) Set strokeCap, strokeJoin, and strokeMiter when resurrecting Paint (cla: yes, waiting for tree to go green)
[21929](https://github.com/flutter/engine/pull/21929) Roll Skia from f9c7b2803461 to f60a76e2ac01 (4 revisions) (cla: yes, waiting for tree to go green)
[21934](https://github.com/flutter/engine/pull/21934) [fuchsia] Adds a test for timezone change (cla: yes, waiting for tree to go green)
[21936](https://github.com/flutter/engine/pull/21936) Roll Skia from f60a76e2ac01 to be8004d2fb6c (1 revision) (cla: yes, waiting for tree to go green)
[21938](https://github.com/flutter/engine/pull/21938) Roll Dart SDK from b58cfe5ab24e to aaab579579be (1 revision) (cla: yes, waiting for tree to go green)
[21940](https://github.com/flutter/engine/pull/21940) Reformat some files that were not auto-formatted (cla: yes, platform-android, waiting for tree to go green)
[21941](https://github.com/flutter/engine/pull/21941) Add FML_UNREACHABLE to declare points in code that should never be reached. (cla: yes, waiting for tree to go green)
[21944](https://github.com/flutter/engine/pull/21944) Roll Fuchsia Mac SDK from _FaRRt69Z... to XZSNobQCT... (cla: yes, waiting for tree to go green)
[21946](https://github.com/flutter/engine/pull/21946) Roll Dart SDK from aaab579579be to 42a0bf548ea3 (1 revision) (cla: yes, waiting for tree to go green)
[21948](https://github.com/flutter/engine/pull/21948) Roll Dart SDK from 42a0bf548ea3 to 675c7165c071 (1 revision) (cla: yes, waiting for tree to go green)
[21950](https://github.com/flutter/engine/pull/21950) Roll Fuchsia Mac SDK from XZSNobQCT... to 9mMCqUXkF... (cla: yes, waiting for tree to go green)
[21952](https://github.com/flutter/engine/pull/21952) Roll Dart SDK from 675c7165c071 to 5c59a47beda7 (1 revision) (cla: yes, waiting for tree to go green)
[21955](https://github.com/flutter/engine/pull/21955) Roll Fuchsia Mac SDK from 9mMCqUXkF... to MR_bRfe8I... (cla: yes, waiting for tree to go green)
[21956](https://github.com/flutter/engine/pull/21956) Roll Skia from be8004d2fb6c to 27f7fe32f49b (1 revision) (cla: yes, waiting for tree to go green)
[21970](https://github.com/flutter/engine/pull/21970) Revert "[ios] Refactor IOSSurface factory and unify surface creation" (cla: yes, platform-ios, waiting for tree to go green)
[21975](https://github.com/flutter/engine/pull/21975) Fixes Edge trigger route change announcement (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21976](https://github.com/flutter/engine/pull/21976) Roll Fuchsia Linux SDK from ZJHmp3INU... to dcMRY8S12... (cla: yes, waiting for tree to go green)
[21978](https://github.com/flutter/engine/pull/21978) Roll Dart SDK from 5c59a47beda7 to 902538ea56d5 (2 revisions) (cla: yes, waiting for tree to go green)
[21980](https://github.com/flutter/engine/pull/21980) Fix native constructor of list of zircon handles and remove unused list factory specializations. (cla: yes, waiting for tree to go green)
[21981](https://github.com/flutter/engine/pull/21981) Roll Dart SDK from 902538ea56d5 to fc82eeed7df3 (1 revision) (cla: yes, waiting for tree to go green)
[21982](https://github.com/flutter/engine/pull/21982) Roll Fuchsia Mac SDK from MR_bRfe8I... to pZ9FgVZTK... (cla: yes, waiting for tree to go green)
[21984](https://github.com/flutter/engine/pull/21984) Roll Skia from 27f7fe32f49b to ac1ded033136 (15 revisions) (cla: yes, waiting for tree to go green)
[21988](https://github.com/flutter/engine/pull/21988) Roll Fuchsia Linux SDK from dcMRY8S12... to lPMs_KwnU... (cla: yes, waiting for tree to go green)
[21989](https://github.com/flutter/engine/pull/21989) Roll Skia from ac1ded033136 to a25c0619b5ef (2 revisions) (cla: yes, waiting for tree to go green)
[21990](https://github.com/flutter/engine/pull/21990) Roll Skia from a25c0619b5ef to 4964300530d3 (2 revisions) (cla: yes, waiting for tree to go green)
[21993](https://github.com/flutter/engine/pull/21993) Roll Skia from 4964300530d3 to 51dc28505fb9 (5 revisions) (cla: yes, waiting for tree to go green)
[21994](https://github.com/flutter/engine/pull/21994) [null-safety] fix soundness of Paragraph._addPlaceholder (cla: yes, waiting for tree to go green)
[21995](https://github.com/flutter/engine/pull/21995) Roll Skia from 51dc28505fb9 to 1c823674d957 (8 revisions) (cla: yes, waiting for tree to go green)
[22002](https://github.com/flutter/engine/pull/22002) Roll Dart SDK from fc82eeed7df3 to 8be6a08153cc (1 revision) (cla: yes, waiting for tree to go green)
[22005](https://github.com/flutter/engine/pull/22005) Roll Dart SDK from fc82eeed7df3 to 8be6a08153cc (1 revision) (cla: yes, waiting for tree to go green)
[22007](https://github.com/flutter/engine/pull/22007) Fix FlTextInputPlugin tear down (affects: desktop, cla: yes, needs tests, platform-linux, waiting for tree to go green)
[22009](https://github.com/flutter/engine/pull/22009) [fuchsia] opt-out null-safety in standalone scripts (cla: yes, waiting for tree to go green)
[22013](https://github.com/flutter/engine/pull/22013) Determine null-safety isolate flags for launches of the service isolate. (cla: yes, waiting for tree to go green)
[22016](https://github.com/flutter/engine/pull/22016) Reland [ios] Refactor IOSSurface factory and unify surface creation (cla: yes, platform-ios, waiting for tree to go green)
[22018](https://github.com/flutter/engine/pull/22018) Roll Dart SDK from 8be6a08153cc to 86242db30c23 (2 revisions) (cla: yes, waiting for tree to go green)
[22019](https://github.com/flutter/engine/pull/22019) Allow parse_and_send to use access tokens (cla: yes, waiting for tree to go green)
[22023](https://github.com/flutter/engine/pull/22023) Roll Dart SDK from 86242db30c23 to 874709e52a99 (1 revision) (cla: yes, waiting for tree to go green)
[22026](https://github.com/flutter/engine/pull/22026) Roll Dart SDK from 874709e52a99 to a3d902d8598e (1 revision) (cla: yes, waiting for tree to go green)
[22033](https://github.com/flutter/engine/pull/22033) Add a golden scenario test for fallback font rendering on iOS take 2 (cla: yes, waiting for tree to go green)
[22041](https://github.com/flutter/engine/pull/22041) Ensure root isolate create callback is invoked before the isolate is in the running phase. (cla: yes, waiting for tree to go green)
[22055](https://github.com/flutter/engine/pull/22055) Roll Fuchsia Mac SDK from pZ9FgVZTK... to WLxBkBnZa... (cla: yes, waiting for tree to go green)
[22057](https://github.com/flutter/engine/pull/22057) Roll Fuchsia Linux SDK from lPMs_KwnU... to gqS_DIjN4... (cla: yes, waiting for tree to go green)
[22058](https://github.com/flutter/engine/pull/22058) Roll Dart SDK from a3d902d8598e to 9f907e198970 (2 revisions) (cla: yes, waiting for tree to go green)
[22059](https://github.com/flutter/engine/pull/22059) Roll Skia from 2d2f82c00aeb to 5c7bb326a7b3 (33 revisions) (cla: yes, waiting for tree to go green)
[22060](https://github.com/flutter/engine/pull/22060) Roll Skia from 5c7bb326a7b3 to 65674e4c2e56 (3 revisions) (cla: yes, waiting for tree to go green)
[22061](https://github.com/flutter/engine/pull/22061) Includes roles for links, checkboxes, and radio buttons in semantics (cla: yes, waiting for tree to go green)
[22062](https://github.com/flutter/engine/pull/22062) Roll Skia from 65674e4c2e56 to 01b05e5b830b (3 revisions) (cla: yes, waiting for tree to go green)
[22065](https://github.com/flutter/engine/pull/22065) Roll Skia from 01b05e5b830b to 53281c712159 (1 revision) (cla: yes, waiting for tree to go green)
[22067](https://github.com/flutter/engine/pull/22067) Add "input shield" to capture pointer input for reinjection (cla: yes, waiting for tree to go green)
[22069](https://github.com/flutter/engine/pull/22069) Roll Dart SDK from 9f907e198970 to 37ccceacad41 (3 revisions) (cla: yes, waiting for tree to go green)
[22073](https://github.com/flutter/engine/pull/22073) Roll Fuchsia Mac SDK from WLxBkBnZa... to zDfaxkqlv... (cla: yes, waiting for tree to go green)
[22074](https://github.com/flutter/engine/pull/22074) Roll Fuchsia Linux SDK from gqS_DIjN4... to vuKxZmSVj... (cla: yes, waiting for tree to go green)
[22075](https://github.com/flutter/engine/pull/22075) Roll Skia from 53281c712159 to 58cf3fe83b93 (5 revisions) (cla: yes, waiting for tree to go green)
[22080](https://github.com/flutter/engine/pull/22080) add web framework tests to the prod builder (cla: yes, waiting for tree to go green)
[22081](https://github.com/flutter/engine/pull/22081) Roll Skia from 58cf3fe83b93 to 7c64798b3d0c (5 revisions) (cla: yes, waiting for tree to go green)
[22084](https://github.com/flutter/engine/pull/22084) Roll Fuchsia Linux SDK from vuKxZmSVj... to ivUuUUnOL... (cla: yes, waiting for tree to go green)
[22087](https://github.com/flutter/engine/pull/22087) Roll Fuchsia Mac SDK from zDfaxkqlv... to kCSI3uPt1... (cla: yes, waiting for tree to go green)
[22090](https://github.com/flutter/engine/pull/22090) Roll Dart SDK from a3d902d8598e to ae67d4be7d8e (9 revisions) (cla: yes, waiting for tree to go green)
[22091](https://github.com/flutter/engine/pull/22091) Remove some obsolete code from RuntimeController (cla: yes, waiting for tree to go green)
[22094](https://github.com/flutter/engine/pull/22094) Add plumbing for command line arguments on Windows (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22096](https://github.com/flutter/engine/pull/22096) Roll Dart SDK from ae67d4be7d8e to 51b403c0134a (2 revisions) (cla: yes, waiting for tree to go green)
[22097](https://github.com/flutter/engine/pull/22097) Roll Fuchsia Linux SDK from ivUuUUnOL... to gHKi9MwVc... (cla: yes, waiting for tree to go green)
[22098](https://github.com/flutter/engine/pull/22098) Roll Fuchsia Mac SDK from kCSI3uPt1... to pis4h1dA0... (cla: yes, waiting for tree to go green)
[22100](https://github.com/flutter/engine/pull/22100) Roll Dart SDK from 51b403c0134a to 11d1c3de8d01 (1 revision) (cla: yes, waiting for tree to go green)
[22101](https://github.com/flutter/engine/pull/22101) Roll Skia from 7c64798b3d0c to 312535b47d38 (9 revisions) (cla: yes, waiting for tree to go green)
[22103](https://github.com/flutter/engine/pull/22103) Roll Dart SDK from 11d1c3de8d01 to 1897e02f5b1c (2 revisions) (cla: yes, waiting for tree to go green)
[22106](https://github.com/flutter/engine/pull/22106) Roll Fuchsia Mac SDK from pis4h1dA0... to xFEwU5hU7... (cla: yes, waiting for tree to go green)
[22107](https://github.com/flutter/engine/pull/22107) Roll Fuchsia Linux SDK from gHKi9MwVc... to 33fGX8ZWr... (cla: yes, waiting for tree to go green)
[22108](https://github.com/flutter/engine/pull/22108) Roll Skia from 312535b47d38 to aea82732415c (1 revision) (cla: yes, waiting for tree to go green)
[22110](https://github.com/flutter/engine/pull/22110) Roll Fuchsia Linux SDK from 33fGX8ZWr... to d3HGOZddM... (cla: yes, waiting for tree to go green)
[22112](https://github.com/flutter/engine/pull/22112) Roll Fuchsia Mac SDK from xFEwU5hU7... to GcGZpyAMA... (cla: yes, waiting for tree to go green)
[22113](https://github.com/flutter/engine/pull/22113) Roll Dart SDK from 1897e02f5b1c to 96369fde1083 (2 revisions) (cla: yes, waiting for tree to go green)
[22114](https://github.com/flutter/engine/pull/22114) Roll Fuchsia Linux SDK from d3HGOZddM... to 5teTtbQ9-... (cla: yes, waiting for tree to go green)
[22115](https://github.com/flutter/engine/pull/22115) Roll Dart SDK from 96369fde1083 to 9ba287dfd221 (1 revision) (cla: yes, waiting for tree to go green)
[22116](https://github.com/flutter/engine/pull/22116) Roll Fuchsia Mac SDK from GcGZpyAMA... to n-yA0KEMT... (cla: yes, waiting for tree to go green)
[22117](https://github.com/flutter/engine/pull/22117) Roll Dart SDK from 9ba287dfd221 to 6e015bd9cddb (1 revision) (cla: yes, waiting for tree to go green)
[22118](https://github.com/flutter/engine/pull/22118) Roll Skia from aea82732415c to c493eabd56d0 (2 revisions) (cla: yes, waiting for tree to go green)
[22119](https://github.com/flutter/engine/pull/22119) Roll Skia from c493eabd56d0 to 189ecd485ade (3 revisions) (cla: yes, waiting for tree to go green)
[22121](https://github.com/flutter/engine/pull/22121) Roll Skia from 189ecd485ade to 5bbbb49f1da0 (4 revisions) (cla: yes, waiting for tree to go green)
[22124](https://github.com/flutter/engine/pull/22124) add a package config file to const finder test fixtures (cla: yes, waiting for tree to go green)
[22125](https://github.com/flutter/engine/pull/22125) Fix possible use of std::moved value in Rasterizer (cla: yes, waiting for tree to go green)
[22127](https://github.com/flutter/engine/pull/22127) Roll Fuchsia Linux SDK from 5teTtbQ9-... to XYN02FThN... (cla: yes, waiting for tree to go green)
[22135](https://github.com/flutter/engine/pull/22135) Fix incorrect parameter used for self object (cla: yes, waiting for tree to go green)
[22138](https://github.com/flutter/engine/pull/22138) Roll Fuchsia Mac SDK from n-yA0KEMT... to GKPwGj1Ux... (cla: yes, waiting for tree to go green)
[22140](https://github.com/flutter/engine/pull/22140) Roll Skia from 5bbbb49f1da0 to 7737a5bd2510 (13 revisions) (cla: yes, waiting for tree to go green)
[22146](https://github.com/flutter/engine/pull/22146) Roll Skia from 7737a5bd2510 to 5567a6091ceb (8 revisions) (cla: yes, waiting for tree to go green)
[22147](https://github.com/flutter/engine/pull/22147) Roll Fuchsia Linux SDK from XYN02FThN... to UKgKCjxSA... (cla: yes, waiting for tree to go green)
[22150](https://github.com/flutter/engine/pull/22150) [web] Clean up unused previousStyle logic (cla: yes, platform-web, waiting for tree to go green)
[22151](https://github.com/flutter/engine/pull/22151) Roll Fuchsia Mac SDK from GKPwGj1Ux... to xHjtLQPQ5... (cla: yes, waiting for tree to go green)
[22153](https://github.com/flutter/engine/pull/22153) Manual Dart SDK roll 6e015bd9cddb to 9c6e76468ca4 (6 revisions) (cla: yes, waiting for tree to go green)
[22155](https://github.com/flutter/engine/pull/22155) Roll Skia from 5567a6091ceb to f548a028ce70 (7 revisions) (cla: yes, waiting for tree to go green)
[22175](https://github.com/flutter/engine/pull/22175) Roll Fuchsia Linux SDK from UKgKCjxSA... to PY5hNI-wY... (cla: yes, waiting for tree to go green)
[22179](https://github.com/flutter/engine/pull/22179) Split AOT Android Embedder and shell (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22180](https://github.com/flutter/engine/pull/22180) Standardize macro names for dartdoc macros (cla: yes, waiting for tree to go green)
[22181](https://github.com/flutter/engine/pull/22181) Refactor platform message logic (cla: yes, waiting for tree to go green)
[22182](https://github.com/flutter/engine/pull/22182) [web] Fix for firefox custom clipping (cla: yes, platform-web, waiting for tree to go green)
[22188](https://github.com/flutter/engine/pull/22188) Roll Fuchsia Mac SDK from xHjtLQPQ5... to ICK_JlnKJ... (cla: yes, waiting for tree to go green)
[22195](https://github.com/flutter/engine/pull/22195) Update painting.dart with an annotation error. (cla: yes, waiting for tree to go green)
[22197](https://github.com/flutter/engine/pull/22197) Roll Fuchsia Linux SDK from PY5hNI-wY... to Usec4YBzR... (cla: yes, waiting for tree to go green)
[22198](https://github.com/flutter/engine/pull/22198) Migrate runZoned to runZonedGuarded (cla: yes, waiting for tree to go green)
[22203](https://github.com/flutter/engine/pull/22203) Fix some serious lifecycle bugs with Android embedding code (cla: yes, platform-android, waiting for tree to go green)
[22205](https://github.com/flutter/engine/pull/22205) makes android semanticsnode to ignore hittest if it is not focusable (cla: yes, platform-android, waiting for tree to go green)
[22213](https://github.com/flutter/engine/pull/22213) Manual Roll of Dart to ba80ed989cc...9c6e76468ca (cla: yes, waiting for tree to go green)
[22214](https://github.com/flutter/engine/pull/22214) Platform views have CreateExternalViewEmbedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22215](https://github.com/flutter/engine/pull/22215) [web] Canoncalize font family on input fields (cla: yes, platform-web, waiting for tree to go green)
[22216](https://github.com/flutter/engine/pull/22216) Manual roll of Dart 1a18fff9ad2e...ba80ed989cc (cla: yes, waiting for tree to go green)
[22219](https://github.com/flutter/engine/pull/22219) Roll Fuchsia Mac SDK from ICK_JlnKJ... to mhak7e_o6... (cla: yes, waiting for tree to go green)
[22220](https://github.com/flutter/engine/pull/22220) Roll Fuchsia Linux SDK from Usec4YBzR... to sNx8qabBn... (cla: yes, waiting for tree to go green)
[22221](https://github.com/flutter/engine/pull/22221) Update painting.dart (cla: yes, waiting for tree to go green)
[22222](https://github.com/flutter/engine/pull/22222) Roll Dart SDK from 1a18fff9ad2e to f01bcdc24ec6 (2 revisions) (cla: yes, waiting for tree to go green)
[22223](https://github.com/flutter/engine/pull/22223) Roll Dart SDK from f01bcdc24ec6 to fed66f60a3bc (1 revision) (cla: yes, waiting for tree to go green)
[22224](https://github.com/flutter/engine/pull/22224) Roll Skia from f548a028ce70 to c21902c0d3cc (46 revisions) (cla: yes, waiting for tree to go green)
[22225](https://github.com/flutter/engine/pull/22225) Roll Dart SDK from fed66f60a3bc to 25ef5dc559cf (1 revision) (cla: yes, waiting for tree to go green)
[22226](https://github.com/flutter/engine/pull/22226) Roll Skia from c21902c0d3cc to 9615bcf71f2a (1 revision) (cla: yes, waiting for tree to go green)
[22231](https://github.com/flutter/engine/pull/22231) Roll Fuchsia Mac SDK from mhak7e_o6... to 8SkbMXJJ9... (cla: yes, waiting for tree to go green)
[22234](https://github.com/flutter/engine/pull/22234) Roll Skia from 9615bcf71f2a to d5e6368fffd0 (8 revisions) (cla: yes, waiting for tree to go green)
[22237](https://github.com/flutter/engine/pull/22237) Roll Skia from d5e6368fffd0 to 7585a65ac709 (7 revisions) (cla: yes, waiting for tree to go green)
[22243](https://github.com/flutter/engine/pull/22243) Roll Dart SDK from 25ef5dc559cf to 5acb5fcf84cb (4 revisions) (cla: yes, waiting for tree to go green)
[22244](https://github.com/flutter/engine/pull/22244) Roll Fuchsia Linux SDK from sNx8qabBn... to QqGvMWaYk... (cla: yes, waiting for tree to go green)
[22246](https://github.com/flutter/engine/pull/22246) Roll Fuchsia Mac SDK from 8SkbMXJJ9... to Pz4ZHZrUp... (cla: yes, waiting for tree to go green)
[22250](https://github.com/flutter/engine/pull/22250) Roll Skia from 7585a65ac709 to dffd20efe95c (14 revisions) (cla: yes, waiting for tree to go green)
[22255](https://github.com/flutter/engine/pull/22255) Roll Dart SDK from 5acb5fcf84cb to a9d583383410 (4 revisions) (cla: yes, waiting for tree to go green)
[22257](https://github.com/flutter/engine/pull/22257) do not print in _computePixelDensity (cla: yes, waiting for tree to go green)
[22258](https://github.com/flutter/engine/pull/22258) Roll Dart SDK from a9d583383410 to d2577410a501 (1 revision) (cla: yes, waiting for tree to go green)
[22262](https://github.com/flutter/engine/pull/22262) Roll Fuchsia Mac SDK from Pz4ZHZrUp... to 6yEx5GNGG... (cla: yes, waiting for tree to go green)
[22264](https://github.com/flutter/engine/pull/22264) Roll Fuchsia Linux SDK from QqGvMWaYk... to oLF1FW-gC... (cla: yes, waiting for tree to go green)
[22265](https://github.com/flutter/engine/pull/22265) Roll Dart SDK from 52783837369d to b43baaaa477d (723 revisions) (cla: yes, waiting for tree to go green)
[22269](https://github.com/flutter/engine/pull/22269) Roll Dart SDK from b43baaaa477d to a4fbabcd73dc (1 revision) (cla: yes, waiting for tree to go green)
[22270](https://github.com/flutter/engine/pull/22270) Fix code style issues in MacOS embedder (cla: yes, waiting for tree to go green)
[22271](https://github.com/flutter/engine/pull/22271) Roll Fuchsia Mac SDK from 6yEx5GNGG... to o45EAhxJZ... (cla: yes, waiting for tree to go green)
[22272](https://github.com/flutter/engine/pull/22272) Remove GetExternalViewEmbedder from surface (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22275](https://github.com/flutter/engine/pull/22275) Do not involve external_view_embedder in submit frame process if threads are not merged. (cla: yes, platform-ios, waiting for tree to go green)
[22276](https://github.com/flutter/engine/pull/22276) Roll Fuchsia Linux SDK from oLF1FW-gC... to Esyuo1am1... (cla: yes, waiting for tree to go green)
[22277](https://github.com/flutter/engine/pull/22277) Roll Skia from dffd20efe95c to 6e7cfaff1817 (37 revisions) (cla: yes, waiting for tree to go green)
[22281](https://github.com/flutter/engine/pull/22281) Roll Skia from 6e7cfaff1817 to 0e54309477ac (2 revisions) (cla: yes, waiting for tree to go green)
[22282](https://github.com/flutter/engine/pull/22282) added unit tests to the rasterizer (cla: yes, waiting for tree to go green)
[22283](https://github.com/flutter/engine/pull/22283) Roll Dart SDK from a4fbabcd73dc to 57bb12dc24d2 (1 revision) (cla: yes, waiting for tree to go green)
[22284](https://github.com/flutter/engine/pull/22284) [linux] Change the buildroot DEPS for Linux Arm64 support (cla: yes, waiting for tree to go green)
[22286](https://github.com/flutter/engine/pull/22286) Roll Skia from 0e54309477ac to 938932225cef (1 revision) (cla: yes, waiting for tree to go green)
[22287](https://github.com/flutter/engine/pull/22287) Roll Dart SDK from 57bb12dc24d2 to 599329b5cd98 (1 revision) (cla: yes, waiting for tree to go green)
[22288](https://github.com/flutter/engine/pull/22288) Roll Skia from 938932225cef to 97469f4abe0a (2 revisions) (cla: yes, waiting for tree to go green)
[22289](https://github.com/flutter/engine/pull/22289) Roll Fuchsia Mac SDK from o45EAhxJZ... to m1uK0SlYN... (cla: yes, waiting for tree to go green)
[22291](https://github.com/flutter/engine/pull/22291) Roll Dart SDK from 599329b5cd98 to fbc56c1561ba (1 revision) (cla: yes, waiting for tree to go green)
[22292](https://github.com/flutter/engine/pull/22292) Updated return-type for PathMetric.extractPath to be non-nullable (cla: yes, waiting for tree to go green)
[22293](https://github.com/flutter/engine/pull/22293) Roll Dart SDK from fbc56c1561ba to bf751197ddb9 (1 revision) (cla: yes, waiting for tree to go green)
[22294](https://github.com/flutter/engine/pull/22294) Roll Skia from 97469f4abe0a to a8f4c91114b5 (1 revision) (cla: yes, waiting for tree to go green)
[22295](https://github.com/flutter/engine/pull/22295) Roll Fuchsia Linux SDK from Esyuo1am1... to Z1HqmxtPR... (cla: yes, waiting for tree to go green)
[22296](https://github.com/flutter/engine/pull/22296) Roll Skia from a8f4c91114b5 to 3744b2a36638 (6 revisions) (cla: yes, waiting for tree to go green)
[22297](https://github.com/flutter/engine/pull/22297) Roll Skia from 3744b2a36638 to 007d97d69962 (2 revisions) (cla: yes, waiting for tree to go green)
[22298](https://github.com/flutter/engine/pull/22298) Revert "support uri intent launcher in android (#21275)" (cla: yes, platform-android, waiting for tree to go green)
[22299](https://github.com/flutter/engine/pull/22299) Roll Dart SDK from bf751197ddb9 to e182eac158cf (1 revision) (cla: yes, waiting for tree to go green)
[22302](https://github.com/flutter/engine/pull/22302) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22306](https://github.com/flutter/engine/pull/22306) Roll Skia from 007d97d69962 to 68dcf542b79f (12 revisions) (cla: yes, waiting for tree to go green)
[22316](https://github.com/flutter/engine/pull/22316) Roll Fuchsia Mac SDK from m1uK0SlYN... to NimIr5BT-... (cla: yes, waiting for tree to go green)
[22317](https://github.com/flutter/engine/pull/22317) Roll Fuchsia Linux SDK from Z1HqmxtPR... to 2rLs0vAIz... (cla: yes, waiting for tree to go green)
[22319](https://github.com/flutter/engine/pull/22319) Roll Skia from 68dcf542b79f to 694ff1735711 (5 revisions) (cla: yes, waiting for tree to go green)
[22320](https://github.com/flutter/engine/pull/22320) Move common graphics utils to //flutter/common/graphics (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22324](https://github.com/flutter/engine/pull/22324) Roll Skia from 694ff1735711 to 71624de2c5d9 (12 revisions) (cla: yes, waiting for tree to go green)
[22330](https://github.com/flutter/engine/pull/22330) Roll Fuchsia Mac SDK from NimIr5BT-... to XV9_JbDD-... (cla: yes, waiting for tree to go green)
[22331](https://github.com/flutter/engine/pull/22331) Roll Fuchsia Linux SDK from 2rLs0vAIz... to pCIhWatQU... (cla: yes, waiting for tree to go green)
[22332](https://github.com/flutter/engine/pull/22332) Roll dart e182eac158cf..9bc7d4604277 (cla: yes, waiting for tree to go green)
[22333](https://github.com/flutter/engine/pull/22333) Roll Skia from 71624de2c5d9 to f8f23b203079 (8 revisions) (cla: yes, waiting for tree to go green)
[22336](https://github.com/flutter/engine/pull/22336) Move layer clip culling to Paint() method to fix child caching (cla: yes, waiting for tree to go green)
[22337](https://github.com/flutter/engine/pull/22337) Revert "Added the ability to set the initial route via launch urls. (… (cla: yes, platform-ios, waiting for tree to go green)
[22339](https://github.com/flutter/engine/pull/22339) Roll Skia from f8f23b203079 to 8d0f710ef0e0 (2 revisions) (cla: yes, waiting for tree to go green)
[22341](https://github.com/flutter/engine/pull/22341) Roll Dart SDK from 9bc7d4604277 to 1936a7d1909d (2 revisions) (cla: yes, waiting for tree to go green)
[22343](https://github.com/flutter/engine/pull/22343) Roll Skia from 8d0f710ef0e0 to 92bc649cd7e6 (1 revision) (cla: yes, waiting for tree to go green)
[22344](https://github.com/flutter/engine/pull/22344) Roll Skia from 92bc649cd7e6 to 05f74f28d688 (3 revisions) (cla: yes, waiting for tree to go green)
[22346](https://github.com/flutter/engine/pull/22346) Roll Fuchsia Mac SDK from XV9_JbDD-... to TwfKJxO8r... (cla: yes, waiting for tree to go green)
[22347](https://github.com/flutter/engine/pull/22347) Roll Fuchsia Linux SDK from pCIhWatQU... to oNrhKDRLZ... (cla: yes, waiting for tree to go green)
[22349](https://github.com/flutter/engine/pull/22349) Roll Skia from 05f74f28d688 to 6cafdc069bdb (1 revision) (cla: yes, waiting for tree to go green)
[22350](https://github.com/flutter/engine/pull/22350) Roll Dart SDK from 1936a7d1909d to fe12b0536f42 (1 revision) (cla: yes, waiting for tree to go green)
[22352](https://github.com/flutter/engine/pull/22352) Roll Skia from 6cafdc069bdb to ba9a04fb8d5a (3 revisions) (cla: yes, waiting for tree to go green)
[22355](https://github.com/flutter/engine/pull/22355) Roll Skia from ba9a04fb8d5a to 4eb7c23d5289 (4 revisions) (cla: yes, waiting for tree to go green)
[22356](https://github.com/flutter/engine/pull/22356) Reland deeplinking with info.plist check (cla: yes, platform-ios, waiting for tree to go green)
[22358](https://github.com/flutter/engine/pull/22358) Roll Skia from 4eb7c23d5289 to b8123cc87770 (6 revisions) (cla: yes, waiting for tree to go green)
[22360](https://github.com/flutter/engine/pull/22360) [android] Platform view creates external view embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22361](https://github.com/flutter/engine/pull/22361) Roll Skia from b8123cc87770 to e886b8e8b10b (7 revisions) (cla: yes, waiting for tree to go green)
[22364](https://github.com/flutter/engine/pull/22364) Roll Skia from e886b8e8b10b to 86d4cfdf8edc (2 revisions) (cla: yes, waiting for tree to go green)
[22368](https://github.com/flutter/engine/pull/22368) Roll Skia from 86d4cfdf8edc to c2bfcff07225 (1 revision) (cla: yes, waiting for tree to go green)
[22369](https://github.com/flutter/engine/pull/22369) Roll Fuchsia Mac SDK from TwfKJxO8r... to VMNxgZGv9... (cla: yes, waiting for tree to go green)
[22372](https://github.com/flutter/engine/pull/22372) Reland "Do not involve external_view_embedder in submit frame process if threads are not merged. #22275" (cla: yes, platform-ios, waiting for tree to go green)
[22373](https://github.com/flutter/engine/pull/22373) loadFontFromList returns void instead of string (cla: yes, waiting for tree to go green)
[22375](https://github.com/flutter/engine/pull/22375) Add SDK constraint to a pubspec (cla: yes, waiting for tree to go green)
[22376](https://github.com/flutter/engine/pull/22376) Roll Fuchsia Linux SDK from oNrhKDRLZ... to KMV-UCyzK... (cla: yes, waiting for tree to go green)
[22378](https://github.com/flutter/engine/pull/22378) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22379](https://github.com/flutter/engine/pull/22379) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22381](https://github.com/flutter/engine/pull/22381) Roll Fuchsia Mac SDK from VMNxgZGv9... to rMD6SyXwO... (cla: yes, waiting for tree to go green)
[22382](https://github.com/flutter/engine/pull/22382) Roll Skia from c2bfcff07225 to ed435953dfd6 (1 revision) (cla: yes, waiting for tree to go green)
[22383](https://github.com/flutter/engine/pull/22383) Roll Fuchsia Linux SDK from KMV-UCyzK... to e9vV76ZgA... (cla: yes, waiting for tree to go green)
[22386](https://github.com/flutter/engine/pull/22386) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22389](https://github.com/flutter/engine/pull/22389) Roll Fuchsia Mac SDK from rMD6SyXwO... to ZOJgUMChm... (cla: yes, waiting for tree to go green)
[22390](https://github.com/flutter/engine/pull/22390) Roll Fuchsia Linux SDK from e9vV76ZgA... to OBQ4E_4kG... (cla: yes, waiting for tree to go green)
[22391](https://github.com/flutter/engine/pull/22391) Roll Skia from ed435953dfd6 to cfe647c02fb4 (1 revision) (cla: yes, waiting for tree to go green)
[22392](https://github.com/flutter/engine/pull/22392) Roll Fuchsia Mac SDK from ZOJgUMChm... to 5rXlkcaVT... (cla: yes, waiting for tree to go green)
[22393](https://github.com/flutter/engine/pull/22393) Roll Fuchsia Linux SDK from OBQ4E_4kG... to g6EuxMthn... (cla: yes, waiting for tree to go green)
[22398](https://github.com/flutter/engine/pull/22398) Roll Fuchsia Mac SDK from 5rXlkcaVT... to fkTLW7DRc... (cla: yes, waiting for tree to go green)
[22399](https://github.com/flutter/engine/pull/22399) Roll Skia from cfe647c02fb4 to ee0ce9858cbc (1 revision) (cla: yes, waiting for tree to go green)
[22400](https://github.com/flutter/engine/pull/22400) Roll Dart SDK from a188781c9fc8 to 26219fa05863 (1 revision) (cla: yes, waiting for tree to go green)
[22402](https://github.com/flutter/engine/pull/22402) Roll Skia from ee0ce9858cbc to 5de0b38dd133 (6 revisions) (cla: yes, waiting for tree to go green)
[22403](https://github.com/flutter/engine/pull/22403) [PlatformViewsController] Clear root_views_ in Reset (cla: yes, platform-ios, waiting for tree to go green)
[22404](https://github.com/flutter/engine/pull/22404) Roll Skia from 5de0b38dd133 to ee1098db15b2 (4 revisions) (cla: yes, waiting for tree to go green)
[22405](https://github.com/flutter/engine/pull/22405) Rasterizer is initialized with an external view embedder (cla: yes, waiting for tree to go green)
[22406](https://github.com/flutter/engine/pull/22406) PlatformViewsController always make sure the touch events are finished (cla: yes, platform-ios, waiting for tree to go green)
[22411](https://github.com/flutter/engine/pull/22411) Roll Skia from ee1098db15b2 to 84d503b21322 (3 revisions) (cla: yes, waiting for tree to go green)
[22412](https://github.com/flutter/engine/pull/22412) Add D3D9 fallback path for ANGLE and ensure fallbacks are actually attempted (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22413](https://github.com/flutter/engine/pull/22413) Roll Dart SDK from 26219fa05863 to 8749fdff07f5 (2 revisions) (cla: yes, waiting for tree to go green)
[22415](https://github.com/flutter/engine/pull/22415) Simplify refs from CkImage to SkImage (cla: yes, waiting for tree to go green)
[22416](https://github.com/flutter/engine/pull/22416) Roll Fuchsia Mac SDK from fkTLW7DRc... to w10eytxvc... (cla: yes, waiting for tree to go green)
[22417](https://github.com/flutter/engine/pull/22417) Roll Fuchsia Linux SDK from g6EuxMthn... to DzZi2gPbF... (cla: yes, waiting for tree to go green)
[22418](https://github.com/flutter/engine/pull/22418) Roll Skia from 84d503b21322 to 5b8598952931 (7 revisions) (cla: yes, waiting for tree to go green)
[22419](https://github.com/flutter/engine/pull/22419) Roll Skia from 5b8598952931 to 02dd0ed8ce5e (1 revision) (cla: yes, waiting for tree to go green)
[22420](https://github.com/flutter/engine/pull/22420) Roll Skia from 02dd0ed8ce5e to fb5850f41043 (4 revisions) (cla: yes, waiting for tree to go green)
[22421](https://github.com/flutter/engine/pull/22421) Roll Skia from fb5850f41043 to 008d63e23dab (6 revisions) (cla: yes, waiting for tree to go green)
[22422](https://github.com/flutter/engine/pull/22422) Roll Skia from 008d63e23dab to 267826c86552 (4 revisions) (cla: yes, waiting for tree to go green)
[22423](https://github.com/flutter/engine/pull/22423) Roll Fuchsia Mac SDK from w10eytxvc... to e-4Jm-yWa... (cla: yes, waiting for tree to go green)
[22424](https://github.com/flutter/engine/pull/22424) Roll Skia from 267826c86552 to 88e8bb2fe2d5 (3 revisions) (cla: yes, waiting for tree to go green)
[22425](https://github.com/flutter/engine/pull/22425) Roll Skia from 88e8bb2fe2d5 to a0a5146ba9d1 (2 revisions) (cla: yes, waiting for tree to go green)
[22427](https://github.com/flutter/engine/pull/22427) Roll Fuchsia Linux SDK from DzZi2gPbF... to Z-OUQ5Dti... (cla: yes, waiting for tree to go green)
[22428](https://github.com/flutter/engine/pull/22428) Roll Skia from a0a5146ba9d1 to 1fe2b80dc782 (2 revisions) (cla: yes, waiting for tree to go green)
[22432](https://github.com/flutter/engine/pull/22432) Roll Skia from 1fe2b80dc782 to 24c18526a564 (1 revision) (cla: yes, waiting for tree to go green)
[22433](https://github.com/flutter/engine/pull/22433) Roll Skia from 24c18526a564 to 7006e15df59d (1 revision) (cla: yes, waiting for tree to go green)
[22434](https://github.com/flutter/engine/pull/22434) Revert "[Android Text Input] Make the editing state listenable and allow batch edits " (cla: yes, platform-android, waiting for tree to go green)
[22435](https://github.com/flutter/engine/pull/22435) [Android text input] Reland #21534 (cla: yes, platform-android, waiting for tree to go green)
[22437](https://github.com/flutter/engine/pull/22437) Roll Skia from 7006e15df59d to 869eb97f6c29 (4 revisions) (cla: yes, waiting for tree to go green)
[22440](https://github.com/flutter/engine/pull/22440) Roll Fuchsia Linux SDK from Z-OUQ5Dti... to pWW5QaeNe... (cla: yes, waiting for tree to go green)
[22446](https://github.com/flutter/engine/pull/22446) Make CkPath resurrectable (cla: yes, waiting for tree to go green)
[22447](https://github.com/flutter/engine/pull/22447) Roll Fuchsia Mac SDK from e-4Jm-yWa... to 9t3yDRxI8... (cla: yes, waiting for tree to go green)
[22450](https://github.com/flutter/engine/pull/22450) Roll Dart SDK from 8749fdff07f5 to 40a4d9b44d72 (1 revision) (cla: yes, waiting for tree to go green)
[22451](https://github.com/flutter/engine/pull/22451) libtxt: use a placeholder run's width as the width of the placeholder character's glyph (cla: yes, waiting for tree to go green)
[22452](https://github.com/flutter/engine/pull/22452) Roll Skia from 869eb97f6c29 to 70eba23828a3 (20 revisions) (cla: yes, waiting for tree to go green)
[22454](https://github.com/flutter/engine/pull/22454) Also maintain the zone on the ChannelBuffers.push callback (cla: yes, waiting for tree to go green)
[22455](https://github.com/flutter/engine/pull/22455) Fix the event size parameters in the Embedder ComplexClip test (cla: yes, waiting for tree to go green)
[22458](https://github.com/flutter/engine/pull/22458) Roll Skia from 70eba23828a3 to 59bafeeaa7de (3 revisions) (cla: yes, waiting for tree to go green)
[22460](https://github.com/flutter/engine/pull/22460) Roll Dart SDK from 40a4d9b44d72 to 620cf701720d (1 revision) (cla: yes, waiting for tree to go green)
[22462](https://github.com/flutter/engine/pull/22462) Roll Fuchsia Linux SDK from pWW5QaeNe... to fULjPqtx9... (cla: yes, waiting for tree to go green)
[22464](https://github.com/flutter/engine/pull/22464) Roll Fuchsia Mac SDK from 9t3yDRxI8... to 8ZF4hapvg... (cla: yes, waiting for tree to go green)
[22467](https://github.com/flutter/engine/pull/22467) Roll Skia from 59bafeeaa7de to 43f0a7d724aa (1 revision) (cla: yes, waiting for tree to go green)
[22470](https://github.com/flutter/engine/pull/22470) Reland "remove surface dependance on external view embedder (#22468)" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22479](https://github.com/flutter/engine/pull/22479) Roll Skia from 43f0a7d724aa to fc4fdc5b25f4 (27 revisions) (cla: yes, waiting for tree to go green)
[22480](https://github.com/flutter/engine/pull/22480) Roll Dart SDK from 620cf701720d to 3e502e0c7e04 (4 revisions) (cla: yes, waiting for tree to go green)
[22482](https://github.com/flutter/engine/pull/22482) Roll Skia from fc4fdc5b25f4 to a06b63c56ecd (2 revisions) (cla: yes, waiting for tree to go green)
[22485](https://github.com/flutter/engine/pull/22485) Add and use --quiet flag on the license checker (cla: yes, waiting for tree to go green)
[22487](https://github.com/flutter/engine/pull/22487) Roll Skia from a06b63c56ecd to 8ead30d51c86 (1 revision) (cla: yes, waiting for tree to go green)
[22490](https://github.com/flutter/engine/pull/22490) Roll Fuchsia Linux SDK from fULjPqtx9... to B4PaMsNWM... (cla: yes, waiting for tree to go green)
[22491](https://github.com/flutter/engine/pull/22491) Roll Dart SDK from 3e502e0c7e04 to 41893ff76b0f (1 revision) (cla: yes, waiting for tree to go green)
[22493](https://github.com/flutter/engine/pull/22493) Roll Skia from 8ead30d51c86 to 011218edb590 (4 revisions) (cla: yes, waiting for tree to go green)
[22497](https://github.com/flutter/engine/pull/22497) Roll Fuchsia Mac SDK from 8ZF4hapvg... to vjuGOKwGt... (cla: yes, waiting for tree to go green)
[22498](https://github.com/flutter/engine/pull/22498) Roll Dart SDK from 41893ff76b0f to bf20abbb8e22 (2 revisions) (cla: yes, waiting for tree to go green)
[22499](https://github.com/flutter/engine/pull/22499) Roll Skia from 011218edb590 to efd628a1a965 (2 revisions) (cla: yes, waiting for tree to go green)
[22503](https://github.com/flutter/engine/pull/22503) Roll Skia from efd628a1a965 to cae335d5b18f (5 revisions) (cla: yes, waiting for tree to go green)
[22504](https://github.com/flutter/engine/pull/22504) Roll Fuchsia Linux SDK from B4PaMsNWM... to S4lxhP7Qt... (cla: yes, waiting for tree to go green)
[22514](https://github.com/flutter/engine/pull/22514) Roll Skia from cae335d5b18f to 031a76756e24 (8 revisions) (cla: yes, waiting for tree to go green)
[22515](https://github.com/flutter/engine/pull/22515) Roll Dart SDK from bf20abbb8e22 to 7bbace20d14f (1 revision) (cla: yes, waiting for tree to go green)
[22518](https://github.com/flutter/engine/pull/22518) Roll Dart SDK from 5ea7e4d39f43 to 6a805f4dbcf4 (1 revision) (cla: yes, waiting for tree to go green)
[22521](https://github.com/flutter/engine/pull/22521) Roll Fuchsia Mac SDK from vjuGOKwGt... to 6gGbW-hRH... (cla: yes, waiting for tree to go green)
[22522](https://github.com/flutter/engine/pull/22522) Roll Fuchsia Linux SDK from S4lxhP7Qt... to ywh3expSX... (cla: yes, waiting for tree to go green)
[22523](https://github.com/flutter/engine/pull/22523) Roll Dart SDK from 6a805f4dbcf4 to 6135aed34f56 (1 revision) (cla: yes, waiting for tree to go green)
[22524](https://github.com/flutter/engine/pull/22524) Roll Dart SDK from 6135aed34f56 to 12c5be745bb5 (1 revision) (cla: yes, waiting for tree to go green)
[22526](https://github.com/flutter/engine/pull/22526) Roll Fuchsia Mac SDK from 6gGbW-hRH... to wSCtFA1Mj... (cla: yes, waiting for tree to go green)
[22527](https://github.com/flutter/engine/pull/22527) Roll Fuchsia Linux SDK from ywh3expSX... to WVpXfkg-V... (cla: yes, waiting for tree to go green)
[22528](https://github.com/flutter/engine/pull/22528) Roll Fuchsia Mac SDK from wSCtFA1Mj... to 6LXPsNi-P... (cla: yes, waiting for tree to go green)
[22529](https://github.com/flutter/engine/pull/22529) Roll Fuchsia Linux SDK from WVpXfkg-V... to E3briMHHv... (cla: yes, waiting for tree to go green)
[22530](https://github.com/flutter/engine/pull/22530) Replace dead links in docs (cla: yes, waiting for tree to go green)
[22531](https://github.com/flutter/engine/pull/22531) Roll Dart SDK from 12c5be745bb5 to 92e087bf82e2 (1 revision) (cla: yes, waiting for tree to go green)
[22533](https://github.com/flutter/engine/pull/22533) Roll Skia from 031a76756e24 to cce84d1fd893 (4 revisions) (cla: yes, waiting for tree to go green)
[22534](https://github.com/flutter/engine/pull/22534) Roll Fuchsia Mac SDK from 6LXPsNi-P... to LOnq8wpIx... (cla: yes, waiting for tree to go green)
[22536](https://github.com/flutter/engine/pull/22536) Roll Dart SDK from 92e087bf82e2 to d67a5c245285 (1 revision) (cla: yes, waiting for tree to go green)
[22537](https://github.com/flutter/engine/pull/22537) Roll Fuchsia Linux SDK from E3briMHHv... to 2R7OWHAQq... (cla: yes, waiting for tree to go green)
[22538](https://github.com/flutter/engine/pull/22538) [Android] Add systemNavigationBarDividerColor (cla: yes, platform-android, waiting for tree to go green)
[22539](https://github.com/flutter/engine/pull/22539) Roll Skia from cce84d1fd893 to 5a89ed542f06 (7 revisions) (cla: yes, waiting for tree to go green)
[22540](https://github.com/flutter/engine/pull/22540) Fix and clean up scenario app for Android (cla: yes, waiting for tree to go green)
[22541](https://github.com/flutter/engine/pull/22541) Roll Skia from 5a89ed542f06 to ef8d52d8b2bb (3 revisions) (cla: yes, waiting for tree to go green)
[22544](https://github.com/flutter/engine/pull/22544) Roll Dart SDK from d67a5c245285 to 4bf74ee7d04e (2 revisions) (cla: yes, waiting for tree to go green)
[22546](https://github.com/flutter/engine/pull/22546) Re-enable ShellTest.SkipAndSubmitFrame (cla: yes, waiting for tree to go green)
[22548](https://github.com/flutter/engine/pull/22548) Roll Skia from ef8d52d8b2bb to 396974683cbd (5 revisions) (cla: yes, waiting for tree to go green)
[22549](https://github.com/flutter/engine/pull/22549) Refactor CanvasKit image ref counting; fix a minor memory leak (cla: yes, waiting for tree to go green)
[22550](https://github.com/flutter/engine/pull/22550) [goma] Use depot_tools vended goma when it is present (cla: yes, waiting for tree to go green)
[22554](https://github.com/flutter/engine/pull/22554) Roll Skia from 396974683cbd to ee33a3a07262 (1 revision) (cla: yes, waiting for tree to go green)
[22556](https://github.com/flutter/engine/pull/22556) Roll Skia from ee33a3a07262 to 1ce8964db113 (1 revision) (cla: yes, waiting for tree to go green)
[22558](https://github.com/flutter/engine/pull/22558) Roll Dart SDK from 4bf74ee7d04e to 061817652723 (1 revision) (cla: yes, waiting for tree to go green)
[22561](https://github.com/flutter/engine/pull/22561) Roll Fuchsia Linux SDK from 2R7OWHAQq... to NWl53Ll5C... (cla: yes, waiting for tree to go green)
[22562](https://github.com/flutter/engine/pull/22562) Roll Fuchsia Mac SDK from LOnq8wpIx... to 7W0E0ZKtm... (cla: yes, waiting for tree to go green)
[22563](https://github.com/flutter/engine/pull/22563) Roll Skia from 1ce8964db113 to c634fc4a664c (16 revisions) (cla: yes, waiting for tree to go green)
[22567](https://github.com/flutter/engine/pull/22567) Roll Skia from c634fc4a664c to 75c38f94efd6 (2 revisions) (cla: yes, waiting for tree to go green)
[22569](https://github.com/flutter/engine/pull/22569) [macOS] Isolate openGL rendering to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22570](https://github.com/flutter/engine/pull/22570) Roll Skia from 75c38f94efd6 to 8f46ecc84fab (1 revision) (cla: yes, waiting for tree to go green)
[22572](https://github.com/flutter/engine/pull/22572) [macOS] Move the glContext generation to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22574](https://github.com/flutter/engine/pull/22574) PlatformViewsController: clear composition_order_ in the beginning of each frame. (cla: yes, platform-ios, waiting for tree to go green)
[22575](https://github.com/flutter/engine/pull/22575) Implement image resurrection (cla: yes, waiting for tree to go green)
[22578](https://github.com/flutter/engine/pull/22578) Roll Skia from 8f46ecc84fab to 6aeb414df947 (1 revision) (cla: yes, waiting for tree to go green)
[22579](https://github.com/flutter/engine/pull/22579) Roll Skia from 6aeb414df947 to a1112b326a79 (3 revisions) (cla: yes, waiting for tree to go green)
[22581](https://github.com/flutter/engine/pull/22581) Roll Fuchsia Linux SDK from NWl53Ll5C... to Oh__c-W9V... (cla: yes, waiting for tree to go green)
[22583](https://github.com/flutter/engine/pull/22583) Roll Fuchsia Linux SDK from Oh__c-W9V... to cwFOtNvhn... (cla: yes, waiting for tree to go green)
[22584](https://github.com/flutter/engine/pull/22584) Roll Skia from a1112b326a79 to 2efafe688dd1 (1 revision) (cla: yes, waiting for tree to go green)
[22587](https://github.com/flutter/engine/pull/22587) Roll Fuchsia Mac SDK from 7W0E0ZKtm... to aqxbkh0hC... (cla: yes, waiting for tree to go green)
[22591](https://github.com/flutter/engine/pull/22591) Made tools/gn error out if it can't find goma (cla: yes, waiting for tree to go green)
[22592](https://github.com/flutter/engine/pull/22592) [macOS] Revert breaking change to FlutterEngine public API (cla: yes, waiting for tree to go green)
[22594](https://github.com/flutter/engine/pull/22594) libtxt: Clone an ICU line break iterator for each Paragraph/WordBreaker (cla: yes, waiting for tree to go green)
[22596](https://github.com/flutter/engine/pull/22596) Roll Skia from 2efafe688dd1 to d1d872905b0f (28 revisions) (cla: yes, waiting for tree to go green)
[22598](https://github.com/flutter/engine/pull/22598) Replace support libraries for AndroidX (cla: yes, platform-android, waiting for tree to go green)
[22599](https://github.com/flutter/engine/pull/22599) Rename padding->viewPadding to match framework naming conventions (cla: yes, platform-android, waiting for tree to go green)
[22602](https://github.com/flutter/engine/pull/22602) Roll Fuchsia Linux SDK from cwFOtNvhn... to aAb3NJv_h... (cla: yes, waiting for tree to go green)
[22604](https://github.com/flutter/engine/pull/22604) Roll Fuchsia Mac SDK from aqxbkh0hC... to DQpWjEN59... (cla: yes, waiting for tree to go green)
[22615](https://github.com/flutter/engine/pull/22615) Roll Dart SDK from 061817652723 to 12fded61a2bc (12 revisions) (cla: yes, waiting for tree to go green)
[22616](https://github.com/flutter/engine/pull/22616) Roll Skia from d1d872905b0f to 9496fe5bcec9 (25 revisions) (cla: yes, waiting for tree to go green)
[22621](https://github.com/flutter/engine/pull/22621) Roll Skia from 9496fe5bcec9 to ed289e777cfa (2 revisions) (cla: yes, waiting for tree to go green)
[22623](https://github.com/flutter/engine/pull/22623) Roll Dart SDK from 12fded61a2bc to a06d469024fd (1 revision) (cla: yes, waiting for tree to go green)
[22624](https://github.com/flutter/engine/pull/22624) Split AOT Engine Runtime (affects: engine, cla: yes, waiting for tree to go green)
[22626](https://github.com/flutter/engine/pull/22626) Fix double delete on backspace on Android (cla: yes, platform-android, waiting for tree to go green)
[22630](https://github.com/flutter/engine/pull/22630) Roll Dart SDK from a06d469024fd to b8fea79a2549 (1 revision) (cla: yes, waiting for tree to go green)
[22631](https://github.com/flutter/engine/pull/22631) Roll Fuchsia Linux SDK from aAb3NJv_h... to X1ue-JZsc... (cla: yes, waiting for tree to go green)
[22632](https://github.com/flutter/engine/pull/22632) Roll Skia from ed289e777cfa to 9dce4d081f8a (3 revisions) (cla: yes, waiting for tree to go green)
[22633](https://github.com/flutter/engine/pull/22633) Roll Fuchsia Mac SDK from DQpWjEN59... to wGZWtwuY4... (cla: yes, waiting for tree to go green)
[22634](https://github.com/flutter/engine/pull/22634) Roll Dart SDK from b8fea79a2549 to 861ebcb175b6 (1 revision) (cla: yes, waiting for tree to go green)
[22635](https://github.com/flutter/engine/pull/22635) Roll Skia from 9dce4d081f8a to 8c5889937172 (1 revision) (cla: yes, waiting for tree to go green)
[22636](https://github.com/flutter/engine/pull/22636) Roll Dart SDK from 861ebcb175b6 to 1adf3d5fa9d0 (1 revision) (cla: yes, waiting for tree to go green)
[22637](https://github.com/flutter/engine/pull/22637) Roll Skia from 8c5889937172 to 0006ad01ce55 (4 revisions) (cla: yes, waiting for tree to go green)
[22647](https://github.com/flutter/engine/pull/22647) Roll Dart SDK from 1adf3d5fa9d0 to d189db64441c (1 revision) (cla: yes, waiting for tree to go green)
[22649](https://github.com/flutter/engine/pull/22649) Roll Fuchsia Linux SDK from X1ue-JZsc... to mw1Z23AQ4... (cla: yes, waiting for tree to go green)
[22650](https://github.com/flutter/engine/pull/22650) Add Instrumentation class to web engine (cla: yes, waiting for tree to go green)
[22652](https://github.com/flutter/engine/pull/22652) Roll Fuchsia Mac SDK from wGZWtwuY4... to OFI5mVERq... (cla: yes, waiting for tree to go green)
[22656](https://github.com/flutter/engine/pull/22656) Create FlutterFrameBufferProvider class (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22659](https://github.com/flutter/engine/pull/22659) Roll Skia from 0006ad01ce55 to 0dd83e165ae9 (21 revisions) (cla: yes, waiting for tree to go green)
[22660](https://github.com/flutter/engine/pull/22660) Roll Dart SDK from d189db64441c to 2ff016f0416d (1 revision) (cla: yes, waiting for tree to go green)
[22662](https://github.com/flutter/engine/pull/22662) Enabling semantics tests for safari, ios-safari and firefox (cla: yes, waiting for tree to go green)
[22664](https://github.com/flutter/engine/pull/22664) Generate XCFramework in recipe package script (cla: yes, waiting for tree to go green)
[22666](https://github.com/flutter/engine/pull/22666) Roll Fuchsia Linux SDK from mw1Z23AQ4... to L78XAIrlz... (cla: yes, waiting for tree to go green)
[22667](https://github.com/flutter/engine/pull/22667) Roll Fuchsia Mac SDK from OFI5mVERq... to jh5hQRJsk... (cla: yes, waiting for tree to go green)
[22668](https://github.com/flutter/engine/pull/22668) Roll Skia from 0dd83e165ae9 to ee40ec6dd679 (6 revisions) (cla: yes, waiting for tree to go green)
[22671](https://github.com/flutter/engine/pull/22671) Roll Fuchsia Linux SDK from L78XAIrlz... to Nmo4pkY2s... (cla: yes, waiting for tree to go green)
[22673](https://github.com/flutter/engine/pull/22673) Roll Fuchsia Mac SDK from jh5hQRJsk... to qC9Z6PMoY... (cla: yes, waiting for tree to go green)
[22677](https://github.com/flutter/engine/pull/22677) Roll Dart SDK from 2ff016f0416d to 962ef010aedd (2 revisions) (cla: yes, waiting for tree to go green)
[22680](https://github.com/flutter/engine/pull/22680) Roll Skia from ee40ec6dd679 to b27f39c92410 (14 revisions) (cla: yes, waiting for tree to go green)
[22683](https://github.com/flutter/engine/pull/22683) Fix shell_unittests flakes related to external_view_embedder (cla: yes, waiting for tree to go green)
[22684](https://github.com/flutter/engine/pull/22684) Roll Skia from b27f39c92410 to 95b5fb9213d7 (2 revisions) (cla: yes, waiting for tree to go green)
[22685](https://github.com/flutter/engine/pull/22685) Generate Maven metadata files for engine artifacts (cla: yes, platform-android, waiting for tree to go green)
[22690](https://github.com/flutter/engine/pull/22690) Roll Dart SDK from 962ef010aedd to cde050a4c0b4 (2 revisions) (cla: yes, waiting for tree to go green)
[22692](https://github.com/flutter/engine/pull/22692) Let FlutterFragment not pop the whole activity by default when more fragments are in the activity (cla: yes, platform-android, waiting for tree to go green)
[22704](https://github.com/flutter/engine/pull/22704) Roll Fuchsia Linux SDK from Nmo4pkY2s... to GlHwWVGTU... (cla: yes, waiting for tree to go green)
[22707](https://github.com/flutter/engine/pull/22707) Roll Fuchsia Mac SDK from qC9Z6PMoY... to QKCl4nBGL... (cla: yes, waiting for tree to go green)
[22709](https://github.com/flutter/engine/pull/22709) Roll Dart SDK from cde050a4c0b4 to ed9894865fa3 (2 revisions) (cla: yes, waiting for tree to go green)
[22711](https://github.com/flutter/engine/pull/22711) Roll Skia from 95b5fb9213d7 to 68ac3b9ec3ca (17 revisions) (cla: yes, waiting for tree to go green)
[22712](https://github.com/flutter/engine/pull/22712) Roll Fuchsia Linux SDK from GlHwWVGTU... to eyiA9UhTG... (cla: yes, waiting for tree to go green)
[22713](https://github.com/flutter/engine/pull/22713) Roll Skia from 95b5fb9213d7 to 68ac3b9ec3ca (17 revisions) (cla: yes, waiting for tree to go green)
[22715](https://github.com/flutter/engine/pull/22715) Roll Skia from 68ac3b9ec3ca to 4dfa9774300c (3 revisions) (cla: yes, waiting for tree to go green)
[22719](https://github.com/flutter/engine/pull/22719) Roll Skia from 4dfa9774300c to 6c5e78d09940 (6 revisions) (cla: yes, waiting for tree to go green)
[22724](https://github.com/flutter/engine/pull/22724) Roll Skia from 6c5e78d09940 to ee792d6c96d9 (8 revisions) (cla: yes, waiting for tree to go green)
[22726](https://github.com/flutter/engine/pull/22726) Roll Fuchsia Mac SDK from QKCl4nBGL... to aXfbrLuUK... (cla: yes, waiting for tree to go green)
[22727](https://github.com/flutter/engine/pull/22727) Roll Dart SDK from ed9894865fa3 to cd7b857e70a7 (1 revision) (cla: yes, waiting for tree to go green)
[22732](https://github.com/flutter/engine/pull/22732) Roll Skia from ee792d6c96d9 to 36d06a806f69 (9 revisions) (cla: yes, waiting for tree to go green)
[22733](https://github.com/flutter/engine/pull/22733) Roll Fuchsia Linux SDK from eyiA9UhTG... to gkfmiRsIl... (cla: yes, waiting for tree to go green)
[22735](https://github.com/flutter/engine/pull/22735) Roll Skia from 36d06a806f69 to 888c5d3e57eb (2 revisions) (cla: yes, waiting for tree to go green)
[22736](https://github.com/flutter/engine/pull/22736) Add a golden scenario test for fallback font rendering on iOS take 3 (cla: yes, waiting for tree to go green)
[22737](https://github.com/flutter/engine/pull/22737) Roll Fuchsia Mac SDK from aXfbrLuUK... to 36uDTGJQp... (cla: yes, waiting for tree to go green)
[22738](https://github.com/flutter/engine/pull/22738) Roll Dart SDK from cd7b857e70a7 to ce76503f5b46 (1 revision) (cla: yes, waiting for tree to go green)
[22744](https://github.com/flutter/engine/pull/22744) Roll Fuchsia Linux SDK from gkfmiRsIl... to un3JixwuO... (cla: yes, waiting for tree to go green)
[22746](https://github.com/flutter/engine/pull/22746) Roll Skia from 888c5d3e57eb to 51b74afb84d4 (12 revisions) (cla: yes, waiting for tree to go green)
[22749](https://github.com/flutter/engine/pull/22749) Roll Skia from 51b74afb84d4 to 452369182f6e (1 revision) (cla: yes, waiting for tree to go green)
[22750](https://github.com/flutter/engine/pull/22750) Roll Skia from 452369182f6e to f2efb80bc316 (4 revisions) (cla: yes, waiting for tree to go green)
[22753](https://github.com/flutter/engine/pull/22753) Roll Fuchsia Mac SDK from 36uDTGJQp... to qpkZl0s5J... (cla: yes, waiting for tree to go green)
[22754](https://github.com/flutter/engine/pull/22754) Roll Skia from f2efb80bc316 to 8d78da910e45 (5 revisions) (cla: yes, waiting for tree to go green)
[22757](https://github.com/flutter/engine/pull/22757) Roll Fuchsia Linux SDK from un3JixwuO... to Bnaeivv07... (cla: yes, waiting for tree to go green)
[22768](https://github.com/flutter/engine/pull/22768) Roll Dart SDK from dcd5a8f005a2 to 960620d2e811 (794 revisions) (cla: yes, waiting for tree to go green)
[22769](https://github.com/flutter/engine/pull/22769) Cleanup dart_runner examples & tests. (cla: yes, waiting for tree to go green)
[22770](https://github.com/flutter/engine/pull/22770) add file package to deps in prep for glob update (cla: yes, waiting for tree to go green)
[22772](https://github.com/flutter/engine/pull/22772) Roll Skia from 8d78da910e45 to fd41d878b13d (20 revisions) (cla: yes, waiting for tree to go green)
[22776](https://github.com/flutter/engine/pull/22776) Roll Skia from fd41d878b13d to 70fe17e12f38 (6 revisions) (cla: yes, waiting for tree to go green)
[22778](https://github.com/flutter/engine/pull/22778) Roll Dart SDK from 960620d2e811 to 7a2a3968ef53 (12 revisions) (cla: yes, waiting for tree to go green)
[22779](https://github.com/flutter/engine/pull/22779) [web] Initial rich measurement implementation (cla: yes, platform-web, waiting for tree to go green)
[22781](https://github.com/flutter/engine/pull/22781) Roll Skia from 70fe17e12f38 to 4c6f57a23e63 (1 revision) (cla: yes, waiting for tree to go green)
[22793](https://github.com/flutter/engine/pull/22793) Stop using the List constructor. (cla: yes, waiting for tree to go green)
[22801](https://github.com/flutter/engine/pull/22801) Roll Dart SDK from 7a2a3968ef53 to e9a03fd98faa (5 revisions) (cla: yes, waiting for tree to go green)
[22802](https://github.com/flutter/engine/pull/22802) Roll Skia from 4c6f57a23e63 to a927771c9cce (10 revisions) (cla: yes, waiting for tree to go green)
[22803](https://github.com/flutter/engine/pull/22803) Roll Skia from a927771c9cce to 7b776b514933 (3 revisions) (cla: yes, waiting for tree to go green)
[22804](https://github.com/flutter/engine/pull/22804) Roll buildroot and benchmark (cla: yes, waiting for tree to go green)
[22805](https://github.com/flutter/engine/pull/22805) Roll Fuchsia Mac SDK from qpkZl0s5J... to 7O11wjLVX... (cla: yes, waiting for tree to go green)
[22808](https://github.com/flutter/engine/pull/22808) Roll Skia from 7b776b514933 to c504ecda03b8 (6 revisions) (cla: yes, waiting for tree to go green)
[22810](https://github.com/flutter/engine/pull/22810) Roll Dart SDK from e9a03fd98faa to 5acaa5f14b03 (1 revision) (cla: yes, waiting for tree to go green)
[22811](https://github.com/flutter/engine/pull/22811) Add static text trait to plain semantics object with label in iOS (cla: yes, platform-ios, waiting for tree to go green)
[22817](https://github.com/flutter/engine/pull/22817) Roll Fuchsia Linux SDK from Bnaeivv07... to W14Qninrb... (cla: yes, waiting for tree to go green)
[22819](https://github.com/flutter/engine/pull/22819) More rename from GPU thread to raster thread (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22820](https://github.com/flutter/engine/pull/22820) Roll Fuchsia Mac SDK from 7O11wjLVX... to Z_-ciOYM9... (cla: yes, waiting for tree to go green)
[22827](https://github.com/flutter/engine/pull/22827) Roll Dart SDK from 5acaa5f14b03 to cfaa7606cbf5 (2 revisions) (cla: yes, waiting for tree to go green)
[22828](https://github.com/flutter/engine/pull/22828) Roll Skia from c504ecda03b8 to 9443d58af292 (16 revisions) (cla: yes, waiting for tree to go green)
[22834](https://github.com/flutter/engine/pull/22834) Reland: "Fix race condition in key event handling on Android (#22658)" (cla: yes, platform-android, waiting for tree to go green)
[22839](https://github.com/flutter/engine/pull/22839) Roll Skia from 9443d58af292 to c7112edbe0f4 (10 revisions) (cla: yes, waiting for tree to go green)
[22840](https://github.com/flutter/engine/pull/22840) Roll Dart SDK from cfaa7606cbf5 to 97cfd05b3cb3 (2 revisions) (cla: yes, waiting for tree to go green)
[22841](https://github.com/flutter/engine/pull/22841) Roll Fuchsia Mac SDK from Z_-ciOYM9... to DRN4P3zbe... (cla: yes, waiting for tree to go green)
[22842](https://github.com/flutter/engine/pull/22842) Roll Fuchsia Linux SDK from W14Qninrb... to M_8svVndh... (cla: yes, waiting for tree to go green)
[22844](https://github.com/flutter/engine/pull/22844) Roll Skia from c7112edbe0f4 to d39aec0e40ec (17 revisions) (cla: yes, waiting for tree to go green)
[22845](https://github.com/flutter/engine/pull/22845) opt into new Skia APIs (cla: yes, platform-android, waiting for tree to go green)
[22846](https://github.com/flutter/engine/pull/22846) leaving only html tests (cla: yes, waiting for tree to go green)
[22847](https://github.com/flutter/engine/pull/22847) Roll Skia from d39aec0e40ec to 38921cafe1bb (7 revisions) (cla: yes, waiting for tree to go green)
[22851](https://github.com/flutter/engine/pull/22851) Roll Skia from 38921cafe1bb to abcc1ecdfd0c (8 revisions) (cla: yes, waiting for tree to go green)
[22853](https://github.com/flutter/engine/pull/22853) Handle null platform plugin delegate for v1 embedding (cla: yes, platform-android, waiting for tree to go green)
[22854](https://github.com/flutter/engine/pull/22854) [embedder] [metal] Add support for Metal Renderer Config in the embedder API (cla: yes, waiting for tree to go green)
[22855](https://github.com/flutter/engine/pull/22855) Roll Skia from abcc1ecdfd0c to c0c5106bd4d4 (3 revisions) (cla: yes, waiting for tree to go green)
[22857](https://github.com/flutter/engine/pull/22857) Add split AOT loading unit failure/error code path (cla: yes, platform-android, waiting for tree to go green)
[22858](https://github.com/flutter/engine/pull/22858) Remove spammy ELF load log (cla: yes, waiting for tree to go green)
[22859](https://github.com/flutter/engine/pull/22859) Roll Dart SDK from a37a4d42e53d to 2c74e62a050c (1 revision) (cla: yes, waiting for tree to go green)
[22864](https://github.com/flutter/engine/pull/22864) Roll Fuchsia Mac SDK from DRN4P3zbe... to 1EKjnjmeP... (cla: yes, waiting for tree to go green)
[22872](https://github.com/flutter/engine/pull/22872) Roll Skia from c0c5106bd4d4 to fdb8dbe69cc2 (8 revisions) (cla: yes, waiting for tree to go green)
[22877](https://github.com/flutter/engine/pull/22877) Roll Skia from fdb8dbe69cc2 to bc3c41b8742a (3 revisions) (cla: yes, waiting for tree to go green)
[22879](https://github.com/flutter/engine/pull/22879) Roll Fuchsia Mac SDK from 1EKjnjmeP... to eEeK509UF... (cla: yes, waiting for tree to go green)
[22880](https://github.com/flutter/engine/pull/22880) Roll Fuchsia Linux SDK from M_8svVndh... to IuiLYXJbt... (cla: yes, waiting for tree to go green)
[22881](https://github.com/flutter/engine/pull/22881) Roll Dart SDK from 2c74e62a050c to f9760fc12871 (5 revisions) (cla: yes, waiting for tree to go green)
[22882](https://github.com/flutter/engine/pull/22882) Roll Skia from bc3c41b8742a to f2bd501ce3bf (1 revision) (cla: yes, waiting for tree to go green)
[22883](https://github.com/flutter/engine/pull/22883) Roll Dart SDK from 2c74e62a050c to f9760fc12871 (5 revisions) (cla: yes, waiting for tree to go green)
[22885](https://github.com/flutter/engine/pull/22885) Roll Skia from f2bd501ce3bf to 30217950419d (2 revisions) (cla: yes, waiting for tree to go green)
[22888](https://github.com/flutter/engine/pull/22888) Roll Dart SDK from f9760fc12871 to 2736bd161251 (1 revision) (cla: yes, waiting for tree to go green)
[22889](https://github.com/flutter/engine/pull/22889) Roll Dart SDK from 2736bd161251 to 2ec3ea2df38e (1 revision) (cla: yes, waiting for tree to go green)
[22891](https://github.com/flutter/engine/pull/22891) Roll Fuchsia Mac SDK from eEeK509UF... to dx6dSD8vc... (cla: yes, waiting for tree to go green)
[22892](https://github.com/flutter/engine/pull/22892) Roll Fuchsia Linux SDK from IuiLYXJbt... to Ety7pAnEH... (cla: yes, waiting for tree to go green)
[22893](https://github.com/flutter/engine/pull/22893) Roll Dart SDK from 2ec3ea2df38e to db7d75e2239c (1 revision) (cla: yes, waiting for tree to go green)
[22895](https://github.com/flutter/engine/pull/22895) Roll Fuchsia Mac SDK from dx6dSD8vc... to bbMFXPW6S... (cla: yes, waiting for tree to go green)
[22896](https://github.com/flutter/engine/pull/22896) Roll Fuchsia Linux SDK from Ety7pAnEH... to q0Z9X9luW... (cla: yes, waiting for tree to go green)
[22898](https://github.com/flutter/engine/pull/22898) Roll Skia from 30217950419d to edb22ec49866 (3 revisions) (cla: yes, waiting for tree to go green)
[22899](https://github.com/flutter/engine/pull/22899) Roll Dart SDK from db7d75e2239c to baa92e08fee4 (4 revisions) (cla: yes, waiting for tree to go green)
[22902](https://github.com/flutter/engine/pull/22902) Roll Fuchsia Linux SDK from q0Z9X9luW... to kZi1s5bIk... (cla: yes, waiting for tree to go green)
[22904](https://github.com/flutter/engine/pull/22904) Roll Fuchsia Mac SDK from bbMFXPW6S... to y_h5kQEmN... (cla: yes, waiting for tree to go green)
[22906](https://github.com/flutter/engine/pull/22906) Roll Skia from edb22ec49866 to 3c7298922f69 (14 revisions) (cla: yes, waiting for tree to go green)
[22908](https://github.com/flutter/engine/pull/22908) Roll Skia from 3c7298922f69 to 011a77357ec4 (3 revisions) (cla: yes, waiting for tree to go green)
[22911](https://github.com/flutter/engine/pull/22911) Roll Skia from 011a77357ec4 to bf282c05e58c (3 revisions) (cla: yes, waiting for tree to go green)
[22913](https://github.com/flutter/engine/pull/22913) Roll Skia from bf282c05e58c to 529b25929c85 (2 revisions) (cla: yes, waiting for tree to go green)
[22915](https://github.com/flutter/engine/pull/22915) Roll Skia from 529b25929c85 to f639a24c5041 (1 revision) (cla: yes, waiting for tree to go green)
[22916](https://github.com/flutter/engine/pull/22916) Move the WindowInsetsAnimation.Callback implementation to an inner class to avoid Android class loader warnings (cla: yes, platform-android, waiting for tree to go green)
[22918](https://github.com/flutter/engine/pull/22918) Roll Skia from f639a24c5041 to 554e7574e960 (1 revision) (cla: yes, waiting for tree to go green)
[22919](https://github.com/flutter/engine/pull/22919) Roll Fuchsia Mac SDK from y_h5kQEmN... to 8cOXjqyWN... (cla: yes, waiting for tree to go green)
[22920](https://github.com/flutter/engine/pull/22920) Roll Fuchsia Linux SDK from kZi1s5bIk... to hIxVxIVhE... (cla: yes, waiting for tree to go green)
[22922](https://github.com/flutter/engine/pull/22922) Roll Skia from 554e7574e960 to 03d69876ff0e (1 revision) (cla: yes, waiting for tree to go green)
[22923](https://github.com/flutter/engine/pull/22923) Roll Skia from 03d69876ff0e to 60a2ec03b662 (3 revisions) (cla: yes, waiting for tree to go green)
[22924](https://github.com/flutter/engine/pull/22924) Roll Skia from 60a2ec03b662 to ff18ff6b295c (2 revisions) (cla: yes, waiting for tree to go green)
[22927](https://github.com/flutter/engine/pull/22927) Roll Skia from ff18ff6b295c to b87975c13381 (2 revisions) (cla: yes, waiting for tree to go green)
[22928](https://github.com/flutter/engine/pull/22928) Roll Dart SDK from baa92e08fee4 to d75741b19133 (7 revisions) (cla: yes, waiting for tree to go green)
[22932](https://github.com/flutter/engine/pull/22932) Roll Skia from b87975c13381 to cdd6cced4520 (3 revisions) (cla: yes, waiting for tree to go green)
[22933](https://github.com/flutter/engine/pull/22933) Roll Fuchsia Mac SDK from 8cOXjqyWN... to 1LDC_Iu1_... (cla: yes, waiting for tree to go green)
[22934](https://github.com/flutter/engine/pull/22934) Roll Fuchsia Linux SDK from hIxVxIVhE... to 3EfPHtl7G... (cla: yes, waiting for tree to go green)
[22935](https://github.com/flutter/engine/pull/22935) Roll Skia from cdd6cced4520 to 99c944647fcc (4 revisions) (cla: yes, waiting for tree to go green)
[22937](https://github.com/flutter/engine/pull/22937) CanvasKit fix embedded view clipping (cla: yes, platform-web, waiting for tree to go green)
[22939](https://github.com/flutter/engine/pull/22939) [web] Cache CSS font string instead of the style object (cla: yes, platform-web, waiting for tree to go green)
[22940](https://github.com/flutter/engine/pull/22940) Roll Skia from 99c944647fcc to 759ff5b38c23 (3 revisions) (cla: yes, waiting for tree to go green)
[22944](https://github.com/flutter/engine/pull/22944) Roll Dart SDK from d75741b19133 to a92baed5f8e2 (1 revision) (cla: yes, waiting for tree to go green)
[22945](https://github.com/flutter/engine/pull/22945) Fix platform view transforms in CanvasKit (cla: yes, waiting for tree to go green)
[22949](https://github.com/flutter/engine/pull/22949) Roll Skia from 759ff5b38c23 to 51ab694cbb86 (4 revisions) (cla: yes, waiting for tree to go green)
[22952](https://github.com/flutter/engine/pull/22952) Roll Skia from 51ab694cbb86 to 9a6cece5a830 (1 revision) (cla: yes, waiting for tree to go green)
[22956](https://github.com/flutter/engine/pull/22956) Roll Dart SDK from a92baed5f8e2 to 9fdb86dba562 (1 revision) (cla: yes, waiting for tree to go green)
[22958](https://github.com/flutter/engine/pull/22958) Roll Fuchsia Mac SDK from 1LDC_Iu1_... to xL_mp7rvV... (cla: yes, waiting for tree to go green)
[22959](https://github.com/flutter/engine/pull/22959) Roll Dart SDK from 9fdb86dba562 to b440879831a8 (1 revision) (cla: yes, waiting for tree to go green)
[22960](https://github.com/flutter/engine/pull/22960) Roll Fuchsia Linux SDK from 3EfPHtl7G... to mz03TfHP9... (cla: yes, waiting for tree to go green)
[22961](https://github.com/flutter/engine/pull/22961) Roll Dart SDK from b440879831a8 to f1e6a33d1db5 (1 revision) (cla: yes, waiting for tree to go green)
[22963](https://github.com/flutter/engine/pull/22963) Roll Skia from 5e744acfad58 to 123501fd19a8 (8 revisions) (cla: yes, waiting for tree to go green)
[22964](https://github.com/flutter/engine/pull/22964) [web] Separate the height ruler from the other rulers (cla: yes, platform-web, waiting for tree to go green)
[22972](https://github.com/flutter/engine/pull/22972) Roll Fuchsia Mac SDK from xL_mp7rvV... to G_O-vV26O... (cla: yes, waiting for tree to go green)
[22973](https://github.com/flutter/engine/pull/22973) Roll Fuchsia Linux SDK from mz03TfHP9... to 0kx01Ik6Y... (cla: yes, waiting for tree to go green)
[22977](https://github.com/flutter/engine/pull/22977) [web] Do not reset 'cursor' in PersistedPlatformView. (cla: yes, platform-web, waiting for tree to go green)
[22978](https://github.com/flutter/engine/pull/22978) Roll Skia from 123501fd19a8 to ff7bfea4ab76 (23 revisions) (cla: yes, waiting for tree to go green)
[22982](https://github.com/flutter/engine/pull/22982) Allow Tile mode for blur filter and add new decal TileMode (cla: yes, waiting for tree to go green)
[22983](https://github.com/flutter/engine/pull/22983) Roll Dart SDK from f1e6a33d1db5 to 8c085176125f (3 revisions) (cla: yes, waiting for tree to go green)
[22985](https://github.com/flutter/engine/pull/22985) Roll Skia from ff7bfea4ab76 to af11a00f7849 (1 revision) (cla: yes, waiting for tree to go green)
[22986](https://github.com/flutter/engine/pull/22986) Roll Skia from af11a00f7849 to 22f80a60b17f (2 revisions) (cla: yes, waiting for tree to go green)
[22989](https://github.com/flutter/engine/pull/22989) Roll Fuchsia Mac SDK from G_O-vV26O... to OUQEzH1oE... (cla: yes, waiting for tree to go green)
[22992](https://github.com/flutter/engine/pull/22992) Roll Dart SDK from 8c085176125f to e4c9b06267d3 (2 revisions) (cla: yes, waiting for tree to go green)
[22993](https://github.com/flutter/engine/pull/22993) Roll Fuchsia Linux SDK from 0kx01Ik6Y... to rnN_X2o75... (cla: yes, waiting for tree to go green)
[22997](https://github.com/flutter/engine/pull/22997) Load iOS dart bundle by URL fallback (cla: yes, platform-ios, waiting for tree to go green)
[23005](https://github.com/flutter/engine/pull/23005) Roll Skia from 22f80a60b17f to 6b07e0eb497c (26 revisions) (cla: yes, waiting for tree to go green)
[23006](https://github.com/flutter/engine/pull/23006) Roll Dart SDK from e4c9b06267d3 to a4e6fe145bf7 (2 revisions) (cla: yes, waiting for tree to go green)
[23009](https://github.com/flutter/engine/pull/23009) warmup memory reland (cla: yes, waiting for tree to go green)
[23010](https://github.com/flutter/engine/pull/23010) Roll Fuchsia Linux SDK from rnN_X2o75... to ESzmO-yOF... (cla: yes, waiting for tree to go green)
[23014](https://github.com/flutter/engine/pull/23014) Turned on malloc scribble and randomized the tests. (cla: yes, waiting for tree to go green)
[23018](https://github.com/flutter/engine/pull/23018) Roll Skia from 6b07e0eb497c to f7cce2b243b2 (6 revisions) (cla: yes, waiting for tree to go green)
[23019](https://github.com/flutter/engine/pull/23019) fix crash in FontCollection::init() when FontFamily is empty (cla: yes, waiting for tree to go green)
[23020](https://github.com/flutter/engine/pull/23020) Roll Fuchsia Linux SDK from ESzmO-yOF... to K4cPd0-Xd... (cla: yes, waiting for tree to go green)
[23021](https://github.com/flutter/engine/pull/23021) Roll Skia from f7cce2b243b2 to b0cb8372c1ef (3 revisions) (cla: yes, waiting for tree to go green)
[23023](https://github.com/flutter/engine/pull/23023) Roll Skia from b0cb8372c1ef to 5284e96599a8 (2 revisions) (cla: yes, waiting for tree to go green)
[23024](https://github.com/flutter/engine/pull/23024) Roll Dart SDK from a4e6fe145bf7 to c287db6bf232 (2 revisions) (cla: yes, waiting for tree to go green)
[23025](https://github.com/flutter/engine/pull/23025) Roll Fuchsia Mac SDK from OUQEzH1oE... to a9yuHfriB... (cla: yes, waiting for tree to go green)
[23026](https://github.com/flutter/engine/pull/23026) Roll Dart SDK from c287db6bf232 to 2553a84fe438 (1 revision) (cla: yes, waiting for tree to go green)
[23027](https://github.com/flutter/engine/pull/23027) Roll Skia from 5284e96599a8 to f7fdf1aa2911 (1 revision) (cla: yes, waiting for tree to go green)
[23029](https://github.com/flutter/engine/pull/23029) Roll Dart SDK from 2553a84fe438 to 95e1709c9e54 (1 revision) (cla: yes, waiting for tree to go green)
[23033](https://github.com/flutter/engine/pull/23033) Roll Fuchsia Linux SDK from K4cPd0-Xd... to BA2UmYXNr... (cla: yes, waiting for tree to go green)
[23035](https://github.com/flutter/engine/pull/23035) Use include for C/C++ headers in darwin/macos (cla: yes, waiting for tree to go green)
[23039](https://github.com/flutter/engine/pull/23039) Roll Fuchsia Mac SDK from a9yuHfriB... to QbeeeTiub... (cla: yes, waiting for tree to go green)
[23042](https://github.com/flutter/engine/pull/23042) Roll Skia from f7fdf1aa2911 to 346dd53ac087 (25 revisions) (cla: yes, waiting for tree to go green)
[23043](https://github.com/flutter/engine/pull/23043) [web] Align offset for lines of rich text (cla: yes, platform-web, waiting for tree to go green)
[23045](https://github.com/flutter/engine/pull/23045) Roll Dart SDK from 95e1709c9e54 to 68d1c7504f7d (2 revisions) (cla: yes, waiting for tree to go green)
[23046](https://github.com/flutter/engine/pull/23046) Roll Skia from 346dd53ac087 to 1aa1f5fcbac6 (1 revision) (cla: yes, waiting for tree to go green)
[23048](https://github.com/flutter/engine/pull/23048) Roll Fuchsia Linux SDK from BA2UmYXNr... to QniFAAjTT... (cla: yes, waiting for tree to go green)
[23049](https://github.com/flutter/engine/pull/23049) Roll Fuchsia Mac SDK from QbeeeTiub... to L7-xj4Yqz... (cla: yes, waiting for tree to go green)
[23054](https://github.com/flutter/engine/pull/23054) Revert "Load iOS dart bundle by URL fallback" (cla: yes, platform-ios, waiting for tree to go green)
[23055](https://github.com/flutter/engine/pull/23055) Roll Dart SDK from 68d1c7504f7d to f166571c7bc4 (1 revision) (cla: yes, waiting for tree to go green)
[23056](https://github.com/flutter/engine/pull/23056) Roll Dart SDK from 68d1c7504f7d to f166571c7bc4 (1 revision) (cla: yes, waiting for tree to go green)
[23058](https://github.com/flutter/engine/pull/23058) Roll Skia from 1aa1f5fcbac6 to 1d2b075ce060 (28 revisions) (cla: yes, waiting for tree to go green)
[23062](https://github.com/flutter/engine/pull/23062) Roll Skia from 1d2b075ce060 to 1c50643b3cef (1 revision) (cla: yes, waiting for tree to go green)
[23065](https://github.com/flutter/engine/pull/23065) Roll Skia from 1c50643b3cef to f607dbbbe81f (1 revision) (cla: yes, waiting for tree to go green)
[23068](https://github.com/flutter/engine/pull/23068) Roll Skia from f607dbbbe81f to f124108e2325 (2 revisions) (cla: yes, waiting for tree to go green)
[23069](https://github.com/flutter/engine/pull/23069) Roll Dart SDK from f166571c7bc4 to 8233c4763a9c (1 revision) (cla: yes, waiting for tree to go green)
[23070](https://github.com/flutter/engine/pull/23070) Disable flaky/hanging split AOT test (cla: yes, waiting for tree to go green)
[23071](https://github.com/flutter/engine/pull/23071) Roll Skia from f124108e2325 to 4df3fea42692 (2 revisions) (cla: yes, waiting for tree to go green)
[23073](https://github.com/flutter/engine/pull/23073) Roll Skia from 4df3fea42692 to 0765022c1517 (1 revision) (cla: yes, waiting for tree to go green)
[23074](https://github.com/flutter/engine/pull/23074) Roll Dart SDK from 8233c4763a9c to e01119c6fd09 (1 revision) (cla: yes, waiting for tree to go green)
[23075](https://github.com/flutter/engine/pull/23075) Roll Fuchsia Mac SDK from L7-xj4Yqz... to n0XovQHCz... (cla: yes, waiting for tree to go green)
[23076](https://github.com/flutter/engine/pull/23076) Roll Fuchsia Linux SDK from QniFAAjTT... to 5Rxyho8VL... (cla: yes, waiting for tree to go green)
[23078](https://github.com/flutter/engine/pull/23078) Roll Dart SDK from e01119c6fd09 to 5cec31739703 (1 revision) (cla: yes, waiting for tree to go green)
[23079](https://github.com/flutter/engine/pull/23079) Roll Skia from 0765022c1517 to 4bdc12142a0e (1 revision) (cla: yes, waiting for tree to go green)
[23081](https://github.com/flutter/engine/pull/23081) Roll Skia from 4bdc12142a0e to 2bacaf973d79 (4 revisions) (cla: yes, waiting for tree to go green)
[23082](https://github.com/flutter/engine/pull/23082) [fuchsia] Remove fuchsia.netstack.Netstack (cla: yes, waiting for tree to go green)
[23083](https://github.com/flutter/engine/pull/23083) Roll Dart SDK from 5cec31739703 to d7266520ca18 (1 revision) (cla: yes, waiting for tree to go green)
[23084](https://github.com/flutter/engine/pull/23084) Roll Skia from 2bacaf973d79 to adc688922877 (6 revisions) (cla: yes, waiting for tree to go green)
[23086](https://github.com/flutter/engine/pull/23086) Roll Skia from adc688922877 to a298431a1370 (6 revisions) (cla: yes, waiting for tree to go green)
[23092](https://github.com/flutter/engine/pull/23092) Roll Fuchsia Mac SDK from n0XovQHCz... to 716FtmoF4... (cla: yes, waiting for tree to go green)
[23093](https://github.com/flutter/engine/pull/23093) Roll Dart SDK from d7266520ca18 to 1297e4ae2140 (1 revision) (cla: yes, waiting for tree to go green)
[23094](https://github.com/flutter/engine/pull/23094) Roll Skia from a298431a1370 to f2876b0b9e4a (9 revisions) (cla: yes, waiting for tree to go green)
[23095](https://github.com/flutter/engine/pull/23095) Roll Fuchsia Linux SDK from 5Rxyho8VL... to Lj6L6i7vj... (cla: yes, waiting for tree to go green)
[23099](https://github.com/flutter/engine/pull/23099) Roll Skia from f2876b0b9e4a to 2078cbe3d4d9 (1 revision) (cla: yes, waiting for tree to go green)
[23103](https://github.com/flutter/engine/pull/23103) Roll Skia from 2078cbe3d4d9 to 15f51848df7f (6 revisions) (cla: yes, waiting for tree to go green)
[23104](https://github.com/flutter/engine/pull/23104) Roll Dart SDK from 1297e4ae2140 to 5969f5653830 (2 revisions) (cla: yes, waiting for tree to go green)
[23105](https://github.com/flutter/engine/pull/23105) Roll Fuchsia Mac SDK from 716FtmoF4... to acylwa3i4... (cla: yes, waiting for tree to go green)
[23106](https://github.com/flutter/engine/pull/23106) Roll Fuchsia Linux SDK from Lj6L6i7vj... to TIKHoiQyP... (cla: yes, waiting for tree to go green)
[23108](https://github.com/flutter/engine/pull/23108) Roll Skia from 15f51848df7f to 6e110c89ed50 (4 revisions) (cla: yes, waiting for tree to go green)
[23109](https://github.com/flutter/engine/pull/23109) Roll Skia from 6e110c89ed50 to f52a8112909c (5 revisions) (cla: yes, waiting for tree to go green)
[23110](https://github.com/flutter/engine/pull/23110) Apply local patch to chromium accessibility code (cla: yes, waiting for tree to go green)
[23112](https://github.com/flutter/engine/pull/23112) Roll Skia from f52a8112909c to 632a23afa487 (10 revisions) (cla: yes, waiting for tree to go green)
[23114](https://github.com/flutter/engine/pull/23114) Roll Skia from 632a23afa487 to 6f31e27f1e29 (1 revision) (cla: yes, waiting for tree to go green)
[23118](https://github.com/flutter/engine/pull/23118) Roll Skia from 6f31e27f1e29 to 85fa75616dfe (7 revisions) (cla: yes, waiting for tree to go green)
[23119](https://github.com/flutter/engine/pull/23119) Roll Skia from 85fa75616dfe to d6f2338ab194 (3 revisions) (cla: yes, waiting for tree to go green)
[23122](https://github.com/flutter/engine/pull/23122) Roll Skia from d6f2338ab194 to 1d89532d5988 (1 revision) (cla: yes, waiting for tree to go green)
[23125](https://github.com/flutter/engine/pull/23125) Roll Fuchsia Mac SDK from acylwa3i4... to chLTYsKMR... (cla: yes, waiting for tree to go green)
[23126](https://github.com/flutter/engine/pull/23126) Roll Skia from 1d89532d5988 to 7839f66540b6 (1 revision) (cla: yes, waiting for tree to go green)
[23127](https://github.com/flutter/engine/pull/23127) Roll Fuchsia Linux SDK from TIKHoiQyP... to wu6yV-_BL... (cla: yes, waiting for tree to go green)
[23129](https://github.com/flutter/engine/pull/23129) Roll Skia from 7839f66540b6 to 20f1b3462878 (1 revision) (cla: yes, waiting for tree to go green)
[23130](https://github.com/flutter/engine/pull/23130) AssetResolver updating in AssetManager for Dynamic features (cla: yes, platform-android, waiting for tree to go green)
[23132](https://github.com/flutter/engine/pull/23132) Roll Skia from 20f1b3462878 to 995f0366bd21 (2 revisions) (cla: yes, waiting for tree to go green)
[23135](https://github.com/flutter/engine/pull/23135) Roll Skia from 995f0366bd21 to b64da3907f76 (1 revision) (cla: yes, waiting for tree to go green)
[23136](https://github.com/flutter/engine/pull/23136) [web] Rich text painting on bitmap canvas (cla: yes, platform-web, waiting for tree to go green)
[23138](https://github.com/flutter/engine/pull/23138) Fix argument specifier and type for g_warning() (cla: yes, waiting for tree to go green)
[23142](https://github.com/flutter/engine/pull/23142) Roll Skia from b64da3907f76 to 81da68af2ecf (7 revisions) (cla: yes, waiting for tree to go green)
[23143](https://github.com/flutter/engine/pull/23143) Roll Fuchsia Mac SDK from chLTYsKMR... to RDUxjnng0... (cla: yes, waiting for tree to go green)
[23145](https://github.com/flutter/engine/pull/23145) Roll Fuchsia Linux SDK from wu6yV-_BL... to _l04etgVd... (cla: yes, waiting for tree to go green)
[23150](https://github.com/flutter/engine/pull/23150) Make it easier to turn on Xcode symlinks (cla: yes, waiting for tree to go green)
[23152](https://github.com/flutter/engine/pull/23152) Roll Skia from 81da68af2ecf to 7b920446a8fc (14 revisions) (cla: yes, waiting for tree to go green)
[23158](https://github.com/flutter/engine/pull/23158) Update FlutterPlatformViewsTests (cla: yes, platform-ios, waiting for tree to go green)
[23164](https://github.com/flutter/engine/pull/23164) Roll Skia from 7b920446a8fc to dfc880bd9ba0 (14 revisions) (cla: yes, waiting for tree to go green)
[23170](https://github.com/flutter/engine/pull/23170) Roll Fuchsia Linux SDK from _l04etgVd... to nkgnDjAl3... (cla: yes, waiting for tree to go green)
[23175](https://github.com/flutter/engine/pull/23175) Fix background crash when FlutterView going appear while app goes background (cla: yes, platform-ios, waiting for tree to go green)
[23177](https://github.com/flutter/engine/pull/23177) Roll Fuchsia Mac SDK from RDUxjnng0... to QDs-PyheO... (cla: yes, waiting for tree to go green)
[23179](https://github.com/flutter/engine/pull/23179) Roll Dart SDK from b59de86059f3 to 2a78a2978983 (1 revision) (cla: yes, waiting for tree to go green)
[23180](https://github.com/flutter/engine/pull/23180) Roll Skia from dfc880bd9ba0 to 5d3227096daa (8 revisions) (cla: yes, waiting for tree to go green)
[23181](https://github.com/flutter/engine/pull/23181) Roll Dart SDK from 2a78a2978983 to c91b639b4cb3 (1 revision) (cla: yes, waiting for tree to go green)
[23182](https://github.com/flutter/engine/pull/23182) Roll Skia from 5d3227096daa to 7bfdb1044916 (1 revision) (cla: yes, waiting for tree to go green)
[23188](https://github.com/flutter/engine/pull/23188) Call JavaVM::AttachCurrentThread only once per thread (cla: yes, platform-android, waiting for tree to go green)
[23190](https://github.com/flutter/engine/pull/23190) Roll Fuchsia Linux SDK from nkgnDjAl3... to EAlB-FVPL... (cla: yes, waiting for tree to go green)
[23192](https://github.com/flutter/engine/pull/23192) Roll Fuchsia Mac SDK from QDs-PyheO... to zCiq3y-6p... (cla: yes, waiting for tree to go green)
[23195](https://github.com/flutter/engine/pull/23195) Roll Skia from 7bfdb1044916 to 80dc74b30b5a (2 revisions) (cla: yes, waiting for tree to go green)
[23196](https://github.com/flutter/engine/pull/23196) Roll Fuchsia Linux SDK from EAlB-FVPL... to Dc8mL2839... (cla: yes, waiting for tree to go green)
[23198](https://github.com/flutter/engine/pull/23198) Roll Skia from 80dc74b30b5a to e78f8cebca01 (1 revision) (cla: yes, waiting for tree to go green)
[23199](https://github.com/flutter/engine/pull/23199) Roll Skia from e78f8cebca01 to 2d44549a1f3a (1 revision) (cla: yes, waiting for tree to go green)
[23200](https://github.com/flutter/engine/pull/23200) Roll Fuchsia Mac SDK from zCiq3y-6p... to h_iq6T_cf... (cla: yes, waiting for tree to go green)
[23201](https://github.com/flutter/engine/pull/23201) Roll Fuchsia Linux SDK from Dc8mL2839... to byrJ9URZU... (cla: yes, waiting for tree to go green)
[23207](https://github.com/flutter/engine/pull/23207) Roll Fuchsia Linux SDK from byrJ9URZU... to RpLap5pIv... (cla: yes, waiting for tree to go green)
[23208](https://github.com/flutter/engine/pull/23208) Roll Fuchsia Mac SDK from h_iq6T_cf... to 5LKY3wsMO... (cla: yes, waiting for tree to go green)
[23209](https://github.com/flutter/engine/pull/23209) Roll Skia from 2d44549a1f3a to f4ad8c537982 (1 revision) (cla: yes, waiting for tree to go green)
[23210](https://github.com/flutter/engine/pull/23210) Roll Skia from f4ad8c537982 to 88883c4ca259 (2 revisions) (cla: yes, waiting for tree to go green)
[23211](https://github.com/flutter/engine/pull/23211) Roll Dart SDK from c91b639b4cb3 to 1f7dd915f40a (1 revision) (cla: yes, waiting for tree to go green)
[23212](https://github.com/flutter/engine/pull/23212) Roll Fuchsia Linux SDK from RpLap5pIv... to zN1Y7c3i4... (cla: yes, waiting for tree to go green)
[23213](https://github.com/flutter/engine/pull/23213) Roll Skia from 88883c4ca259 to 6aea07880248 (1 revision) (cla: yes, waiting for tree to go green)
[23216](https://github.com/flutter/engine/pull/23216) Roll Skia from 6aea07880248 to e42716032b4b (1 revision) (cla: yes, waiting for tree to go green)
[23222](https://github.com/flutter/engine/pull/23222) Roll Skia from e42716032b4b to c3622f43c189 (2 revisions) (cla: yes, waiting for tree to go green)
[23223](https://github.com/flutter/engine/pull/23223) Roll Fuchsia Mac SDK from 5LKY3wsMO... to WQ0J2Yoll... (cla: yes, waiting for tree to go green)
[23227](https://github.com/flutter/engine/pull/23227) Roll Skia from c3622f43c189 to 960bd2dbaa6a (3 revisions) (cla: yes, waiting for tree to go green)
[23228](https://github.com/flutter/engine/pull/23228) Roll Dart SDK from 1f7dd915f40a to 0e52b2abe517 (2 revisions) (cla: yes, waiting for tree to go green)
[23231](https://github.com/flutter/engine/pull/23231) Roll Fuchsia Linux SDK from zN1Y7c3i4... to C00LDxUk0... (cla: yes, waiting for tree to go green)
[23232](https://github.com/flutter/engine/pull/23232) Roll Dart SDK from 0e52b2abe517 to 1604b1a3437f (1 revision) (cla: yes, waiting for tree to go green)
[23235](https://github.com/flutter/engine/pull/23235) Roll Dart SDK from 1604b1a3437f to 62b0361d470f (1 revision) (cla: yes, waiting for tree to go green)
[23236](https://github.com/flutter/engine/pull/23236) Roll Fuchsia Mac SDK from WQ0J2Yoll... to PzW6aMw3A... (cla: yes, waiting for tree to go green)
[23237](https://github.com/flutter/engine/pull/23237) Roll Skia from 960bd2dbaa6a to f02df4db6118 (3 revisions) (cla: yes, waiting for tree to go green)
[23240](https://github.com/flutter/engine/pull/23240) Roll Skia from f02df4db6118 to 47726a1cff59 (5 revisions) (cla: yes, waiting for tree to go green)
[23241](https://github.com/flutter/engine/pull/23241) Roll Fuchsia Linux SDK from C00LDxUk0... to KR8LcMqAc... (cla: yes, waiting for tree to go green)
[23245](https://github.com/flutter/engine/pull/23245) Roll Skia from 47726a1cff59 to f2ce4e91a2a5 (1 revision) (cla: yes, waiting for tree to go green)
[23250](https://github.com/flutter/engine/pull/23250) Roll Skia from f2ce4e91a2a5 to c5ff48648ada (6 revisions) (cla: yes, waiting for tree to go green)
[23251](https://github.com/flutter/engine/pull/23251) Roll Dart SDK from 62b0361d470f to 7d35f9bc72fb (1 revision) (cla: yes, waiting for tree to go green)
[23254](https://github.com/flutter/engine/pull/23254) Roll Skia from c5ff48648ada to 3624aba91f44 (10 revisions) (cla: yes, waiting for tree to go green)
[23255](https://github.com/flutter/engine/pull/23255) fixes android deeplink to push the path only (cla: yes, platform-android, waiting for tree to go green)
[23257](https://github.com/flutter/engine/pull/23257) Roll Fuchsia Mac SDK from PzW6aMw3A... to gVgXlVNti... (cla: yes, waiting for tree to go green)
[23258](https://github.com/flutter/engine/pull/23258) Roll Dart SDK from 7d35f9bc72fb to f5b451f0dc86 (1 revision) (cla: yes, waiting for tree to go green)
[23259](https://github.com/flutter/engine/pull/23259) Roll Skia from 3624aba91f44 to fa711c4c756a (1 revision) (cla: yes, waiting for tree to go green)
[23260](https://github.com/flutter/engine/pull/23260) Roll Dart SDK from f5b451f0dc86 to 6e1161e70a00 (1 revision) (cla: yes, waiting for tree to go green)
[23261](https://github.com/flutter/engine/pull/23261) Roll Fuchsia Linux SDK from KR8LcMqAc... to E4CJZ_QRf... (cla: yes, waiting for tree to go green)
[23262](https://github.com/flutter/engine/pull/23262) [fuchsia][input] Migrate Flutter to "input3" (cla: yes, platform-fuchsia, waiting for tree to go green)
[23263](https://github.com/flutter/engine/pull/23263) Roll Skia from fa711c4c756a to 4e0e8d4124f5 (1 revision) (cla: yes, waiting for tree to go green)
[23264](https://github.com/flutter/engine/pull/23264) Roll Fuchsia Mac SDK from gVgXlVNti... to IwRHzb2yJ... (cla: yes, waiting for tree to go green)
[23265](https://github.com/flutter/engine/pull/23265) Roll Skia from 4e0e8d4124f5 to 6bba3d8a5a23 (1 revision) (cla: yes, waiting for tree to go green)
[23268](https://github.com/flutter/engine/pull/23268) Roll Skia from 6bba3d8a5a23 to 839eef3e9a99 (8 revisions) (cla: yes, waiting for tree to go green)
[23269](https://github.com/flutter/engine/pull/23269) Roll Skia from 839eef3e9a99 to 20fad3206488 (5 revisions) (cla: yes, waiting for tree to go green)
[23270](https://github.com/flutter/engine/pull/23270) Roll Fuchsia Linux SDK from E4CJZ_QRf... to 08xLMgNKn... (cla: yes, waiting for tree to go green)
[23271](https://github.com/flutter/engine/pull/23271) Roll Skia from 20fad3206488 to 61f17c10d61d (3 revisions) (cla: yes, waiting for tree to go green)
[23272](https://github.com/flutter/engine/pull/23272) Roll Dart SDK from 6e1161e70a00 to f79fb10acca8 (1 revision) (cla: yes, waiting for tree to go green)
[23273](https://github.com/flutter/engine/pull/23273) Roll Skia from 61f17c10d61d to 0247e9ea1c73 (5 revisions) (cla: yes, waiting for tree to go green)
[23277](https://github.com/flutter/engine/pull/23277) Roll Fuchsia Mac SDK from IwRHzb2yJ... to 3SiIWhiUi... (cla: yes, waiting for tree to go green)
[23278](https://github.com/flutter/engine/pull/23278) Roll Skia from 0247e9ea1c73 to d12c91ba318b (1 revision) (cla: yes, waiting for tree to go green)
[23280](https://github.com/flutter/engine/pull/23280) Roll Skia from d12c91ba318b to 33079a7c5a98 (3 revisions) (cla: yes, waiting for tree to go green)
[23281](https://github.com/flutter/engine/pull/23281) Roll Dart SDK from f79fb10acca8 to 1c14d9bb3528 (2 revisions) (cla: yes, waiting for tree to go green)
[23282](https://github.com/flutter/engine/pull/23282) Roll Fuchsia Linux SDK from 08xLMgNKn... to 2Vw2BjQjZ... (cla: yes, waiting for tree to go green)
[23285](https://github.com/flutter/engine/pull/23285) Roll Fuchsia Mac SDK from 3SiIWhiUi... to 1X7xvxZM_... (cla: yes, waiting for tree to go green)
[23289](https://github.com/flutter/engine/pull/23289) Roll Fuchsia Linux SDK from 2Vw2BjQjZ... to umbXBk__x... (cla: yes, waiting for tree to go green)
[23293](https://github.com/flutter/engine/pull/23293) Roll Fuchsia Mac SDK from 1X7xvxZM_... to fFxQZY6fB... (cla: yes, waiting for tree to go green)
[23297](https://github.com/flutter/engine/pull/23297) Roll Fuchsia Mac SDK from fFxQZY6fB... to SFmThOFqb... (cla: yes, waiting for tree to go green)
[23301](https://github.com/flutter/engine/pull/23301) Roll Fuchsia Linux SDK from umbXBk__x... to br-O-oiDW... (cla: yes, waiting for tree to go green)
[23304](https://github.com/flutter/engine/pull/23304) Roll Fuchsia Mac SDK from SFmThOFqb... to 6vW4LheTp... (cla: yes, waiting for tree to go green)
[23305](https://github.com/flutter/engine/pull/23305) Roll Fuchsia Linux SDK from br-O-oiDW... to XqTqmKfJI... (cla: yes, waiting for tree to go green)
[23310](https://github.com/flutter/engine/pull/23310) Roll Skia from 33079a7c5a98 to 9a27566e0cbc (4 revisions) (cla: yes, waiting for tree to go green)
[23312](https://github.com/flutter/engine/pull/23312) Roll Skia from 9a27566e0cbc to f94348fdd528 (11 revisions) (cla: yes, waiting for tree to go green)
[23316](https://github.com/flutter/engine/pull/23316) Roll Skia from f94348fdd528 to 16d86135b739 (5 revisions) (cla: yes, waiting for tree to go green)
[23319](https://github.com/flutter/engine/pull/23319) Roll Skia from 16d86135b739 to 52130b09093d (2 revisions) (cla: yes, waiting for tree to go green)
[23320](https://github.com/flutter/engine/pull/23320) Roll Skia from 52130b09093d to d1b593f446d3 (1 revision) (cla: yes, waiting for tree to go green)
[23324](https://github.com/flutter/engine/pull/23324) Roll Fuchsia Linux SDK from XqTqmKfJI... to 0g8KXafVZ... (cla: yes, waiting for tree to go green)
[23325](https://github.com/flutter/engine/pull/23325) Roll Fuchsia Mac SDK from 6vW4LheTp... to NO2OUA57b... (cla: yes, waiting for tree to go green)
[23326](https://github.com/flutter/engine/pull/23326) Roll Skia from d1b593f446d3 to c85bce8ea6c8 (1 revision) (cla: yes, waiting for tree to go green)
[23327](https://github.com/flutter/engine/pull/23327) Roll Skia from c85bce8ea6c8 to 964f0a028e67 (9 revisions) (cla: yes, waiting for tree to go green)
[23328](https://github.com/flutter/engine/pull/23328) Roll Skia from 964f0a028e67 to d9b9c83e8757 (2 revisions) (cla: yes, waiting for tree to go green)
[23329](https://github.com/flutter/engine/pull/23329) Roll Fuchsia Linux SDK from 0g8KXafVZ... to gj7bWTfxu... (cla: yes, waiting for tree to go green)
[23330](https://github.com/flutter/engine/pull/23330) Roll Skia from d9b9c83e8757 to fe4611c18e9d (2 revisions) (cla: yes, waiting for tree to go green)
[23332](https://github.com/flutter/engine/pull/23332) Roll Skia from fe4611c18e9d to 36129133f106 (1 revision) (cla: yes, waiting for tree to go green)
[23333](https://github.com/flutter/engine/pull/23333) Roll Skia from 36129133f106 to c56e2e5aa65d (3 revisions) (cla: yes, waiting for tree to go green)
[23334](https://github.com/flutter/engine/pull/23334) Roll Skia from c56e2e5aa65d to 791f8d8c3bd5 (1 revision) (cla: yes, waiting for tree to go green)
[23335](https://github.com/flutter/engine/pull/23335) Roll Skia from 791f8d8c3bd5 to f84dfd69861a (1 revision) (cla: yes, waiting for tree to go green)
[23337](https://github.com/flutter/engine/pull/23337) Roll Fuchsia Mac SDK from NO2OUA57b... to hIpDO_txN... (cla: yes, waiting for tree to go green)
[23339](https://github.com/flutter/engine/pull/23339) Roll Skia from f84dfd69861a to d150a58c04ed (1 revision) (cla: yes, waiting for tree to go green)
[23340](https://github.com/flutter/engine/pull/23340) Roll Skia from d150a58c04ed to d3a91db48d57 (3 revisions) (cla: yes, waiting for tree to go green)
[23341](https://github.com/flutter/engine/pull/23341) Roll Fuchsia Linux SDK from gj7bWTfxu... to GK7mTxGcs... (cla: yes, waiting for tree to go green)
[23344](https://github.com/flutter/engine/pull/23344) Roll Skia from d3a91db48d57 to 8f924ac0ce63 (1 revision) (cla: yes, waiting for tree to go green)
[23347](https://github.com/flutter/engine/pull/23347) Roll Skia from 8f924ac0ce63 to 4f23dec7427b (5 revisions) (cla: yes, waiting for tree to go green)
[23351](https://github.com/flutter/engine/pull/23351) Roll Skia from 4f23dec7427b to 6d4577bc5208 (5 revisions) (cla: yes, waiting for tree to go green)
[23353](https://github.com/flutter/engine/pull/23353) Roll Fuchsia Mac SDK from hIpDO_txN... to Sjhog2e8Z... (cla: yes, waiting for tree to go green)
[23354](https://github.com/flutter/engine/pull/23354) Roll Skia from 6d4577bc5208 to b39d076b6096 (1 revision) (cla: yes, waiting for tree to go green)
[23355](https://github.com/flutter/engine/pull/23355) Roll Fuchsia Linux SDK from GK7mTxGcs... to Sa7TryuTn... (cla: yes, waiting for tree to go green)
[23356](https://github.com/flutter/engine/pull/23356) Roll Skia from b39d076b6096 to 818fd6d35788 (7 revisions) (cla: yes, waiting for tree to go green)
[23359](https://github.com/flutter/engine/pull/23359) Roll Skia from 818fd6d35788 to 0d07e14f1e28 (4 revisions) (cla: yes, waiting for tree to go green)
[23365](https://github.com/flutter/engine/pull/23365) Roll Fuchsia Mac SDK from Sjhog2e8Z... to w3l6o5YIn... (cla: yes, waiting for tree to go green)
[23367](https://github.com/flutter/engine/pull/23367) Roll Fuchsia Linux SDK from Sa7TryuTn... to 9zYti9vPP... (cla: yes, waiting for tree to go green)
[23378](https://github.com/flutter/engine/pull/23378) Roll Skia from 0d07e14f1e28 to af35386f2e28 (10 revisions) (cla: yes, waiting for tree to go green)
[23382](https://github.com/flutter/engine/pull/23382) Roll Fuchsia Mac SDK from w3l6o5YIn... to xAJyFB5RF... (cla: yes, waiting for tree to go green)
[23390](https://github.com/flutter/engine/pull/23390) Roll Fuchsia Linux SDK from 9zYti9vPP... to -LcFx-dyk... (cla: yes, waiting for tree to go green)
[23391](https://github.com/flutter/engine/pull/23391) Roll Fuchsia Mac SDK from xAJyFB5RF... to jVpF41b-V... (cla: yes, waiting for tree to go green)
[23398](https://github.com/flutter/engine/pull/23398) Roll Fuchsia Linux SDK from -LcFx-dyk... to PJX9mmc_C... (cla: yes, waiting for tree to go green)
[23400](https://github.com/flutter/engine/pull/23400) Roll Fuchsia Mac SDK from jVpF41b-V... to zKX_gO4KU... (cla: yes, waiting for tree to go green)
[23401](https://github.com/flutter/engine/pull/23401) Roll Skia from af35386f2e28 to 8898c4d02bbd (1 revision) (cla: yes, waiting for tree to go green)
[23402](https://github.com/flutter/engine/pull/23402) Roll Skia from 8898c4d02bbd to fc914f43cdee (1 revision) (cla: yes, waiting for tree to go green)
[23403](https://github.com/flutter/engine/pull/23403) Roll Fuchsia Linux SDK from PJX9mmc_C... to lxKr8i_TC... (cla: yes, waiting for tree to go green)
[23404](https://github.com/flutter/engine/pull/23404) Roll Fuchsia Mac SDK from zKX_gO4KU... to kPkJqgYZ-... (cla: yes, waiting for tree to go green)
[23405](https://github.com/flutter/engine/pull/23405) Roll Skia from fc914f43cdee to 2a92f13579fb (1 revision) (cla: yes, waiting for tree to go green)
[23406](https://github.com/flutter/engine/pull/23406) Roll Skia from 2a92f13579fb to d8ff313e4485 (2 revisions) (cla: yes, waiting for tree to go green)
[23407](https://github.com/flutter/engine/pull/23407) Roll Skia from d8ff313e4485 to eae5c1619083 (1 revision) (cla: yes, waiting for tree to go green)
[23411](https://github.com/flutter/engine/pull/23411) Roll Fuchsia Linux SDK from lxKr8i_TC... to nVvyfiqlp... (cla: yes, waiting for tree to go green)
[23413](https://github.com/flutter/engine/pull/23413) Roll Skia from eae5c1619083 to 04ccda6c28c4 (1 revision) (cla: yes, waiting for tree to go green)
[23415](https://github.com/flutter/engine/pull/23415) Roll Fuchsia Mac SDK from kPkJqgYZ-... to AqAeIeknz... (cla: yes, waiting for tree to go green)
[23416](https://github.com/flutter/engine/pull/23416) Roll Skia from 04ccda6c28c4 to 2207edd88cfe (1 revision) (cla: yes, waiting for tree to go green)
[23417](https://github.com/flutter/engine/pull/23417) Roll Skia from 2207edd88cfe to df49e6927b43 (2 revisions) (cla: yes, waiting for tree to go green)
[23419](https://github.com/flutter/engine/pull/23419) Roll Skia from df49e6927b43 to dc435fa60df6 (1 revision) (cla: yes, waiting for tree to go green)
[23421](https://github.com/flutter/engine/pull/23421) Roll Fuchsia Linux SDK from nVvyfiqlp... to 597LHqqTy... (cla: yes, waiting for tree to go green)
[23422](https://github.com/flutter/engine/pull/23422) Roll Skia from dc435fa60df6 to 1efa14d9f4f5 (2 revisions) (cla: yes, waiting for tree to go green)
[23424](https://github.com/flutter/engine/pull/23424) Roll Fuchsia Mac SDK from AqAeIeknz... to zMCnd-3cP... (cla: yes, waiting for tree to go green)
[23426](https://github.com/flutter/engine/pull/23426) Roll Skia from 1efa14d9f4f5 to 0bfbfe5d30c0 (4 revisions) (cla: yes, waiting for tree to go green)
[23427](https://github.com/flutter/engine/pull/23427) Roll Skia from 0bfbfe5d30c0 to 6356cb1904b8 (4 revisions) (cla: yes, waiting for tree to go green)
[23431](https://github.com/flutter/engine/pull/23431) Roll Skia from 6356cb1904b8 to 2833b08efbe6 (6 revisions) (cla: yes, waiting for tree to go green)
[23434](https://github.com/flutter/engine/pull/23434) Roll Skia from 2833b08efbe6 to 736c992966b5 (4 revisions) (cla: yes, waiting for tree to go green)
[23440](https://github.com/flutter/engine/pull/23440) add linux arm host builder (cla: yes, waiting for tree to go green)
[23441](https://github.com/flutter/engine/pull/23441) Roll Skia from 736c992966b5 to 854ee85736e3 (2 revisions) (cla: yes, waiting for tree to go green)
[23444](https://github.com/flutter/engine/pull/23444) Roll Dart SDK from 1c14d9bb3528 to df54886d1295 (14 revisions) (cla: yes, waiting for tree to go green)
[23445](https://github.com/flutter/engine/pull/23445) Roll Fuchsia Linux SDK from 597LHqqTy... to 0R7_vIAML... (cla: yes, waiting for tree to go green)
[23446](https://github.com/flutter/engine/pull/23446) Roll Skia from 854ee85736e3 to 2ca39919583f (2 revisions) (cla: yes, waiting for tree to go green)
[23449](https://github.com/flutter/engine/pull/23449) Roll Fuchsia Mac SDK from zMCnd-3cP... to de_114mvQ... (cla: yes, waiting for tree to go green)
[23450](https://github.com/flutter/engine/pull/23450) Roll Dart SDK from df54886d1295 to 996a58122821 (1 revision) (cla: yes, waiting for tree to go green)
[23453](https://github.com/flutter/engine/pull/23453) Roll Skia from 2ca39919583f to 32d68537a88c (11 revisions) (cla: yes, waiting for tree to go green)
[23455](https://github.com/flutter/engine/pull/23455) Roll Skia from 32d68537a88c to 417743f806d1 (4 revisions) (cla: yes, waiting for tree to go green)
[23461](https://github.com/flutter/engine/pull/23461) Roll Fuchsia Linux SDK from 0R7_vIAML... to 5jKxFxRiQ... (cla: yes, waiting for tree to go green)
[23463](https://github.com/flutter/engine/pull/23463) Roll Dart SDK from 996a58122821 to 9542c7bc569a (3 revisions) (cla: yes, waiting for tree to go green)
[23464](https://github.com/flutter/engine/pull/23464) Roll Skia from 417743f806d1 to a7b7964a237a (19 revisions) (cla: yes, waiting for tree to go green)
[23471](https://github.com/flutter/engine/pull/23471) update browser history switching (cla: yes, platform-web, waiting for tree to go green)
[23472](https://github.com/flutter/engine/pull/23472) Revert Dart roll (#23444) (cla: yes, waiting for tree to go green)
[23474](https://github.com/flutter/engine/pull/23474) Provide a runtime switch for selecting SkParagraph text layout (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23476](https://github.com/flutter/engine/pull/23476) Update virtual to take sampling (cla: yes, waiting for tree to go green)
[23479](https://github.com/flutter/engine/pull/23479) Roll Skia from a7b7964a237a to d64a3193cd49 (5 revisions) (cla: yes, waiting for tree to go green)
[23482](https://github.com/flutter/engine/pull/23482) Roll Fuchsia Mac SDK from de_114mvQ... to cLR0CUb-e... (cla: yes, waiting for tree to go green)
[23484](https://github.com/flutter/engine/pull/23484) Roll Fuchsia Linux SDK from 5jKxFxRiQ... to qedaMC5nT... (cla: yes, waiting for tree to go green)
[23486](https://github.com/flutter/engine/pull/23486) Roll Dart SDK from 1c14d9bb3528 to 6a6a854523fd (21 revisions) (cla: yes, waiting for tree to go green)
[23487](https://github.com/flutter/engine/pull/23487) Roll Skia from d64a3193cd49 to be0b3b7363a9 (3 revisions) (cla: yes, waiting for tree to go green)
[23491](https://github.com/flutter/engine/pull/23491) Implements accessibility bridge in common library (accessibility, affects: desktop, cla: yes, waiting for tree to go green)
[23493](https://github.com/flutter/engine/pull/23493) SDK constraints are now just generally required (cla: yes, waiting for tree to go green)
[23495](https://github.com/flutter/engine/pull/23495) State Restoration for iOS (cla: yes, platform-ios, waiting for tree to go green)
[23499](https://github.com/flutter/engine/pull/23499) Adds a mechanism for announce events to be forwarded to a11y. (cla: yes, waiting for tree to go green)
[23503](https://github.com/flutter/engine/pull/23503) During image decoding, avoid using smart pointers for DartWrappables that cross thread-boundaries. (cla: yes, waiting for tree to go green)
[23509](https://github.com/flutter/engine/pull/23509) Roll Fuchsia Mac SDK from cLR0CUb-e... to IGtSAREVb... (cla: yes, waiting for tree to go green)
[23512](https://github.com/flutter/engine/pull/23512) Roll Fuchsia Linux SDK from qedaMC5nT... to R9qkTURF2... (cla: yes, waiting for tree to go green)
[23513](https://github.com/flutter/engine/pull/23513) Update outdated links (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23518](https://github.com/flutter/engine/pull/23518) fix ax unique id flake (cla: yes, waiting for tree to go green)
[23525](https://github.com/flutter/engine/pull/23525) Roll Skia from be0b3b7363a9 to c6e25754c4ad (22 revisions) (cla: yes, waiting for tree to go green)
[23528](https://github.com/flutter/engine/pull/23528) Roll Skia from c6e25754c4ad to f4ea30580c91 (1 revision) (cla: yes, waiting for tree to go green)
[23531](https://github.com/flutter/engine/pull/23531) Roll Skia from f4ea30580c91 to cb3bcf88e382 (3 revisions) (cla: yes, waiting for tree to go green)
[23532](https://github.com/flutter/engine/pull/23532) Roll Skia from cb3bcf88e382 to d2f51b18065a (1 revision) (cla: yes, waiting for tree to go green)
[23533](https://github.com/flutter/engine/pull/23533) Roll Skia from d2f51b18065a to f5aed172c693 (1 revision) (cla: yes, waiting for tree to go green)
[23534](https://github.com/flutter/engine/pull/23534) Roll Fuchsia Mac SDK from IGtSAREVb... to 80NV-ZWKC... (cla: yes, waiting for tree to go green)
[23536](https://github.com/flutter/engine/pull/23536) Roll Skia from f5aed172c693 to 0355118f220e (1 revision) (cla: yes, waiting for tree to go green)
[23541](https://github.com/flutter/engine/pull/23541) Roll Skia from 0355118f220e to 2a735ba1cb32 (7 revisions) (cla: yes, waiting for tree to go green)
[23543](https://github.com/flutter/engine/pull/23543) Roll Fuchsia Linux SDK from R9qkTURF2... to kYdpRwQ7N... (cla: yes, waiting for tree to go green)
[23544](https://github.com/flutter/engine/pull/23544) Roll Skia from 2a735ba1cb32 to 00e43df25bea (6 revisions) (cla: yes, waiting for tree to go green)
[23548](https://github.com/flutter/engine/pull/23548) Roll Skia from 00e43df25bea to 047d5bb8d39c (2 revisions) (cla: yes, waiting for tree to go green)
[23551](https://github.com/flutter/engine/pull/23551) [web] Fix more tests that are specific to DomParagraph (cla: yes, platform-web, waiting for tree to go green)
[23553](https://github.com/flutter/engine/pull/23553) Roll Skia from 047d5bb8d39c to 6bf6963198aa (1 revision) (cla: yes, waiting for tree to go green)
[23555](https://github.com/flutter/engine/pull/23555) Roll Skia from 6bf6963198aa to 17ce8c5ec6f4 (2 revisions) (cla: yes, waiting for tree to go green)
[23556](https://github.com/flutter/engine/pull/23556) Roll Skia from 17ce8c5ec6f4 to ae562bd177d9 (1 revision) (cla: yes, waiting for tree to go green)
[23557](https://github.com/flutter/engine/pull/23557) Roll Skia from ae562bd177d9 to 5045de33e754 (2 revisions) (cla: yes, waiting for tree to go green)
[23558](https://github.com/flutter/engine/pull/23558) Roll Fuchsia Mac SDK from 80NV-ZWKC... to mDPWTwJns... (cla: yes, waiting for tree to go green)
[23560](https://github.com/flutter/engine/pull/23560) Roll Skia from 5045de33e754 to 8f282f5d9f30 (1 revision) (cla: yes, waiting for tree to go green)
[23562](https://github.com/flutter/engine/pull/23562) iOS deeplink sends "path + query" instead of just path (cla: yes, platform-ios, waiting for tree to go green)
[23564](https://github.com/flutter/engine/pull/23564) Roll Fuchsia Linux SDK from kYdpRwQ7N... to KAsjGNhH6... (cla: yes, waiting for tree to go green)
[23565](https://github.com/flutter/engine/pull/23565) Roll Fuchsia Mac SDK from mDPWTwJns... to dYtTUrjF2... (cla: yes, waiting for tree to go green)
[23570](https://github.com/flutter/engine/pull/23570) Roll Fuchsia Mac SDK from dYtTUrjF2... to Zvqkcgk0A... (cla: yes, waiting for tree to go green)
[23575](https://github.com/flutter/engine/pull/23575) Roll Skia from 8f282f5d9f30 to 2199cde1f52b (1 revision) (cla: yes, waiting for tree to go green)
[23578](https://github.com/flutter/engine/pull/23578) Roll Dart SDK from d7624b6ec7bb to e7983fd4adb9 (7 revisions) (cla: yes, waiting for tree to go green)
[23579](https://github.com/flutter/engine/pull/23579) Roll Skia from 2199cde1f52b to a7548393d370 (1 revision) (cla: yes, waiting for tree to go green)
[23580](https://github.com/flutter/engine/pull/23580) Roll Fuchsia Mac SDK from Zvqkcgk0A... to UxTIYduaG... (cla: yes, waiting for tree to go green)
[23582](https://github.com/flutter/engine/pull/23582) Roll Fuchsia Linux SDK from KAsjGNhH6... to lbQ4FeXvV... (cla: yes, waiting for tree to go green)
[23583](https://github.com/flutter/engine/pull/23583) Roll Skia from a7548393d370 to 97eede48be1e (5 revisions) (cla: yes, waiting for tree to go green)
[23586](https://github.com/flutter/engine/pull/23586) Roll Dart SDK from e7983fd4adb9 to 0145b9604d3c (1 revision) (cla: yes, waiting for tree to go green)
[23587](https://github.com/flutter/engine/pull/23587) Roll Skia from 97eede48be1e to 58a8ccc59190 (2 revisions) (cla: yes, waiting for tree to go green)
[23589](https://github.com/flutter/engine/pull/23589) Roll Skia from 58a8ccc59190 to eb54bb51b112 (6 revisions) (cla: yes, waiting for tree to go green)
[23590](https://github.com/flutter/engine/pull/23590) Roll Fuchsia Mac SDK from UxTIYduaG... to oll0Dgp9o... (cla: yes, waiting for tree to go green)
[23591](https://github.com/flutter/engine/pull/23591) Roll Fuchsia Linux SDK from lbQ4FeXvV... to UB6RsTbdU... (cla: yes, waiting for tree to go green)
[23593](https://github.com/flutter/engine/pull/23593) Roll Skia from eb54bb51b112 to 0a145b77f708 (2 revisions) (cla: yes, waiting for tree to go green)
[23594](https://github.com/flutter/engine/pull/23594) Roll Dart SDK from 0145b9604d3c to 28ec4cc111cf (1 revision) (cla: yes, waiting for tree to go green)
[23595](https://github.com/flutter/engine/pull/23595) Roll Skia from 0a145b77f708 to 52a7eca13d45 (6 revisions) (cla: yes, waiting for tree to go green)
[23596](https://github.com/flutter/engine/pull/23596) [web] Apply font-family and other styles to the paragraph element (cla: yes, platform-web, waiting for tree to go green)
[23602](https://github.com/flutter/engine/pull/23602) Roll Skia from 52a7eca13d45 to 9a4904f4e0cf (8 revisions) (cla: yes, waiting for tree to go green)
[23605](https://github.com/flutter/engine/pull/23605) Roll Skia from 9a4904f4e0cf to aed808c7567e (2 revisions) (cla: yes, waiting for tree to go green)
[23606](https://github.com/flutter/engine/pull/23606) Roll Dart SDK from 28ec4cc111cf to 7fcbd388b620 (1 revision) (cla: yes, waiting for tree to go green)
[23608](https://github.com/flutter/engine/pull/23608) [dart-runner] Avoid calling Destroy on nullptr (cla: yes, waiting for tree to go green)
[23612](https://github.com/flutter/engine/pull/23612) Roll Skia from aed808c7567e to 7cf3addb1bd8 (1 revision) (cla: yes, waiting for tree to go green)
[23614](https://github.com/flutter/engine/pull/23614) Roll Skia from 7cf3addb1bd8 to 93c2d81f199a (1 revision) (cla: yes, waiting for tree to go green)
[23623](https://github.com/flutter/engine/pull/23623) Windows textures: Add placeholder flutter_texture_registrar.h (cla: yes, waiting for tree to go green)
[23626](https://github.com/flutter/engine/pull/23626) Link SkShaper/SkParagraph into the engine by default (cla: yes, waiting for tree to go green)
[23633](https://github.com/flutter/engine/pull/23633) Roll Fuchsia Linux SDK from UB6RsTbdU... to FfWbbB4r8... (cla: yes, waiting for tree to go green)
[23635](https://github.com/flutter/engine/pull/23635) Roll Skia from 93c2d81f199a to 9fd75e96d712 (29 revisions) (cla: yes, waiting for tree to go green)
[23638](https://github.com/flutter/engine/pull/23638) [web] Fix text cutoff when rendering paragraphs on DomCanvas (cla: yes, platform-web, waiting for tree to go green)
[23639](https://github.com/flutter/engine/pull/23639) Roll Dart SDK from ef8bf7f0a667 to 636ff0ec97e0 (1 revision) (cla: yes, waiting for tree to go green)
[23641](https://github.com/flutter/engine/pull/23641) Roll Fuchsia Mac SDK from oll0Dgp9o... to JSzm8D59u... (cla: yes, waiting for tree to go green)
[23642](https://github.com/flutter/engine/pull/23642) Roll Dart SDK from 636ff0ec97e0 to d3d7b77e8165 (1 revision) (cla: yes, waiting for tree to go green)
[23643](https://github.com/flutter/engine/pull/23643) Roll Skia from 9fd75e96d712 to 38ca513408d1 (1 revision) (cla: yes, waiting for tree to go green)
[23644](https://github.com/flutter/engine/pull/23644) Roll Skia from 38ca513408d1 to be2a8614c5d6 (2 revisions) (cla: yes, waiting for tree to go green)
[23645](https://github.com/flutter/engine/pull/23645) Roll Dart SDK from d3d7b77e8165 to 010633edc631 (1 revision) (cla: yes, waiting for tree to go green)
[23646](https://github.com/flutter/engine/pull/23646) Roll Fuchsia Linux SDK from FfWbbB4r8... to BUsKF6z4t... (cla: yes, waiting for tree to go green)
[23647](https://github.com/flutter/engine/pull/23647) Roll Dart SDK from 010633edc631 to 724d9e5e7d71 (1 revision) (cla: yes, waiting for tree to go green)
[23648](https://github.com/flutter/engine/pull/23648) Roll Skia from be2a8614c5d6 to 0d7de6bc9ac3 (1 revision) (cla: yes, waiting for tree to go green)
[23650](https://github.com/flutter/engine/pull/23650) Roll Fuchsia Mac SDK from JSzm8D59u... to BsUY1yjWh... (cla: yes, waiting for tree to go green)
[23652](https://github.com/flutter/engine/pull/23652) Roll Skia from 0d7de6bc9ac3 to 92969f265686 (7 revisions) (cla: yes, waiting for tree to go green)
[23653](https://github.com/flutter/engine/pull/23653) [web] Fix layout exception when text is null (cla: yes, platform-web, waiting for tree to go green)
[23654](https://github.com/flutter/engine/pull/23654) Roll Skia from 92969f265686 to d8e9436a78bf (6 revisions) (cla: yes, waiting for tree to go green)
[23655](https://github.com/flutter/engine/pull/23655) Implement handling of framework-handled key events (cla: yes, waiting for tree to go green)
[23657](https://github.com/flutter/engine/pull/23657) Roll Skia from d8e9436a78bf to 0e4a29af9db2 (6 revisions) (cla: yes, waiting for tree to go green)
[23659](https://github.com/flutter/engine/pull/23659) [web] Reland: Enable the new rich paragraph implementation (cla: yes, platform-web, waiting for tree to go green)
[23667](https://github.com/flutter/engine/pull/23667) SkParagraph: enable the ICU breaker cache (cla: yes, waiting for tree to go green)
[23668](https://github.com/flutter/engine/pull/23668) Roll Fuchsia Linux SDK from BUsKF6z4t... to a7ezEWPM5... (cla: yes, waiting for tree to go green)
[23669](https://github.com/flutter/engine/pull/23669) Remove unused fml::Message serializer (cla: yes, waiting for tree to go green)
[23670](https://github.com/flutter/engine/pull/23670) Roll Skia from 0e4a29af9db2 to af9b58e287b5 (10 revisions) (cla: yes, waiting for tree to go green)
[23671](https://github.com/flutter/engine/pull/23671) Roll Skia from af9b58e287b5 to f435ada424df (1 revision) (cla: yes, waiting for tree to go green)
[23672](https://github.com/flutter/engine/pull/23672) Roll Fuchsia Mac SDK from BsUY1yjWh... to BoBy7Eobf... (cla: yes, waiting for tree to go green)
[23675](https://github.com/flutter/engine/pull/23675) FlutterEngineGroup for Android (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23676](https://github.com/flutter/engine/pull/23676) Roll Fuchsia Linux SDK from a7ezEWPM5... to erwxDS3kf... (cla: yes, waiting for tree to go green)
[23680](https://github.com/flutter/engine/pull/23680) Roll Skia from f435ada424df to 8f78d5528438 (7 revisions) (cla: yes, waiting for tree to go green)
[23685](https://github.com/flutter/engine/pull/23685) [canvaskit] fix addPlaceholder JS bindings; add paragraph test (cla: yes, platform-web, waiting for tree to go green)
[23692](https://github.com/flutter/engine/pull/23692) Roll Skia from 8f78d5528438 to 890b2b406a60 (9 revisions) (cla: yes, waiting for tree to go green)
[23693](https://github.com/flutter/engine/pull/23693) Roll Fuchsia Mac SDK from BoBy7Eobf... to DVYrV15dq... (cla: yes, waiting for tree to go green)
[23694](https://github.com/flutter/engine/pull/23694) Ensure gen_snapshot for the target is built when needed (cla: yes, waiting for tree to go green)
[23699](https://github.com/flutter/engine/pull/23699) Roll Dart SDK from 3629a798353d to a461c2b3366d (1 revision) (cla: yes, waiting for tree to go green)
[23700](https://github.com/flutter/engine/pull/23700) Roll Skia from 890b2b406a60 to 3df6c20a050a (11 revisions) (cla: yes, waiting for tree to go green)
[23703](https://github.com/flutter/engine/pull/23703) Roll Skia from 3df6c20a050a to 68b8bd5ba7f3 (3 revisions) (cla: yes, waiting for tree to go green)
[23706](https://github.com/flutter/engine/pull/23706) Roll Fuchsia Linux SDK from erwxDS3kf... to y-4SPFGg7... (cla: yes, waiting for tree to go green)
[23707](https://github.com/flutter/engine/pull/23707) Roll Dart SDK from a461c2b3366d to 82cec4d65743 (2 revisions) (cla: yes, waiting for tree to go green)
[23708](https://github.com/flutter/engine/pull/23708) Roll Skia from 68b8bd5ba7f3 to 1895425ffc90 (2 revisions) (cla: yes, waiting for tree to go green)
[23709](https://github.com/flutter/engine/pull/23709) Roll Skia from 1895425ffc90 to 7f81cb6901ae (2 revisions) (cla: yes, waiting for tree to go green)
[23710](https://github.com/flutter/engine/pull/23710) Roll Fuchsia Mac SDK from DVYrV15dq... to 058reL2R_... (cla: yes, waiting for tree to go green)
[23711](https://github.com/flutter/engine/pull/23711) Roll Dart SDK from 82cec4d65743 to c262c3e0d9d2 (1 revision) (cla: yes, waiting for tree to go green)
[23712](https://github.com/flutter/engine/pull/23712) Roll Skia from 7f81cb6901ae to 70ea0d97c1c5 (1 revision) (cla: yes, waiting for tree to go green)
[23713](https://github.com/flutter/engine/pull/23713) Roll Dart SDK from c262c3e0d9d2 to 0554c17398ef (1 revision) (cla: yes, waiting for tree to go green)
[23714](https://github.com/flutter/engine/pull/23714) Roll Skia from 70ea0d97c1c5 to 4f4c064d5b74 (7 revisions) (cla: yes, waiting for tree to go green)
[23715](https://github.com/flutter/engine/pull/23715) Roll Fuchsia Linux SDK from y-4SPFGg7... to f6HozEhK-... (cla: yes, waiting for tree to go green)
[23720](https://github.com/flutter/engine/pull/23720) Roll Skia from 4f4c064d5b74 to 9f079f7c0d16 (11 revisions) (cla: yes, waiting for tree to go green)
[23721](https://github.com/flutter/engine/pull/23721) Roll Skia from 9f079f7c0d16 to bfd330d08195 (2 revisions) (cla: yes, waiting for tree to go green)
[23722](https://github.com/flutter/engine/pull/23722) Roll Fuchsia Mac SDK from 058reL2R_... to -f95YWvck... (cla: yes, waiting for tree to go green)
[23725](https://github.com/flutter/engine/pull/23725) Roll Skia from bfd330d08195 to d414e600b24b (5 revisions) (cla: yes, waiting for tree to go green)
[23726](https://github.com/flutter/engine/pull/23726) Removes deprecated WLAN API dependency. (cla: yes, waiting for tree to go green)
[23731](https://github.com/flutter/engine/pull/23731) [fuchsia] Add missing static binding check. (cla: yes, waiting for tree to go green)
[23732](https://github.com/flutter/engine/pull/23732) Roll Skia from d414e600b24b to 05e5446145a6 (4 revisions) (cla: yes, waiting for tree to go green)
[23733](https://github.com/flutter/engine/pull/23733) block thread merging with shared engines (cla: yes, waiting for tree to go green)
[23735](https://github.com/flutter/engine/pull/23735) Roll Dart SDK from 0554c17398ef to 93a7e1189a8a (3 revisions) (cla: yes, waiting for tree to go green)
[23737](https://github.com/flutter/engine/pull/23737) Roll Fuchsia Linux SDK from f6HozEhK-... to 9jHAc8Xal... (cla: yes, waiting for tree to go green)
[23738](https://github.com/flutter/engine/pull/23738) Roll Dart SDK from 93a7e1189a8a to c962a50422d3 (2 revisions) (cla: yes, waiting for tree to go green)
[23740](https://github.com/flutter/engine/pull/23740) Roll Fuchsia Mac SDK from -f95YWvck... to WDEyMachh... (cla: yes, waiting for tree to go green)
[23744](https://github.com/flutter/engine/pull/23744) Roll Fuchsia Linux SDK from 9jHAc8Xal... to Slp6mtN7o... (cla: yes, waiting for tree to go green)
[23747](https://github.com/flutter/engine/pull/23747) Roll Dart SDK from c962a50422d3 to 3a72a508f5a0 (1 revision) (cla: yes, waiting for tree to go green)
[23748](https://github.com/flutter/engine/pull/23748) Roll Dart SDK from 3a72a508f5a0 to f0c507184d5d (1 revision) (cla: yes, waiting for tree to go green)
[23752](https://github.com/flutter/engine/pull/23752) Roll Fuchsia Mac SDK from WDEyMachh... to _UK6XxiMu... (cla: yes, waiting for tree to go green)
[23755](https://github.com/flutter/engine/pull/23755) Roll Fuchsia Linux SDK from Slp6mtN7o... to -tixwZamE... (cla: yes, waiting for tree to go green)
[23756](https://github.com/flutter/engine/pull/23756) Roll Fuchsia Mac SDK from _UK6XxiMu... to gifLPMkX1... (cla: yes, waiting for tree to go green)
[23758](https://github.com/flutter/engine/pull/23758) Roll Dart SDK from f0c507184d5d to 091e9f17809e (1 revision) (cla: yes, waiting for tree to go green)
[23759](https://github.com/flutter/engine/pull/23759) Roll Skia from 05e5446145a6 to 26a84431ff72 (2 revisions) (cla: yes, waiting for tree to go green)
[23762](https://github.com/flutter/engine/pull/23762) Roll Dart SDK from 091e9f17809e to c4214e6daaac (3 revisions) (cla: yes, waiting for tree to go green)
[23763](https://github.com/flutter/engine/pull/23763) Roll Fuchsia Mac SDK from gifLPMkX1... to pc_veLlry... (cla: yes, waiting for tree to go green)
[23764](https://github.com/flutter/engine/pull/23764) Roll Fuchsia Linux SDK from -tixwZamE... to fByXAJ76e... (cla: yes, waiting for tree to go green)
[23765](https://github.com/flutter/engine/pull/23765) Allow creation of symlinks for Goma via an environment variable. (cla: yes, waiting for tree to go green)
[23766](https://github.com/flutter/engine/pull/23766) Roll Skia from 26a84431ff72 to bde06cc511d2 (12 revisions) (cla: yes, waiting for tree to go green)
[23769](https://github.com/flutter/engine/pull/23769) [web] Fix shadow rendering using boxshadow due to webkit repaint area bug (cla: yes, waiting for tree to go green)
[23770](https://github.com/flutter/engine/pull/23770) Roll Dart SDK from c4214e6daaac to 4a6764bf28c2 (4 revisions) (cla: yes, waiting for tree to go green)
[23772](https://github.com/flutter/engine/pull/23772) Roll Skia from bde06cc511d2 to f3087d8297fe (7 revisions) (cla: yes, waiting for tree to go green)
[23781](https://github.com/flutter/engine/pull/23781) Roll Skia from f3087d8297fe to e0fe62adaa3e (9 revisions) (cla: yes, waiting for tree to go green)
[23782](https://github.com/flutter/engine/pull/23782) Started using Dart_CreateInGroup when using spawn on a release build (cla: yes, waiting for tree to go green)
[23784](https://github.com/flutter/engine/pull/23784) Roll Skia from e0fe62adaa3e to 18aeb5731b51 (1 revision) (cla: yes, waiting for tree to go green)
[23785](https://github.com/flutter/engine/pull/23785) Fix JNI void vs object method call - Deferred Components (cla: yes, platform-android, waiting for tree to go green)
[23786](https://github.com/flutter/engine/pull/23786) Roll Skia from 18aeb5731b51 to 7aa7f039b9ee (1 revision) (cla: yes, waiting for tree to go green)
[23787](https://github.com/flutter/engine/pull/23787) Roll Fuchsia Mac SDK from pc_veLlry... to xYraItnQp... (cla: yes, waiting for tree to go green)
[23788](https://github.com/flutter/engine/pull/23788) Roll Fuchsia Linux SDK from fByXAJ76e... to vs54lOVoj... (cla: yes, waiting for tree to go green)
[23790](https://github.com/flutter/engine/pull/23790) Roll Skia from 7aa7f039b9ee to 6eb610f75cad (3 revisions) (cla: yes, waiting for tree to go green)
[23796](https://github.com/flutter/engine/pull/23796) Roll Dart SDK from c4214e6daaac to 0265477b0534 (5 revisions) (cla: yes, waiting for tree to go green)
[23798](https://github.com/flutter/engine/pull/23798) Share Android surface GrDirectContext (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23799](https://github.com/flutter/engine/pull/23799) Roll Skia from 6eb610f75cad to 489e55252ee3 (6 revisions) (cla: yes, waiting for tree to go green)
[23802](https://github.com/flutter/engine/pull/23802) Roll Skia from 489e55252ee3 to 81bfabeb18e6 (3 revisions) (cla: yes, waiting for tree to go green)
[23804](https://github.com/flutter/engine/pull/23804) Roll Fuchsia Linux SDK from vs54lOVoj... to E4eFE0Bz6... (cla: yes, waiting for tree to go green)
[23805](https://github.com/flutter/engine/pull/23805) Roll Skia from 81bfabeb18e6 to cdeabcaf5705 (1 revision) (cla: yes, waiting for tree to go green)
[23806](https://github.com/flutter/engine/pull/23806) Roll Fuchsia Mac SDK from xYraItnQp... to MrtHftV0U... (cla: yes, waiting for tree to go green)
[23808](https://github.com/flutter/engine/pull/23808) add ffi_allocation_patch.dart to libraries.yaml (cla: yes, waiting for tree to go green)
[23811](https://github.com/flutter/engine/pull/23811) Roll Dart SDK from 0265477b0534 to 970d74c42472 (1 revision) (cla: yes, waiting for tree to go green)
[23812](https://github.com/flutter/engine/pull/23812) Roll Skia from cdeabcaf5705 to dd069a9188cc (2 revisions) (cla: yes, waiting for tree to go green)
[23813](https://github.com/flutter/engine/pull/23813) Call Dart plugin registrant if available (cla: yes, waiting for tree to go green)
[23816](https://github.com/flutter/engine/pull/23816) Roll Skia from dd069a9188cc to 08f5311ae142 (5 revisions) (cla: yes, waiting for tree to go green)
[23818](https://github.com/flutter/engine/pull/23818) Roll Skia from 08f5311ae142 to 821a84558bd4 (1 revision) (cla: yes, waiting for tree to go green)
[23819](https://github.com/flutter/engine/pull/23819) Roll Dart SDK from 970d74c42472 to fd72dbb5b82b (1 revision) (cla: yes, waiting for tree to go green)
[23820](https://github.com/flutter/engine/pull/23820) Roll Dart SDK from 970d74c42472 to fd72dbb5b82b (1 revision) (cla: yes, waiting for tree to go green)
[23822](https://github.com/flutter/engine/pull/23822) revert path volatility tracker (cla: yes, waiting for tree to go green)
[23825](https://github.com/flutter/engine/pull/23825) Roll Skia from 821a84558bd4 to 87a055b02027 (4 revisions) (cla: yes, waiting for tree to go green)
[23826](https://github.com/flutter/engine/pull/23826) Roll Fuchsia Linux SDK from E4eFE0Bz6... to UGavhI1zv... (cla: yes, waiting for tree to go green)
[23827](https://github.com/flutter/engine/pull/23827) Roll Fuchsia Mac SDK from MrtHftV0U... to 7nZajqutF... (cla: yes, waiting for tree to go green)
[23828](https://github.com/flutter/engine/pull/23828) Roll Dart SDK from fd72dbb5b82b to 5e24a66b1bb8 (1 revision) (cla: yes, waiting for tree to go green)
[23829](https://github.com/flutter/engine/pull/23829) Roll Skia from 87a055b02027 to e0d023562bd9 (1 revision) (cla: yes, waiting for tree to go green)
[23831](https://github.com/flutter/engine/pull/23831) Roll Skia from e0d023562bd9 to 982127b7d57d (4 revisions) (cla: yes, waiting for tree to go green)
[23832](https://github.com/flutter/engine/pull/23832) Roll Fuchsia Linux Toolchain from git_revision:2c0536b76b35fa592ac7b4a0e4bb176eaf55af75 to IJxh_9dNS... (cla: yes, waiting for tree to go green)
[23834](https://github.com/flutter/engine/pull/23834) Roll Skia from 982127b7d57d to 6de1e52d0b12 (1 revision) (cla: yes, waiting for tree to go green)
[23836](https://github.com/flutter/engine/pull/23836) Roll Skia from 6de1e52d0b12 to 8a37fb2c605b (5 revisions) (cla: yes, waiting for tree to go green)
[23837](https://github.com/flutter/engine/pull/23837) Use references when iterating over SkParagraph text boxes (cla: yes, waiting for tree to go green)
[23838](https://github.com/flutter/engine/pull/23838) Roll Dart SDK from 5e24a66b1bb8 to 704928da5702 (2 revisions) (cla: yes, waiting for tree to go green)
[23839](https://github.com/flutter/engine/pull/23839) Roll Skia from 8a37fb2c605b to 37d16f135265 (4 revisions) (cla: yes, waiting for tree to go green)
[23841](https://github.com/flutter/engine/pull/23841) Roll Skia from 37d16f135265 to e89d8ea20b62 (2 revisions) (cla: yes, waiting for tree to go green)
[23842](https://github.com/flutter/engine/pull/23842) use the toolchain in //build for fuchsia (cla: yes, waiting for tree to go green)
[23843](https://github.com/flutter/engine/pull/23843) Roll Skia from e89d8ea20b62 to c09761f57605 (1 revision) (cla: yes, waiting for tree to go green)
[23846](https://github.com/flutter/engine/pull/23846) Roll Dart SDK from 704928da5702 to 1db2d4d95562 (1 revision) (cla: yes, waiting for tree to go green)
[23848](https://github.com/flutter/engine/pull/23848) Roll Fuchsia Linux SDK from UGavhI1zv... to mODEe2CNk... (cla: yes, waiting for tree to go green)
[23850](https://github.com/flutter/engine/pull/23850) fix concurrent threads cannot set thread name on Android issue (cla: yes, waiting for tree to go green)
[23851](https://github.com/flutter/engine/pull/23851) Roll Skia from c09761f57605 to 450f8565c7f3 (5 revisions) (cla: yes, waiting for tree to go green)
[23855](https://github.com/flutter/engine/pull/23855) Roll Skia from 450f8565c7f3 to 372791761157 (1 revision) (cla: yes, waiting for tree to go green)
[23857](https://github.com/flutter/engine/pull/23857) Roll Fuchsia Mac SDK from 7nZajqutF... to tuJCioUf3... (cla: yes, waiting for tree to go green)
[23858](https://github.com/flutter/engine/pull/23858) Roll Skia from 372791761157 to ce75036b3eaf (4 revisions) (cla: yes, waiting for tree to go green)
[23859](https://github.com/flutter/engine/pull/23859) Revert "implemented GetMainContext() for opengl" (cla: yes, platform-ios, waiting for tree to go green)
[23860](https://github.com/flutter/engine/pull/23860) Roll Skia from ce75036b3eaf to cc6961b9ac5e (3 revisions) (cla: yes, waiting for tree to go green)
[23861](https://github.com/flutter/engine/pull/23861) Roll Dart SDK from 1db2d4d95562 to 82b4c77fb17f (2 revisions) (cla: yes, waiting for tree to go green)
[23864](https://github.com/flutter/engine/pull/23864) Roll Skia from cc6961b9ac5e to 6a272434c2b2 (3 revisions) (cla: yes, waiting for tree to go green)
[23867](https://github.com/flutter/engine/pull/23867) Roll Skia from 6a272434c2b2 to bfc9be0f773f (2 revisions) (cla: yes, waiting for tree to go green)
[23868](https://github.com/flutter/engine/pull/23868) Read loading unit mapping from AndroidManifest instead of strings (cla: yes, platform-android, waiting for tree to go green)
[23872](https://github.com/flutter/engine/pull/23872) Roll Skia from bfc9be0f773f to 3193ff271628 (5 revisions) (cla: yes, waiting for tree to go green)
[23873](https://github.com/flutter/engine/pull/23873) Roll Fuchsia Linux SDK from mODEe2CNk... to edqShE0QE... (cla: yes, waiting for tree to go green)
[23874](https://github.com/flutter/engine/pull/23874) Roll Dart SDK from 82b4c77fb17f to 748993c3997a (1 revision) (cla: yes, waiting for tree to go green)
[23875](https://github.com/flutter/engine/pull/23875) Roll Skia from 3193ff271628 to 2a4c0fbdca1a (3 revisions) (cla: yes, waiting for tree to go green)
[23876](https://github.com/flutter/engine/pull/23876) Roll Fuchsia Linux Toolchain from IJxh_9dNS... to 8LaTdqf7w... (cla: yes, waiting for tree to go green)
[23878](https://github.com/flutter/engine/pull/23878) Roll Skia from 2a4c0fbdca1a to 8a42b09c162e (9 revisions) (cla: yes, waiting for tree to go green)
[23881](https://github.com/flutter/engine/pull/23881) Roll Dart SDK from 748993c3997a to 2ddf810f71f6 (1 revision) (cla: yes, waiting for tree to go green)
[23882](https://github.com/flutter/engine/pull/23882) Roll Skia from 8a42b09c162e to 9702fc6f3852 (1 revision) (cla: yes, waiting for tree to go green)
[23883](https://github.com/flutter/engine/pull/23883) Roll Fuchsia Mac SDK from tuJCioUf3... to 9Lh_vPIXU... (cla: yes, waiting for tree to go green)
[23886](https://github.com/flutter/engine/pull/23886) Roll Fuchsia Linux SDK from edqShE0QE... to uMOnDLfvl... (cla: yes, waiting for tree to go green)
[23888](https://github.com/flutter/engine/pull/23888) Roll Fuchsia Mac SDK from 9Lh_vPIXU... to PsYsfVNbW... (cla: yes, waiting for tree to go green)
[23890](https://github.com/flutter/engine/pull/23890) Roll Skia from 9702fc6f3852 to 07c5f52c947d (2 revisions) (cla: yes, waiting for tree to go green)
[23892](https://github.com/flutter/engine/pull/23892) Roll Skia from 07c5f52c947d to 8d29ab630996 (1 revision) (cla: yes, waiting for tree to go green)
[23893](https://github.com/flutter/engine/pull/23893) Roll Skia from 8d29ab630996 to d396cd50ff15 (1 revision) (cla: yes, waiting for tree to go green)
[23894](https://github.com/flutter/engine/pull/23894) Roll Fuchsia Linux SDK from uMOnDLfvl... to VYUnZ3Tbh... (cla: yes, waiting for tree to go green)
[23897](https://github.com/flutter/engine/pull/23897) Roll Fuchsia Mac SDK from PsYsfVNbW... to 6swTf93jz... (cla: yes, waiting for tree to go green)
[23898](https://github.com/flutter/engine/pull/23898) Roll Skia from d396cd50ff15 to 5bbf72757349 (2 revisions) (cla: yes, waiting for tree to go green)
[23900](https://github.com/flutter/engine/pull/23900) Roll Skia from 5bbf72757349 to 069e484cc3b9 (2 revisions) (cla: yes, waiting for tree to go green)
[23903](https://github.com/flutter/engine/pull/23903) Roll Fuchsia Linux SDK from VYUnZ3Tbh... to mrFdelzNr... (cla: yes, waiting for tree to go green)
[23904](https://github.com/flutter/engine/pull/23904) Roll Fuchsia Mac SDK from 6swTf93jz... to 7LGbVIHUD... (cla: yes, waiting for tree to go green)
[23907](https://github.com/flutter/engine/pull/23907) Roll Skia from 069e484cc3b9 to 607a382298b2 (1 revision) (cla: yes, waiting for tree to go green)
[23910](https://github.com/flutter/engine/pull/23910) Roll Skia from 607a382298b2 to fe8a4faa4bb2 (4 revisions) (cla: yes, waiting for tree to go green)
[23913](https://github.com/flutter/engine/pull/23913) Roll Fuchsia Linux SDK from mrFdelzNr... to GLRm7LJRm... (cla: yes, waiting for tree to go green)
[23920](https://github.com/flutter/engine/pull/23920) Roll Skia from fe8a4faa4bb2 to bd91660b6e12 (4 revisions) (cla: yes, waiting for tree to go green)
[23922](https://github.com/flutter/engine/pull/23922) Roll Dart SDK from 2ddf810f71f6 to 70c7daa78288 (1 revision) (cla: yes, waiting for tree to go green)
[23924](https://github.com/flutter/engine/pull/23924) [macos] Support smooth resizing for Metal (cla: yes, waiting for tree to go green)
[23928](https://github.com/flutter/engine/pull/23928) Adds Roboto as a global font fallback in CanvasKit (cla: yes, waiting for tree to go green)
[23929](https://github.com/flutter/engine/pull/23929) Roll Skia from bd91660b6e12 to fff4099358bd (9 revisions) (cla: yes, waiting for tree to go green)
[23930](https://github.com/flutter/engine/pull/23930) Roll Fuchsia Mac SDK from 7LGbVIHUD... to PGWwkVe7c... (cla: yes, waiting for tree to go green)
[23936](https://github.com/flutter/engine/pull/23936) Roll Fuchsia Mac Toolchain from git_revision:7d48eff8ba172216fca3649a3c452de4c7c16c00 to 139p8dSfW... (cla: yes, waiting for tree to go green)
[23937](https://github.com/flutter/engine/pull/23937) Roll Skia from fff4099358bd to 3f31f3027f69 (10 revisions) (cla: yes, waiting for tree to go green)
[23938](https://github.com/flutter/engine/pull/23938) Roll Dart SDK from 70c7daa78288 to f9e1d1ab4001 (1 revision) (cla: yes, waiting for tree to go green)
[23939](https://github.com/flutter/engine/pull/23939) Roll Skia from 3f31f3027f69 to 3419dda0588d (1 revision) (cla: yes, waiting for tree to go green)
[23940](https://github.com/flutter/engine/pull/23940) Roll Skia from 3419dda0588d to 76389b7d2444 (1 revision) (cla: yes, waiting for tree to go green)
[23943](https://github.com/flutter/engine/pull/23943) Roll Fuchsia Linux SDK from GLRm7LJRm... to DLfskqEUx... (cla: yes, waiting for tree to go green)
[23945](https://github.com/flutter/engine/pull/23945) Roll Skia from 76389b7d2444 to 02621c33b426 (3 revisions) (cla: yes, waiting for tree to go green)
[23946](https://github.com/flutter/engine/pull/23946) Roll Dart SDK from f9e1d1ab4001 to 2607b01bec99 (2 revisions) (cla: yes, waiting for tree to go green)
[23949](https://github.com/flutter/engine/pull/23949) Roll Skia from 02621c33b426 to bbc5288f2bb1 (4 revisions) (cla: yes, waiting for tree to go green)
[23953](https://github.com/flutter/engine/pull/23953) Roll Dart SDK from 2607b01bec99 to 38c2cddbe277 (2 revisions) (cla: yes, waiting for tree to go green)
[23956](https://github.com/flutter/engine/pull/23956) Roll Skia from bbc5288f2bb1 to 98c990eba005 (1 revision) (cla: yes, waiting for tree to go green)
[23957](https://github.com/flutter/engine/pull/23957) Roll Fuchsia Mac SDK from PGWwkVe7c... to FtwF654ce... (cla: yes, waiting for tree to go green)
[23958](https://github.com/flutter/engine/pull/23958) Roll Skia from 98c990eba005 to f661ec788b14 (3 revisions) (cla: yes, waiting for tree to go green)
[23959](https://github.com/flutter/engine/pull/23959) Roll Dart SDK from 38c2cddbe277 to 15dfe858c4a6 (1 revision) (cla: yes, waiting for tree to go green)
### platform-android - 126 pull request(s)
[20330](https://github.com/flutter/engine/pull/20330) Minor documentation details/breadcrumbs (cla: yes, platform-android)
[20473](https://github.com/flutter/engine/pull/20473) Limit heap growth on Android (cla: yes, platform-android)
[20496](https://github.com/flutter/engine/pull/20496) Migration to PlatformDispatcher and multi-window (cla: yes, platform-android, platform-ios)
[20868](https://github.com/flutter/engine/pull/20868) Deprecate Android v1 embedding classes (cla: yes, platform-android, waiting for tree to go green)
[21059](https://github.com/flutter/engine/pull/21059) Add a new raster status `kSkipAndRetry` frame (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21089](https://github.com/flutter/engine/pull/21089) Copyright header hygiene improvements (cla: yes, platform-android)
[21114](https://github.com/flutter/engine/pull/21114) Fix comment indentation (cla: yes, platform-android)
[21127](https://github.com/flutter/engine/pull/21127) Clean up C++ header includes (cla: yes, platform-android)
[21163](https://github.com/flutter/engine/pull/21163) Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[21188](https://github.com/flutter/engine/pull/21188) Flutter 1.22.0-12.1.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21189](https://github.com/flutter/engine/pull/21189) Fix NPE in PlatformPlugin.getClipboardData() (cla: yes, platform-android)
[21191](https://github.com/flutter/engine/pull/21191) Account for current open image in FlutterImageView (cla: yes, platform-android, waiting for tree to go green)
[21213](https://github.com/flutter/engine/pull/21213) IME Animation clean up extraneous window inset call (cla: yes, platform-android)
[21258](https://github.com/flutter/engine/pull/21258) Workaround for an Android emulator EGL bug that can cause inaccurate GL version strings (cla: yes, platform-android, waiting for tree to go green)
[21270](https://github.com/flutter/engine/pull/21270) Fix boolean value checks in StandardMessageCodec (cla: yes, platform-android, waiting for tree to go green)
[21272](https://github.com/flutter/engine/pull/21272) Enforce exclusivity for activity and fragments attached to the FlutterEngine (cla: yes, platform-android)
[21275](https://github.com/flutter/engine/pull/21275) support uri intent launcher in android (cla: yes, platform-android)
[21290](https://github.com/flutter/engine/pull/21290) SecurityException: Permission Denial (cla: yes, platform-android)
[21307](https://github.com/flutter/engine/pull/21307) Disconnect the view's AndroidKeyProcessor when detaching from the engine (cla: yes, platform-android, waiting for tree to go green)
[21330](https://github.com/flutter/engine/pull/21330) Retain the WindowInsetsAnimation callback if code shrinking is enabled (cla: yes, platform-android, waiting for tree to go green)
[21338](https://github.com/flutter/engine/pull/21338) Revert "Deprecate Android v1 embedding classes" (cla: yes, platform-android)
[21347](https://github.com/flutter/engine/pull/21347) Re-land deprecate Android v1 embedding classes (cla: yes, platform-android)
[21350](https://github.com/flutter/engine/pull/21350) Locale -> LanguageRange conversion to be more general in Android platformResolvedLocale (cla: yes, platform-android, waiting for tree to go green)
[21355](https://github.com/flutter/engine/pull/21355) Embedder API Support for display settings (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21366](https://github.com/flutter/engine/pull/21366) Flutter 1.22.0-12.2.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21396](https://github.com/flutter/engine/pull/21396) Support dragging native platform views (cla: yes, platform-android)
[21464](https://github.com/flutter/engine/pull/21464) Reland multiple display support for embedder API (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21466](https://github.com/flutter/engine/pull/21466) Flutter 1.22.0-12.3.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21504](https://github.com/flutter/engine/pull/21504) Support loading assets from Android dynamic feature modules (cla: yes, platform-android)
[21513](https://github.com/flutter/engine/pull/21513) Revert "Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android" (cla: yes, platform-android)
[21534](https://github.com/flutter/engine/pull/21534) [Android Text Input] Make the editing state listenable and allow batch edits (affects: text input, cla: yes, platform-android, waiting for tree to go green)
[21548](https://github.com/flutter/engine/pull/21548) Extract the WindowInsetsAnimation.Callback subclass into a separate class that will be lazily loaded (cla: yes, platform-android, waiting for tree to go green)
[21611](https://github.com/flutter/engine/pull/21611) Preserve specified AssetResolvers when performing a hot restart or updating the asset directory (cla: yes, platform-android)
[21665](https://github.com/flutter/engine/pull/21665) Ensure JNI is not called from raster thread (cla: yes, platform-android, waiting for tree to go green)
[21669](https://github.com/flutter/engine/pull/21669) [flutter_releases] Flutter 1.22.1 Engine Cherrypicks (cla: yes, platform-android, platform-ios)
[21679](https://github.com/flutter/engine/pull/21679) [flutter_releases] fix infra failure for web framework tests (cla: yes, platform-android, platform-ios)
[21696](https://github.com/flutter/engine/pull/21696) Forbid android.util.Log (cla: yes, platform-android, waiting for tree to go green)
[21719](https://github.com/flutter/engine/pull/21719) Allow TalkBack navigation while a platform view is rendered (cla: yes, platform-android, waiting for tree to go green)
[21730](https://github.com/flutter/engine/pull/21730) Fix viewInset.bottom and viewPadding.bottom… (affects: engine, cla: yes, platform-android, waiting for tree to go green)
[21777](https://github.com/flutter/engine/pull/21777) Prevent a race between SurfaceTexture.release and updateTexImage (cla: yes, platform-android, waiting for tree to go green)
[21790](https://github.com/flutter/engine/pull/21790) Call PlatformView.dispose when removing hybrid composition platform views (cla: yes, platform-android)
[21792](https://github.com/flutter/engine/pull/21792) Revert "Migration to PlatformDispatcher and multi-window #20496" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21806](https://github.com/flutter/engine/pull/21806) Forward Error objects to uncaught exception handler if there is one. (cla: yes, platform-android)
[21817](https://github.com/flutter/engine/pull/21817) Enable clipRRect for android platform view hybrid composition (cla: yes, platform-android, waiting for tree to go green)
[21839](https://github.com/flutter/engine/pull/21839) [android] Refactor surface factory and wire in external view embedder (cla: yes, platform-android, waiting for tree to go green)
[21841](https://github.com/flutter/engine/pull/21841) [flutter_releases] Flutter 1.22.2 engine cherrypicks (cla: yes, platform-android, platform-ios)
[21889](https://github.com/flutter/engine/pull/21889) Fix incldues to be flutter/shell rather than shell/ (cla: yes, platform-android)
[21904](https://github.com/flutter/engine/pull/21904) Eliminate FLUTTER_NOLINT where possible (cla: yes, code health, platform-android)
[21918](https://github.com/flutter/engine/pull/21918) Break the reference cycle between the surface factory and the external view embedder (cla: yes, platform-android)
[21940](https://github.com/flutter/engine/pull/21940) Reformat some files that were not auto-formatted (cla: yes, platform-android, waiting for tree to go green)
[21975](https://github.com/flutter/engine/pull/21975) Fixes Edge trigger route change announcement (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21977](https://github.com/flutter/engine/pull/21977) Fix the initialization of AndroidSurfaceFactoryImpl (cla: yes, platform-android)
[21979](https://github.com/flutter/engine/pull/21979) Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[22004](https://github.com/flutter/engine/pull/22004) Revert "Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (#21979)" (cla: yes, platform-android)
[22171](https://github.com/flutter/engine/pull/22171) [flutter_releases] Flutter 1.22.3 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22179](https://github.com/flutter/engine/pull/22179) Split AOT Android Embedder and shell (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22203](https://github.com/flutter/engine/pull/22203) Fix some serious lifecycle bugs with Android embedding code (cla: yes, platform-android, waiting for tree to go green)
[22205](https://github.com/flutter/engine/pull/22205) makes android semanticsnode to ignore hittest if it is not focusable (cla: yes, platform-android, waiting for tree to go green)
[22214](https://github.com/flutter/engine/pull/22214) Platform views have CreateExternalViewEmbedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22272](https://github.com/flutter/engine/pull/22272) Remove GetExternalViewEmbedder from surface (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22298](https://github.com/flutter/engine/pull/22298) Revert "support uri intent launcher in android (#21275)" (cla: yes, platform-android, waiting for tree to go green)
[22302](https://github.com/flutter/engine/pull/22302) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22304](https://github.com/flutter/engine/pull/22304) Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[22320](https://github.com/flutter/engine/pull/22320) Move common graphics utils to //flutter/common/graphics (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22321](https://github.com/flutter/engine/pull/22321) Revert "Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (#22304)" (cla: yes, platform-android)
[22340](https://github.com/flutter/engine/pull/22340) Use dispatchKeyEvent, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[22345](https://github.com/flutter/engine/pull/22345) move deprecation from the PluginRegistry outer interface to inner, v1-specific fields (cla: yes, platform-android)
[22353](https://github.com/flutter/engine/pull/22353) PlatformViewIOS CreateExternalViewEmbedder refactor (cla: yes, platform-android, platform-ios)
[22360](https://github.com/flutter/engine/pull/22360) [android] Platform view creates external view embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22363](https://github.com/flutter/engine/pull/22363) reland support uri launch in android (cla: yes, platform-android)
[22429](https://github.com/flutter/engine/pull/22429) Fix talkback in hybrid composition while using FlutterFragmentActivity (cla: yes, platform-android)
[22434](https://github.com/flutter/engine/pull/22434) Revert "[Android Text Input] Make the editing state listenable and allow batch edits " (cla: yes, platform-android, waiting for tree to go green)
[22435](https://github.com/flutter/engine/pull/22435) [Android text input] Reland #21534 (cla: yes, platform-android, waiting for tree to go green)
[22449](https://github.com/flutter/engine/pull/22449) [flutter_releases] Flutter 1.22.4 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22468](https://github.com/flutter/engine/pull/22468) Reverts 2 commits that remove surface dependance on external view embedder (cla: yes, platform-android, platform-ios)
[22470](https://github.com/flutter/engine/pull/22470) Reland "remove surface dependance on external view embedder (#22468)" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22478](https://github.com/flutter/engine/pull/22478) [flutter_release] Flutter 1.22.4 engine cherry-pick build error fix (cla: yes, platform-android, platform-ios)
[22538](https://github.com/flutter/engine/pull/22538) [Android] Add systemNavigationBarDividerColor (cla: yes, platform-android, waiting for tree to go green)
[22555](https://github.com/flutter/engine/pull/22555) Make the AndroidContext superclass destructor virtual (cla: yes, platform-android)
[22598](https://github.com/flutter/engine/pull/22598) Replace support libraries for AndroidX (cla: yes, platform-android, waiting for tree to go green)
[22599](https://github.com/flutter/engine/pull/22599) Rename padding->viewPadding to match framework naming conventions (cla: yes, platform-android, waiting for tree to go green)
[22610](https://github.com/flutter/engine/pull/22610) Update the log tag for FlutterEngineConnectionRegistry to be 23 characters (cla: yes, platform-android)
[22626](https://github.com/flutter/engine/pull/22626) Fix double delete on backspace on Android (cla: yes, platform-android, waiting for tree to go green)
[22628](https://github.com/flutter/engine/pull/22628) Fix java warnings for unchecked conversions in PlayStoreDynamicFeatureManager (cla: yes, platform-android)
[22654](https://github.com/flutter/engine/pull/22654) Fix the unchecked conversion warning for searchPaths in PlayStoreDynamicFeatureManager (cla: yes, platform-android)
[22658](https://github.com/flutter/engine/pull/22658) Fix race condition in key event handling on Android (cla: yes, platform-android)
[22665](https://github.com/flutter/engine/pull/22665) Make AndroidContext::IsValid virtual (cla: yes, platform-android)
[22678](https://github.com/flutter/engine/pull/22678) cherrypick: Fix double delete on backspace on Android (#22626) (cla: yes, platform-android)
[22685](https://github.com/flutter/engine/pull/22685) Generate Maven metadata files for engine artifacts (cla: yes, platform-android, waiting for tree to go green)
[22692](https://github.com/flutter/engine/pull/22692) Let FlutterFragment not pop the whole activity by default when more fragments are in the activity (cla: yes, platform-android, waiting for tree to go green)
[22752](https://github.com/flutter/engine/pull/22752) Add FlutterPlayStoreSplitApplication for simpler opt in to Split AOT (affects: engine, cla: yes, platform-android)
[22760](https://github.com/flutter/engine/pull/22760) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios)
[22819](https://github.com/flutter/engine/pull/22819) More rename from GPU thread to raster thread (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22823](https://github.com/flutter/engine/pull/22823) Revert "Fix race condition in key event handling on Android (#22658)" (cla: yes, platform-android)
[22833](https://github.com/flutter/engine/pull/22833) DynamicFeatureChannel MethodChannel and Install state tracking (cla: yes, platform-android)
[22834](https://github.com/flutter/engine/pull/22834) Reland: "Fix race condition in key event handling on Android (#22658)" (cla: yes, platform-android, waiting for tree to go green)
[22845](https://github.com/flutter/engine/pull/22845) opt into new Skia APIs (cla: yes, platform-android, waiting for tree to go green)
[22852](https://github.com/flutter/engine/pull/22852) Fix NPE when platform plugin delegate is null (cla: yes, platform-android)
[22853](https://github.com/flutter/engine/pull/22853) Handle null platform plugin delegate for v1 embedding (cla: yes, platform-android, waiting for tree to go green)
[22857](https://github.com/flutter/engine/pull/22857) Add split AOT loading unit failure/error code path (cla: yes, platform-android, waiting for tree to go green)
[22887](https://github.com/flutter/engine/pull/22887) Allow the root layout to be overriden. (cla: yes, platform-android)
[22916](https://github.com/flutter/engine/pull/22916) Move the WindowInsetsAnimation.Callback implementation to an inner class to avoid Android class loader warnings (cla: yes, platform-android, waiting for tree to go green)
[22930](https://github.com/flutter/engine/pull/22930) [flutter_releases] Flutter 1.22.5 engine cherry-pick PlatformViewsController: clear composition_order_ in the beginning of each frame (cla: yes, platform-android, platform-ios)
[22931](https://github.com/flutter/engine/pull/22931) [flutter_release] Flutter 1.22.5 engine cherry-pick (cla: yes, platform-android, platform-ios)
[22938](https://github.com/flutter/engine/pull/22938) [flutter_releases] Flutter Stable Engine 1.22.5 Cherrypicks (cla: yes, platform-android, platform-ios)
[22950](https://github.com/flutter/engine/pull/22950) [flutter_releases] Fix build error (cla: yes, platform-android, platform-ios)
[22974](https://github.com/flutter/engine/pull/22974) [flutter_releases] Flutter Engine 1.22.5 Cherrypick revert (cla: yes, platform-android, platform-ios)
[23130](https://github.com/flutter/engine/pull/23130) AssetResolver updating in AssetManager for Dynamic features (cla: yes, platform-android, waiting for tree to go green)
[23188](https://github.com/flutter/engine/pull/23188) Call JavaVM::AttachCurrentThread only once per thread (cla: yes, platform-android, waiting for tree to go green)
[23224](https://github.com/flutter/engine/pull/23224) Rename DynamicFeature->DeferredComponent and impl uninstall DeferredComponents (cla: yes, platform-android)
[23255](https://github.com/flutter/engine/pull/23255) fixes android deeplink to push the path only (cla: yes, platform-android, waiting for tree to go green)
[23457](https://github.com/flutter/engine/pull/23457) Fix SurfaceView usage when status bar is transparent (cla: yes, platform-android)
[23474](https://github.com/flutter/engine/pull/23474) Provide a runtime switch for selecting SkParagraph text layout (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23513](https://github.com/flutter/engine/pull/23513) Update outdated links (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23545](https://github.com/flutter/engine/pull/23545) Add a keep annotation to the ImeSyncDeferringInsetsCallback.AnimationCallback inner class (cla: yes, platform-android)
[23561](https://github.com/flutter/engine/pull/23561) Android deeplink sends "path + query" instead of just path (cla: yes, platform-android)
[23604](https://github.com/flutter/engine/pull/23604) Make android more lenient when it comes to out-of-order key event responses (cla: yes, platform-android)
[23675](https://github.com/flutter/engine/pull/23675) FlutterEngineGroup for Android (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23785](https://github.com/flutter/engine/pull/23785) Fix JNI void vs object method call - Deferred Components (cla: yes, platform-android, waiting for tree to go green)
[23798](https://github.com/flutter/engine/pull/23798) Share Android surface GrDirectContext (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23815](https://github.com/flutter/engine/pull/23815) [flutter_releases] Flutter Stable 1.22.6 Engine additional cherrypick (cla: yes, platform-android, platform-ios)
[23824](https://github.com/flutter/engine/pull/23824) Pass the filename directly to JNI for loading deferred component. (cla: yes, platform-android)
[23849](https://github.com/flutter/engine/pull/23849) Search multiple paths when loading deferred component .so files. (cla: yes, platform-android)
[23863](https://github.com/flutter/engine/pull/23863) [flutter_releases] Flutter 1.22.6 Engine Infra Cherrypick (cla: yes, platform-android, platform-ios)
[23868](https://github.com/flutter/engine/pull/23868) Read loading unit mapping from AndroidManifest instead of strings (cla: yes, platform-android, waiting for tree to go green)
[23925](https://github.com/flutter/engine/pull/23925) Allow naming shared libraries in deferred component via AndroidManifest (cla: yes, platform-android)
### platform-ios - 113 pull request(s)
[19292](https://github.com/flutter/engine/pull/19292) [iOS] Fix platfotm view called multiple times (cla: yes, platform-ios, waiting for tree to go green)
[19929](https://github.com/flutter/engine/pull/19929) Implement iOS [UITextInput firstRectForRange:] with markedText (cla: yes, platform-ios)
[20160](https://github.com/flutter/engine/pull/20160) iOS Text Editing Infinite Loop (cla: yes, platform-ios)
[20472](https://github.com/flutter/engine/pull/20472) set old_gen_heap_size to half of available memory on iOS (cla: yes, platform-ios, waiting for tree to go green)
[20496](https://github.com/flutter/engine/pull/20496) Migration to PlatformDispatcher and multi-window (cla: yes, platform-android, platform-ios)
[20972](https://github.com/flutter/engine/pull/20972) Added keyEvent support for iOS 13.4+ (cla: yes, platform-ios, waiting for tree to go green)
[21059](https://github.com/flutter/engine/pull/21059) Add a new raster status `kSkipAndRetry` frame (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21107](https://github.com/flutter/engine/pull/21107) Fix a AppLifecycleTest present time race between the animation and the rest of the test (cla: yes, platform-ios, waiting for tree to go green)
[21188](https://github.com/flutter/engine/pull/21188) Flutter 1.22.0-12.1.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21193](https://github.com/flutter/engine/pull/21193) [darwin] Header #import hygiene (cla: yes, platform-ios)
[21203](https://github.com/flutter/engine/pull/21203) Verify Flutter clang module, add hook for verifying consumer warnings (cla: yes, platform-ios)
[21277](https://github.com/flutter/engine/pull/21277) Dark mode friendly iOS debugging message (cla: yes, platform-ios, waiting for tree to go green)
[21286](https://github.com/flutter/engine/pull/21286) Fix iOS platform view's mask view blocking touch events. (cla: yes, platform-ios)
[21303](https://github.com/flutter/engine/pull/21303) [iOS TextInput] Avoid Unnecessary UndateEditingClient Calls (cla: yes, platform-ios, waiting for tree to go green)
[21333](https://github.com/flutter/engine/pull/21333) Remove spurious semicolon (cla: yes, platform-ios)
[21336](https://github.com/flutter/engine/pull/21336) Added the ability to set the initial route via launch urls. (cla: yes, platform-ios)
[21355](https://github.com/flutter/engine/pull/21355) Embedder API Support for display settings (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21362](https://github.com/flutter/engine/pull/21362) Update error text for iOS 14 launch (cla: yes, platform-ios)
[21366](https://github.com/flutter/engine/pull/21366) Flutter 1.22.0-12.2.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21397](https://github.com/flutter/engine/pull/21397) Remove ASCII art from mDNS error log (cla: yes, platform-ios)
[21432](https://github.com/flutter/engine/pull/21432) [ios] Remove unused is_valid_ from IOS Metal Context (cla: yes, platform-ios)
[21464](https://github.com/flutter/engine/pull/21464) Reland multiple display support for embedder API (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21466](https://github.com/flutter/engine/pull/21466) Flutter 1.22.0-12.3.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21526](https://github.com/flutter/engine/pull/21526) iOS: only add explicit transactions when there are platform views (only on main threads) (cla: yes, platform-ios, waiting for tree to go green)
[21578](https://github.com/flutter/engine/pull/21578) Use absolute path in ios_test_flutter target (cla: yes, platform-ios, waiting for tree to go green)
[21632](https://github.com/flutter/engine/pull/21632) Add flag to not publish the observatory port over mDNS (cla: yes, platform-ios)
[21669](https://github.com/flutter/engine/pull/21669) [flutter_releases] Flutter 1.22.1 Engine Cherrypicks (cla: yes, platform-android, platform-ios)
[21679](https://github.com/flutter/engine/pull/21679) [flutter_releases] fix infra failure for web framework tests (cla: yes, platform-android, platform-ios)
[21694](https://github.com/flutter/engine/pull/21694) Skip flaky test (cla: yes, platform-ios)
[21714](https://github.com/flutter/engine/pull/21714) Revert "fix On iOS, dialog titles are announced twice (#19826)" (cla: yes, platform-ios, waiting for tree to go green)
[21786](https://github.com/flutter/engine/pull/21786) Ocmock dylib (cla: yes, platform-ios)
[21792](https://github.com/flutter/engine/pull/21792) Revert "Migration to PlatformDispatcher and multi-window #20496" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21798](https://github.com/flutter/engine/pull/21798) [ios] Create a standalone external view embedder on iOS (cla: yes, platform-ios, waiting for tree to go green)
[21841](https://github.com/flutter/engine/pull/21841) [flutter_releases] Flutter 1.22.2 engine cherrypicks (cla: yes, platform-android, platform-ios)
[21864](https://github.com/flutter/engine/pull/21864) Update more class names from GrContext to GrDirectContext (cla: yes, platform-ios)
[21877](https://github.com/flutter/engine/pull/21877) [ios] Refactor IOSSurface factory and unify surface creation (cla: yes, platform-ios)
[21882](https://github.com/flutter/engine/pull/21882) Revert "Add flag to not publish the observatory port over mDNS" (cla: yes, platform-ios)
[21883](https://github.com/flutter/engine/pull/21883) Add flag to not publish the observatory port over mDNS (cla: yes, platform-ios)
[21890](https://github.com/flutter/engine/pull/21890) Refactored the FlutterEngine to make it easier to implement spawn functionality (cla: yes, platform-ios)
[21970](https://github.com/flutter/engine/pull/21970) Revert "[ios] Refactor IOSSurface factory and unify surface creation" (cla: yes, platform-ios, waiting for tree to go green)
[21975](https://github.com/flutter/engine/pull/21975) Fixes Edge trigger route change announcement (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21987](https://github.com/flutter/engine/pull/21987) [iOS] Fixes leaks of presses key message (cla: yes, platform-ios)
[22016](https://github.com/flutter/engine/pull/22016) Reland [ios] Refactor IOSSurface factory and unify surface creation (cla: yes, platform-ios, waiting for tree to go green)
[22082](https://github.com/flutter/engine/pull/22082) [ios] Convert FlutterPlatformViewsController to smart pointer (cla: yes, platform-ios)
[22170](https://github.com/flutter/engine/pull/22170) [profiling] Handle thread_info to account for killed threads (cla: yes, platform-ios)
[22171](https://github.com/flutter/engine/pull/22171) [flutter_releases] Flutter 1.22.3 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22179](https://github.com/flutter/engine/pull/22179) Split AOT Android Embedder and shell (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22194](https://github.com/flutter/engine/pull/22194) [iOS] Fixes DisplayLinkManager leaks (cla: yes, platform-ios)
[22206](https://github.com/flutter/engine/pull/22206) [ios] Surface factory holds the canonical reference to the external view embedder (cla: yes, platform-ios)
[22214](https://github.com/flutter/engine/pull/22214) Platform views have CreateExternalViewEmbedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22227](https://github.com/flutter/engine/pull/22227) Fix includes to start with shell (cla: yes, platform-ios)
[22272](https://github.com/flutter/engine/pull/22272) Remove GetExternalViewEmbedder from surface (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22275](https://github.com/flutter/engine/pull/22275) Do not involve external_view_embedder in submit frame process if threads are not merged. (cla: yes, platform-ios, waiting for tree to go green)
[22302](https://github.com/flutter/engine/pull/22302) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22320](https://github.com/flutter/engine/pull/22320) Move common graphics utils to //flutter/common/graphics (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22337](https://github.com/flutter/engine/pull/22337) Revert "Added the ability to set the initial route via launch urls. (… (cla: yes, platform-ios, waiting for tree to go green)
[22353](https://github.com/flutter/engine/pull/22353) PlatformViewIOS CreateExternalViewEmbedder refactor (cla: yes, platform-android, platform-ios)
[22356](https://github.com/flutter/engine/pull/22356) Reland deeplinking with info.plist check (cla: yes, platform-ios, waiting for tree to go green)
[22360](https://github.com/flutter/engine/pull/22360) [android] Platform view creates external view embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22367](https://github.com/flutter/engine/pull/22367) Revert "Rasterizer is initialized with an external view embedder (#22348)" (cla: yes, platform-ios)
[22372](https://github.com/flutter/engine/pull/22372) Reland "Do not involve external_view_embedder in submit frame process if threads are not merged. #22275" (cla: yes, platform-ios, waiting for tree to go green)
[22403](https://github.com/flutter/engine/pull/22403) [PlatformViewsController] Clear root_views_ in Reset (cla: yes, platform-ios, waiting for tree to go green)
[22406](https://github.com/flutter/engine/pull/22406) PlatformViewsController always make sure the touch events are finished (cla: yes, platform-ios, waiting for tree to go green)
[22449](https://github.com/flutter/engine/pull/22449) [flutter_releases] Flutter 1.22.4 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22468](https://github.com/flutter/engine/pull/22468) Reverts 2 commits that remove surface dependance on external view embedder (cla: yes, platform-android, platform-ios)
[22470](https://github.com/flutter/engine/pull/22470) Reland "remove surface dependance on external view embedder (#22468)" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22478](https://github.com/flutter/engine/pull/22478) [flutter_release] Flutter 1.22.4 engine cherry-pick build error fix (cla: yes, platform-android, platform-ios)
[22506](https://github.com/flutter/engine/pull/22506) Add xcframework to ios out (cla: yes, platform-ios)
[22574](https://github.com/flutter/engine/pull/22574) PlatformViewsController: clear composition_order_ in the beginning of each frame. (cla: yes, platform-ios, waiting for tree to go green)
[22611](https://github.com/flutter/engine/pull/22611) Introduce a delegate class for gpu metal rendering (cla: yes, platform-ios)
[22760](https://github.com/flutter/engine/pull/22760) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios)
[22762](https://github.com/flutter/engine/pull/22762) PlatformViewsController: clear composition_order_ in the beginning of each frame. (cla: yes, platform-ios)
[22775](https://github.com/flutter/engine/pull/22775) Revert "Introduce a delegate class for gpu metal rendering (#22611)" (cla: yes, platform-ios)
[22777](https://github.com/flutter/engine/pull/22777) Reland "Introduce a delegate class for gpu metal rendering (#22611)" (cla: yes, platform-ios)
[22811](https://github.com/flutter/engine/pull/22811) Add static text trait to plain semantics object with label in iOS (cla: yes, platform-ios, waiting for tree to go green)
[22818](https://github.com/flutter/engine/pull/22818) Generate gen_snapshot_armv7 and gen_snapshot_arm64 (cla: yes, platform-ios)
[22819](https://github.com/flutter/engine/pull/22819) More rename from GPU thread to raster thread (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22871](https://github.com/flutter/engine/pull/22871) Update sites to use new SkMatrix factories (cla: yes, platform-ios)
[22930](https://github.com/flutter/engine/pull/22930) [flutter_releases] Flutter 1.22.5 engine cherry-pick PlatformViewsController: clear composition_order_ in the beginning of each frame (cla: yes, platform-android, platform-ios)
[22931](https://github.com/flutter/engine/pull/22931) [flutter_release] Flutter 1.22.5 engine cherry-pick (cla: yes, platform-android, platform-ios)
[22938](https://github.com/flutter/engine/pull/22938) [flutter_releases] Flutter Stable Engine 1.22.5 Cherrypicks (cla: yes, platform-android, platform-ios)
[22950](https://github.com/flutter/engine/pull/22950) [flutter_releases] Fix build error (cla: yes, platform-android, platform-ios)
[22974](https://github.com/flutter/engine/pull/22974) [flutter_releases] Flutter Engine 1.22.5 Cherrypick revert (cla: yes, platform-android, platform-ios)
[22975](https://github.com/flutter/engine/pull/22975) Implemented FlutterEngineGroup and Spawn API. (cla: yes, platform-ios)
[22997](https://github.com/flutter/engine/pull/22997) Load iOS dart bundle by URL fallback (cla: yes, platform-ios, waiting for tree to go green)
[23013](https://github.com/flutter/engine/pull/23013) Stopped mocking the a flutter engine to make sure we delete the FlutterViewController. (cla: yes, platform-ios)
[23037](https://github.com/flutter/engine/pull/23037) Started tearing down the mock engine in tearDown in FlutterViewControllerTest (cla: yes, platform-ios)
[23054](https://github.com/flutter/engine/pull/23054) Revert "Load iOS dart bundle by URL fallback" (cla: yes, platform-ios, waiting for tree to go green)
[23066](https://github.com/flutter/engine/pull/23066) Added golden test to make sure that spawn engines work. (cla: yes, platform-ios)
[23153](https://github.com/flutter/engine/pull/23153) Update ios to use new YUVA texture SkImage factory (cla: yes, platform-ios)
[23158](https://github.com/flutter/engine/pull/23158) Update FlutterPlatformViewsTests (cla: yes, platform-ios, waiting for tree to go green)
[23166](https://github.com/flutter/engine/pull/23166) Disable FlutterPluginAppLifeCycleDelegateTest testWillResignActive (cla: yes, platform-ios)
[23175](https://github.com/flutter/engine/pull/23175) Fix background crash when FlutterView going appear while app goes background (cla: yes, platform-ios, waiting for tree to go green)
[23362](https://github.com/flutter/engine/pull/23362) Support Mice in iPadOS 13.4+ (cla: yes, platform-ios)
[23435](https://github.com/flutter/engine/pull/23435) started sharing GPU contexts between spawned engines (cla: yes, platform-ios)
[23474](https://github.com/flutter/engine/pull/23474) Provide a runtime switch for selecting SkParagraph text layout (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23495](https://github.com/flutter/engine/pull/23495) State Restoration for iOS (cla: yes, platform-ios, waiting for tree to go green)
[23513](https://github.com/flutter/engine/pull/23513) Update outdated links (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23539](https://github.com/flutter/engine/pull/23539) Started asserting that metal gpu contexts are shared (cla: yes, platform-ios)
[23562](https://github.com/flutter/engine/pull/23562) iOS deeplink sends "path + query" instead of just path (cla: yes, platform-ios, waiting for tree to go green)
[23599](https://github.com/flutter/engine/pull/23599) Add support for rendering using Metal on macOS (cla: yes, platform-ios)
[23610](https://github.com/flutter/engine/pull/23610) Revert "Support Mice in iPadOS 13.4+" (cla: yes, platform-ios)
[23634](https://github.com/flutter/engine/pull/23634) implemented GetMainContext() for opengl (cla: yes, platform-ios)
[23636](https://github.com/flutter/engine/pull/23636) Support Mice in iPadOS 13.4+ (cla: yes, platform-ios)
[23675](https://github.com/flutter/engine/pull/23675) FlutterEngineGroup for Android (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23689](https://github.com/flutter/engine/pull/23689) Added missing export for the flutter engine group. (cla: yes, platform-ios)
[23775](https://github.com/flutter/engine/pull/23775) skip flaky test (cla: yes, platform-ios)
[23798](https://github.com/flutter/engine/pull/23798) Share Android surface GrDirectContext (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23815](https://github.com/flutter/engine/pull/23815) [flutter_releases] Flutter Stable 1.22.6 Engine additional cherrypick (cla: yes, platform-android, platform-ios)
[23859](https://github.com/flutter/engine/pull/23859) Revert "implemented GetMainContext() for opengl" (cla: yes, platform-ios, waiting for tree to go green)
[23863](https://github.com/flutter/engine/pull/23863) [flutter_releases] Flutter 1.22.6 Engine Infra Cherrypick (cla: yes, platform-android, platform-ios)
[23865](https://github.com/flutter/engine/pull/23865) implemented GetMainContext() for opengl - reland (cla: yes, platform-ios)
[23933](https://github.com/flutter/engine/pull/23933) rename flutter_export to flutter_darwin_export to prevent naming conf… (cla: yes, platform-ios)
### platform-web - 85 pull request(s)
[19134](https://github.com/flutter/engine/pull/19134) [web] Support custom url strategies (cla: yes, platform-web)
[20794](https://github.com/flutter/engine/pull/20794) Implement browser history class for router widget (cla: yes, platform-web, waiting for tree to go green)
[21048](https://github.com/flutter/engine/pull/21048) [web] Allow updating input configuration while connection is active (cla: yes, platform-web)
[21112](https://github.com/flutter/engine/pull/21112) [web] Fix mis-aligned widget spans (cla: yes, platform-web)
[21115](https://github.com/flutter/engine/pull/21115) web: make a few variables non-null (cla: yes, platform-web)
[21194](https://github.com/flutter/engine/pull/21194) [web] Integration test for selectable text (affects: text input, cla: yes, platform-web)
[21226](https://github.com/flutter/engine/pull/21226) [web] enable ios safari screenshot tests (cla: yes, platform-web)
[21247](https://github.com/flutter/engine/pull/21247) [web] Remove commented import (cla: yes, platform-web)
[21370](https://github.com/flutter/engine/pull/21370) fix EnginePicture.toImage; implement rawRgba toByteData; add test (cla: yes, platform-web, waiting for tree to go green)
[21372](https://github.com/flutter/engine/pull/21372) Fix for issue flutter/#66502. (cla: yes, platform-web)
[21383](https://github.com/flutter/engine/pull/21383) E2e screenshot tests2 (cla: yes, platform-web)
[21423](https://github.com/flutter/engine/pull/21423) [web] Respond with null for unimplemented method channels (cla: yes, platform-web)
[21438](https://github.com/flutter/engine/pull/21438) Respect the --debug option in Firefox (cla: yes, platform-web, waiting for tree to go green)
[21499](https://github.com/flutter/engine/pull/21499) [web] Fix 3d transforms for html backend (cla: yes, platform-web)
[21629](https://github.com/flutter/engine/pull/21629) Add more TextStyle support to Paragraph in CanvasKit mode (cla: yes, platform-web)
[21677](https://github.com/flutter/engine/pull/21677) Pass angles for SweepGradient in degrees, not radians (cla: yes, platform-web)
[21702](https://github.com/flutter/engine/pull/21702) [web] Reland Support custom url strategies (cla: yes, platform-web)
[21852](https://github.com/flutter/engine/pull/21852) Auto detect mode to determine which rendering backend to use. (cla: yes, platform-web, waiting for tree to go green)
[21856](https://github.com/flutter/engine/pull/21856) Fixing semantics borders on mobile web (cla: yes, platform-web)
[21873](https://github.com/flutter/engine/pull/21873) [web] Implement sweep gradient (cla: yes, platform-web)
[21928](https://github.com/flutter/engine/pull/21928) [web] Fix scroll wheel line delta on Firefox. (cla: yes, platform-web)
[22070](https://github.com/flutter/engine/pull/22070) [web] Fix positioning of canvas elements due to svg filters (cla: yes, platform-web)
[22085](https://github.com/flutter/engine/pull/22085) Implement Scene.toImage() in CanvasKit mode. (cla: yes, platform-web)
[22150](https://github.com/flutter/engine/pull/22150) [web] Clean up unused previousStyle logic (cla: yes, platform-web, waiting for tree to go green)
[22159](https://github.com/flutter/engine/pull/22159) Report error when instantiating CanvasKit network image (cla: yes, platform-web)
[22160](https://github.com/flutter/engine/pull/22160) [web] Fixes canvas pixelation and overallocation due to transforms. (cla: yes, platform-web)
[22172](https://github.com/flutter/engine/pull/22172) [web] Fix transform not invalidating path bounds causing debugValidate failure (cla: yes, platform-web)
[22182](https://github.com/flutter/engine/pull/22182) [web] Fix for firefox custom clipping (cla: yes, platform-web, waiting for tree to go green)
[22184](https://github.com/flutter/engine/pull/22184) [web] Assign default natural width/height for svgs that report 0,0 on firefox and ie11 (cla: yes, platform-web)
[22215](https://github.com/flutter/engine/pull/22215) [web] Canoncalize font family on input fields (cla: yes, platform-web, waiting for tree to go green)
[22239](https://github.com/flutter/engine/pull/22239) [web] Put the paragraph painting logic in the Paragraph class (cla: yes, platform-web)
[22260](https://github.com/flutter/engine/pull/22260) Upgrades to felt (running on multiple modes, multiple backends, single test target option) (cla: yes, platform-web)
[22261](https://github.com/flutter/engine/pull/22261) web: make some errors more idiomatic (cla: yes, platform-web)
[22307](https://github.com/flutter/engine/pull/22307) [web] Split the EngineParagraph interface from the legacy implementation (cla: yes, platform-web)
[22365](https://github.com/flutter/engine/pull/22365) [web] Implement style inheritance during paragraph construction (cla: yes, platform-web)
[22371](https://github.com/flutter/engine/pull/22371) [web] Restore the ability to set a custom url strategy (cla: yes, platform-web)
[22442](https://github.com/flutter/engine/pull/22442) [web] Better structure to prepare for rich text measurement (cla: yes, platform-web)
[22443](https://github.com/flutter/engine/pull/22443) [web] Refactor _measureSubstring to better suit rich text measurement (cla: yes, platform-web)
[22444](https://github.com/flutter/engine/pull/22444) [web] Reuse the existing font string builer in TextStyle (cla: yes, platform-web)
[22597](https://github.com/flutter/engine/pull/22597) [web] Implement tilemode for gradient shaders. (cla: yes, platform-web)
[22618](https://github.com/flutter/engine/pull/22618) [web] Fix test failure on high dpi device (cla: yes, platform-web)
[22622](https://github.com/flutter/engine/pull/22622) [web] Optimize Matrix4.identity (cla: yes, perf: speed, platform-web)
[22771](https://github.com/flutter/engine/pull/22771) [web] Add new line break type (prohibited) (cla: yes, platform-web)
[22779](https://github.com/flutter/engine/pull/22779) [web] Initial rich measurement implementation (cla: yes, platform-web, waiting for tree to go green)
[22829](https://github.com/flutter/engine/pull/22829) upgrade Firefox to 83 (cla: yes, platform-web)
[22838](https://github.com/flutter/engine/pull/22838) Implement pushColorFilter in CanvasKit (cla: yes, platform-web)
[22848](https://github.com/flutter/engine/pull/22848) memoize the fallback SkPaint in paragraph (cla: yes, platform-web)
[22873](https://github.com/flutter/engine/pull/22873) [web] Handle overflow and maxLines in rich text (cla: yes, platform-web)
[22910](https://github.com/flutter/engine/pull/22910) [web] Fix edge cases when force-breaking lines (cla: yes, platform-web)
[22937](https://github.com/flutter/engine/pull/22937) CanvasKit fix embedded view clipping (cla: yes, platform-web, waiting for tree to go green)
[22939](https://github.com/flutter/engine/pull/22939) [web] Cache CSS font string instead of the style object (cla: yes, platform-web, waiting for tree to go green)
[22941](https://github.com/flutter/engine/pull/22941) [web] Default styles for rich text (cla: yes, platform-web)
[22942](https://github.com/flutter/engine/pull/22942) [web] Introduce flag to enable new rich text implementation (cla: yes, platform-web)
[22948](https://github.com/flutter/engine/pull/22948) [web] Add complex rich text test cases and fix them (cla: yes, platform-web)
[22951](https://github.com/flutter/engine/pull/22951) [canvaskit] improve image error handling and messaging (cla: yes, platform-web)
[22964](https://github.com/flutter/engine/pull/22964) [web] Separate the height ruler from the other rulers (cla: yes, platform-web, waiting for tree to go green)
[22966](https://github.com/flutter/engine/pull/22966) [canvaskit] reuse canvases when window resizes (cla: yes, platform-web)
[22977](https://github.com/flutter/engine/pull/22977) [web] Do not reset 'cursor' in PersistedPlatformView. (cla: yes, platform-web, waiting for tree to go green)
[22999](https://github.com/flutter/engine/pull/22999) [web] Fix regression in paragraph foreground style (cla: yes, platform-web)
[23043](https://github.com/flutter/engine/pull/23043) [web] Align offset for lines of rich text (cla: yes, platform-web, waiting for tree to go green)
[23064](https://github.com/flutter/engine/pull/23064) [web] Calculate height and baseline for rich text (cla: yes, platform-web)
[23097](https://github.com/flutter/engine/pull/23097) [web] Tests for rich paragraph DOM (cla: yes, platform-web)
[23098](https://github.com/flutter/engine/pull/23098) [web] Rich paragraph getBoxesForRange (cla: yes, platform-web)
[23101](https://github.com/flutter/engine/pull/23101) Return null in Future<WebSocketChannel>.catchError handler (cla: yes, platform-web)
[23133](https://github.com/flutter/engine/pull/23133) [web] Rich paragraph getPositionForOffset (cla: yes, platform-web)
[23136](https://github.com/flutter/engine/pull/23136) [web] Rich text painting on bitmap canvas (cla: yes, platform-web, waiting for tree to go green)
[23160](https://github.com/flutter/engine/pull/23160) [web] Placeholders for rich paragraphs (cla: yes, platform-web)
[23162](https://github.com/flutter/engine/pull/23162) [web] Enable the new rich paragraph implementation (cla: yes, platform-web)
[23348](https://github.com/flutter/engine/pull/23348) Roll CanvasKit to 0.22 (cla: yes, platform-web)
[23430](https://github.com/flutter/engine/pull/23430) Add flt-renderer and flt-build-mode debug attributes to <body> (cla: yes, platform-web)
[23470](https://github.com/flutter/engine/pull/23470) [web] Draw shadows for text in rich paragraphs (cla: yes, platform-web)
[23471](https://github.com/flutter/engine/pull/23471) update browser history switching (cla: yes, platform-web, waiting for tree to go green)
[23515](https://github.com/flutter/engine/pull/23515) [web] Fix tests in preparation for enabling new rich paragraph implementation (cla: yes, platform-web)
[23542](https://github.com/flutter/engine/pull/23542) [canvaskit] push methods return layers with correct class names (cla: yes, platform-web)
[23551](https://github.com/flutter/engine/pull/23551) [web] Fix more tests that are specific to DomParagraph (cla: yes, platform-web, waiting for tree to go green)
[23596](https://github.com/flutter/engine/pull/23596) [web] Apply font-family and other styles to the paragraph element (cla: yes, platform-web, waiting for tree to go green)
[23638](https://github.com/flutter/engine/pull/23638) [web] Fix text cutoff when rendering paragraphs on DomCanvas (cla: yes, platform-web, waiting for tree to go green)
[23653](https://github.com/flutter/engine/pull/23653) [web] Fix layout exception when text is null (cla: yes, platform-web, waiting for tree to go green)
[23659](https://github.com/flutter/engine/pull/23659) [web] Reland: Enable the new rich paragraph implementation (cla: yes, platform-web, waiting for tree to go green)
[23683](https://github.com/flutter/engine/pull/23683) [web] Fix letter spacing for rich paragraphs (cla: yes, platform-web)
[23685](https://github.com/flutter/engine/pull/23685) [canvaskit] fix addPlaceholder JS bindings; add paragraph test (cla: yes, platform-web, waiting for tree to go green)
[23691](https://github.com/flutter/engine/pull/23691) [web] Fix linear gradient tiling offset. (cla: yes, platform-web)
[23696](https://github.com/flutter/engine/pull/23696) [web] Reland: Enable the new rich paragraph implementation (cla: yes, platform-web)
[23727](https://github.com/flutter/engine/pull/23727) [web] Add --watch flag to 'felt test' (cla: yes, platform-web)
[23830](https://github.com/flutter/engine/pull/23830) [web] Fix shadows for arbitrary paths on PhysicalShape (cla: yes, platform-web)
### affects: desktop - 26 pull request(s)
[20836](https://github.com/flutter/engine/pull/20836) Track lock key down state instead of lock state (affects: desktop, cla: yes, needs tests, platform-linux)
[21388](https://github.com/flutter/engine/pull/21388) hasStrings Linux (affects: desktop, cla: yes, needs tests, platform-linux)
[21497](https://github.com/flutter/engine/pull/21497) [linux] Allow engine flags via environment vars (affects: desktop, affects: engine, cla: yes, platform-linux)
[21523](https://github.com/flutter/engine/pull/21523) Add missing returns in system channels handlers (affects: desktop, cla: yes, needs tests, platform-windows)
[21525](https://github.com/flutter/engine/pull/21525) Smooth window resizing on macOS (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21612](https://github.com/flutter/engine/pull/21612) Separate mutators for text and selection (affects: desktop, affects: text input, cla: yes, platform-linux, platform-windows, waiting for tree to go green)
[21699](https://github.com/flutter/engine/pull/21699) [macOS] Fix docs for loadAOTData and minor refactor (affects: desktop, cla: yes, needs tests, platform-macos)
[21789](https://github.com/flutter/engine/pull/21789) [macOS] Add plumbing to grab dart entrypoint args (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21811](https://github.com/flutter/engine/pull/21811) Switch macOS embedding to proc table embedder API (affects: desktop, affects: engine, cla: yes, platform-macos)
[21897](https://github.com/flutter/engine/pull/21897) Add multi-step input method support for Linux (affects: desktop, affects: text input, cla: yes, needs tests, platform-linux)
[21932](https://github.com/flutter/engine/pull/21932) Reland: Migration to PlatformDispatcher and multi-window (affects: desktop, cla: yes)
[21933](https://github.com/flutter/engine/pull/21933) Plumb through Dart entrypoint arguments on the Linux embedder (affects: desktop, cla: yes, needs tests, platform-linux)
[22007](https://github.com/flutter/engine/pull/22007) Fix FlTextInputPlugin tear down (affects: desktop, cla: yes, needs tests, platform-linux, waiting for tree to go green)
[22094](https://github.com/flutter/engine/pull/22094) Add plumbing for command line arguments on Windows (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22136](https://github.com/flutter/engine/pull/22136) Fix warning when no entrypoint args provided. (affects: desktop, cla: yes, needs tests, platform-linux)
[22268](https://github.com/flutter/engine/pull/22268) Fix Linux handling of window exposure events (affects: desktop, cla: yes, needs tests, platform-linux)
[22323](https://github.com/flutter/engine/pull/22323) Add initial settings message to Windows embedding (affects: desktop, cla: yes, platform-windows)
[22412](https://github.com/flutter/engine/pull/22412) Add D3D9 fallback path for ANGLE and ensure fallbacks are actually attempted (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22457](https://github.com/flutter/engine/pull/22457) [macOS] Disable synchronous resizing until a frame is produced (affects: desktop, cla: yes, needs tests, platform-macos)
[22569](https://github.com/flutter/engine/pull/22569) [macOS] Isolate openGL rendering to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22572](https://github.com/flutter/engine/pull/22572) [macOS] Move the glContext generation to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22656](https://github.com/flutter/engine/pull/22656) Create FlutterFrameBufferProvider class (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22663](https://github.com/flutter/engine/pull/22663) Create wrapper for IOSurface (affects: desktop, cla: yes, needs tests, platform-macos)
[23491](https://github.com/flutter/engine/pull/23491) Implements accessibility bridge in common library (accessibility, affects: desktop, cla: yes, waiting for tree to go green)
[23795](https://github.com/flutter/engine/pull/23795) Notify Win32FlutterWindow of cursor updates (affects: desktop, affects: text input, cla: yes, platform-windows)
[23853](https://github.com/flutter/engine/pull/23853) Add support for IME-based text input on Windows (affects: desktop, affects: text input, cla: yes, platform-windows)
### needs tests - 18 pull request(s)
[20836](https://github.com/flutter/engine/pull/20836) Track lock key down state instead of lock state (affects: desktop, cla: yes, needs tests, platform-linux)
[21388](https://github.com/flutter/engine/pull/21388) hasStrings Linux (affects: desktop, cla: yes, needs tests, platform-linux)
[21523](https://github.com/flutter/engine/pull/21523) Add missing returns in system channels handlers (affects: desktop, cla: yes, needs tests, platform-windows)
[21525](https://github.com/flutter/engine/pull/21525) Smooth window resizing on macOS (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21699](https://github.com/flutter/engine/pull/21699) [macOS] Fix docs for loadAOTData and minor refactor (affects: desktop, cla: yes, needs tests, platform-macos)
[21789](https://github.com/flutter/engine/pull/21789) [macOS] Add plumbing to grab dart entrypoint args (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21897](https://github.com/flutter/engine/pull/21897) Add multi-step input method support for Linux (affects: desktop, affects: text input, cla: yes, needs tests, platform-linux)
[21933](https://github.com/flutter/engine/pull/21933) Plumb through Dart entrypoint arguments on the Linux embedder (affects: desktop, cla: yes, needs tests, platform-linux)
[22007](https://github.com/flutter/engine/pull/22007) Fix FlTextInputPlugin tear down (affects: desktop, cla: yes, needs tests, platform-linux, waiting for tree to go green)
[22094](https://github.com/flutter/engine/pull/22094) Add plumbing for command line arguments on Windows (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22136](https://github.com/flutter/engine/pull/22136) Fix warning when no entrypoint args provided. (affects: desktop, cla: yes, needs tests, platform-linux)
[22268](https://github.com/flutter/engine/pull/22268) Fix Linux handling of window exposure events (affects: desktop, cla: yes, needs tests, platform-linux)
[22412](https://github.com/flutter/engine/pull/22412) Add D3D9 fallback path for ANGLE and ensure fallbacks are actually attempted (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22457](https://github.com/flutter/engine/pull/22457) [macOS] Disable synchronous resizing until a frame is produced (affects: desktop, cla: yes, needs tests, platform-macos)
[22569](https://github.com/flutter/engine/pull/22569) [macOS] Isolate openGL rendering to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22572](https://github.com/flutter/engine/pull/22572) [macOS] Move the glContext generation to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22656](https://github.com/flutter/engine/pull/22656) Create FlutterFrameBufferProvider class (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22663](https://github.com/flutter/engine/pull/22663) Create wrapper for IOSurface (affects: desktop, cla: yes, needs tests, platform-macos)
### platform-linux - 16 pull request(s)
[20836](https://github.com/flutter/engine/pull/20836) Track lock key down state instead of lock state (affects: desktop, cla: yes, needs tests, platform-linux)
[21388](https://github.com/flutter/engine/pull/21388) hasStrings Linux (affects: desktop, cla: yes, needs tests, platform-linux)
[21497](https://github.com/flutter/engine/pull/21497) [linux] Allow engine flags via environment vars (affects: desktop, affects: engine, cla: yes, platform-linux)
[21612](https://github.com/flutter/engine/pull/21612) Separate mutators for text and selection (affects: desktop, affects: text input, cla: yes, platform-linux, platform-windows, waiting for tree to go green)
[21663](https://github.com/flutter/engine/pull/21663) Store selection base/extent as size_t (affects: text input, cla: yes, platform-linux, platform-windows)
[21682](https://github.com/flutter/engine/pull/21682) Add multi-step IME support to TextInputModel (affects: text input, cla: yes, platform-linux, platform-windows)
[21685](https://github.com/flutter/engine/pull/21685) Make TextInputModel::selection_start/end const (affects: text input, cla: yes, platform-linux, platform-windows)
[21711](https://github.com/flutter/engine/pull/21711) Perform selection check in DeleteSelected (affects: text input, cla: yes, platform-linux, platform-windows)
[21722](https://github.com/flutter/engine/pull/21722) Extract textrange (affects: text input, cla: yes, platform-linux, platform-windows)
[21854](https://github.com/flutter/engine/pull/21854) Migrate TextInputPlugin API to TextRange (affects: text input, cla: yes, platform-linux, platform-windows)
[21874](https://github.com/flutter/engine/pull/21874) Add TextRange::Contains tests spanning base/extent (affects: text input, cla: yes, platform-linux, platform-windows)
[21897](https://github.com/flutter/engine/pull/21897) Add multi-step input method support for Linux (affects: desktop, affects: text input, cla: yes, needs tests, platform-linux)
[21933](https://github.com/flutter/engine/pull/21933) Plumb through Dart entrypoint arguments on the Linux embedder (affects: desktop, cla: yes, needs tests, platform-linux)
[22007](https://github.com/flutter/engine/pull/22007) Fix FlTextInputPlugin tear down (affects: desktop, cla: yes, needs tests, platform-linux, waiting for tree to go green)
[22136](https://github.com/flutter/engine/pull/22136) Fix warning when no entrypoint args provided. (affects: desktop, cla: yes, needs tests, platform-linux)
[22268](https://github.com/flutter/engine/pull/22268) Fix Linux handling of window exposure events (affects: desktop, cla: yes, needs tests, platform-linux)
### platform-fuchsia - 15 pull request(s)
[21392](https://github.com/flutter/engine/pull/21392) fuchsia: Don't send ViewportMetrics w/ 0 DPR (cla: yes, platform-fuchsia)
[21484](https://github.com/flutter/engine/pull/21484) [fuchsia][a11y] Don't populate hidden state. (accessibility, cla: yes, platform-fuchsia, waiting for tree to go green)
[21527](https://github.com/flutter/engine/pull/21527) fuchsia: Remove Opacity hole-punch (cla: yes, platform-fuchsia)
[21543](https://github.com/flutter/engine/pull/21543) fuchsia: Fix test compile (affects: tests, cla: yes, platform-fuchsia)
[21544](https://github.com/flutter/engine/pull/21544) embedder: Exclude GL code (affects: engine, cla: yes, platform-fuchsia)
[22430](https://github.com/flutter/engine/pull/22430) fuchsia: Add licenses to CIPD (cla: yes, platform-fuchsia)
[22445](https://github.com/flutter/engine/pull/22445) fuchsia: Update buildroot (cla: yes, platform-fuchsia)
[22545](https://github.com/flutter/engine/pull/22545) Check valid view_holder ptr before updating view (cla: yes, platform-fuchsia)
[22593](https://github.com/flutter/engine/pull/22593) fuchsia: Clamp compositor surface size (cla: yes, platform-fuchsia)
[22687](https://github.com/flutter/engine/pull/22687) fuchsia: Ensure full-screen input interceptor (cla: yes, platform-fuchsia)
[23047](https://github.com/flutter/engine/pull/23047) fuchsia: Fix incorrect scale (cla: yes, platform-fuchsia)
[23128](https://github.com/flutter/engine/pull/23128) [fuchsia] Add wrapper for zx_clock_get_monotonic. (cla: yes, platform-fuchsia)
[23243](https://github.com/flutter/engine/pull/23243) fuchsia: Shutdown Dart VM properly (cla: yes, platform-fuchsia)
[23262](https://github.com/flutter/engine/pull/23262) [fuchsia][input] Migrate Flutter to "input3" (cla: yes, platform-fuchsia, waiting for tree to go green)
[23429](https://github.com/flutter/engine/pull/23429) Use syslog for logging on Fuchsia (cla: yes, platform-fuchsia)
### affects: text input - 14 pull request(s)
[21194](https://github.com/flutter/engine/pull/21194) [web] Integration test for selectable text (affects: text input, cla: yes, platform-web)
[21231](https://github.com/flutter/engine/pull/21231) Enable delayed event delivery for macOS (affects: text input, cla: yes)
[21534](https://github.com/flutter/engine/pull/21534) [Android Text Input] Make the editing state listenable and allow batch edits (affects: text input, cla: yes, platform-android, waiting for tree to go green)
[21612](https://github.com/flutter/engine/pull/21612) Separate mutators for text and selection (affects: desktop, affects: text input, cla: yes, platform-linux, platform-windows, waiting for tree to go green)
[21663](https://github.com/flutter/engine/pull/21663) Store selection base/extent as size_t (affects: text input, cla: yes, platform-linux, platform-windows)
[21682](https://github.com/flutter/engine/pull/21682) Add multi-step IME support to TextInputModel (affects: text input, cla: yes, platform-linux, platform-windows)
[21685](https://github.com/flutter/engine/pull/21685) Make TextInputModel::selection_start/end const (affects: text input, cla: yes, platform-linux, platform-windows)
[21711](https://github.com/flutter/engine/pull/21711) Perform selection check in DeleteSelected (affects: text input, cla: yes, platform-linux, platform-windows)
[21722](https://github.com/flutter/engine/pull/21722) Extract textrange (affects: text input, cla: yes, platform-linux, platform-windows)
[21854](https://github.com/flutter/engine/pull/21854) Migrate TextInputPlugin API to TextRange (affects: text input, cla: yes, platform-linux, platform-windows)
[21874](https://github.com/flutter/engine/pull/21874) Add TextRange::Contains tests spanning base/extent (affects: text input, cla: yes, platform-linux, platform-windows)
[21897](https://github.com/flutter/engine/pull/21897) Add multi-step input method support for Linux (affects: desktop, affects: text input, cla: yes, needs tests, platform-linux)
[23795](https://github.com/flutter/engine/pull/23795) Notify Win32FlutterWindow of cursor updates (affects: desktop, affects: text input, cla: yes, platform-windows)
[23853](https://github.com/flutter/engine/pull/23853) Add support for IME-based text input on Windows (affects: desktop, affects: text input, cla: yes, platform-windows)
### platform-windows - 14 pull request(s)
[21523](https://github.com/flutter/engine/pull/21523) Add missing returns in system channels handlers (affects: desktop, cla: yes, needs tests, platform-windows)
[21612](https://github.com/flutter/engine/pull/21612) Separate mutators for text and selection (affects: desktop, affects: text input, cla: yes, platform-linux, platform-windows, waiting for tree to go green)
[21663](https://github.com/flutter/engine/pull/21663) Store selection base/extent as size_t (affects: text input, cla: yes, platform-linux, platform-windows)
[21682](https://github.com/flutter/engine/pull/21682) Add multi-step IME support to TextInputModel (affects: text input, cla: yes, platform-linux, platform-windows)
[21685](https://github.com/flutter/engine/pull/21685) Make TextInputModel::selection_start/end const (affects: text input, cla: yes, platform-linux, platform-windows)
[21711](https://github.com/flutter/engine/pull/21711) Perform selection check in DeleteSelected (affects: text input, cla: yes, platform-linux, platform-windows)
[21722](https://github.com/flutter/engine/pull/21722) Extract textrange (affects: text input, cla: yes, platform-linux, platform-windows)
[21854](https://github.com/flutter/engine/pull/21854) Migrate TextInputPlugin API to TextRange (affects: text input, cla: yes, platform-linux, platform-windows)
[21874](https://github.com/flutter/engine/pull/21874) Add TextRange::Contains tests spanning base/extent (affects: text input, cla: yes, platform-linux, platform-windows)
[22094](https://github.com/flutter/engine/pull/22094) Add plumbing for command line arguments on Windows (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22323](https://github.com/flutter/engine/pull/22323) Add initial settings message to Windows embedding (affects: desktop, cla: yes, platform-windows)
[22412](https://github.com/flutter/engine/pull/22412) Add D3D9 fallback path for ANGLE and ensure fallbacks are actually attempted (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[23795](https://github.com/flutter/engine/pull/23795) Notify Win32FlutterWindow of cursor updates (affects: desktop, affects: text input, cla: yes, platform-windows)
[23853](https://github.com/flutter/engine/pull/23853) Add support for IME-based text input on Windows (affects: desktop, affects: text input, cla: yes, platform-windows)
### platform-macos - 10 pull request(s)
[21525](https://github.com/flutter/engine/pull/21525) Smooth window resizing on macOS (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21699](https://github.com/flutter/engine/pull/21699) [macOS] Fix docs for loadAOTData and minor refactor (affects: desktop, cla: yes, needs tests, platform-macos)
[21789](https://github.com/flutter/engine/pull/21789) [macOS] Add plumbing to grab dart entrypoint args (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21811](https://github.com/flutter/engine/pull/21811) Switch macOS embedding to proc table embedder API (affects: desktop, affects: engine, cla: yes, platform-macos)
[22457](https://github.com/flutter/engine/pull/22457) [macOS] Disable synchronous resizing until a frame is produced (affects: desktop, cla: yes, needs tests, platform-macos)
[22569](https://github.com/flutter/engine/pull/22569) [macOS] Isolate openGL rendering to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22572](https://github.com/flutter/engine/pull/22572) [macOS] Move the glContext generation to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22656](https://github.com/flutter/engine/pull/22656) Create FlutterFrameBufferProvider class (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22663](https://github.com/flutter/engine/pull/22663) Create wrapper for IOSurface (affects: desktop, cla: yes, needs tests, platform-macos)
[22979](https://github.com/flutter/engine/pull/22979) Load macOS dart bundle by URL fallback (cla: yes, platform-macos)
### affects: engine - 6 pull request(s)
[21497](https://github.com/flutter/engine/pull/21497) [linux] Allow engine flags via environment vars (affects: desktop, affects: engine, cla: yes, platform-linux)
[21544](https://github.com/flutter/engine/pull/21544) embedder: Exclude GL code (affects: engine, cla: yes, platform-fuchsia)
[21730](https://github.com/flutter/engine/pull/21730) Fix viewInset.bottom and viewPadding.bottom… (affects: engine, cla: yes, platform-android, waiting for tree to go green)
[21811](https://github.com/flutter/engine/pull/21811) Switch macOS embedding to proc table embedder API (affects: desktop, affects: engine, cla: yes, platform-macos)
[22624](https://github.com/flutter/engine/pull/22624) Split AOT Engine Runtime (affects: engine, cla: yes, waiting for tree to go green)
[22752](https://github.com/flutter/engine/pull/22752) Add FlutterPlayStoreSplitApplication for simpler opt in to Split AOT (affects: engine, cla: yes, platform-android)
### code health - 4 pull request(s)
[21904](https://github.com/flutter/engine/pull/21904) Eliminate FLUTTER_NOLINT where possible (cla: yes, code health, platform-android)
[21921](https://github.com/flutter/engine/pull/21921) Update FLUTTER_NOLINT uses to include issue link (cla: yes, code health)
[21927](https://github.com/flutter/engine/pull/21927) Define SK_VULKAN for clang-tidy runs (cla: yes, code health)
[21935](https://github.com/flutter/engine/pull/21935) Eliminate unnecessary linter opt-outs (cla: yes, code health)
### perf: speed - 3 pull request(s)
[21179](https://github.com/flutter/engine/pull/21179) Discard wrong size layer tree instead of rendering it (cla: yes, perf: speed, severe: performance, waiting for tree to go green)
[22620](https://github.com/flutter/engine/pull/22620) Set SkPath::setIsVolatile based on whether the path survives at least two frames (cla: yes, perf: memory, perf: speed, severe: performance)
[22622](https://github.com/flutter/engine/pull/22622) [web] Optimize Matrix4.identity (cla: yes, perf: speed, platform-web)
### accessibility - 2 pull request(s)
[21484](https://github.com/flutter/engine/pull/21484) [fuchsia][a11y] Don't populate hidden state. (accessibility, cla: yes, platform-fuchsia, waiting for tree to go green)
[23491](https://github.com/flutter/engine/pull/23491) Implements accessibility bridge in common library (accessibility, affects: desktop, cla: yes, waiting for tree to go green)
### severe: performance - 2 pull request(s)
[21179](https://github.com/flutter/engine/pull/21179) Discard wrong size layer tree instead of rendering it (cla: yes, perf: speed, severe: performance, waiting for tree to go green)
[22620](https://github.com/flutter/engine/pull/22620) Set SkPath::setIsVolatile based on whether the path survives at least two frames (cla: yes, perf: memory, perf: speed, severe: performance)
### Work in progress (WIP) - 1 pull request(s)
[19405](https://github.com/flutter/engine/pull/19405) Add windows plugin texture support (Work in progress (WIP), cla: yes, waiting for tree to go green)
### affects: tests - 1 pull request(s)
[21543](https://github.com/flutter/engine/pull/21543) fuchsia: Fix test compile (affects: tests, cla: yes, platform-fuchsia)
### perf: memory - 1 pull request(s)
[22620](https://github.com/flutter/engine/pull/22620) Set SkPath::setIsVolatile based on whether the path survives at least two frames (cla: yes, perf: memory, perf: speed, severe: performance)
### waiting for customer response - 1 pull request(s)
[21316](https://github.com/flutter/engine/pull/21316) Add FlEventChannel (cla: yes, waiting for customer response)
## Merged PRs by labels for `flutter/plugins`
### cla: yes - 253 pull request(s)
[1721](https://github.com/flutter/plugins/pull/1721) [google_maps_flutter] Adds support for holes in polygon overlays to the Google Maps plugin (cla: yes, waiting for tree to go green)
[2489](https://github.com/flutter/plugins/pull/2489) [local_auth] Allow device authentication (pin/pattern/passcode) (cla: yes)
[2563](https://github.com/flutter/plugins/pull/2563) fix(video_player): buffering state events missing on Android & Web (fixes flutter/flutter#28494) (cla: yes)
[2818](https://github.com/flutter/plugins/pull/2818) [path_provider] Add Windows support (cla: yes)
[2883](https://github.com/flutter/plugins/pull/2883) [webview_flutter] Add new entrypoint that uses hybrid composition on Android (cla: yes)
[2911](https://github.com/flutter/plugins/pull/2911) [in_app_purchase] Removed maintaining own cache of transactions (cla: yes)
[2941](https://github.com/flutter/plugins/pull/2941) [google_maps_flutter] fix to properly place polyline at initial camera position in example app (cla: yes, waiting for tree to go green)
[2943](https://github.com/flutter/plugins/pull/2943) [google_sign_in_web] Ensure web plugin throws PlatformExceptions (cla: yes)
[2986](https://github.com/flutter/plugins/pull/2986) [integration_test] Recommend tests to be in `integration_test/`, fix example (cla: yes)
[2988](https://github.com/flutter/plugins/pull/2988) [shared_preferences] Add shared_preferences_windows (cla: yes)
[2991](https://github.com/flutter/plugins/pull/2991) [webview_flutter] [url_launcher] Handle Multiwindows in WebViews (cla: yes)
[2995](https://github.com/flutter/plugins/pull/2995) [file_selector_platform_interface] Add platform interface for new file_selector plugin (cla: yes)
[2998](https://github.com/flutter/plugins/pull/2998) [google_maps_flutter_web] Allow Markers with icon:null (cla: yes)
[3004](https://github.com/flutter/plugins/pull/3004) [share] MethodCallHandler.java uses unchecked or unsafe operations (cla: yes)
[3015](https://github.com/flutter/plugins/pull/3015) Add url_launcher_windows (cla: yes)
[3016](https://github.com/flutter/plugins/pull/3016) [in_app_purchase] Fix typo on `simulatesAskToBuyInSandBox` (cla: yes)
[3018](https://github.com/flutter/plugins/pull/3018) [camera] CameraPlugin.java uses or overrides a deprecated API (cla: yes)
[3019](https://github.com/flutter/plugins/pull/3019) [video_player] VideoPlayerPlugin.java uses or overrides a deprecated API (cla: yes)
[3020](https://github.com/flutter/plugins/pull/3020) [android_alarm_manager] Android Code Inspection and Clean up (cla: yes)
[3022](https://github.com/flutter/plugins/pull/3022) [in_app_purchase] fix version (cla: yes)
[3023](https://github.com/flutter/plugins/pull/3023) Fix formatting (cla: yes)
[3024](https://github.com/flutter/plugins/pull/3024) [url_launcher] Endorse Windows implementation (cla: yes)
[3026](https://github.com/flutter/plugins/pull/3026) badges for pub.dev scores (cla: yes)
[3028](https://github.com/flutter/plugins/pull/3028) [android_alarm_manager] version fix (cla: yes)
[3030](https://github.com/flutter/plugins/pull/3030) Remove no-op android folders (cla: yes)
[3032](https://github.com/flutter/plugins/pull/3032) [video_player_platform_interface] Playback speed (cla: yes)
[3034](https://github.com/flutter/plugins/pull/3034) [all] Update CODEOWNERS to properly request reviews (cla: yes)
[3036](https://github.com/flutter/plugins/pull/3036) [image_picker] changed ExifInterface to AndroidX version, including d… (cla: yes)
[3037](https://github.com/flutter/plugins/pull/3037) [image_picker] Updated docs getImage() about preference rear front not working on Android (cla: yes)
[3040](https://github.com/flutter/plugins/pull/3040) [url_launcher] Document why canLaunch can return false on Android API 30 (cla: yes)
[3042](https://github.com/flutter/plugins/pull/3042) Update android sdk version to 29 for all mobile plugins. (cla: yes)
[3043](https://github.com/flutter/plugins/pull/3043) [android_intent] Android Code Inspection and Clean up (cla: yes)
[3044](https://github.com/flutter/plugins/pull/3044) [image_picker] Updated README.md with new example (cla: yes)
[3046](https://github.com/flutter/plugins/pull/3046) Move files to match the directory conventions of `package:integration_test` (cla: yes)
[3049](https://github.com/flutter/plugins/pull/3049) [path_provider] Path provider windows updates (cla: yes)
[3050](https://github.com/flutter/plugins/pull/3050) [flutter_plugin_android_lifecycle] update to android 29 (cla: yes)
[3051](https://github.com/flutter/plugins/pull/3051) [connectivity] Android Code Inspection and Clean up (cla: yes)
[3052](https://github.com/flutter/plugins/pull/3052) [path_provider] Add missing pluginClass: none to path_provider_windows (cla: yes)
[3054](https://github.com/flutter/plugins/pull/3054) [Connectivity] Fix mistake in license headers (cla: yes)
[3055](https://github.com/flutter/plugins/pull/3055) [path_provider] Fix mistake in license headers (cla: yes)
[3056](https://github.com/flutter/plugins/pull/3056) [path_provider] Move Windows FFI behind a conditional import (cla: yes)
[3058](https://github.com/flutter/plugins/pull/3058) [shared_preferences] Add iOS stub to shared_preferences_windows (cla: yes)
[3059](https://github.com/flutter/plugins/pull/3059) [shared_preferences] Endorse Windows (cla: yes)
[3063](https://github.com/flutter/plugins/pull/3063) [integration_test] Test drivers should end with `_test.dart` (cla: yes)
[3064](https://github.com/flutter/plugins/pull/3064) Add linux directory to examples (cla: yes)
[3065](https://github.com/flutter/plugins/pull/3065) [path_provider] Update endorsed Windows version (cla: yes)
[3066](https://github.com/flutter/plugins/pull/3066) Revert "[webview_flutter] Add new entrypoint that uses hybrid composition on Android" (cla: yes)
[3067](https://github.com/flutter/plugins/pull/3067) [webview_flutter] Add new entrypoint that uses hybrid composition on Android (cla: yes)
[3068](https://github.com/flutter/plugins/pull/3068) [path_provider_windows] Add missing method to fake (cla: yes)
[3070](https://github.com/flutter/plugins/pull/3070) [path_provider_android] Move Path operations to background thread (cla: yes, waiting for test harness)
[3071](https://github.com/flutter/plugins/pull/3071) [url_launcher_web] Remove package:platform_detect (cla: yes)
[3072](https://github.com/flutter/plugins/pull/3072) Add deprecation suppression for plugins marked with -Werror (cla: yes)
[3073](https://github.com/flutter/plugins/pull/3073) [in_app_purchase] Update typo in example main.dart (cla: yes)
[3075](https://github.com/flutter/plugins/pull/3075) [url_launcher_web] Improve attribution of package:platform_detect (cla: yes)
[3080](https://github.com/flutter/plugins/pull/3080) [url_launcher_web] Move third_party under src. (cla: yes)
[3081](https://github.com/flutter/plugins/pull/3081) [video_player_web] Playback speed (cla: yes)
[3082](https://github.com/flutter/plugins/pull/3082) [video_player] Fix tests (cla: yes)
[3084](https://github.com/flutter/plugins/pull/3084) [video_player] Playback speed (cla: yes)
[3088](https://github.com/flutter/plugins/pull/3088) [plugin_platform_interface] Fix homepage in pubspec.yaml (cla: yes)
[3089](https://github.com/flutter/plugins/pull/3089) [connectivity_for_web] Fix homepage in pubspec.yaml (cla: yes)
[3091](https://github.com/flutter/plugins/pull/3091) [google_maps_flutter] Out of developers preview, bump to 1.0.0 (cla: yes)
[3093](https://github.com/flutter/plugins/pull/3093) [google_maps_flutter_web] Fix convert.dart issues (cla: yes)
[3097](https://github.com/flutter/plugins/pull/3097) [url_launcher] Improved documentation of the `headers` parameter. (cla: yes)
[3098](https://github.com/flutter/plugins/pull/3098) [image_picker] Update README.md (cla: yes, waiting for tree to go green)
[3100](https://github.com/flutter/plugins/pull/3100) [google_maps_flutter] Fix headline in the readme (cla: yes)
[3101](https://github.com/flutter/plugins/pull/3101) Remove `io.flutter.embedded_views_preview` from README (cla: yes)
[3106](https://github.com/flutter/plugins/pull/3106) [in_app_purchase] Fix finishing purchases upon payment dialog cancel… (cla: yes)
[3110](https://github.com/flutter/plugins/pull/3110) in_app_purchase: started supported null as a parameter for the simulatesAskToBuyInSandbox (cla: yes)
[3111](https://github.com/flutter/plugins/pull/3111) [Espresso] Android Code Inspection and Clean up (cla: yes)
[3112](https://github.com/flutter/plugins/pull/3112) [google_maps_flutter] Android Code Inspection and Clean up (cla: yes)
[3113](https://github.com/flutter/plugins/pull/3113) [multiple] Opt-out of null-safety (cla: yes)
[3114](https://github.com/flutter/plugins/pull/3114) [webview_flutter] add public documentation. (cla: yes)
[3115](https://github.com/flutter/plugins/pull/3115) [plugin_platform_interface] Migrate to null safety (cla: yes)
[3116](https://github.com/flutter/plugins/pull/3116) [integration_test] Add watchPerformance (cla: yes, waiting for test harness)
[3117](https://github.com/flutter/plugins/pull/3117) [webview_flutter] Android Code Inspection and Clean up (cla: yes)
[3119](https://github.com/flutter/plugins/pull/3119) [video_player] fix Timer Leak (cla: yes)
[3120](https://github.com/flutter/plugins/pull/3120) [in_app_purchase] Android Code Inspection and Clean up (cla: yes)
[3122](https://github.com/flutter/plugins/pull/3122) [video_player] Fix SSLProtocolException for low API version (cla: yes)
[3123](https://github.com/flutter/plugins/pull/3123) Fixes Playing video from asset on Android (cla: yes)
[3124](https://github.com/flutter/plugins/pull/3124) [camera] Camera fix android audio (cla: yes)
[3125](https://github.com/flutter/plugins/pull/3125) [url_launcher] Handling the ActivityNotFoundExeption. (cla: yes)
[3127](https://github.com/flutter/plugins/pull/3127) [camera] Add null check before starting preview (cla: yes)
[3129](https://github.com/flutter/plugins/pull/3129) [wifi_info_flutter] [wifi_info_flutter_platform_interface] Initial commit for `wifi_info_flutter` plugin and platform interface (cla: yes)
[3130](https://github.com/flutter/plugins/pull/3130) Fix links in package example readmes (cla: yes)
[3131](https://github.com/flutter/plugins/pull/3131) [image_picker] Update documentation to include information about support HEIC images. (cla: yes)
[3132](https://github.com/flutter/plugins/pull/3132) [url_launcher] suppress a `uses or overrides a deprecated API` warning in WebViewActivity (cla: yes)
[3134](https://github.com/flutter/plugins/pull/3134) [wifi_info_flutter_plugin_interface] implement wifi platform interface (cla: yes)
[3135](https://github.com/flutter/plugins/pull/3135) [google_maps_flutter_platform_interface] Adds support for holes in polygon overlays to the Google Maps plugin (cla: yes, waiting for tree to go green)
[3140](https://github.com/flutter/plugins/pull/3140) [file_selector] initial implementation (cla: yes)
[3141](https://github.com/flutter/plugins/pull/3141) [file_selector_web]: Add initial implementation (cla: yes, waiting for test harness)
[3142](https://github.com/flutter/plugins/pull/3142) [url_launcher] Url launcher platform interface null safety (cla: yes)
[3143](https://github.com/flutter/plugins/pull/3143) [wifi_info_flutter] Wifi plugin implementation (cla: yes)
[3144](https://github.com/flutter/plugins/pull/3144) [device_info_platform_interface][device_info] nnbd (cla: yes)
[3145](https://github.com/flutter/plugins/pull/3145) [in_app_purchase] Add example test target to Podfile, add OCMock dependency (cla: yes)
[3146](https://github.com/flutter/plugins/pull/3146) [path_provider] Log errors in the linux example (cla: yes)
[3148](https://github.com/flutter/plugins/pull/3148) [url_launcher] migrate url_launcher package to null safety (cla: yes)
[3149](https://github.com/flutter/plugins/pull/3149) Add windows directory to examples (cla: yes)
[3150](https://github.com/flutter/plugins/pull/3150) Configure analyzer for plugins that are migrated to nnbd (cla: yes)
[3152](https://github.com/flutter/plugins/pull/3152) [share] Replace deprecated Environment.getExternalStorageDirectory() call on Android. (cla: yes)
[3153](https://github.com/flutter/plugins/pull/3153) [google_sign_in] Fix merge mistake. (cla: yes)
[3154](https://github.com/flutter/plugins/pull/3154) Prepare url_launcher for the Link widget (cla: yes, feature)
[3155](https://github.com/flutter/plugins/pull/3155) [web] Implement Link for web (cla: yes, feature)
[3156](https://github.com/flutter/plugins/pull/3156) [google_maps_flutter_web] Fix InfoWindow snippets. (cla: yes)
[3157](https://github.com/flutter/plugins/pull/3157) Sync nnbd branch (cla: yes)
[3159](https://github.com/flutter/plugins/pull/3159) [video_player_platform_interface] Migrate to null safety (cla: yes)
[3163](https://github.com/flutter/plugins/pull/3163) [google_maps_flutter_web] Fix InfoWindows and getLatLng. (cla: yes, waiting for test harness)
[3164](https://github.com/flutter/plugins/pull/3164) [device_info][device_info_platform_interface] update to git deps (cla: yes)
[3165](https://github.com/flutter/plugins/pull/3165) [video_player] Migrate video player to null safety (cla: yes)
[3169](https://github.com/flutter/plugins/pull/3169) [webview_flutter] Fix example in readme (cla: yes)
[3173](https://github.com/flutter/plugins/pull/3173) [Connectivity] wifi removal (cla: yes)
[3174](https://github.com/flutter/plugins/pull/3174) Fix deprecation warning in ci failure (cla: yes)
[3175](https://github.com/flutter/plugins/pull/3175) [nnbd] Various fixes (cla: yes)
[3176](https://github.com/flutter/plugins/pull/3176) [connectivity][connectvity_platform_interface] migrate to nnbd (cla: yes)
[3177](https://github.com/flutter/plugins/pull/3177) Implement Link for native platforms (cla: yes, feature)
[3180](https://github.com/flutter/plugins/pull/3180) [camera] Added documentation about video not working correctly on Android emulators (cla: yes)
[3181](https://github.com/flutter/plugins/pull/3181) [camera] Changed the order of the setters for mediaRecorder in MediaRecorderBu… (cla: yes)
[3183](https://github.com/flutter/plugins/pull/3183) [connectivity] announce 1.0, deprecate wifi APIs (cla: yes)
[3184](https://github.com/flutter/plugins/pull/3184) [url_launcher_linux] Add missing #include (cla: yes)
[3188](https://github.com/flutter/plugins/pull/3188) [share] Fix bug on iPad where `origin` is null and enable XCUITests (cla: yes)
[3189](https://github.com/flutter/plugins/pull/3189) enable xctest in .cirrus.yml (cla: yes)
[3190](https://github.com/flutter/plugins/pull/3190) [wifi_info_flutter_platform_interface] Ready to publish (cla: yes)
[3191](https://github.com/flutter/plugins/pull/3191) [wifi_info_flutter] make it ready for initial 1.0.0 release (cla: yes)
[3192](https://github.com/flutter/plugins/pull/3192) [path_provider] Depend on guava-android instead of full guava library (cla: yes)
[3193](https://github.com/flutter/plugins/pull/3193) [Camera] Made CameraController.isDisposed publicly accessible. Added unit Tests for the new implementation. (cla: yes)
[3196](https://github.com/flutter/plugins/pull/3196) [url_launcher] Migrates Link to null safety (cla: yes)
[3197](https://github.com/flutter/plugins/pull/3197) [device_info_platform_interface] version fix (cla: yes)
[3198](https://github.com/flutter/plugins/pull/3198) Exclude generated_plugin_registrant.cc (cla: yes)
[3199](https://github.com/flutter/plugins/pull/3199) [connectivity][connectivity_platform_interface] update to git deps (cla: yes)
[3200](https://github.com/flutter/plugins/pull/3200) [android_alarm_manager] deprecated display1 (cla: yes)
[3204](https://github.com/flutter/plugins/pull/3204) [video_player] Upgrade ExoPlayer (cla: yes)
[3206](https://github.com/flutter/plugins/pull/3206) [google_maps_flutter] Clean up google_maps_flutter plugin (cla: yes)
[3207](https://github.com/flutter/plugins/pull/3207) [wifi_info_flutter] Method channel name fixed for android (cla: yes)
[3208](https://github.com/flutter/plugins/pull/3208) broaden the constraint on package:vm_service (cla: yes)
[3209](https://github.com/flutter/plugins/pull/3209) Remove unnecessary work around from test in prep for vm_service migration (cla: yes)
[3210](https://github.com/flutter/plugins/pull/3210) [share] Fix bug on iPad where `origin` is null and enable XCUITests in the repo (cla: yes)
[3212](https://github.com/flutter/plugins/pull/3212) [webview_flutter] iOS: Make `webViewWebContentProcessDidTerminate` invoke `onWebResourceError` (cla: yes)
[3213](https://github.com/flutter/plugins/pull/3213) [google_maps_flutter] Overhaul lifecycle management in GoogleMapsPlugin (cla: yes)
[3220](https://github.com/flutter/plugins/pull/3220) [in_app_purchase] Remove the custom analysis options, fix failing lints. (cla: yes)
[3221](https://github.com/flutter/plugins/pull/3221) [video_player][device_info] announce 1.0 (cla: yes)
[3224](https://github.com/flutter/plugins/pull/3224) [google_maps_flutter_web] show only single infoWindow (cla: yes)
[3227](https://github.com/flutter/plugins/pull/3227) [in_app_purchase] Bump version (cla: yes)
[3229](https://github.com/flutter/plugins/pull/3229) [camera] Add missing Dartdocs (cla: yes)
[3233](https://github.com/flutter/plugins/pull/3233) [video_player] Add toString() to Caption (cla: yes)
[3235](https://github.com/flutter/plugins/pull/3235) [connectivity] Fix IllegalArgumentException (cla: yes)
[3237](https://github.com/flutter/plugins/pull/3237) Update contribution guide for xcuitests (cla: yes)
[3238](https://github.com/flutter/plugins/pull/3238) [multiple] Remove custom analysis_options.yaml from web plugins. (cla: yes, waiting for test harness)
[3239](https://github.com/flutter/plugins/pull/3239) Remove unused `test` dependencies add missing environment constraints (cla: yes)
[3243](https://github.com/flutter/plugins/pull/3243) [google_sign_in] fix deprecated member use (cla: yes)
[3245](https://github.com/flutter/plugins/pull/3245) [video_player] Android: Dispose video players when app is closed (cla: yes)
[3249](https://github.com/flutter/plugins/pull/3249) [Path Provider] Migrate platform interface to nnbd (cla: yes)
[3253](https://github.com/flutter/plugins/pull/3253) [camera] Add `camera_platform_interface` package (cla: yes)
[3254](https://github.com/flutter/plugins/pull/3254) [image_picker] Set up XCUITests (cla: yes)
[3255](https://github.com/flutter/plugins/pull/3255) [local_auth] Migrate to null safety. (cla: yes)
[3258](https://github.com/flutter/plugins/pull/3258) [camera] Move camera to camera/camera (cla: yes)
[3259](https://github.com/flutter/plugins/pull/3259) [webview_flutter] update documentation to indicate gesture handling issues on iOS 13.4 and 13.5 (cla: yes)
[3260](https://github.com/flutter/plugins/pull/3260) [cross_file] An abstraction to allow working with files across multiple platforms. (cla: yes)
[3261](https://github.com/flutter/plugins/pull/3261) [file_selector] Allow empty type groups (cla: yes)
[3263](https://github.com/flutter/plugins/pull/3263) [google_maps_flutter_platform_interface] Add a `fromJson` constructor. (cla: yes)
[3269](https://github.com/flutter/plugins/pull/3269) [device_info_platform_interface] Remove default types and correct nullable types (cla: yes)
[3271](https://github.com/flutter/plugins/pull/3271) [wifi_info_flutter] Edit sample wifi_info_flutter plugin (cla: yes)
[3273](https://github.com/flutter/plugins/pull/3273) [google_maps_flutter_web] Render custom Marker icons. (cla: yes)
[3276](https://github.com/flutter/plugins/pull/3276) Fix outdated links across a number of markdown files (cla: yes, waiting for tree to go green)
[3279](https://github.com/flutter/plugins/pull/3279) Use testWidgets instead of test to fix failures not surfacing on CI (cla: yes)
[3280](https://github.com/flutter/plugins/pull/3280) Fix broken link (cla: yes)
[3286](https://github.com/flutter/plugins/pull/3286) [file_selector] Replace locally defined XFile type with cross_file package (cla: yes)
[3287](https://github.com/flutter/plugins/pull/3287) [in_app_purchase] Added serviceTimeout code (cla: yes, waiting for tree to go green)
[3288](https://github.com/flutter/plugins/pull/3288) [android_alarm_manager] fix AndroidManifest.xml for android lint issue "XML tag has empty body" (cla: yes)
[3295](https://github.com/flutter/plugins/pull/3295) bump integration test to 1.0.0 (cla: yes)
[3299](https://github.com/flutter/plugins/pull/3299) [camera] Support Android 30 (cla: yes)
[3302](https://github.com/flutter/plugins/pull/3302) [camera] Add implementations for `camera_platform_interface` package. (cla: yes, feature)
[3303](https://github.com/flutter/plugins/pull/3303) [connectivity] Clear networkCallback object as soon as stream is cancelled (cla: yes)
[3304](https://github.com/flutter/plugins/pull/3304) [ci][image_picker]enable xcode 12/iOS 14 for all tasks except lint (cla: yes, waiting for tree to go green)
[3308](https://github.com/flutter/plugins/pull/3308) [documentation] [url_launcher] fix for readme code sample (cla: yes)
[3309](https://github.com/flutter/plugins/pull/3309) Pass a Uri to package:http APIs (cla: yes, waiting for test harness)
[3311](https://github.com/flutter/plugins/pull/3311) [share] Migrate to null-safety (cla: yes)
[3312](https://github.com/flutter/plugins/pull/3312) [camera] Add zoom support to platform interface (cla: yes)
[3313](https://github.com/flutter/plugins/pull/3313) [camera] Expanded platform interface to support setting flash mode (cla: yes)
[3314](https://github.com/flutter/plugins/pull/3314) [camera] Flash functionality for Android and iOS (cla: yes)
[3315](https://github.com/flutter/plugins/pull/3315) [camera] Zoom functionality for Android and iOS (cla: yes)
[3316](https://github.com/flutter/plugins/pull/3316) [camera] Suppress unchecked cast warning in java test (cla: yes)
[3317](https://github.com/flutter/plugins/pull/3317) [image_picker] [integration_test] Fixes to make the tree green (cla: yes)
[3318](https://github.com/flutter/plugins/pull/3318) Exclude null-safe plugins from testing on stable (cla: yes)
[3319](https://github.com/flutter/plugins/pull/3319) Update analysis options for nnbd (cla: yes)
[3320](https://github.com/flutter/plugins/pull/3320) Update Flutter SDK constraint to match templates; plugins A-C (cla: yes)
[3321](https://github.com/flutter/plugins/pull/3321) Update Flutter SDK constraint to match templates; plugins D-G (cla: yes)
[3322](https://github.com/flutter/plugins/pull/3322) Update Flutter SDK constraint to match templates; plugins I-P (cla: yes)
[3323](https://github.com/flutter/plugins/pull/3323) Update Flutter SDK constraint to match templates; plugins Q-W (cla: yes)
[3324](https://github.com/flutter/plugins/pull/3324) Merge null-safety plugins (cla: yes)
[3326](https://github.com/flutter/plugins/pull/3326) [camera_platform_interface] Add torch definition to the FlashModes enum (cla: yes)
[3327](https://github.com/flutter/plugins/pull/3327) [webview_flutter] Migrate to nnbd (cla: yes)
[3328](https://github.com/flutter/plugins/pull/3328) [android_intent] Migrate to nnbd (cla: yes)
[3329](https://github.com/flutter/plugins/pull/3329) [google_sign_in] Migrate to nnbd (cla: yes)
[3334](https://github.com/flutter/plugins/pull/3334) [webview_flutter] Added 'allowsInlineMediaPlayback' property (cla: yes)
[3335](https://github.com/flutter/plugins/pull/3335) [camera] Ios support documentation (cla: yes)
[3336](https://github.com/flutter/plugins/pull/3336) [camera] Added closeCaptureSession() to stopVideoRecording in Java side (cla: yes)
[3337](https://github.com/flutter/plugins/pull/3337) [camera] Add implementation of didFinishProcessingPhoto callback (iOS) (cla: yes)
[3338](https://github.com/flutter/plugins/pull/3338) [camera] Add implementations for the torch flash mode. (cla: yes)
[3339](https://github.com/flutter/plugins/pull/3339) Remove custom null safety analysis_options files (cla: yes, waiting for tree to go green)
[3342](https://github.com/flutter/plugins/pull/3342) Fix test exclusion logic for nnbd plugins (cla: yes)
[3344](https://github.com/flutter/plugins/pull/3344) [camera] Fixed stale images in imageStream subscriptions (cla: yes)
[3345](https://github.com/flutter/plugins/pull/3345) [camera_platform_interface] Add platform interface methods for setting auto exposure. (cla: yes)
[3346](https://github.com/flutter/plugins/pull/3346) [camera] Add iOS and Android implementations for managing auto exposure. (cla: yes)
[3347](https://github.com/flutter/plugins/pull/3347) Upgrade CocoaPods in Cirrus (cla: yes)
[3348](https://github.com/flutter/plugins/pull/3348) [local_auth] Update README for Android Integration (cla: yes, waiting for tree to go green)
[3349](https://github.com/flutter/plugins/pull/3349) [image_picker] use LocalizedString to fix lint error. (cla: yes)
[3353](https://github.com/flutter/plugins/pull/3353) [image_picker] Do not copy a static field into another static field (cla: yes)
[3354](https://github.com/flutter/plugins/pull/3354) [url_launcher] forceSafariVC should be nullable to avoid breaking change (cla: yes)
[3359](https://github.com/flutter/plugins/pull/3359) [camera] Implemented ImageStream ImageFormat setting for Dart and Android (cla: yes)
[3361](https://github.com/flutter/plugins/pull/3361) [video_player] Fix video player test (cla: yes)
[3362](https://github.com/flutter/plugins/pull/3362) [camera] Fix API documentation of the `CameraController.takePicture` method (cla: yes)
[3363](https://github.com/flutter/plugins/pull/3363) [cross_file] Make sure saveTo returns a Future (cla: yes)
[3364](https://github.com/flutter/plugins/pull/3364) [camera_platform_interface] Added imageFormatGroup to initialize (cla: yes)
[3365](https://github.com/flutter/plugins/pull/3365) [camera] Added maxVideoDuration to startVideoRecording (cla: yes)
[3366](https://github.com/flutter/plugins/pull/3366) [battery] Migrate battery_plugin_interface to null safety (cla: yes)
[3367](https://github.com/flutter/plugins/pull/3367) [camera] Fix flash/torch not working on some Android devices. (cla: yes)
[3369](https://github.com/flutter/plugins/pull/3369) [camera_platform_interface] Add platform interface methods for setting auto focus. (cla: yes)
[3370](https://github.com/flutter/plugins/pull/3370) [camera] Add iOS and Android implementations for managing auto focus. (cla: yes)
[3375](https://github.com/flutter/plugins/pull/3375) [camera] Fix video recording exception on Android (cla: yes)
[3376](https://github.com/flutter/plugins/pull/3376) [camera] Update camera_platform_interface dependency to 1.2.0 (cla: yes, waiting for tree to go green)
[3377](https://github.com/flutter/plugins/pull/3377) [camera] Revert platform interface dependency to lower version (cla: yes, waiting for tree to go green)
[3380](https://github.com/flutter/plugins/pull/3380) [battery] Migrate battery to null safety (cla: yes)
[3383](https://github.com/flutter/plugins/pull/3383) [camera] disable auto focus when using front facing camera on Android (cla: yes)
[3389](https://github.com/flutter/plugins/pull/3389) [camera_platform_interface] Add platform interface methods for locking capture orientation. (cla: yes)
[3390](https://github.com/flutter/plugins/pull/3390) [camera] Implemented capture orientation locking. Fixed preview rotation issues. Fixed video and photo orientation upon save. (cla: yes, waiting for tree to go green)
[3395](https://github.com/flutter/plugins/pull/3395) Update obsolete button refs in plugin examples (cla: yes, waiting for tree to go green)
[3396](https://github.com/flutter/plugins/pull/3396) [camera] set useAutoFocus to true by default (cla: yes)
[3397](https://github.com/flutter/plugins/pull/3397) Sync the PR template to the new style (cla: yes, waiting for tree to go green)
[3399](https://github.com/flutter/plugins/pull/3399) [image_picker] fix version (cla: yes, waiting for tree to go green)
[3400](https://github.com/flutter/plugins/pull/3400) Ignore deprecated_member_use analysis lint (cla: yes, waiting for tree to go green)
[3406](https://github.com/flutter/plugins/pull/3406) [camera] Fix initialization error in camera example on iOS (cla: yes)
[3409](https://github.com/flutter/plugins/pull/3409) [video_player] Migrate deprecated api (cla: yes)
[3410](https://github.com/flutter/plugins/pull/3410) [path_provider] Migrate path_provider_windows to nullsafety (cla: yes, p: path_provider)
[3411](https://github.com/flutter/plugins/pull/3411) [camera] Fixes crash when taking a picture on iOS devices without flash (cla: yes)
[3412](https://github.com/flutter/plugins/pull/3412) [google_maps_flutter_web] Support for Holes in Polygons (cla: yes)
[3413](https://github.com/flutter/plugins/pull/3413) [camera] Copy zoom settings from preview to final capture builder on Android (cla: yes)
[3414](https://github.com/flutter/plugins/pull/3414) [camera] Fix picture capture causing a crash on some Huawei devices. (cla: yes)
[3416](https://github.com/flutter/plugins/pull/3416) [file_selector_web] Add dummy ios directory. (cla: yes)
[3418](https://github.com/flutter/plugins/pull/3418) [google_maps_flutter_platform_interface] add custom tile support (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3419](https://github.com/flutter/plugins/pull/3419) [camera] Fixes crash with using inner camera on some Android devices. (cla: yes, waiting for tree to go green)
[3422](https://github.com/flutter/plugins/pull/3422) [file_selector_platform_interface] Bump the cross_file version. (cla: yes)
[3432](https://github.com/flutter/plugins/pull/3432) [script] Update build_all_plugins_app to exclude some plugins in `master`. (cla: yes)
[3433](https://github.com/flutter/plugins/pull/3433) Add Labeler Github Action (cla: yes)
[3435](https://github.com/flutter/plugins/pull/3435) [camera] combine release messages and versions (cla: yes, waiting for tree to go green)
[3436](https://github.com/flutter/plugins/pull/3436) [google_sign_in, url_launcher] Document unendorsement of web. (cla: yes)
[3437](https://github.com/flutter/plugins/pull/3437) [plugin_platform_interface] Use Mockito nnbd (cla: yes, waiting for tree to go green)
[3440](https://github.com/flutter/plugins/pull/3440) [google_maps_flutter_web] Hole Direction in Polygons (cla: yes)
[3442](https://github.com/flutter/plugins/pull/3442) Windows nullsafety prep (cla: yes)
[3444](https://github.com/flutter/plugins/pull/3444) [camera] Ensure that channel.invokeMethod runs on the main thread (cla: yes, p: camera, waiting for tree to go green)
[3449](https://github.com/flutter/plugins/pull/3449) [google_maps_flutter_platform_interface] Fixes for custom tiles (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3459](https://github.com/flutter/plugins/pull/3459) Revert "[ci][image_picker]enable xcode 12/iOS 14 for all tasks except lint" (cla: yes, p: image_picker)
[3462](https://github.com/flutter/plugins/pull/3462) Support breaking http change (cla: yes, p: cross_file)
[3463](https://github.com/flutter/plugins/pull/3463) bump vmservice (cla: yes, p: integration_test)
[3465](https://github.com/flutter/plugins/pull/3465) [path_provider] drop uuid (cla: yes, p: path_provider)
### waiting for tree to go green - 22 pull request(s)
[1721](https://github.com/flutter/plugins/pull/1721) [google_maps_flutter] Adds support for holes in polygon overlays to the Google Maps plugin (cla: yes, waiting for tree to go green)
[2941](https://github.com/flutter/plugins/pull/2941) [google_maps_flutter] fix to properly place polyline at initial camera position in example app (cla: yes, waiting for tree to go green)
[3098](https://github.com/flutter/plugins/pull/3098) [image_picker] Update README.md (cla: yes, waiting for tree to go green)
[3135](https://github.com/flutter/plugins/pull/3135) [google_maps_flutter_platform_interface] Adds support for holes in polygon overlays to the Google Maps plugin (cla: yes, waiting for tree to go green)
[3276](https://github.com/flutter/plugins/pull/3276) Fix outdated links across a number of markdown files (cla: yes, waiting for tree to go green)
[3287](https://github.com/flutter/plugins/pull/3287) [in_app_purchase] Added serviceTimeout code (cla: yes, waiting for tree to go green)
[3304](https://github.com/flutter/plugins/pull/3304) [ci][image_picker]enable xcode 12/iOS 14 for all tasks except lint (cla: yes, waiting for tree to go green)
[3339](https://github.com/flutter/plugins/pull/3339) Remove custom null safety analysis_options files (cla: yes, waiting for tree to go green)
[3348](https://github.com/flutter/plugins/pull/3348) [local_auth] Update README for Android Integration (cla: yes, waiting for tree to go green)
[3376](https://github.com/flutter/plugins/pull/3376) [camera] Update camera_platform_interface dependency to 1.2.0 (cla: yes, waiting for tree to go green)
[3377](https://github.com/flutter/plugins/pull/3377) [camera] Revert platform interface dependency to lower version (cla: yes, waiting for tree to go green)
[3390](https://github.com/flutter/plugins/pull/3390) [camera] Implemented capture orientation locking. Fixed preview rotation issues. Fixed video and photo orientation upon save. (cla: yes, waiting for tree to go green)
[3395](https://github.com/flutter/plugins/pull/3395) Update obsolete button refs in plugin examples (cla: yes, waiting for tree to go green)
[3397](https://github.com/flutter/plugins/pull/3397) Sync the PR template to the new style (cla: yes, waiting for tree to go green)
[3399](https://github.com/flutter/plugins/pull/3399) [image_picker] fix version (cla: yes, waiting for tree to go green)
[3400](https://github.com/flutter/plugins/pull/3400) Ignore deprecated_member_use analysis lint (cla: yes, waiting for tree to go green)
[3418](https://github.com/flutter/plugins/pull/3418) [google_maps_flutter_platform_interface] add custom tile support (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3419](https://github.com/flutter/plugins/pull/3419) [camera] Fixes crash with using inner camera on some Android devices. (cla: yes, waiting for tree to go green)
[3435](https://github.com/flutter/plugins/pull/3435) [camera] combine release messages and versions (cla: yes, waiting for tree to go green)
[3437](https://github.com/flutter/plugins/pull/3437) [plugin_platform_interface] Use Mockito nnbd (cla: yes, waiting for tree to go green)
[3444](https://github.com/flutter/plugins/pull/3444) [camera] Ensure that channel.invokeMethod runs on the main thread (cla: yes, p: camera, waiting for tree to go green)
[3449](https://github.com/flutter/plugins/pull/3449) [google_maps_flutter_platform_interface] Fixes for custom tiles (cla: yes, p: google_maps_flutter, waiting for tree to go green)
### waiting for test harness - 6 pull request(s)
[3070](https://github.com/flutter/plugins/pull/3070) [path_provider_android] Move Path operations to background thread (cla: yes, waiting for test harness)
[3116](https://github.com/flutter/plugins/pull/3116) [integration_test] Add watchPerformance (cla: yes, waiting for test harness)
[3141](https://github.com/flutter/plugins/pull/3141) [file_selector_web]: Add initial implementation (cla: yes, waiting for test harness)
[3163](https://github.com/flutter/plugins/pull/3163) [google_maps_flutter_web] Fix InfoWindows and getLatLng. (cla: yes, waiting for test harness)
[3238](https://github.com/flutter/plugins/pull/3238) [multiple] Remove custom analysis_options.yaml from web plugins. (cla: yes, waiting for test harness)
[3309](https://github.com/flutter/plugins/pull/3309) Pass a Uri to package:http APIs (cla: yes, waiting for test harness)
### feature - 4 pull request(s)
[3154](https://github.com/flutter/plugins/pull/3154) Prepare url_launcher for the Link widget (cla: yes, feature)
[3155](https://github.com/flutter/plugins/pull/3155) [web] Implement Link for web (cla: yes, feature)
[3177](https://github.com/flutter/plugins/pull/3177) Implement Link for native platforms (cla: yes, feature)
[3302](https://github.com/flutter/plugins/pull/3302) [camera] Add implementations for `camera_platform_interface` package. (cla: yes, feature)
### p: google_maps_flutter - 2 pull request(s)
[3418](https://github.com/flutter/plugins/pull/3418) [google_maps_flutter_platform_interface] add custom tile support (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3449](https://github.com/flutter/plugins/pull/3449) [google_maps_flutter_platform_interface] Fixes for custom tiles (cla: yes, p: google_maps_flutter, waiting for tree to go green)
### p: path_provider - 2 pull request(s)
[3410](https://github.com/flutter/plugins/pull/3410) [path_provider] Migrate path_provider_windows to nullsafety (cla: yes, p: path_provider)
[3465](https://github.com/flutter/plugins/pull/3465) [path_provider] drop uuid (cla: yes, p: path_provider)
### p: camera - 1 pull request(s)
[3444](https://github.com/flutter/plugins/pull/3444) [camera] Ensure that channel.invokeMethod runs on the main thread (cla: yes, p: camera, waiting for tree to go green)
### p: cross_file - 1 pull request(s)
[3462](https://github.com/flutter/plugins/pull/3462) Support breaking http change (cla: yes, p: cross_file)
### p: image_picker - 1 pull request(s)
[3459](https://github.com/flutter/plugins/pull/3459) Revert "[ci][image_picker]enable xcode 12/iOS 14 for all tasks except lint" (cla: yes, p: image_picker)
### p: integration_test - 1 pull request(s)
[3463](https://github.com/flutter/plugins/pull/3463) bump vmservice (cla: yes, p: integration_test)
## All merged pull requests
### Merged PRs in `flutter/flutter` from 2020-09-11T02:17:00.000Z to 2021-01-26T18:58:00.000Z
There were 1974 pull requests.
[48223](https://github.com/flutter/flutter/pull/48223) Add HeroMode widget (a: animation, cla: yes, f: cupertino, f: routes, framework, waiting for tree to go green)
[55209](https://github.com/flutter/flutter/pull/55209) Updated SearchDelegate to follow custom InputDecorationTheme (cla: yes, f: material design, framework)
[56024](https://github.com/flutter/flutter/pull/56024) Pass RouteSettings to the internal Route in showCupertinoModalPopup (cla: yes, f: cupertino, framework)
[58853](https://github.com/flutter/flutter/pull/58853) [flutter_tools] Support IntelliJ 2020.1 and later on Linux and Windows (cla: yes, tool)
[59797](https://github.com/flutter/flutter/pull/59797) [web] Support custom url strategies (cla: yes, f: routes, platform-web, team, waiting for tree to go green)
[61098](https://github.com/flutter/flutter/pull/61098) [flutter_tools] copy flutter_texture_registrar.h header for Windows shell (cla: yes, tool)
[61366](https://github.com/flutter/flutter/pull/61366) Continue the clipBehavior breaking change (cla: yes, f: cupertino, framework, severe: API break)
[61589](https://github.com/flutter/flutter/pull/61589) [flutter_tools] According to AnalysisSeverity return exit code detailed proposal (cla: yes, tool)
[61981](https://github.com/flutter/flutter/pull/61981) Positioning IME bars on iOS (a: fidelity, a: internationalization, a: text input, cla: yes, framework, waiting for tree to go green)
[62417](https://github.com/flutter/flutter/pull/62417) [flutter_tools] Add channel order aware version_test (cla: yes, tool, waiting for tree to go green)
[62502](https://github.com/flutter/flutter/pull/62502) Fix typo subetting should be subsetting (a: error message, cla: yes, tool, waiting for tree to go green)
[62616](https://github.com/flutter/flutter/pull/62616) Migrate foundation test to nullsafety (a: accessibility, a: null-safety, cla: yes, framework)
[62694](https://github.com/flutter/flutter/pull/62694) Convert services tests to NNBD (cla: yes, framework, team)
[62701](https://github.com/flutter/flutter/pull/62701) Migrate gestures, physics and scheduler tests to null safety. (a: null-safety, cla: yes, framework)
[62927](https://github.com/flutter/flutter/pull/62927) AutocompleteCore (a: text input, cla: yes, framework, severe: new feature)
[63272](https://github.com/flutter/flutter/pull/63272) Remove back button when using end drawer (cla: yes, f: material design, framework, waiting for tree to go green)
[63466](https://github.com/flutter/flutter/pull/63466) [MaterialSlice] adds property to customize slice color (cla: yes, f: material design, framework, waiting for tree to go green)
[63683](https://github.com/flutter/flutter/pull/63683) Tab bar improvements (cla: yes, f: material design, framework)
[63808](https://github.com/flutter/flutter/pull/63808) New benchmark: bench_mouse_region_mixed_grid_hover (cla: yes, team)
[63813](https://github.com/flutter/flutter/pull/63813) Lazily compute PointerEvent's transformed positions (cla: yes, f: gestures, framework)
[63834](https://github.com/flutter/flutter/pull/63834) Treat hover events as normal pointer events, and bring them back to Listener (a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)
[63910](https://github.com/flutter/flutter/pull/63910) Improve Stepper controlsBuilder docs (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)
[63996](https://github.com/flutter/flutter/pull/63996) fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool)
[64140](https://github.com/flutter/flutter/pull/64140) [ReorderableListView] Fix item dropping animation (a: animation, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[64222](https://github.com/flutter/flutter/pull/64222) Allow modification of ListTile's horizontalTitleGap, minVerticalPadding, minLeadingWidth (cla: yes, f: material design, framework)
[64240](https://github.com/flutter/flutter/pull/64240) Add sample code to FadeTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64379](https://github.com/flutter/flutter/pull/64379) Make Dismissible's HitTestBehavior an argument (cla: yes, f: gestures, framework, waiting for tree to go green)
[64468](https://github.com/flutter/flutter/pull/64468) Fix CupertinoAlertDialog TextStyle (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[64478](https://github.com/flutter/flutter/pull/64478) migrate animated_placeholder_perf to e2e (cla: yes, team, waiting for tree to go green)
[64482](https://github.com/flutter/flutter/pull/64482) migrate backdrop_filter_perf to e2e (cla: yes, team, waiting for tree to go green)
[64484](https://github.com/flutter/flutter/pull/64484) migrate color_filter_and_fade_perf to e2e (cla: yes, team, waiting for tree to go green)
[64487](https://github.com/flutter/flutter/pull/64487) migrate cubic_bezier_perf to e2e (cla: yes, team, waiting for tree to go green)
[64503](https://github.com/flutter/flutter/pull/64503) migrate textfield_perf to e2e (cla: yes, team, waiting for tree to go green)
[64638](https://github.com/flutter/flutter/pull/64638) Add sample code to DefaultTextStyleTransition (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64639](https://github.com/flutter/flutter/pull/64639) Change LicensePage's loading color from scaffoldBackgroundColor to cardColor (cla: yes, f: material design, framework, waiting for tree to go green)
[64644](https://github.com/flutter/flutter/pull/64644) [flutter_tools] generates version.json for web using flutter tool (cla: yes, tool)
[64678](https://github.com/flutter/flutter/pull/64678) Wrap PopupMenu with SafeArea to respect status bar (a: layout, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64698](https://github.com/flutter/flutter/pull/64698) Added sample code to AnimatedAlign (cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[64742](https://github.com/flutter/flutter/pull/64742) Remove FlutterApplication from app templates. (cla: yes, tool, waiting for tree to go green)
[64746](https://github.com/flutter/flutter/pull/64746) FloatingActionButton always keeps the same position when FloatingActionButtonLocation is top. (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[64766](https://github.com/flutter/flutter/pull/64766) Updated README.md file of the hello_world example (cla: yes, d: examples, team, waiting for tree to go green)
[64846](https://github.com/flutter/flutter/pull/64846) Expose GestureBinding.handlePointerEvent, replacing dispatchEvent as the preferred way to dispatch events (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[64930](https://github.com/flutter/flutter/pull/64930) Add CompositedTransformFollower.{followerAnchor, leaderAnchor} for custom anchoring (a: layout, cla: yes, framework, waiting for tree to go green)
[64966](https://github.com/flutter/flutter/pull/64966) Minor docs updates (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65000](https://github.com/flutter/flutter/pull/65000) [LayoutBuilder] Implements baseline logic to pass baseline to child (cla: yes, framework, waiting for tree to go green)
[65010](https://github.com/flutter/flutter/pull/65010) Fix Semi Hidden helpText in showDatePicker (a: internationalization, cla: yes, f: date/time picker, f: material design, framework)
[65044](https://github.com/flutter/flutter/pull/65044) TextSelectionTheme support (step 2 of 3) (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[65057](https://github.com/flutter/flutter/pull/65057) SpringDescription parameter for the AnimationController fling method (a: animation, cla: yes, f: gestures, framework, waiting for tree to go green)
[65072](https://github.com/flutter/flutter/pull/65072) Find text containing in tests (a: tests, cla: yes, framework, waiting for tree to go green)
[65080](https://github.com/flutter/flutter/pull/65080) [ReorderableListView] remove extra margin added after picking up the item (cla: yes, f: material design, framework, waiting for tree to go green)
[65087](https://github.com/flutter/flutter/pull/65087) Let Flutter SDK use cupertino_icons 1.0.0 (cla: yes, f: cupertino, framework, team, tool)
[65118](https://github.com/flutter/flutter/pull/65118) Save startup timeline (cla: yes, tool, waiting for tree to go green)
[65126](https://github.com/flutter/flutter/pull/65126) fix overlay entry remove to remove itself from the overlay first if i… (a: animation, cla: yes, f: routes, framework, waiting for tree to go green)
[65164](https://github.com/flutter/flutter/pull/65164) Add dart-pad example code for CupertinoSliverRefreshControl (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65180](https://github.com/flutter/flutter/pull/65180) [fix] once errorBuilder is called Image widget stops loading images (cla: yes, framework)
[65182](https://github.com/flutter/flutter/pull/65182) Apply darkmode style (cla: yes, team, tool, waiting for tree to go green)
[65193](https://github.com/flutter/flutter/pull/65193) Generate RawKeyEvents for iOS 13.4+ (a: tests, cla: yes, framework, team)
[65198](https://github.com/flutter/flutter/pull/65198) Avoid thinning frameworks in iOS extensions (cla: yes, platform-ios, team, tool, waiting for tree to go green)
[65226](https://github.com/flutter/flutter/pull/65226) Improve the behavior of Scrollable.ensureVisible when Scrollable nested (cla: yes, f: scrolling, framework)
[65235](https://github.com/flutter/flutter/pull/65235) CupertinoTextField should not accept requestFocus when disabled (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65246](https://github.com/flutter/flutter/pull/65246) Deprecated unused property [RectangularSliderTrackShape.disabledThumbGapWidth] (cla: yes, f: material design, framework)
[65274](https://github.com/flutter/flutter/pull/65274) Add sample code for CupertinoActionSheet (cla: yes, f: cupertino, framework)
[65313](https://github.com/flutter/flutter/pull/65313) Bug fix where MouseScrollWheel zoom in flutter-web does not execute onInteraction functions (cla: yes, framework, waiting for tree to go green)
[65320](https://github.com/flutter/flutter/pull/65320) Add onSelectionChanged into SelectableText widget (cla: yes, f: material design, framework, waiting for tree to go green)
[65323](https://github.com/flutter/flutter/pull/65323) Sliver padding overlap fix (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[65418](https://github.com/flutter/flutter/pull/65418) [flutter_tools] handle terminals that do not support single char mode in Terminal.promptForCharInput (cla: yes, tool)
[65422](https://github.com/flutter/flutter/pull/65422) [flutter_tools] only lock if an upgrade/download will be performed (linux/macos) and output building messages to stderr (cla: yes, team, tool)
[65432](https://github.com/flutter/flutter/pull/65432) Fix InteractiveViewer minScale bug (cla: yes, framework, waiting for tree to go green)
[65444](https://github.com/flutter/flutter/pull/65444) Make parameter optional (a: tests, cla: yes, framework, waiting for tree to go green)
[65463](https://github.com/flutter/flutter/pull/65463) [Tabs] Fix tab indicator flies off issue (cla: yes, f: material design, framework, waiting for tree to go green)
[65499](https://github.com/flutter/flutter/pull/65499) [web] Inform the engine when read-only flag is flipped (a: tests, a: text input, cla: yes, framework, platform-web, waiting for tree to go green)
[65501](https://github.com/flutter/flutter/pull/65501) Update the cupertino picker visuals (cla: yes, f: cupertino, framework)
[65503](https://github.com/flutter/flutter/pull/65503) Improve docs of ImageFiltered and BackdropFilter (cla: yes, framework, waiting for tree to go green)
[65505](https://github.com/flutter/flutter/pull/65505) Creates a way to test private APIs in the Flutter package. (cla: yes, framework, team, waiting for tree to go green)
[65508](https://github.com/flutter/flutter/pull/65508) fix an issue where raw json output is written to IDE clients (cla: yes, tool, waiting for tree to go green)
[65509](https://github.com/flutter/flutter/pull/65509) Sort generated plugin file content by plugin name (cla: yes, tool, waiting for tree to go green)
[65528](https://github.com/flutter/flutter/pull/65528) Reland "Nnbd widgets" (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[65530](https://github.com/flutter/flutter/pull/65530) Have the analyzer bot ignore .DS_Store files. (cla: yes, team, waiting for tree to go green)
[65568](https://github.com/flutter/flutter/pull/65568) Remove unused 'dart:async' imports. (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[65578](https://github.com/flutter/flutter/pull/65578) Add mac builders to try configurations. (cla: yes, team, waiting for tree to go green)
[65579](https://github.com/flutter/flutter/pull/65579) Move the registration of the restoration channel to binding initialization (cla: yes, framework, waiting for tree to go green)
[65584](https://github.com/flutter/flutter/pull/65584) List tile docs (cla: yes, f: material design, framework, waiting for tree to go green)
[65602](https://github.com/flutter/flutter/pull/65602) Reland "perf test for measuring scroll smoothness" (a: tests, cla: yes, framework, team, waiting for tree to go green)
[65607](https://github.com/flutter/flutter/pull/65607) Roll Engine from e831433a20ca to bdaac368f85f (13 revisions) (cla: yes, waiting for tree to go green)
[65618](https://github.com/flutter/flutter/pull/65618) Roll Engine from bdaac368f85f to a0bd862cc0d4 (2 revisions) (cla: yes, waiting for tree to go green)
[65623](https://github.com/flutter/flutter/pull/65623) Remove invalid assert in daemon (cla: yes, tool, waiting for tree to go green)
[65635](https://github.com/flutter/flutter/pull/65635) Revert "Reland "Make sure all isolates start during flutter driver tests"" (a: tests, cla: yes, framework, waiting for tree to go green)
[65639](https://github.com/flutter/flutter/pull/65639) Roll Engine from a0bd862cc0d4 to 983b0ef16407 (1 revision) (cla: yes, waiting for tree to go green)
[65643](https://github.com/flutter/flutter/pull/65643) Roll Engine from 983b0ef16407 to 78f968e317c2 (1 revision) (cla: yes, waiting for tree to go green)
[65658](https://github.com/flutter/flutter/pull/65658) Make Navigator restorable (inkl. WidgetsApp, MaterialApp, CupertinoApp) (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[65659](https://github.com/flutter/flutter/pull/65659) [Material] Fix a jumping animation in the beginning of the extended Navigation Rail transition (cla: yes, f: material design, framework, waiting for tree to go green)
[65660](https://github.com/flutter/flutter/pull/65660) Revert "Reland "Make sure all isolates start during flutter driver te… (a: tests, cla: yes, framework)
[65662](https://github.com/flutter/flutter/pull/65662) Buttons animate elevation changes before changing background color (cla: yes, f: material design, framework, waiting for tree to go green)
[65665](https://github.com/flutter/flutter/pull/65665) Updated API doc references to obsolete Material button classes (cla: yes, f: material design, framework, waiting for tree to go green)
[65666](https://github.com/flutter/flutter/pull/65666) Roll Engine from 78f968e317c2 to 545b1b9fcd33 (9 revisions) (cla: yes, waiting for tree to go green)
[65667](https://github.com/flutter/flutter/pull/65667) Fix the `character` field of the `RawKeyEvent` to hold correct data on non-Android platforms. (a: desktop, a: tests, cla: yes, framework, team)
[65671](https://github.com/flutter/flutter/pull/65671) Roll Engine from 545b1b9fcd33 to 16b900b63e27 (5 revisions) (cla: yes, waiting for tree to go green)
[65675](https://github.com/flutter/flutter/pull/65675) Roll Engine from 16b900b63e27 to 43cb9b709291 (2 revisions) (cla: yes, waiting for tree to go green)
[65695](https://github.com/flutter/flutter/pull/65695) Fix FormFieldState value not in sync with the onChanged value from TextFormField. (cla: yes, f: material design, framework)
[65696](https://github.com/flutter/flutter/pull/65696) Minor Windows app template updates (cla: yes, tool, waiting for tree to go green)
[65701](https://github.com/flutter/flutter/pull/65701) Roll Engine from 43cb9b709291 to 4a5e29ac645d (7 revisions) (cla: yes, waiting for tree to go green)
[65703](https://github.com/flutter/flutter/pull/65703) Make sure all isolates start during flutter driver tests. (a: tests, cla: yes, framework, waiting for tree to go green)
[65704](https://github.com/flutter/flutter/pull/65704) Revert "fuchsia_remote_debug_protocol allows open port on remote device" (a: tests, cla: yes, framework, tool)
[65707](https://github.com/flutter/flutter/pull/65707) Roll Engine from 4a5e29ac645d to a585979c7ab6 (3 revisions) (cla: yes, waiting for tree to go green)
[65712](https://github.com/flutter/flutter/pull/65712) Roll Engine from a585979c7ab6 to 097facfac32e (1 revision) (cla: yes, waiting for tree to go green)
[65731](https://github.com/flutter/flutter/pull/65731) Roll Engine from 097facfac32e to 2fc054147e57 (3 revisions) (cla: yes, waiting for tree to go green)
[65754](https://github.com/flutter/flutter/pull/65754) Fix the inconsistency between the local state of the input and the engine state (cla: yes, framework, waiting for tree to go green)
[65765](https://github.com/flutter/flutter/pull/65765) Update flutter_command.dart (cla: yes, tool, waiting for tree to go green)
[65766](https://github.com/flutter/flutter/pull/65766) Adds getter/setter for slider semantics flag. (a: accessibility, cla: yes, framework)
[65769](https://github.com/flutter/flutter/pull/65769) Roll Engine from 2fc054147e57 to 257eba9c19b5 (3 revisions) (cla: yes, waiting for tree to go green)
[65784](https://github.com/flutter/flutter/pull/65784) [flutter_tools] automatically update to latest sw on install (cla: yes, tool)
[65787](https://github.com/flutter/flutter/pull/65787) Flutter Stable Framework Cherrypicks 1.20.4 (a: internationalization, cla: yes, d: examples, engine, f: material design, framework, team, tool)
[65791](https://github.com/flutter/flutter/pull/65791) [ci] remove create offline tests (cla: yes, team, waiting for tree to go green)
[65793](https://github.com/flutter/flutter/pull/65793) Match benchmark iOS project bundle identifiers (cla: yes, platform-ios, team)
[65797](https://github.com/flutter/flutter/pull/65797) [flutter_tools] fix failure to create ansi spinner if download needs to be retired (cla: yes, tool)
[65798](https://github.com/flutter/flutter/pull/65798) Collect memory metrics (cla: yes, team, waiting for tree to go green)
[65799](https://github.com/flutter/flutter/pull/65799) Updated references to obsolete Material button classes in benchmarks/test_apps/stocks (cla: yes, team, waiting for tree to go green)
[65802](https://github.com/flutter/flutter/pull/65802) [flutter_tools] make local engine integration testing easier (cla: yes, tool, waiting for tree to go green)
[65806](https://github.com/flutter/flutter/pull/65806) [flutter_tools] port deprecated settings test to flutter integration shard (cla: yes, team, tool, waiting for tree to go green)
[65809](https://github.com/flutter/flutter/pull/65809) Roll Engine from 257eba9c19b5 to 7e962ba91133 (12 revisions) (cla: yes, waiting for tree to go green)
[65814](https://github.com/flutter/flutter/pull/65814) [flutter_tools] use flutter tool handler for dwds resources and precache tool pub dependencies (cla: yes, tool)
[65817](https://github.com/flutter/flutter/pull/65817) Clarify the docs on what scrollUntilVisible does (a: tests, cla: yes, d: api docs, documentation, framework)
[65832](https://github.com/flutter/flutter/pull/65832) fix issue #55400 PopupMenuButton positions menu incorrectly with nest… (cla: yes, f: material design, framework, waiting for tree to go green)
[65833](https://github.com/flutter/flutter/pull/65833) Roll Engine from 7e962ba91133 to c6121c5d515c (6 revisions) (cla: yes, waiting for tree to go green)
[65857](https://github.com/flutter/flutter/pull/65857) [flutter] elide semantic information from certain widget spans (cla: yes, framework, waiting for tree to go green)
[65861](https://github.com/flutter/flutter/pull/65861) fix nullability of ScrollMetrics (cla: yes, framework)
[65867](https://github.com/flutter/flutter/pull/65867) [flutter_tools] update windows config feature (cla: yes, tool)
[65869](https://github.com/flutter/flutter/pull/65869) [flutter_tools] handle archive exception from invalid zip signature (cla: yes, tool)
[65870](https://github.com/flutter/flutter/pull/65870) Roll Engine from c6121c5d515c to 3c9308faad0b (4 revisions) (cla: yes, waiting for tree to go green)
[65871](https://github.com/flutter/flutter/pull/65871) Revert "Add CompositedTransformFollower.{followerAnchor, leaderAnchor} for custom anchoring (#64930)" (cla: yes, framework)
[65873](https://github.com/flutter/flutter/pull/65873) Reland "Re-enable the Dart Development Service (DDS) (#64671)" (cla: yes, team, tool, waiting for tree to go green)
[65876](https://github.com/flutter/flutter/pull/65876) Allow new methods to be added to ui.Image for tests (cla: yes, framework, team, waiting for tree to go green)
[65877](https://github.com/flutter/flutter/pull/65877) Update Navigation Rail test with regression comment and cleaner size checking (cla: yes, f: material design, framework, waiting for tree to go green)
[65878](https://github.com/flutter/flutter/pull/65878) Revert "Add CompositedTransformFollower.{followerAnchor, leaderAnchor… (cla: yes, framework)
[65880](https://github.com/flutter/flutter/pull/65880) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[65883](https://github.com/flutter/flutter/pull/65883) Roll Engine from 3c9308faad0b to 770b143a855e (2 revisions) (cla: yes, waiting for tree to go green)
[65884](https://github.com/flutter/flutter/pull/65884) Reland 64930 Add CompositedTransformFollower.{followerAnchor, leaderAnchor} for custom anchoring (cla: yes, framework, waiting for tree to go green)
[65889](https://github.com/flutter/flutter/pull/65889) Roll Engine from 770b143a855e to 1cabedf8aca8 (1 revision) (cla: yes, waiting for tree to go green)
[65892](https://github.com/flutter/flutter/pull/65892) Roll Engine from 1cabedf8aca8 to 1ef10b240e28 (4 revisions) (cla: yes, waiting for tree to go green)
[65896](https://github.com/flutter/flutter/pull/65896) Enable mac sdk tests and remove them from cirrus. (cla: yes, team, waiting for tree to go green)
[65898](https://github.com/flutter/flutter/pull/65898) Mark nonflaky tests as such (cla: yes, team, waiting for tree to go green)
[65900](https://github.com/flutter/flutter/pull/65900) Updated references to obsolete Material button classes in benchmarks/macrobenchmarks (cla: yes, team, waiting for tree to go green)
[65902](https://github.com/flutter/flutter/pull/65902) Flutter 1.22.0-12.1.pre cherrypick (cla: yes, engine)
[65904](https://github.com/flutter/flutter/pull/65904) Updated references to obsolete Material button classes in examples (cla: yes, d: examples, team, waiting for tree to go green)
[65910](https://github.com/flutter/flutter/pull/65910) Added clipBehavior to Overlay, Flow, AnimatedSize and AndroidView (cla: yes, framework, waiting for tree to go green)
[65915](https://github.com/flutter/flutter/pull/65915) Fix DropdownButton bug (cla: yes, f: material design, framework, waiting for tree to go green)
[65918](https://github.com/flutter/flutter/pull/65918) Changed field title to label in bottom_navigation_bar_test.dart (cla: yes, f: material design, framework, waiting for tree to go green)
[65929](https://github.com/flutter/flutter/pull/65929) update_dart_sdk.ps1: Ensure Start-BitsTransfer always throws an exception (cla: yes, tool, waiting for tree to go green)
[65944](https://github.com/flutter/flutter/pull/65944) Divider with subheader example update (cla: yes, f: material design, framework, waiting for tree to go green)
[65949](https://github.com/flutter/flutter/pull/65949) [manual roll] Roll Engine from 1ef10b240e28 to f84e7a019663 (12 revisions) (cla: yes, engine, team, waiting for tree to go green)
[65950](https://github.com/flutter/flutter/pull/65950) Updated references to obsolete Material button classes in microbenchmarks (cla: yes, team)
[65951](https://github.com/flutter/flutter/pull/65951) [flutter_tools] connect widget cache from frontend_server (cla: yes, framework, team, tool, waiting for tree to go green)
[65961](https://github.com/flutter/flutter/pull/65961) Check that header exists instead of contents of header in build iOS module test (cla: yes, platform-ios, team)
[65964](https://github.com/flutter/flutter/pull/65964) Updated androidMissingSdkInstructions error message (cla: yes, tool, waiting for tree to go green)
[65966](https://github.com/flutter/flutter/pull/65966) TextField constrained layout bug (cla: yes, f: material design, framework)
[65973](https://github.com/flutter/flutter/pull/65973) always adds alert label for alert dialog in Android (cla: yes, f: material design, framework, waiting for tree to go green)
[65975](https://github.com/flutter/flutter/pull/65975) Roll Engine from f84e7a019663 to 933f811d94ab (8 revisions) (cla: yes, waiting for tree to go green)
[65977](https://github.com/flutter/flutter/pull/65977) Inform user how to fix permissions when the observatory URL isn't found on iOS 14 (cla: yes, platform-ios, tool, waiting for tree to go green)
[65978](https://github.com/flutter/flutter/pull/65978) Added the machine's architecture to macos doctor results. (cla: yes, tool, waiting for tree to go green)
[65984](https://github.com/flutter/flutter/pull/65984) Hide flutter test --platform (cla: yes, tool, waiting for tree to go green)
[65985](https://github.com/flutter/flutter/pull/65985) Enable pre/post submit hostonly tests. (cla: yes, team, waiting for tree to go green)
[65987](https://github.com/flutter/flutter/pull/65987) Roll Engine from 933f811d94ab to 2abe69c60818 (1 revision) (cla: yes, waiting for tree to go green)
[65988](https://github.com/flutter/flutter/pull/65988) Replaced reference to obsolete FlatButton button class in SnackBar (cla: yes, f: material design, framework, waiting for tree to go green)
[65993](https://github.com/flutter/flutter/pull/65993) Update localizations (a: internationalization, cla: yes, f: material design, waiting for tree to go green)
[65997](https://github.com/flutter/flutter/pull/65997) remove non-nullability on Navigator methods (cla: yes, framework, team, waiting for tree to go green)
[65998](https://github.com/flutter/flutter/pull/65998) Fix bug when updating the `divisions` and `value` of the slider at the same time (cla: yes, f: material design, framework, waiting for tree to go green)
[66014](https://github.com/flutter/flutter/pull/66014) add ScrollViewKeyboardDismissBehavior to CustomScrollView constructor (cla: yes, framework, waiting for tree to go green)
[66020](https://github.com/flutter/flutter/pull/66020) Remove deprecated activity indicator (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66021](https://github.com/flutter/flutter/pull/66021) Update Windows system font change handling (cla: yes, tool, waiting for tree to go green)
[66022](https://github.com/flutter/flutter/pull/66022) Consider the Windows app template stable (cla: yes, tool)
[66023](https://github.com/flutter/flutter/pull/66023) Fix mistake in the docs of RouteInformationParser (cla: yes, framework, waiting for tree to go green)
[66024](https://github.com/flutter/flutter/pull/66024) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework)
[66025](https://github.com/flutter/flutter/pull/66025) Add VERSIONINFO to the Windows template (cla: yes, tool, waiting for tree to go green)
[66027](https://github.com/flutter/flutter/pull/66027) Revert "TextField constrained layout bug" (cla: yes, f: material design, framework)
[66029](https://github.com/flutter/flutter/pull/66029) Fix typos (cla: yes, team)
[66031](https://github.com/flutter/flutter/pull/66031) Revert "always adds alert label for alert dialog in Android" (cla: yes, f: material design, framework)
[66039](https://github.com/flutter/flutter/pull/66039) fix mouse wheel scroll miscontrol of ScrollPosition. (a: desktop, a: mouse, cla: yes, f: scrolling, framework, waiting for tree to go green)
[66043](https://github.com/flutter/flutter/pull/66043) Deprecate VelocityTracker default constructor and added VelocityTracker.withKind constructor (cla: yes, framework, team)
[66048](https://github.com/flutter/flutter/pull/66048) Bump dartdoc to 0.34.0 (cla: yes, d: api docs, documentation, team, waiting for tree to go green)
[66051](https://github.com/flutter/flutter/pull/66051) Revert "TextSelectionTheme support (step 2 of 3)" (cla: yes, f: material design, framework)
[66052](https://github.com/flutter/flutter/pull/66052) Roll packages to fix #66038 (cla: yes, team, waiting for tree to go green)
[66054](https://github.com/flutter/flutter/pull/66054) Add versioning to gold endpoints (a: quality, a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)
[66055](https://github.com/flutter/flutter/pull/66055) Reland "TextField constrained layout bug (#65966)" (cla: yes, f: material design, framework, waiting for tree to go green)
[66057](https://github.com/flutter/flutter/pull/66057) reland always adds alert label for alert dialog in Android (a: accessibility, cla: yes, f: material design, framework, team, waiting for tree to go green)
[66061](https://github.com/flutter/flutter/pull/66061) Reland: TextSelectionTheme support (step 2 of 3) (cla: yes, f: material design, framework)
[66065](https://github.com/flutter/flutter/pull/66065) InteractiveViewer onInteractionUpdate focalPoint (cla: yes, framework, waiting for tree to go green)
[66069](https://github.com/flutter/flutter/pull/66069) [flutter_tools] optimize fetch requests and remove main.dart.js bypass (cla: yes, tool, waiting for tree to go green)
[66073](https://github.com/flutter/flutter/pull/66073) Prevent a potential infinite loop in setMessageHandler (cla: yes, framework, waiting for tree to go green)
[66081](https://github.com/flutter/flutter/pull/66081) Trivial file name fix (continous -> continuous) (cla: yes, framework)
[66082](https://github.com/flutter/flutter/pull/66082) [flutter_tools] register service worker after first frame event (cla: yes, framework, team, tool)
[66085](https://github.com/flutter/flutter/pull/66085) Enable linux and win hostonly devicelab tests. (cla: yes, team, waiting for tree to go green)
[66092](https://github.com/flutter/flutter/pull/66092) Stream logging from attached debugger on iOS (cla: yes, platform-ios, tool)
[66113](https://github.com/flutter/flutter/pull/66113) Remove the Windows 'flutter create' warning (cla: yes, tool, waiting for tree to go green)
[66123](https://github.com/flutter/flutter/pull/66123) Ensure VmService instance is disposed after failed direct connection attempt (cla: yes, tool)
[66136](https://github.com/flutter/flutter/pull/66136) [versions] update to latest source span and roll engine to 4b8477d11573d233e6791204191c0090f733b05d (cla: yes, engine, team, tool, waiting for tree to go green)
[66139](https://github.com/flutter/flutter/pull/66139) Fix local gold output for flutter/flutter (a: quality, a: tests, cla: yes, framework, waiting for tree to go green)
[66142](https://github.com/flutter/flutter/pull/66142) Fix 'Invalid Image Data' for local Gold testing (a: error message, a: tests, cla: yes, framework, waiting for tree to go green)
[66151](https://github.com/flutter/flutter/pull/66151) [flutter_tools] map file Uri to multi-root scheme if provided (cla: yes, tool)
[66152](https://github.com/flutter/flutter/pull/66152) Added timeout for closing devfs sync http connections. (cla: yes, tool)
[66156](https://github.com/flutter/flutter/pull/66156) [flutter_tools] fix bug where last build id parent folder is missing (cla: yes, tool, waiting for tree to go green)
[66159](https://github.com/flutter/flutter/pull/66159) [flutter_tools] add EPERM to set of immediate exit errors (cla: yes, tool, waiting for tree to go green)
[66164](https://github.com/flutter/flutter/pull/66164) Revert "Ensure VmService instance is disposed after failed direct connection attempt" (cla: yes, tool)
[66186](https://github.com/flutter/flutter/pull/66186) Changed title to label in flutter/test/material (cla: yes, f: material design, framework, waiting for tree to go green)
[66187](https://github.com/flutter/flutter/pull/66187) Turn off flutter_gallery__transition_perf_e2e_ios32 in devicelab (cla: yes, team)
[66195](https://github.com/flutter/flutter/pull/66195) Fix windows hostonly_devicelab tests. (cla: yes, team, waiting for tree to go green)
[66201](https://github.com/flutter/flutter/pull/66201) Added transformAlignment for container (cla: yes, framework, waiting for tree to go green)
[66213](https://github.com/flutter/flutter/pull/66213) Fixes typos in showDialog documentation (cla: yes, d: api docs, f: material design, framework)
[66257](https://github.com/flutter/flutter/pull/66257) Actually consume top padding in bottomsheet if scrollcontrolled (cla: yes, f: material design, framework, waiting for tree to go green)
[66262](https://github.com/flutter/flutter/pull/66262) SliverList perform layout start from the initial child when there is no valid layout offset (cla: yes, framework, waiting for tree to go green)
[66266](https://github.com/flutter/flutter/pull/66266) [flutter_tools] allow device classes to provide platform-specific interface for devFS Sync (cla: yes, tool, waiting for tree to go green)
[66267](https://github.com/flutter/flutter/pull/66267) Add back the autovalidate class property (a: text input, cla: yes, framework)
[66269](https://github.com/flutter/flutter/pull/66269) [flutter_tools] declare non-transitive deps correctly (cla: yes, team, waiting for tree to go green)
[66271](https://github.com/flutter/flutter/pull/66271) Reland fuchsia_remote_debug_protocol allows open port on remote device (a: tests, cla: yes, framework, tool, waiting for tree to go green)
[66273](https://github.com/flutter/flutter/pull/66273) [flutter_tools] remove k toggle for canvaskit from web runner (cla: yes, tool)
[66274](https://github.com/flutter/flutter/pull/66274) Make CupertinoThemeData properties non-nullable (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66277](https://github.com/flutter/flutter/pull/66277) [devicelab] fix manifest definition (cla: yes, team)
[66284](https://github.com/flutter/flutter/pull/66284) Mark animated_placeholder_perf__e2e nonflaky (cla: yes, team, waiting for tree to go green)
[66290](https://github.com/flutter/flutter/pull/66290) roll source_span 1.8.0-nullsafety.2 (cla: yes, team, tool)
[66291](https://github.com/flutter/flutter/pull/66291) TextField intrinsic height layout bug (cla: yes, f: material design, framework)
[66302](https://github.com/flutter/flutter/pull/66302) Revert "Turn off flutter_gallery__transition_perf_e2e_ios32 in devicelab" (cla: yes, team, waiting for tree to go green)
[66305](https://github.com/flutter/flutter/pull/66305) Add Overflow back with deprecation (cla: yes, framework, waiting for tree to go green)
[66310](https://github.com/flutter/flutter/pull/66310) Listen to Debug VM stream to get Stdout logs from VMService (cla: yes, platform-ios, tool, waiting for tree to go green)
[66311](https://github.com/flutter/flutter/pull/66311) Expose enable-experiment in Flutter drive (cla: yes, tool, waiting for tree to go green)
[66358](https://github.com/flutter/flutter/pull/66358) [flutter_tools] dont crash if attach is given a bad debug uri (cla: yes, tool)
[66359](https://github.com/flutter/flutter/pull/66359) Revert "Stream logging from attached debugger on iOS" (cla: yes, tool)
[66360](https://github.com/flutter/flutter/pull/66360) Reland "Stream logging from attached debugger on iOS"" (cla: yes, tool)
[66367](https://github.com/flutter/flutter/pull/66367) [dev release] Revert "Stream logging from attached debugger on iOS (#66092)" (cla: yes, tool)
[66368](https://github.com/flutter/flutter/pull/66368) Revert "Stream logging from attached debugger on iOS" (cla: yes, tool)
[66370](https://github.com/flutter/flutter/pull/66370) Change the default visual density to be adaptive based on platform. (cla: yes, f: material design, framework, team, tool)
[66375](https://github.com/flutter/flutter/pull/66375) Provide defaulting for textScaleFactor when passing to dart:ui (a: typography, cla: yes, framework, waiting for tree to go green)
[66377](https://github.com/flutter/flutter/pull/66377) Reland "Ensure VmService instance is disposed after failed direct connection attempt" (cla: yes, tool)
[66379](https://github.com/flutter/flutter/pull/66379) Remove last FakeImage implementation (cla: yes, framework)
[66382](https://github.com/flutter/flutter/pull/66382) Update .gitignore.tmpl (cla: yes, tool, waiting for tree to go green)
[66384](https://github.com/flutter/flutter/pull/66384) update to the latest null safe packages (cla: yes, team, tool)
[66386](https://github.com/flutter/flutter/pull/66386) Default measureCpuGpu to true (cla: yes, perf: energy, severe: performance, team, waiting for tree to go green)
[66387](https://github.com/flutter/flutter/pull/66387) enable lint unnecessary_nullable_for_final_variable_declarations (cla: yes, framework)
[66390](https://github.com/flutter/flutter/pull/66390) Stream logging from attached debugger on iOS (cla: yes, tool)
[66391](https://github.com/flutter/flutter/pull/66391) Mark Windows gradle_plugin_light_apk_test as flaky (cla: yes, team)
[66397](https://github.com/flutter/flutter/pull/66397) Revert "Stream logging from attached debugger on iOS" (cla: yes, tool)
[66398](https://github.com/flutter/flutter/pull/66398) Roll Engine from 4b8477d11573 to c62d6652992b (44 revisions) (cla: yes, waiting for tree to go green)
[66399](https://github.com/flutter/flutter/pull/66399) Stream logging from attached debugger on iOS 13+ (cla: yes, platform-ios, team, tool)
[66400](https://github.com/flutter/flutter/pull/66400) Roll Engine from c62d6652992b to 33952834281b (1 revision) (cla: yes, waiting for tree to go green)
[66401](https://github.com/flutter/flutter/pull/66401) [flutter_tools] fix calling debugToggleBrightness on release mode (cla: yes, tool)
[66403](https://github.com/flutter/flutter/pull/66403) Revert "[flutter_tools] map file Uri to multi-root scheme if provided" (cla: yes, tool)
[66405](https://github.com/flutter/flutter/pull/66405) [flutter_tools] reland: map file URIs to a multiroot scheme (cla: yes, tool)
[66406](https://github.com/flutter/flutter/pull/66406) Check git commands in Flutter version check test (cla: yes, team, tool)
[66409](https://github.com/flutter/flutter/pull/66409) Change emoji in About dialog to be a divider (cla: yes, f: material design, framework, waiting for tree to go green)
[66410](https://github.com/flutter/flutter/pull/66410) Roll Engine from 33952834281b to 57ee3d4b3210 (1 revision) (cla: yes, waiting for tree to go green)
[66417](https://github.com/flutter/flutter/pull/66417) [flutter_tools] flush UI thread tasks before finishing hot restart (cla: yes, tool)
[66418](https://github.com/flutter/flutter/pull/66418) fix nullability issues (cla: yes, f: cupertino, framework)
[66424](https://github.com/flutter/flutter/pull/66424) migrate some cupertino files to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66440](https://github.com/flutter/flutter/pull/66440) Roll Engine from 57ee3d4b3210 to 3e7ca5b86904 (2 revisions) (cla: yes, waiting for tree to go green)
[66455](https://github.com/flutter/flutter/pull/66455) apply upcoming lint cast_nullable_to_non_nullable (a: tests, cla: yes, framework)
[66461](https://github.com/flutter/flutter/pull/66461) [flutter_tools] try deleting the web cache directory before copying new web sdk (cla: yes, tool, waiting for tree to go green)
[66462](https://github.com/flutter/flutter/pull/66462) Roll Engine from 3e7ca5b86904 to 53c0d0c02af0 (1 revision) (cla: yes, waiting for tree to go green)
[66468](https://github.com/flutter/flutter/pull/66468) [flutter_tools] do not add events to closed sink in throttle transform (cla: yes, tool)
[66481](https://github.com/flutter/flutter/pull/66481) [devicelab] increase timeout for cull bench (cla: yes, team)
[66482](https://github.com/flutter/flutter/pull/66482) TextSelectionTheme support (step 3 of 3) (cla: yes, f: material design, framework, team)
[66487](https://github.com/flutter/flutter/pull/66487) Do not cleanup Gradle in non-Android integration tests (cla: yes, team)
[66493](https://github.com/flutter/flutter/pull/66493) migrate cupertino to nullsafety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66496](https://github.com/flutter/flutter/pull/66496) Fix gradle_plugin_light_apk test. (cla: yes, team, waiting for tree to go green)
[66497](https://github.com/flutter/flutter/pull/66497) Roll Engine from 53c0d0c02af0 to dd35b5b65917 (10 revisions) (cla: yes, waiting for tree to go green)
[66500](https://github.com/flutter/flutter/pull/66500) Flutter 1.22.0-12.2.pre Framework cherrypicks (a: tests, cla: yes, engine, framework, team, tool)
[66503](https://github.com/flutter/flutter/pull/66503) Remove skipped tool test, remove integration shard from cirrus (cla: yes, waiting for tree to go green)
[66504](https://github.com/flutter/flutter/pull/66504) Re-land ScaffoldMessenger (a: quality, cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)
[66505](https://github.com/flutter/flutter/pull/66505) Roll Engine from dd35b5b65917 to b0fb2c8a988f (2 revisions) (cla: yes, waiting for tree to go green)
[66506](https://github.com/flutter/flutter/pull/66506) Allow futures that resolve to null (incl. Future<void>) in Future/StreamBuilder (cla: yes, framework)
[66507](https://github.com/flutter/flutter/pull/66507) [flutter_tools] enable single widget reload optimization by default on master (cla: yes, tool, waiting for tree to go green)
[66508](https://github.com/flutter/flutter/pull/66508) [Docs] [Material] Fix Icons api docs (cla: yes, f: material design, framework, team)
[66519](https://github.com/flutter/flutter/pull/66519) Try the Wayland GDK backend, the engine now supports it (cla: yes, tool)
[66522](https://github.com/flutter/flutter/pull/66522) disable pub lints (cla: yes)
[66524](https://github.com/flutter/flutter/pull/66524) [Icons] Update icon version to point to file that iOS will prefer. (cla: yes, f: material design, platform-ios, t: xcode, waiting for tree to go green)
[66542](https://github.com/flutter/flutter/pull/66542) Fix last month not being displayed if last date is selected in DateRangePicker (cla: yes, f: material design, framework, waiting for tree to go green)
[66559](https://github.com/flutter/flutter/pull/66559) [flutter_tools] bypass pubspec yaml content check when running pubdependencies (cla: yes, tool)
[66567](https://github.com/flutter/flutter/pull/66567) Length formatter minor fix (cla: yes, framework, waiting for tree to go green)
[66568](https://github.com/flutter/flutter/pull/66568) platform_views_scroll_perf_ios test: remove `--trace-startup` to fix the crash. (cla: yes, team, waiting for tree to go green)
[66570](https://github.com/flutter/flutter/pull/66570) Let perf tests measure memory by default (cla: yes, perf: memory, severe: performance, team)
[66582](https://github.com/flutter/flutter/pull/66582) Update docs about complex character support (cla: yes, framework)
[66583](https://github.com/flutter/flutter/pull/66583) Roll Engine from b0fb2c8a988f to e56080ab6777 (17 revisions) (cla: yes, waiting for tree to go green)
[66584](https://github.com/flutter/flutter/pull/66584) Roll gallery to the newest version (cla: yes, team)
[66587](https://github.com/flutter/flutter/pull/66587) Make Gradle plugin light apk test blocking again. (cla: yes, team, waiting for tree to go green)
[66590](https://github.com/flutter/flutter/pull/66590) Force plugins to inherit minimum iOS version from Flutter app (cla: yes, platform-ios, t: xcode, team, tool)
[66594](https://github.com/flutter/flutter/pull/66594) Revert "Default measureCpuGpu to true" (cla: yes, team)
[66595](https://github.com/flutter/flutter/pull/66595) Mark nonflaky tests as such (cla: yes, team, waiting for tree to go green)
[66596](https://github.com/flutter/flutter/pull/66596) [Material] Remove opacity from dark theme overlay check (cla: yes, f: material design, framework, waiting for tree to go green)
[66597](https://github.com/flutter/flutter/pull/66597) Replaced obsolete use of FlatButton with TextButton (cla: yes, f: material design, framework, waiting for tree to go green)
[66602](https://github.com/flutter/flutter/pull/66602) Replaced obsolete use of FlatButton with TextButton in scroll_activity_test (cla: yes, framework)
[66603](https://github.com/flutter/flutter/pull/66603) Replaced use of obsolete RaisedButton with ElevatedButton in widget_inspector_test (cla: yes, framework)
[66604](https://github.com/flutter/flutter/pull/66604) Reland "Default measureCpuGpu to true (#66386)" (cla: yes, team, waiting for tree to go green)
[66606](https://github.com/flutter/flutter/pull/66606) [web] Change the web server to support path url strategy (cla: yes, platform-web, tool, waiting for tree to go green)
[66607](https://github.com/flutter/flutter/pull/66607) Set DDS port to requested observatory port for test (cla: yes, tool)
[66611](https://github.com/flutter/flutter/pull/66611) fix complex_layout_android__scroll_smoothness's lost of input event (cla: yes, team, waiting for tree to go green)
[66621](https://github.com/flutter/flutter/pull/66621) Remove "Try accepting the local network permissions popup" warning (a: triage improvements, cla: yes, platform-ios, tool, waiting for tree to go green)
[66623](https://github.com/flutter/flutter/pull/66623) Roll Engine from e56080ab6777 to 435db234e4d3 (12 revisions) (cla: yes, waiting for tree to go green)
[66630](https://github.com/flutter/flutter/pull/66630) Roll Engine from 435db234e4d3 to 62b5a53b10a1 (2 revisions) (cla: yes, waiting for tree to go green)
[66633](https://github.com/flutter/flutter/pull/66633) migration of material files to nullsafety (cla: yes, f: material design, framework, waiting for tree to go green)
[66638](https://github.com/flutter/flutter/pull/66638) Roll Engine from 62b5a53b10a1 to 3a73d073c8be (1 revision) (cla: yes, waiting for tree to go green)
[66639](https://github.com/flutter/flutter/pull/66639) Further explain parent constraints in SizedBox (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[66640](https://github.com/flutter/flutter/pull/66640) Add decoration parameter to DataTable and DataTableTheme (cla: yes, f: material design, framework)
[66645](https://github.com/flutter/flutter/pull/66645) [flutter_tools] Use XDG_CONFIG_HOME dir by default for config files (cla: yes, tool)
[66652](https://github.com/flutter/flutter/pull/66652) [Material] Update some semantics for time picker controls (cla: yes, f: material design, framework)
[66653](https://github.com/flutter/flutter/pull/66653) Changed TickerProviderStateMixin to SingleTickerProviderStateMixin in… (cla: yes, f: material design, framework)
[66663](https://github.com/flutter/flutter/pull/66663) Migrate flutter_test (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[66666](https://github.com/flutter/flutter/pull/66666) Revert "Roll gallery to the newest version" (cla: yes, team)
[66670](https://github.com/flutter/flutter/pull/66670) Updated tests in material/bottom_navigation_bar_test.dart (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66677](https://github.com/flutter/flutter/pull/66677) Add Firebase tests to flutter dashboard. (cla: yes, team)
[66678](https://github.com/flutter/flutter/pull/66678) [flutter_tools] enable LocalDevFSWriter for desktop devices, iOS simulator (cla: yes, tool)
[66679](https://github.com/flutter/flutter/pull/66679) Add a compressionState value to HttpResponse mocks (cla: yes, team)
[66680](https://github.com/flutter/flutter/pull/66680) [flutter_tools] ensure ErrorHandlingFileSystem wraps current directory (cla: yes, tool, waiting for tree to go green)
[66684](https://github.com/flutter/flutter/pull/66684) [Icons][iOS] Pointing to version of material icon font that includes more metadata in the xml. (cla: yes, f: material design, waiting for tree to go green)
[66685](https://github.com/flutter/flutter/pull/66685) [flutter_tools] handle missing zip/unzip argument errors (cla: yes, tool)
[66687](https://github.com/flutter/flutter/pull/66687) Teach the flutter tool how to find android output files if the flavor contains uppercase letters (cla: yes, tool, waiting for tree to go green)
[66688](https://github.com/flutter/flutter/pull/66688) Dispose of images after using them (a: tests, cla: yes, framework, perf: memory, severe: performance)
[66691](https://github.com/flutter/flutter/pull/66691) [flutter_tools] dont mention git clone of flutter in run message (cla: yes, tool)
[66692](https://github.com/flutter/flutter/pull/66692) Allow modifying barrier color and barrier dismissible for Cupertino Modal Popup (cla: yes, f: cupertino, framework, waiting for tree to go green)
[66693](https://github.com/flutter/flutter/pull/66693) Roll gallery to the newest version (cla: yes, team)
[66694](https://github.com/flutter/flutter/pull/66694) Page-subclasses to take children instead of builder (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[66696](https://github.com/flutter/flutter/pull/66696) [flutter_tools] flutter logs no longer requires supported device (cla: yes, tool, waiting for tree to go green)
[66700](https://github.com/flutter/flutter/pull/66700) Default FittedBox's clipBehavior to none (cla: yes, framework, severe: API break)
[66701](https://github.com/flutter/flutter/pull/66701) [flutter_tools] pretty print hot reload rejection error (cla: yes, tool)
[66704](https://github.com/flutter/flutter/pull/66704) [flutter_tools] pass existsSync through error handling io (cla: yes, tool)
[66705](https://github.com/flutter/flutter/pull/66705) [flutter_tools] do not crash if chrome preference save fails (cla: yes, tool)
[66708](https://github.com/flutter/flutter/pull/66708) [flutter_tools] handle case where file is deleted by other program or running on read only volume (cla: yes, tool)
[66736](https://github.com/flutter/flutter/pull/66736) [gallery] add linux and windows files to gallery example (cla: yes, team)
[66742](https://github.com/flutter/flutter/pull/66742) [flutter_tools] hot reload/restart update for asset manager change (cla: yes, tool)
[66743](https://github.com/flutter/flutter/pull/66743) cleanup completed todo and unused variable for WidgetTester (a: tests, cla: yes, framework, waiting for tree to go green)
[66745](https://github.com/flutter/flutter/pull/66745) move resampler to handlePointerEvent and fix complex_layout_android__scroll_smoothness with PointerEvent (a: tests, cla: yes, framework, team, waiting for tree to go green)
[66748](https://github.com/flutter/flutter/pull/66748) Improve consistency of top-level help text (cla: yes, tool, waiting for tree to go green)
[66754](https://github.com/flutter/flutter/pull/66754) [desktop] default to shrink wrap on desktop platforms (cla: yes, f: material design, framework, waiting for tree to go green)
[66755](https://github.com/flutter/flutter/pull/66755) [flutter_tools] dont let crash reporter crash tool (cla: yes, tool)
[66776](https://github.com/flutter/flutter/pull/66776) [flutter_tools] remove all pub caching logic (cla: yes, tool)
[66780](https://github.com/flutter/flutter/pull/66780) [flutter_tools] do not error doctor on missing vs code extension (cla: yes, tool)
[66782](https://github.com/flutter/flutter/pull/66782) [flutter_tools] do not error flutter doctor on missing AS/intellij plugins (cla: yes, tool)
[66783](https://github.com/flutter/flutter/pull/66783) fix the tree (cla: yes, f: cupertino, framework)
[66785](https://github.com/flutter/flutter/pull/66785) Add textSelectionControls to TextField etc. (cla: yes, f: cupertino, f: material design, framework)
[66787](https://github.com/flutter/flutter/pull/66787) [flutter_tools] add a mechanism to turn off immediate tool exit (cla: yes, tool)
[66798](https://github.com/flutter/flutter/pull/66798) Fix ListTile assert when layout at zero size (cla: yes, f: material design, framework)
[66801](https://github.com/flutter/flutter/pull/66801) Minor tool text typo (cla: yes, tool, waiting for tree to go green)
[66834](https://github.com/flutter/flutter/pull/66834) GlobalKey docs improvement (cla: yes, d: api docs, documentation, framework)
[66836](https://github.com/flutter/flutter/pull/66836) Roll package:dds to 1.4.0 and update error handling (cla: yes, team, tool)
[66840](https://github.com/flutter/flutter/pull/66840) Roll Engine from 3a73d073c8be to 8d165faca1ce (45 revisions) (cla: yes, waiting for tree to go green)
[66841](https://github.com/flutter/flutter/pull/66841) Roll Engine from 8d165faca1ce to 67b1219d8350 (1 revision) (cla: yes, waiting for tree to go green)
[66842](https://github.com/flutter/flutter/pull/66842) [flutter_tools] do not require a dependency on devtools server (cla: yes, tool)
[66845](https://github.com/flutter/flutter/pull/66845) fix _getPixelPerfectCursorOffset logic when infinite (cla: yes, framework, waiting for tree to go green)
[66848](https://github.com/flutter/flutter/pull/66848) Roll Engine from 67b1219d8350 to 96dd918f2d4e (3 revisions) (cla: yes, waiting for tree to go green)
[66849](https://github.com/flutter/flutter/pull/66849) Flutter 1.22.0-12.3.pre framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[66851](https://github.com/flutter/flutter/pull/66851) EditableText action handlers swallow errors (cla: yes, framework)
[66854](https://github.com/flutter/flutter/pull/66854) Update flutter_tools README.md to document need for FLUTTER_ROOT (cla: yes, tool, waiting for tree to go green)
[66855](https://github.com/flutter/flutter/pull/66855) Roll Engine from 96dd918f2d4e to 77701d303e22 (2 revisions) (cla: yes, waiting for tree to go green)
[66858](https://github.com/flutter/flutter/pull/66858) migrate some material files to nullsafty (cla: yes, f: material design, framework)
[66864](https://github.com/flutter/flutter/pull/66864) More EditableText docs (cla: yes, framework, waiting for tree to go green)
[66868](https://github.com/flutter/flutter/pull/66868) Roll Engine from 77701d303e22 to 438685dad025 (7 revisions) (cla: yes, waiting for tree to go green)
[66889](https://github.com/flutter/flutter/pull/66889) Add more unit test cases for EditableText widget (cla: yes, framework, waiting for tree to go green)
[66892](https://github.com/flutter/flutter/pull/66892) Roll Engine from 438685dad025 to 1c462e28a2e2 (5 revisions) (cla: yes, waiting for tree to go green)
[66894](https://github.com/flutter/flutter/pull/66894) Roll Engine from 1c462e28a2e2 to 414805d1d824 (2 revisions) (cla: yes, waiting for tree to go green)
[66897](https://github.com/flutter/flutter/pull/66897) Add the ability to inject a bootstrap script (cla: yes, tool)
[66913](https://github.com/flutter/flutter/pull/66913) Roll Engine from 414805d1d824 to 5a7336ef2637 (1 revision) (cla: yes, waiting for tree to go green)
[66914](https://github.com/flutter/flutter/pull/66914) Move assert(s) that reference 'this' to the constructor bodies. (cla: yes, f: cupertino, f: material design, framework)
[66916](https://github.com/flutter/flutter/pull/66916) Re-enables tests previously failing due to new semantics flag. (a: accessibility, a: tests, cla: yes, framework, waiting for tree to go green)
[66918](https://github.com/flutter/flutter/pull/66918) Revert "Improve the behavior of Scrollable.ensureVisible when Scrollable nested" (cla: yes, framework)
[66924](https://github.com/flutter/flutter/pull/66924) Roll Engine from 5a7336ef2637 to a6a6fd163b99 (3 revisions) (cla: yes, waiting for tree to go green)
[66938](https://github.com/flutter/flutter/pull/66938) Roll Engine from a6a6fd163b99 to 326827883429 (7 revisions) (cla: yes, waiting for tree to go green)
[66939](https://github.com/flutter/flutter/pull/66939) Roll Engine from 326827883429 to fff415d517d6 (1 revision) (cla: yes, waiting for tree to go green)
[66941](https://github.com/flutter/flutter/pull/66941) Replace MockFile with memory file system files (cla: yes, team, tool)
[66942](https://github.com/flutter/flutter/pull/66942) Roll Engine from fff415d517d6 to d18c3ea75cff (1 revision) (cla: yes, waiting for tree to go green)
[66946](https://github.com/flutter/flutter/pull/66946) Replace MockCache with Cache.test() (cla: yes, team, tool)
[66972](https://github.com/flutter/flutter/pull/66972) Nested Scaffolds - Suggested Changes (cla: yes, d: api docs, f: material design, framework)
[66976](https://github.com/flutter/flutter/pull/66976) roll back engine to a6a6fd163b99e4ac53319afe69bce1a043116b1e (cla: yes, engine)
[66978](https://github.com/flutter/flutter/pull/66978) Redo rollback to a6a6fd163b99e4ac53319afe69bce1a043116b1e (cla: yes, engine)
[66980](https://github.com/flutter/flutter/pull/66980) [flutter_tools] fix documentation, globals, and todos in the android codebase (cla: yes, tool)
[66983](https://github.com/flutter/flutter/pull/66983) [flutter_tools] prevent running analyze-size with split-debug-info (cla: yes, tool)
[66985](https://github.com/flutter/flutter/pull/66985) migrate some material files to nullsafety (cla: yes, f: material design, framework)
[66992](https://github.com/flutter/flutter/pull/66992) Roll Engine from a6a6fd163b99 to 83b9df9df59c (18 revisions) (cla: yes, waiting for tree to go green)
[66995](https://github.com/flutter/flutter/pull/66995) [flutter_tool] enable single widget reload optimization by default on dev (cla: yes, tool, waiting for tree to go green)
[66997](https://github.com/flutter/flutter/pull/66997) Fix Windows and Linux plugin template filenames (cla: yes, tool, waiting for tree to go green)
[67000](https://github.com/flutter/flutter/pull/67000) Text test should check that a paragraph's longest line is not greater than the width constraint (cla: yes, framework, waiting for tree to go green)
[67003](https://github.com/flutter/flutter/pull/67003) API docs for typedefs. (cla: yes, f: material design, framework, waiting for tree to go green)
[67010](https://github.com/flutter/flutter/pull/67010) Roll Engine from 83b9df9df59c to 572c343568f8 (1 revision) (cla: yes, waiting for tree to go green)
[67012](https://github.com/flutter/flutter/pull/67012) Replace MockArtifacts with Artifacts.test() (cla: yes, team, tool)
[67015](https://github.com/flutter/flutter/pull/67015) Roll Engine from 572c343568f8 to 612acf349e36 (3 revisions) (cla: yes, waiting for tree to go green)
[67017](https://github.com/flutter/flutter/pull/67017) Handle empty selection box lists in RenderParagraph.assembleSemanticsNode (cla: yes, framework, waiting for tree to go green)
[67019](https://github.com/flutter/flutter/pull/67019) Replace MockProcessManager with FakeProcessManager (cla: yes, team, tool, waiting for tree to go green)
[67020](https://github.com/flutter/flutter/pull/67020) Relax the bounds of some Cupertino text field tests (cla: yes, f: cupertino, framework)
[67021](https://github.com/flutter/flutter/pull/67021) test that ensureVisible does not change PageView pages (cla: yes, framework, waiting for tree to go green)
[67025](https://github.com/flutter/flutter/pull/67025) Fix docset generation. (cla: yes, team)
[67029](https://github.com/flutter/flutter/pull/67029) Improve Windows symlink instructions (a: build, a: desktop, cla: yes, platform-windows, tool)
[67046](https://github.com/flutter/flutter/pull/67046) Add transformAlignment and clipBehavior to AnimatedContainer (cla: yes, framework)
[67057](https://github.com/flutter/flutter/pull/67057) update stack_trace dep (and others) (cla: yes, team, tool, waiting for tree to go green)
[67058](https://github.com/flutter/flutter/pull/67058) Migrate the tests of flutter_test to null-safety (a: tests, cla: yes, framework, waiting for tree to go green)
[67061](https://github.com/flutter/flutter/pull/67061) Roll Engine from 612acf349e36 to 1c97ac750d5a (4 revisions) (cla: yes, waiting for tree to go green)
[67066](https://github.com/flutter/flutter/pull/67066) docs for image disposal (cla: yes, d: api docs, framework)
[67067](https://github.com/flutter/flutter/pull/67067) Roll Engine from 1c97ac750d5a to f0ab5b5ced81 (2 revisions) (cla: yes, waiting for tree to go green)
[67076](https://github.com/flutter/flutter/pull/67076) [Time Picker] Double tapping hours/minutes will switch time picker to input mode (cla: yes, f: material design, framework)
[67078](https://github.com/flutter/flutter/pull/67078) migrate some material files to nullsafety (cla: yes, f: material design, framework, waiting for tree to go green)
[67079](https://github.com/flutter/flutter/pull/67079) Roll Engine from f0ab5b5ced81 to 0522ff22cc78 (2 revisions) (cla: yes, waiting for tree to go green)
[67080](https://github.com/flutter/flutter/pull/67080) Fix resampling of down, up, and remove events. (cla: yes, framework)
[67081](https://github.com/flutter/flutter/pull/67081) [web] Update index.html template to support new path strategy (cla: yes, f: routes, platform-web, tool, waiting for tree to go green)
[67083](https://github.com/flutter/flutter/pull/67083) [flutter] Update some tests in flutter/test (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67085](https://github.com/flutter/flutter/pull/67085) Migrate some tests to null-safety (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67086](https://github.com/flutter/flutter/pull/67086) [NNBD] Migrate some Cupertino tests (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67088](https://github.com/flutter/flutter/pull/67088) [web] Respond with 404 to non-found asset or package files (cla: yes, platform-web, tool, waiting for tree to go green)
[67098](https://github.com/flutter/flutter/pull/67098) Migrate non-test files in flutter/test (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67100](https://github.com/flutter/flutter/pull/67100) Revert dispose images when done (a: tests, cla: yes, framework)
[67105](https://github.com/flutter/flutter/pull/67105) [AppBarTheme] adds titleSpacing parameter (cla: yes, f: material design, framework)
[67106](https://github.com/flutter/flutter/pull/67106) [null-safety] allow web shard to compile null-safe tests. (a: null-safety, cla: yes, tool)
[67112](https://github.com/flutter/flutter/pull/67112) Roll Engine from 0522ff22cc78 to 87a10f240f6b (8 revisions) (cla: yes, waiting for tree to go green)
[67135](https://github.com/flutter/flutter/pull/67135) Expose the tileColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[67146](https://github.com/flutter/flutter/pull/67146) [flutter_tools] remove globals from desktop configuration (cla: yes, tool, waiting for tree to go green)
[67147](https://github.com/flutter/flutter/pull/67147) 5x startup test repitition to reduce noise (cla: yes, customer: money (g3), perf: speed, severe: performance, team, waiting for tree to go green)
[67150](https://github.com/flutter/flutter/pull/67150) [flutter_tools] support all engine debugging options with FLUTTER_ENGINE_SWITCH environment variables (cla: yes, tool)
[67152](https://github.com/flutter/flutter/pull/67152) [null-safety] pass experiments to builders (cla: yes, framework, tool)
[67155](https://github.com/flutter/flutter/pull/67155) [null-safety] migrate app dependencies of flutter driver (a: accessibility, a: null-safety, a: tests, cla: yes, framework, team)
[67159](https://github.com/flutter/flutter/pull/67159) Invalid dates when switching back to calendar mode in the date range picker (cla: yes, f: material design, framework)
[67164](https://github.com/flutter/flutter/pull/67164) flutter_web_plugins cleanup and documentation (cla: yes, waiting for tree to go green)
[67165](https://github.com/flutter/flutter/pull/67165) [flutter_tools] update build rules to depend on subset of package_config contents (cla: yes, tool)
[67166](https://github.com/flutter/flutter/pull/67166) migrate material to nullsafety (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67167](https://github.com/flutter/flutter/pull/67167) Add missing margin to SnackBarAction (cla: yes, f: material design, framework, waiting for tree to go green)
[67169](https://github.com/flutter/flutter/pull/67169) Make CupertinoTabView restorable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67171](https://github.com/flutter/flutter/pull/67171) [null-safety] add integration tests for sound null safety modes, add support for sound null safety in dart2js (a: null-safety, cla: yes, team, tool, waiting for tree to go green)
[67176](https://github.com/flutter/flutter/pull/67176) Add benchmark/test for drawing images across frames (cla: yes, severe: performance, team, waiting for tree to go green)
[67177](https://github.com/flutter/flutter/pull/67177) Reland dispose images when done (#67100) (a: tests, cla: yes, framework)
[67183](https://github.com/flutter/flutter/pull/67183) Revert "migrate some material files to nullsafety" (cla: yes, f: material design, framework)
[67193](https://github.com/flutter/flutter/pull/67193) Roll flutter engine to a24c7c13925e4e3282f7b85814b70e63782fa057 (cla: yes, engine, framework)
[67197](https://github.com/flutter/flutter/pull/67197) Preserve composing range if possible on sel change (a: desktop, a: text input, cla: yes, framework)
[67218](https://github.com/flutter/flutter/pull/67218) change the documentation of bottom navigation bar (cla: yes, framework, waiting for tree to go green)
[67231](https://github.com/flutter/flutter/pull/67231) [flutter_tools] do not use IOSink for writing cache responses (cla: yes, tool)
[67234](https://github.com/flutter/flutter/pull/67234) [flutter_tools] remove globals from FlutterValidator, add documentation and move tests to new file (cla: yes, tool)
[67235](https://github.com/flutter/flutter/pull/67235) Roll Engine from a24c7c13925e to 167f45cdd893 (6 revisions) (cla: yes, waiting for tree to go green)
[67237](https://github.com/flutter/flutter/pull/67237) [flutter_tools] add more docs to cocoapods, move to globals (cla: yes, tool)
[67240](https://github.com/flutter/flutter/pull/67240) [flutter_tools] remove globals from IntelliJ validator, refactor tests to remove dependency on JAR (cla: yes, tool)
[67242](https://github.com/flutter/flutter/pull/67242) [flutter_tools] Simplify plugin test cases and expand coverage of AndroidPlugin (cla: yes, tool)
[67245](https://github.com/flutter/flutter/pull/67245) Roll Engine from 167f45cdd893 to b073d69b3c19 (2 revisions) (cla: yes, waiting for tree to go green)
[67249](https://github.com/flutter/flutter/pull/67249) Add detection of drawer open and close in Scaffold widget as a callback method. (cla: yes, f: material design, framework, waiting for tree to go green)
[67266](https://github.com/flutter/flutter/pull/67266) Roll Engine from b073d69b3c19 to 04a46cc6567a (1 revision) (cla: yes, waiting for tree to go green)
[67272](https://github.com/flutter/flutter/pull/67272) Roll Engine from 04a46cc6567a to a8d7d97bef8c (2 revisions) (cla: yes, waiting for tree to go green)
[67274](https://github.com/flutter/flutter/pull/67274) [flutter_tools] refactor local engine locator to its own class (cla: yes, tool)
[67279](https://github.com/flutter/flutter/pull/67279) [flutter_tools] delete code related to reload method (cla: yes, tool)
[67290](https://github.com/flutter/flutter/pull/67290) Update documentation for borderWidth/renderBorder on ToggleButtons (cla: yes, f: material design, framework, waiting for tree to go green)
[67295](https://github.com/flutter/flutter/pull/67295) Handle missing Android SDKs in getEmulators() (cla: yes, tool, waiting for tree to go green)
[67306](https://github.com/flutter/flutter/pull/67306) fix nullability issues (a: accessibility, cla: yes, f: cupertino, framework, waiting for tree to go green)
[67314](https://github.com/flutter/flutter/pull/67314) InteractiveViewer table example improvements (cla: yes, framework)
[67316](https://github.com/flutter/flutter/pull/67316) Remove goldens request timeout (cla: yes, tool, waiting for tree to go green)
[67318](https://github.com/flutter/flutter/pull/67318) Reland "migrate some material files to nullsafety (#67078)" (cla: yes, f: material design, framework, waiting for tree to go green)
[67320](https://github.com/flutter/flutter/pull/67320) Provide oldLayer where possible (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67323](https://github.com/flutter/flutter/pull/67323) [NNBD] More test migration for Cupertino & Painting (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67324](https://github.com/flutter/flutter/pull/67324) add web_long_running_tests shard containing long-running web tests (cla: yes, framework, team, waiting for tree to go green)
[67331](https://github.com/flutter/flutter/pull/67331) [flutter_tools] disable source maps by default for release builds, enable for run and with command line arg (cla: yes, tool)
[67334](https://github.com/flutter/flutter/pull/67334) Fix Align widthFactor and heightFactor docs to allow 0 values (cla: yes, framework)
[67337](https://github.com/flutter/flutter/pull/67337) Increase device discovery timeout in devicelab health check (cla: yes, team, team: infra)
[67340](https://github.com/flutter/flutter/pull/67340) Remove the extra wrapping of `Listener` (cla: yes, framework, waiting for tree to go green)
[67342](https://github.com/flutter/flutter/pull/67342) [Material] Fix BottomNavTheme.showSelectedLabels bug (cla: yes, f: material design, framework, waiting for tree to go green)
[67347](https://github.com/flutter/flutter/pull/67347) Roll Engine from a8d7d97bef8c to 948dd9702584 (8 revisions) (cla: yes, waiting for tree to go green)
[67349](https://github.com/flutter/flutter/pull/67349) Remove deployment to play store for linux case in deploy_gallery test (cla: yes, team, waiting for tree to go green)
[67351](https://github.com/flutter/flutter/pull/67351) Migrate some more non-test utils for tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67357](https://github.com/flutter/flutter/pull/67357) Condense package:test_core imports (cla: yes, tool)
[67358](https://github.com/flutter/flutter/pull/67358) Roll Engine from 948dd9702584 to 284ef2217dc9 (2 revisions) (cla: yes, waiting for tree to go green)
[67359](https://github.com/flutter/flutter/pull/67359) Mark keys that match a shortcut, but have no action defined as "not handled". (a: accessibility, a: internationalization, a: tests, a: text input, cla: yes, d: examples, engine, f: cupertino, f: focus, f: material design, framework, team)
[67360](https://github.com/flutter/flutter/pull/67360) Migrate more tests to null safety (cla: yes, framework, waiting for tree to go green)
[67361](https://github.com/flutter/flutter/pull/67361) Characters docs (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[67363](https://github.com/flutter/flutter/pull/67363) Remove measureIosCpuGpu (cla: yes, team, waiting for tree to go green)
[67364](https://github.com/flutter/flutter/pull/67364) Make FlutterErrorDetails.exception non-nullable as documented (cla: yes, framework, waiting for tree to go green)
[67367](https://github.com/flutter/flutter/pull/67367) Remove the .zip method from OSUtils, as it was not used (cla: yes, tool)
[67369](https://github.com/flutter/flutter/pull/67369) [flutter_tools] work around hostonly test (cla: yes, tool)
[67375](https://github.com/flutter/flutter/pull/67375) Add rootOverlay flag to [Draggable], to put feedback on root [Overlay] (cla: yes, framework)
[67378](https://github.com/flutter/flutter/pull/67378) Roll Engine from 284ef2217dc9 to 6e1e73d899b9 (6 revisions) (cla: yes, waiting for tree to go green)
[67381](https://github.com/flutter/flutter/pull/67381) Roll Engine from 6e1e73d899b9 to 443cd5a1e1b3 (2 revisions) (cla: yes, waiting for tree to go green)
[67410](https://github.com/flutter/flutter/pull/67410) Fix the tree (cla: yes, f: cupertino, framework)
[67414](https://github.com/flutter/flutter/pull/67414) Add tristate to parent checkbox for DataTable (cla: yes, f: material design, framework)
[67419](https://github.com/flutter/flutter/pull/67419) Exposes ListTile.shape for CheckboxListTile and SwitchListTile (cla: yes, f: material design, framework, waiting for tree to go green)
[67425](https://github.com/flutter/flutter/pull/67425) [flutter_test] handle breaking change to test main (a: tests, cla: yes, framework, team, tool)
[67427](https://github.com/flutter/flutter/pull/67427) Remove required for onRemove in InteractiveInkFeature.create (cla: yes, f: material design, framework)
[67432](https://github.com/flutter/flutter/pull/67432) Update dartdoc to 0.35.0 (cla: yes, team, waiting for tree to go green)
[67433](https://github.com/flutter/flutter/pull/67433) Revert "[null-safety] migrate app dependencies of flutter driver" (a: accessibility, a: tests, cla: yes, framework, team)
[67437](https://github.com/flutter/flutter/pull/67437) Updated the remaining obsolete button references in flutter_gallery (cla: yes, f: material design, team)
[67438](https://github.com/flutter/flutter/pull/67438) Add contentPadding property for RadioListTile (cla: yes, f: material design, framework)
[67440](https://github.com/flutter/flutter/pull/67440) Removed remaining obsolete button widget references (cla: yes, d: examples, f: material design, framework, team)
[67441](https://github.com/flutter/flutter/pull/67441) [null-safety] reland: migrate app side flutter driver to null-safety (a: accessibility, a: tests, cla: yes, framework, team)
[67442](https://github.com/flutter/flutter/pull/67442) Roll Engine from 443cd5a1e1b3 to 7e6191de077d (6 revisions) (cla: yes, waiting for tree to go green)
[67443](https://github.com/flutter/flutter/pull/67443) fix nullability issues (cla: yes, f: material design, framework, waiting for tree to go green)
[67446](https://github.com/flutter/flutter/pull/67446) Add the missing parantheses (cla: yes, framework)
[67449](https://github.com/flutter/flutter/pull/67449) [NNBD] Migrates some rendering tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67452](https://github.com/flutter/flutter/pull/67452) Add publish-port flag to disable mDNS port discovery (cla: yes, platform-ios, tool, waiting for tree to go green)
[67453](https://github.com/flutter/flutter/pull/67453) Migrate framework tests for rendering, semantics, widgets to null safety (a: accessibility, cla: yes, framework, waiting for tree to go green)
[67456](https://github.com/flutter/flutter/pull/67456) Flutter Driver - Create widget finders from serialized finders extensions (a: tests, cla: yes, framework, waiting for tree to go green)
[67466](https://github.com/flutter/flutter/pull/67466) Work around the glibc bug that causes rare Chrome crashes (cla: yes, team, tool, waiting for tree to go green)
[67468](https://github.com/flutter/flutter/pull/67468) Remove Cirrus support for Gold (a: tests, cla: yes, framework, team, team: infra, will affect goldens)
[67470](https://github.com/flutter/flutter/pull/67470) Remove examples/catalog (a: accessibility, cla: yes, d: examples, team, waiting for tree to go green)
[67476](https://github.com/flutter/flutter/pull/67476) fix build analysis errors (cla: yes, f: cupertino, framework)
[67477](https://github.com/flutter/flutter/pull/67477) Migrate some material tests to nnbd (cla: yes, f: material design, framework)
[67478](https://github.com/flutter/flutter/pull/67478) [flutter_tools] remove deprecated flutter command (cla: yes, tool)
[67479](https://github.com/flutter/flutter/pull/67479) fix dart docs for build (cla: yes)
[67482](https://github.com/flutter/flutter/pull/67482) Migrate More Material Tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67485](https://github.com/flutter/flutter/pull/67485) [flutter_tools] remove globals from compile and devices (cla: yes, tool)
[67493](https://github.com/flutter/flutter/pull/67493) [flutter_tools] support powershell style help request (cla: yes, tool)
[67525](https://github.com/flutter/flutter/pull/67525) unnecessary null comparison (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)
[67530](https://github.com/flutter/flutter/pull/67530) [flutter_tools] remove stray print from engine locator (cla: yes, tool, waiting for tree to go green)
[67542](https://github.com/flutter/flutter/pull/67542) Revert "Remove examples/catalog" (a: accessibility, cla: yes, d: examples, team)
[67545](https://github.com/flutter/flutter/pull/67545) Reland removal of examples/catalog (a: accessibility, cla: yes, d: examples, f: material design, framework, team, waiting for tree to go green)
[67546](https://github.com/flutter/flutter/pull/67546) Pick CP engine version 80dbeb3f2dfff1621e1efd6b2aad508adb09ad33 (cla: yes, engine)
[67549](https://github.com/flutter/flutter/pull/67549) Run docs shard on everything. (cla: yes, waiting for tree to go green)
[67550](https://github.com/flutter/flutter/pull/67550) Refactor devicelab logic to use TaskResult instead of JSON (a: accessibility, cla: yes, team, waiting for tree to go green)
[67552](https://github.com/flutter/flutter/pull/67552) [flutter_releases] Flutter 1.22.1 Framework Cherrypicks (cla: yes, engine, f: material design, framework, team, tool)
[67555](https://github.com/flutter/flutter/pull/67555) Turn timer_picker_test goldens back on (cla: yes, f: cupertino, framework, waiting for tree to go green, will affect goldens)
[67556](https://github.com/flutter/flutter/pull/67556) Migrate Material framework tests to null safety (cla: yes, f: material design, framework)
[67557](https://github.com/flutter/flutter/pull/67557) enable null_check_on_nullable_type_parameter and tighten_type_of_initializing_formals (cla: yes, f: material design, framework, waiting for tree to go green)
[67558](https://github.com/flutter/flutter/pull/67558) Some NNBD Test Conversion (cla: yes, f: material design, framework)
[67561](https://github.com/flutter/flutter/pull/67561) Revert "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team)
[67562](https://github.com/flutter/flutter/pull/67562) [Material] Time picker semantics updates (a: accessibility, cla: yes, f: material design, framework)
[67564](https://github.com/flutter/flutter/pull/67564) fail when chromedriver installation fails (cla: yes, waiting for tree to go green)
[67566](https://github.com/flutter/flutter/pull/67566) Revert "Wrap PopupMenu with SafeArea to respect status bar" (cla: yes, f: material design, framework)
[67570](https://github.com/flutter/flutter/pull/67570) Reland "[null-safety] reland: migrate app side flutter driver to null-safety" (a: accessibility, a: tests, cla: yes, framework, team, waiting for tree to go green)
[67572](https://github.com/flutter/flutter/pull/67572) Revert "[flutter_tools] remove all pub caching logic" (cla: yes, tool)
[67574](https://github.com/flutter/flutter/pull/67574) Implement documented behavior of WidgetsApp.builder (cla: yes, f: material design, framework, waiting for tree to go green)
[67576](https://github.com/flutter/flutter/pull/67576) Respect --enable-software-rendering flag on iOS simulators (cla: yes, tool, waiting for tree to go green)
[67578](https://github.com/flutter/flutter/pull/67578) Re-land 'Wrap PopupMenu with SafeArea to respect status bar' (cla: yes, f: material design, framework, waiting for tree to go green)
[67581](https://github.com/flutter/flutter/pull/67581) [flutter tools] Add a DelegatingLogger class (cla: yes, tool)
[67585](https://github.com/flutter/flutter/pull/67585) Add documentation talking about ScrollPhysics.applyTo(null) (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)
[67587](https://github.com/flutter/flutter/pull/67587) Roll Engine from 7e6191de077d to 2eac514f26a6 (14 revisions) (cla: yes, waiting for tree to go green)
[67589](https://github.com/flutter/flutter/pull/67589) [flutter_tools] Reland: simplify pub cache logic (cla: yes, tool)
[67591](https://github.com/flutter/flutter/pull/67591) Migrate more material tests (cla: yes, f: material design, framework, waiting for tree to go green)
[67592](https://github.com/flutter/flutter/pull/67592) Mark nonflaky tests as such (cla: yes, team)
[67594](https://github.com/flutter/flutter/pull/67594) Transport `e2e` based perforamnce test to `integration_test` and remove duplicate `watchPerformance` (cla: yes, team, waiting for tree to go green)
[67598](https://github.com/flutter/flutter/pull/67598) Build xcarchive command (cla: yes, platform-ios, t: xcode, team, tool)
[67629](https://github.com/flutter/flutter/pull/67629) enable lint cast_nullable_to_non_nullable (a: tests, cla: yes, f: cupertino, f: material design, framework)
[67652](https://github.com/flutter/flutter/pull/67652) Replace the flag emoji in the emoji caret test with a modifier sequence (cla: yes, framework, waiting for tree to go green)
[67654](https://github.com/flutter/flutter/pull/67654) [flutter_tools] always run build tests on presubmit (cla: yes, team)
[67656](https://github.com/flutter/flutter/pull/67656) Fix new analyzer rule failure (cla: yes, f: material design, framework)
[67668](https://github.com/flutter/flutter/pull/67668) fix the tree (cla: yes, f: material design, framework)
[67669](https://github.com/flutter/flutter/pull/67669) [flutter_tools] fold executable resolution into flutter (cla: yes, tool)
[67670](https://github.com/flutter/flutter/pull/67670) Replace MockUsage with Usage.test in build tests (cla: yes, team, tool)
[67672](https://github.com/flutter/flutter/pull/67672) make router assert more strict (cla: yes, framework, waiting for tree to go green)
[67674](https://github.com/flutter/flutter/pull/67674) Migrate more material tests to NNBD (cla: yes, f: material design, framework)
[67675](https://github.com/flutter/flutter/pull/67675) Fix nullability for some routing related stuff (cla: yes, framework)
[67679](https://github.com/flutter/flutter/pull/67679) Search bar dark mode contrast (cla: yes, f: material design, framework, waiting for tree to go green)
[67682](https://github.com/flutter/flutter/pull/67682) Final definite assignment (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[67683](https://github.com/flutter/flutter/pull/67683) make Router.of nullable (cla: yes, framework, waiting for tree to go green)
[67687](https://github.com/flutter/flutter/pull/67687) Revert "Flutter Driver - Create widget finders from serialized finders extensions" (a: tests, cla: yes, framework)
[67689](https://github.com/flutter/flutter/pull/67689) [NNBD] Migrating some Material tests (cla: yes, f: material design, framework, team, team: infra, waiting for tree to go green)
[67692](https://github.com/flutter/flutter/pull/67692) Migrate tests to null-safety (cla: yes, f: material design, framework, waiting for tree to go green)
[67693](https://github.com/flutter/flutter/pull/67693) Add web e2e to the flutter/flutter repo (cla: yes, team, waiting for tree to go green)
[67694](https://github.com/flutter/flutter/pull/67694) Fix nullability warnings in routes_test (cla: yes, framework)
[67696](https://github.com/flutter/flutter/pull/67696) NNDB TextField tests (cla: yes, f: material design, framework)
[67697](https://github.com/flutter/flutter/pull/67697) Purge persistent cache for perf test runs (cla: yes, team, waiting for tree to go green)
[67705](https://github.com/flutter/flutter/pull/67705) Roll Engine from 2eac514f26a6 to 349889833c6f (39 revisions) (cla: yes, waiting for tree to go green)
[67709](https://github.com/flutter/flutter/pull/67709) Roll Engine from 349889833c6f to 36769af31038 (1 revision) (cla: yes, waiting for tree to go green)
[67711](https://github.com/flutter/flutter/pull/67711) Reland "Flutter Driver - Create widget finders from serialized finders extensions" with null safety (a: tests, cla: yes, framework)
[67736](https://github.com/flutter/flutter/pull/67736) Fix text field label width on outline input border (cla: yes, f: material design, framework, waiting for tree to go green)
[67744](https://github.com/flutter/flutter/pull/67744) Bump meta to 1.3.0-nullsafety.4 (cla: yes, team, tool)
[67749](https://github.com/flutter/flutter/pull/67749) Enable build_gallery tests in try/prod builders (cla: yes, team, waiting for tree to go green)
[67751](https://github.com/flutter/flutter/pull/67751) Fix tree (cla: yes, f: material design, framework)
[67755](https://github.com/flutter/flutter/pull/67755) Remove uses of Dart VM bytecode mode (cla: yes, tool)
[67757](https://github.com/flutter/flutter/pull/67757) delete fast start unit test (cla: yes, team)
[67763](https://github.com/flutter/flutter/pull/67763) Revert "delete fast start unit test" (cla: yes, team)
[67765](https://github.com/flutter/flutter/pull/67765) Revert "Revert "delete fast start unit test"" (cla: yes, team)
[67766](https://github.com/flutter/flutter/pull/67766) [flutter_tools] remove train and inject-plugins command (cla: yes, team, tool)
[67767](https://github.com/flutter/flutter/pull/67767) Roll Engine from 36769af31038 to a1a89797b9c7 (5 revisions) (cla: yes, waiting for tree to go green)
[67769](https://github.com/flutter/flutter/pull/67769) Flutter driver patch: export finder factory (a: tests, cla: yes, framework)
[67770](https://github.com/flutter/flutter/pull/67770) Make CupertinoTabScaffold restorable (cla: yes, f: cupertino, framework, waiting for tree to go green)
[67773](https://github.com/flutter/flutter/pull/67773) Reland ensure visible fix for nested viewports (cla: yes, framework)
[67776](https://github.com/flutter/flutter/pull/67776) Migrate some widget tests to NNBD (cla: yes, framework, waiting for tree to go green)
[67777](https://github.com/flutter/flutter/pull/67777) Revert "Flutter driver patch: export finder factory" (a: tests, framework)
[67779](https://github.com/flutter/flutter/pull/67779) Patch: Flutter driver export finder factory (a: tests, cla: yes, framework)
[67780](https://github.com/flutter/flutter/pull/67780) add links missed in the first pr (cla: yes, team)
[67781](https://github.com/flutter/flutter/pull/67781) Build IPA command (cla: yes, platform-ios, t: xcode, tool)
[67782](https://github.com/flutter/flutter/pull/67782) Convert some widgets tests to NNBD (cla: yes, framework, waiting for tree to go green)
[67783](https://github.com/flutter/flutter/pull/67783) [flutter_tools] remove --with-driver-test (cla: yes, tool)
[67784](https://github.com/flutter/flutter/pull/67784) Roll Engine from a1a89797b9c7 to 5aed0ee7f6e8 (4 revisions) (cla: yes, waiting for tree to go green)
[67786](https://github.com/flutter/flutter/pull/67786) [flutter_tools] dont allow creating package name that is invalid (cla: yes, tool)
[67788](https://github.com/flutter/flutter/pull/67788) make the new e2e tests blocker (cla: yes, team)
[67790](https://github.com/flutter/flutter/pull/67790) Migrate more Material framework tests to null safety. (cla: yes, f: material design, framework)
[67793](https://github.com/flutter/flutter/pull/67793) Roll Engine from 5aed0ee7f6e8 to 11d756a62ed0 (2 revisions) (cla: yes, waiting for tree to go green)
[67799](https://github.com/flutter/flutter/pull/67799) Add test for TabBarView (cla: yes, framework)
[67801](https://github.com/flutter/flutter/pull/67801) [flutter_tool] prepend module name on Windows ps1 script (cla: yes)
[67811](https://github.com/flutter/flutter/pull/67811) Fix typos in the [BottomNavigationBar] document (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[67826](https://github.com/flutter/flutter/pull/67826) [flutter_tools] check asset files while the tool waits for the frontend_server compile (cla: yes, tool)
[67827](https://github.com/flutter/flutter/pull/67827) [flutter_tools] Make ApplicationPackageFactory inject dependencies for Android Builds (cla: yes, tool)
[67837](https://github.com/flutter/flutter/pull/67837) [flutter_tools] use fixed entry for dill uploads (cla: yes, tool)
[67839](https://github.com/flutter/flutter/pull/67839) [flutter_tools] verify checksum of downloaded artifacts (cla: yes, tool)
[67849](https://github.com/flutter/flutter/pull/67849) Migrate even more widget framework tests to null safety. (a: accessibility, cla: yes, framework)
[67860](https://github.com/flutter/flutter/pull/67860) [Improvement] Add prefix `Alignment.` for toString of Alignment (cla: yes, framework)
[67882](https://github.com/flutter/flutter/pull/67882) [flutter_tools] HACKTOBERFEST (cla: yes, tool)
[67883](https://github.com/flutter/flutter/pull/67883) [flutter_tools] validate that SkSL bundle path exists (cla: yes, tool)
[67884](https://github.com/flutter/flutter/pull/67884) [flutter_tools] document flutter root initialization (cla: yes, tool)
[67885](https://github.com/flutter/flutter/pull/67885) [gestures] make stylus pointer types use touch pan/drag slop (cla: yes, framework)
[67887](https://github.com/flutter/flutter/pull/67887) [NNBD] Migrate some Material tests to NNBD (cla: yes, f: material design, framework)
[67892](https://github.com/flutter/flutter/pull/67892) Fix TextField bug when the formatter repeatedly format (cla: yes, framework, waiting for tree to go green)
[67899](https://github.com/flutter/flutter/pull/67899) Avoid skipping variable initialization using case. (cla: yes, tool, waiting for tree to go green)
[67900](https://github.com/flutter/flutter/pull/67900) Expose date symbols and patterns for en_US in framework (a: internationalization, cla: yes, f: material design, framework, team)
[67913](https://github.com/flutter/flutter/pull/67913) Add test case for AndroidView clipBehavior (cla: yes, framework, waiting for tree to go green)
[67916](https://github.com/flutter/flutter/pull/67916) Flutter Driver: command extensions and extension feature cleanup (a: tests, cla: yes, framework, waiting for tree to go green)
[67919](https://github.com/flutter/flutter/pull/67919) [Material] Use primary color for selected rows and checkboxes in DataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[67926](https://github.com/flutter/flutter/pull/67926) Date Picker jumps back to initialDatePickerMode after day selection (cla: yes, f: material design, framework)
[67931](https://github.com/flutter/flutter/pull/67931) [flutter_tools] do not crash validator if intellij JAR file is missing (cla: yes, tool)
[67936](https://github.com/flutter/flutter/pull/67936) [flutter_tools] teach flutter drive to uninstall if install fails (cla: yes, tool)
[67938](https://github.com/flutter/flutter/pull/67938) [Material] Parent checkbox in DataTable should deselect all, if children checkboxes are disabled or selected (cla: yes, f: material design, framework, waiting for tree to go green)
[67939](https://github.com/flutter/flutter/pull/67939) Remove unused Gold methods (cla: yes, framework, team, waiting for tree to go green)
[67940](https://github.com/flutter/flutter/pull/67940) Fix NestedScrollView sample code (a: quality, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[67941](https://github.com/flutter/flutter/pull/67941) Migrate yet even more widget framework tests to null safety. (a: accessibility, cla: yes, framework)
[67946](https://github.com/flutter/flutter/pull/67946) Migrate Scaffold SnackBars in the framework to ScaffoldMessenger (a: tests, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[67947](https://github.com/flutter/flutter/pull/67947) Deprecate old SnackBar methods (cla: yes, f: material design, framework, severe: API break, severe: new feature, waiting for tree to go green)
[67952](https://github.com/flutter/flutter/pull/67952) Replace obsolete FlatButton reference in flutter_driver extension_test.dart (a: tests, cla: yes, framework)
[67954](https://github.com/flutter/flutter/pull/67954) Revert "[flutter_tools] fold executable resolution into flutter" (cla: yes, tool)
[67957](https://github.com/flutter/flutter/pull/67957) [flutter_tools] reland: fold process resolution logic into the flutter tool (cla: yes, tool)
[67959](https://github.com/flutter/flutter/pull/67959) [flutter_tools] do not measure progress timeout (cla: yes, tool)
[67968](https://github.com/flutter/flutter/pull/67968) Revert "[flutter_tools] reland: fold process resolution logic into the flutter tool" (cla: yes, tool)
[67969](https://github.com/flutter/flutter/pull/67969) Revert "Pass RouteSettings to the internal Route in showCupertinoModalPopup" (cla: yes, f: cupertino, framework)
[67970](https://github.com/flutter/flutter/pull/67970) Detect ARM macOS arch with sysctl hw.optional.arm64 (cla: yes, platform-ios, tool)
[67971](https://github.com/flutter/flutter/pull/67971) [flutter_tools] attempt to stabilize hot restart benchmark the old fashioned way (cla: yes, team, tool)
[67974](https://github.com/flutter/flutter/pull/67974) remove missing argument (cla: yes, team)
[67976](https://github.com/flutter/flutter/pull/67976) Move processUtils to globals (cla: yes, team, tool, waiting for tree to go green)
[67983](https://github.com/flutter/flutter/pull/67983) Roll Engine from 11d756a62ed0 to c2938d06b193 (27 revisions) (cla: yes, waiting for tree to go green)
[67987](https://github.com/flutter/flutter/pull/67987) Roll Engine from c2938d06b193 to 663440688996 (2 revisions) (cla: yes, waiting for tree to go green)
[67988](https://github.com/flutter/flutter/pull/67988) prevent pageView scrolling when calling ensureVisible (cla: yes, framework, waiting for tree to go green)
[67990](https://github.com/flutter/flutter/pull/67990) Fix for "Pass RouteSettings to the internal Route in showCupertinoModalPopup" (cla: yes, f: cupertino, framework)
[67992](https://github.com/flutter/flutter/pull/67992) [flutter_tools] support Android Studio 4.1 on Windows (cla: yes, tool)
[67995](https://github.com/flutter/flutter/pull/67995) Roll Engine from 663440688996 to 6cdb2f69a4ef (3 revisions) (cla: yes, waiting for tree to go green)
[68000](https://github.com/flutter/flutter/pull/68000) Provide a way to change the default PopupMenuButton's icon size (cla: yes, f: material design, framework, waiting for tree to go green)
[68001](https://github.com/flutter/flutter/pull/68001) Improve the document of pageView and ListView (cla: yes, framework, waiting for tree to go green)
[68019](https://github.com/flutter/flutter/pull/68019) Set slider semantics flag for sliders (a: tests, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68020](https://github.com/flutter/flutter/pull/68020) [flutter_tools] change the IntelliJ plugin detection logic. (cla: yes, tool)
[68025](https://github.com/flutter/flutter/pull/68025) Revert "More EditableText docs" (cla: yes, framework)
[68026](https://github.com/flutter/flutter/pull/68026) [flutter_tools] delete applicationPackageStore (cla: yes, tool)
[68032](https://github.com/flutter/flutter/pull/68032) [flutter_test] export fake from flutter_test (a: tests, cla: yes, framework)
[68034](https://github.com/flutter/flutter/pull/68034) [NNBD] Migrate some Widgets tests (a: tests, cla: yes, framework, team, waiting for tree to go green)
[68036](https://github.com/flutter/flutter/pull/68036) Revert "prevent pageView scrolling when calling ensureVisible" (cla: yes, framework)
[68037](https://github.com/flutter/flutter/pull/68037) Migrate more tests (cla: yes, framework)
[68038](https://github.com/flutter/flutter/pull/68038) Mark unusuallyLongTimeout as internal (a: tests, cla: yes, framework, waiting for tree to go green)
[68043](https://github.com/flutter/flutter/pull/68043) Reland "More EditableText docs (#66864)" (cla: yes, framework, waiting for tree to go green)
[68046](https://github.com/flutter/flutter/pull/68046) Detach debugger when VM connection fails on iOS (cla: yes, tool)
[68050](https://github.com/flutter/flutter/pull/68050) Run Xcode command lines tools in native ARM (cla: yes, platform-mac, tool)
[68060](https://github.com/flutter/flutter/pull/68060) [flutter_tool] support --use-application-binary in flutter drive (cla: yes, team, tool)
[68065](https://github.com/flutter/flutter/pull/68065) Improve performance of collectAllElements (a: tests, cla: yes, framework, perf: speed, severe: performance, t: flutter driver, team, waiting for tree to go green)
[68071](https://github.com/flutter/flutter/pull/68071) [flutter_tools] do not allow attaching in release mode (cla: yes, tool)
[68072](https://github.com/flutter/flutter/pull/68072) Roll Engine from 6cdb2f69a4ef to adf5b59485a9 (14 revisions) (cla: yes, waiting for tree to go green)
[68074](https://github.com/flutter/flutter/pull/68074) Added CupertinoSearchTextField (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68078](https://github.com/flutter/flutter/pull/68078) [flutter_tools] listen to the nice ios-deploy tool (cla: yes, tool)
[68086](https://github.com/flutter/flutter/pull/68086) Introduce `MaxLengthEnforcement` (cla: yes, f: cupertino, f: material design, framework)
[68088](https://github.com/flutter/flutter/pull/68088) [NNBD] More widget tests (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68102](https://github.com/flutter/flutter/pull/68102) [Flutter] Use the correct place for the system navigation bar color adjustment (cla: yes, framework, waiting for tree to go green)
[68107](https://github.com/flutter/flutter/pull/68107) [devicelab] delete disabled or not useful benchmarks (cla: yes, team)
[68109](https://github.com/flutter/flutter/pull/68109) [devicelab] mark ios catalina as flaky (cla: yes, team)
[68110](https://github.com/flutter/flutter/pull/68110) [devicelab] turn down android X migration gradle tests (cla: yes, team)
[68118](https://github.com/flutter/flutter/pull/68118) Revert "[flutter_tools] listen to the nice ios-deploy tool" (cla: yes, tool)
[68123](https://github.com/flutter/flutter/pull/68123) [MergeSemantics] added code snippet (cla: yes, framework, waiting for tree to go green)
[68124](https://github.com/flutter/flutter/pull/68124) Do not instantiate intermediate tabs during transition (cla: yes, f: material design, framework)
[68128](https://github.com/flutter/flutter/pull/68128) [flutter_tools] partial revert of start app change (cla: yes, tool)
[68129](https://github.com/flutter/flutter/pull/68129) Convert some more widget tests to NNBD (cla: yes, framework)
[68131](https://github.com/flutter/flutter/pull/68131) [flutter_tools] ensure android log reader works in flutter drive (cla: yes, tool)
[68132](https://github.com/flutter/flutter/pull/68132) Update package:stack_trace dependency to 1.10.0-nullsafety.4 (cla: yes, team, tool)
[68133](https://github.com/flutter/flutter/pull/68133) Migrate Switch tests to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[68135](https://github.com/flutter/flutter/pull/68135) [flutter_releases] Flutter 1.22.2 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[68136](https://github.com/flutter/flutter/pull/68136) Sync lints (cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68138](https://github.com/flutter/flutter/pull/68138) Roll Engine from adf5b59485a9 to 069b3cf8f093 (9 revisions) (cla: yes, waiting for tree to go green)
[68140](https://github.com/flutter/flutter/pull/68140) [flutter_tools] move gradle download failure handling into tool (cla: yes, team, tool)
[68141](https://github.com/flutter/flutter/pull/68141) [devicelab] move test from flaky (cla: yes, team)
[68145](https://github.com/flutter/flutter/pull/68145) Noninteractive iOS debugger session (cla: yes, tool)
[68148](https://github.com/flutter/flutter/pull/68148) Roll Engine from 069b3cf8f093 to ce75dda492e6 (3 revisions) (cla: yes, waiting for tree to go green)
[68150](https://github.com/flutter/flutter/pull/68150) Migrate some widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68151](https://github.com/flutter/flutter/pull/68151) Updated Builder API doc (cla: yes, framework, waiting for tree to go green)
[68156](https://github.com/flutter/flutter/pull/68156) [devicelab] allow the devicelab to take a screenshot if the iOS connection fails with FLUTTER_IOS_SCREENSHOT_ON_CONNECTION_FAILURE (cla: yes, team, tool)
[68157](https://github.com/flutter/flutter/pull/68157) [NNBD] Migrate some Widgets tests (a: null-safety, a: tests, cla: yes, framework, team, waiting for tree to go green)
[68158](https://github.com/flutter/flutter/pull/68158) revert engine to 11d756a62ed0ddf87a9ce20b219b55300ec6b67d (cla: yes, engine)
[68160](https://github.com/flutter/flutter/pull/68160) Convert some more widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68163](https://github.com/flutter/flutter/pull/68163) Migrate last batch of tests (cla: yes, framework, waiting for tree to go green)
[68165](https://github.com/flutter/flutter/pull/68165) Roll Engine from ce75dda492e6 to d2ea378be45d (3 revisions) (cla: yes, waiting for tree to go green)
[68166](https://github.com/flutter/flutter/pull/68166) Rerun text formatters in didUpdateWidget if needed (cla: yes, framework, waiting for tree to go green)
[68168](https://github.com/flutter/flutter/pull/68168) [flutter_releases] Flutter 1.23.0-18.1.pre Framework Cherrypicks (cla: yes, engine, tool)
[68171](https://github.com/flutter/flutter/pull/68171) Make TabBar indicator color automatic adjustment optional (cla: yes, f: material design, framework, waiting for tree to go green)
[68173](https://github.com/flutter/flutter/pull/68173) [NNBD] Migrate more widget tests to NNBD (a: accessibility, cla: yes, framework, waiting for tree to go green)
[68174](https://github.com/flutter/flutter/pull/68174) Roll Engine from d2ea378be45d to b22809b08434 (2 revisions) (cla: yes, waiting for tree to go green)
[68185](https://github.com/flutter/flutter/pull/68185) Draggable: onDragUpdate callback (cla: yes, framework, waiting for tree to go green)
[68199](https://github.com/flutter/flutter/pull/68199) Fix/issue 68182: Fix rounding issue in getMaxChildIndexForScrollOffset (cla: yes, f: scrolling, framework, waiting for tree to go green)
[68206](https://github.com/flutter/flutter/pull/68206) [gen_l10n] Create pubspec.yaml in ".dart_tool/flutter_gen" if it does not already exist (a: internationalization, cla: yes, tool)
[68207](https://github.com/flutter/flutter/pull/68207) Revert "Improve performance of collectAllElements" (a: tests, cla: yes, framework, team)
[68212](https://github.com/flutter/flutter/pull/68212) Revert "revert engine to 11d756a62ed0ddf87a9ce20b219b55300ec6b67d" (cla: yes, engine)
[68214](https://github.com/flutter/flutter/pull/68214) reland List queue search optimization (a: tests, cla: yes, framework, team)
[68218](https://github.com/flutter/flutter/pull/68218) [devicelab] track any leaked processes (cla: yes, team)
[68222](https://github.com/flutter/flutter/pull/68222) Revert "[flutter_tools] ensure android log reader works in flutter drive" (cla: yes, tool)
[68227](https://github.com/flutter/flutter/pull/68227) Selecting spaces (cla: yes, f: cupertino, f: material design, framework)
[68230](https://github.com/flutter/flutter/pull/68230) Use --device-timeout instead of deprecated --timeout in devicelab (cla: yes, team)
[68232](https://github.com/flutter/flutter/pull/68232) Migrated the Slider widget and tests to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[68237](https://github.com/flutter/flutter/pull/68237) Add useDeleteButtonTooltip property for Chip (cla: yes, f: material design, framework, waiting for tree to go green)
[68239](https://github.com/flutter/flutter/pull/68239) [devicelab] mark catalina not flaky and list iproxy processes before test (cla: yes, team)
[68241](https://github.com/flutter/flutter/pull/68241) Migrate missed tests (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[68243](https://github.com/flutter/flutter/pull/68243) [flutter_tools] update metadata detection to account for invalid yaml (cla: yes, tool)
[68245](https://github.com/flutter/flutter/pull/68245) Revert noninteractive lldb debugging, timeout warning (cla: yes, platform-ios, tool)
[68251](https://github.com/flutter/flutter/pull/68251) Roll Engine from b22809b08434 to 4494a8374249 (6 revisions) (cla: yes, waiting for tree to go green)
[68257](https://github.com/flutter/flutter/pull/68257) Roll Engine from 4494a8374249 to 21caa92309f4 (3 revisions) (cla: yes, waiting for tree to go green)
[68260](https://github.com/flutter/flutter/pull/68260) [flutter_tools] configure screenshot on failure for all tasks (cla: yes, team)
[68261](https://github.com/flutter/flutter/pull/68261) Fix screenshotting code (cla: yes, team)
[68262](https://github.com/flutter/flutter/pull/68262) Roll Engine from 21caa92309f4 to 1bc025d6cbf1 (6 revisions) (cla: yes, waiting for tree to go green)
[68277](https://github.com/flutter/flutter/pull/68277) fix the tree (cla: yes, tool)
[68280](https://github.com/flutter/flutter/pull/68280) Use multiroot scheme for initial compilation in ResidentRunner recompile (cla: yes, tool)
[68287](https://github.com/flutter/flutter/pull/68287) fix the tree (cla: yes, framework)
[68301](https://github.com/flutter/flutter/pull/68301) use_is_even_rather_than_modulo (a: accessibility, a: tests, cla: yes, f: material design, framework, team)
[68302](https://github.com/flutter/flutter/pull/68302) enable unnecessary_string_escapes and use_raw_strings (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[68307](https://github.com/flutter/flutter/pull/68307) Roll Engine from 1bc025d6cbf1 to 5355f270ba99 (5 revisions) (cla: yes, waiting for tree to go green)
[68309](https://github.com/flutter/flutter/pull/68309) [flutter_tools] drive uses correct application package for prebuilt (cla: yes, tool)
[68324](https://github.com/flutter/flutter/pull/68324) Refactor command utilities for tests (cla: yes, team)
[68325](https://github.com/flutter/flutter/pull/68325) Correctly handle centerSlice with resoultion-aware assets. (cla: yes, framework, waiting for tree to go green)
[68327](https://github.com/flutter/flutter/pull/68327) InteractiveViewer constrained docs (cla: yes, framework, waiting for tree to go green)
[68329](https://github.com/flutter/flutter/pull/68329) request.mainUri should be fileUri (cla: yes, tool)
[68333](https://github.com/flutter/flutter/pull/68333) [devicelab] Cocoon client (cla: yes, team, waiting for tree to go green)
[68334](https://github.com/flutter/flutter/pull/68334) [flutter_tools] retry the driver launch of the application up to 3 times. (cla: yes, tool)
[68357](https://github.com/flutter/flutter/pull/68357) Roll Engine from 5355f270ba99 to d03b759d049e (6 revisions) (cla: yes, waiting for tree to go green)
[68358](https://github.com/flutter/flutter/pull/68358) [SwitchListTile and CheckboxListTile] Adds selectedTileColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[68361](https://github.com/flutter/flutter/pull/68361) Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)
[68374](https://github.com/flutter/flutter/pull/68374) Fix links to GitHub bug template (a: internationalization, cla: yes, framework, waiting for tree to go green)
[68376](https://github.com/flutter/flutter/pull/68376) Generate only requested platform directories on create (cla: yes, tool)
[68402](https://github.com/flutter/flutter/pull/68402) Fix error cursor position for left and right arrow event after text selection (cla: yes, framework, waiting for tree to go green)
[68407](https://github.com/flutter/flutter/pull/68407) [devicelab] migrate defines test to DriverTest (cla: yes, team)
[68409](https://github.com/flutter/flutter/pull/68409) [flutter_tools] add --android-gradle-daemon option, use in devicelab (a: accessibility, cla: yes, team, tool)
[68410](https://github.com/flutter/flutter/pull/68410) [devicelab] split end to end tests into driver targets (cla: yes, team)
[68421](https://github.com/flutter/flutter/pull/68421) Add current version to the upgrade message of the Flutter tool (cla: yes, tool)
[68424](https://github.com/flutter/flutter/pull/68424) Roll Engine from d03b759d049e to 499a70f5e21b (25 revisions) (cla: yes, waiting for tree to go green)
[68437](https://github.com/flutter/flutter/pull/68437) Adjust constraints in templates (cla: yes, tool)
[68451](https://github.com/flutter/flutter/pull/68451) [flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (cla: yes, tool)
[68452](https://github.com/flutter/flutter/pull/68452) Disable header bar when not using GNOME Shell. (cla: yes, tool)
[68479](https://github.com/flutter/flutter/pull/68479) Revert "Roll Engine from d03b759d049e to 499a70f5e21b (25 revisions)" (cla: yes, engine)
[68487](https://github.com/flutter/flutter/pull/68487) [devicelab] update hostonly tests to use flutter directly or precache deps (cla: yes, team)
[68488](https://github.com/flutter/flutter/pull/68488) [flutter_tools] increase devFS sync timeout to 60 seconds (cla: yes, tool)
[68489](https://github.com/flutter/flutter/pull/68489) Revert "[flutter_tools] add --android-gradle-daemon option, use in devicelab" (a: accessibility, cla: yes, team, tool)
[68491](https://github.com/flutter/flutter/pull/68491) [flutter_tools] reland: --no-android-gradle-daemon in devicelab (a: accessibility, cla: yes, team, tool)
[68492](https://github.com/flutter/flutter/pull/68492) Respond to HTTP POST requests with 404 in WebAssetServer (cla: yes, tool, waiting for tree to go green)
[68494](https://github.com/flutter/flutter/pull/68494) InteractiveViewer minScale docs improvement (cla: yes, framework, waiting for tree to go green)
[68505](https://github.com/flutter/flutter/pull/68505) Updated one reference to FlatButton in real_tests/extension_test.dart (a: tests, cla: yes, framework)
[68508](https://github.com/flutter/flutter/pull/68508) Remove references to CupertinoDialog (cla: yes, f: cupertino, framework, waiting for tree to go green)
[68511](https://github.com/flutter/flutter/pull/68511) Mark e2e ios32 warmup test as nonflaky (cla: yes, team, waiting for tree to go green)
[68513](https://github.com/flutter/flutter/pull/68513) Fix grammar and writing style for some of the Router documentation (cla: yes, framework, waiting for tree to go green)
[68516](https://github.com/flutter/flutter/pull/68516) [devicelab] reduce iterations, uninstall at end, and use --application-binary in all startup tests (cla: yes, team)
[68518](https://github.com/flutter/flutter/pull/68518) [devicelab] remove twc enabled test and uncaught image test (cla: yes, team, waiting for tree to go green)
[68528](https://github.com/flutter/flutter/pull/68528) [devicelab] fix flutter gallery app name (cla: yes, team)
[68530](https://github.com/flutter/flutter/pull/68530) Revert "[devicelab] fix flutter gallery app name" (cla: yes, team)
[68531](https://github.com/flutter/flutter/pull/68531) Revert "[devicelab] reduce iterations, uninstall at end, and use --application-binary in all startup tests" (cla: yes, team)
[68532](https://github.com/flutter/flutter/pull/68532) [devicelab] reland: reduce iterations of startup test, use application binary (cla: yes, team)
[68533](https://github.com/flutter/flutter/pull/68533) [flutter_tools] make android deps no longer required for flutter doctor (cla: yes, tool, waiting for tree to go green)
[68535](https://github.com/flutter/flutter/pull/68535) Update Linux template app to pass through command line arguments to the Dart entrypoint (cla: yes, tool)
[68538](https://github.com/flutter/flutter/pull/68538) remove --machine flag (team)
[68539](https://github.com/flutter/flutter/pull/68539) [devicelab] remove commands test (cla: yes, team)
[68541](https://github.com/flutter/flutter/pull/68541) [devicelab] Upload git branch (cla: yes, team, waiting for tree to go green)
[68542](https://github.com/flutter/flutter/pull/68542) Add CocoaPods sudo installation note (cla: yes, platform-ios, tool, waiting for tree to go green)
[68546](https://github.com/flutter/flutter/pull/68546) Revert "Build iOS apps using Swift Packages" (cla: yes)
[68548](https://github.com/flutter/flutter/pull/68548) [devicelab] uninstall during memory test (cla: yes, team)
[68553](https://github.com/flutter/flutter/pull/68553) [gen-l10n] Fix untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)
[68554](https://github.com/flutter/flutter/pull/68554) Roll Engine from d03b759d049e to bcc557f1ba42 (34 revisions) (cla: yes, waiting for tree to go green)
[68557](https://github.com/flutter/flutter/pull/68557) Roll Engine from bcc557f1ba42 to ea2aea1c6102 (4 revisions) (cla: yes, waiting for tree to go green)
[68569](https://github.com/flutter/flutter/pull/68569) update packages (cla: yes, team)
[68587](https://github.com/flutter/flutter/pull/68587) Fix a multiple pointers bug (cla: yes, framework)
[68596](https://github.com/flutter/flutter/pull/68596) Add border side property to Chip, and resolve shape with border side with Material states (cla: yes, f: material design, framework, waiting for tree to go green)
[68611](https://github.com/flutter/flutter/pull/68611) add sdk constraints where missing to prepare for nnbd flag flip (cla: yes, team, waiting for tree to go green)
[68622](https://github.com/flutter/flutter/pull/68622) Revert "update packages" (cla: yes)
[68624](https://github.com/flutter/flutter/pull/68624) [flutter_tools] add some versions, cleanup (cla: yes, tool)
[68630](https://github.com/flutter/flutter/pull/68630) IME private command docs improvement (cla: yes, framework)
[68636](https://github.com/flutter/flutter/pull/68636) Mark the test as flaky again (cla: yes, team)
[68638](https://github.com/flutter/flutter/pull/68638) Handle setting TextEditingController text to null (cla: yes, f: material design, framework, waiting for tree to go green)
[68641](https://github.com/flutter/flutter/pull/68641) Updated dartdoc to 0.36.0 (cla: yes, team, waiting for tree to go green)
[68642](https://github.com/flutter/flutter/pull/68642) Sound null safety for framework and flutter_test (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68644](https://github.com/flutter/flutter/pull/68644) Fix overscroll edge case that puts NestedScrollViews out of sync (cla: yes, f: scrolling, framework, severe: regression, waiting for tree to go green)
[68645](https://github.com/flutter/flutter/pull/68645) Migrate flutter_localizations to null safety. (a: internationalization, cla: yes, f: cupertino, f: material design, framework, team)
[68646](https://github.com/flutter/flutter/pull/68646) Remove the defaults for textBaseline (cla: yes, framework, waiting for tree to go green)
[68650](https://github.com/flutter/flutter/pull/68650) [flutter_tools] remove iOS screenshot on failure functionality (cla: yes, tool)
[68651](https://github.com/flutter/flutter/pull/68651) Roll Engine from ea2aea1c6102 to ed53ff19e83f (22 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[68654](https://github.com/flutter/flutter/pull/68654) Driver vm service (a: tests, cla: yes, framework, t: flutter driver, team, waiting for tree to go green)
[68655](https://github.com/flutter/flutter/pull/68655) Clean up device logger and port forwarding on drive completion (cla: yes, tool)
[68656](https://github.com/flutter/flutter/pull/68656) Enable dev/bots/ build_tests for macOS (a: desktop, cla: yes, platform-mac, team)
[68657](https://github.com/flutter/flutter/pull/68657) Enable dev/bots/ build_tests for Windows (a: desktop, cla: yes, platform-windows, team)
[68658](https://github.com/flutter/flutter/pull/68658) Enable dev/bots/ build_tests for Linux (a: desktop, cla: yes, platform-linux, team)
[68661](https://github.com/flutter/flutter/pull/68661) Fix null safety error in inspector service extensions taking a variable number of args. (cla: yes, framework)
[68662](https://github.com/flutter/flutter/pull/68662) Add clipBehavior to BoxFit doc (cla: yes, framework, waiting for tree to go green)
[68666](https://github.com/flutter/flutter/pull/68666) Roll Engine from ed53ff19e83f to 8a5b42344581 (2 revisions) (cla: yes, waiting for tree to go green)
[68672](https://github.com/flutter/flutter/pull/68672) Revert "Fix text field label width on outline input border" (cla: yes, f: material design, framework, waiting for tree to go green)
[68676](https://github.com/flutter/flutter/pull/68676) Roll Engine from 8a5b42344581 to 6934f8aa311e (3 revisions) (cla: yes, waiting for tree to go green)
[68678](https://github.com/flutter/flutter/pull/68678) [flutter_tools] use --no-print-incremental-dependencies for non-resident and test compiles (cla: yes, tool)
[68681](https://github.com/flutter/flutter/pull/68681) Apply Desktop specs for Tooltip (cla: yes, f: material design, framework, waiting for tree to go green)
[68682](https://github.com/flutter/flutter/pull/68682) Roll Engine from 6934f8aa311e to c2c74ed7080a (2 revisions) (cla: yes, waiting for tree to go green)
[68694](https://github.com/flutter/flutter/pull/68694) Fix a widgetspan hittest bug (cla: yes, framework, waiting for tree to go green)
[68708](https://github.com/flutter/flutter/pull/68708) Refactor update_icons (cla: yes, team)
[68714](https://github.com/flutter/flutter/pull/68714) Revert "enable unnecessary_string_escapes and use_raw_strings" (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool)
[68721](https://github.com/flutter/flutter/pull/68721) Fix assert due to VSCode passing in an isolateId as well as the expected args to setPubRootDirectories. (cla: yes, framework)
[68722](https://github.com/flutter/flutter/pull/68722) Roll Engine from c2c74ed7080a to 27184748130a (2 revisions) (cla: yes, waiting for tree to go green)
[68723](https://github.com/flutter/flutter/pull/68723) [null-safety] try updating snippets for null safety (cla: yes, f: cupertino, f: material design, team)
[68726](https://github.com/flutter/flutter/pull/68726) Remove dartdoc checker exclusion for class and library files (cla: yes, team)
[68727](https://github.com/flutter/flutter/pull/68727) Fix floating behavior of long label and outline input border (cla: yes, f: material design, framework)
[68729](https://github.com/flutter/flutter/pull/68729) App.framework must support iOS 8 for older Flutter projects (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)
[68733](https://github.com/flutter/flutter/pull/68733) [null-safety] swap tool unit tests to dart test until tester supports null safety by default (cla: yes, team)
[68735](https://github.com/flutter/flutter/pull/68735) Improve backbuttondispatcher (cla: yes, framework)
[68736](https://github.com/flutter/flutter/pull/68736) Remove `nullOk` in `MediaQuery.of` (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68737](https://github.com/flutter/flutter/pull/68737) Add a missing include to the Linux plugin template (cla: yes, tool, waiting for tree to go green)
[68740](https://github.com/flutter/flutter/pull/68740) Roll Engine from 27184748130a to 1358f13c2f8e (1 revision) (cla: yes, waiting for tree to go green)
[68744](https://github.com/flutter/flutter/pull/68744) Migrate all of examples/layers to sound null safety (cla: yes, d: examples, team)
[68746](https://github.com/flutter/flutter/pull/68746) Roll Engine from 1358f13c2f8e to fc72bd2ada5d (1 revision) (cla: yes, waiting for tree to go green)
[68749](https://github.com/flutter/flutter/pull/68749) Roll Engine from fc72bd2ada5d to f459a8661001 (1 revision) (cla: yes, waiting for tree to go green)
[68751](https://github.com/flutter/flutter/pull/68751) router.dart: fix grammer mistake (cla: yes, d: api docs, framework, waiting for tree to go green)
[68756](https://github.com/flutter/flutter/pull/68756) [flutter_tools] remove fallback discovery and observatory timeout (cla: yes, tool)
[68774](https://github.com/flutter/flutter/pull/68774) [gen_l10n] Make resource attributes optional for simple cases (a: internationalization, cla: yes, tool)
[68775](https://github.com/flutter/flutter/pull/68775) change TextEditingController.clear() behavior (cla: yes, framework)
[68789](https://github.com/flutter/flutter/pull/68789) Roll engine to defa8be2b10650dad50dfee9324ed8d16eeec13f (cla: yes, engine)
[68790](https://github.com/flutter/flutter/pull/68790) [devicelab] de-flake iOS launch (cla: yes, tool)
[68791](https://github.com/flutter/flutter/pull/68791) Update to dartdoc 0.36.1 (cla: yes, team, waiting for tree to go green)
[68793](https://github.com/flutter/flutter/pull/68793) Move service extension to correct binding so images are repainted after enabling/disabling, update test (cla: yes, framework)
[68794](https://github.com/flutter/flutter/pull/68794) Add bottom to search bar (cla: yes, f: material design, framework, team)
[68804](https://github.com/flutter/flutter/pull/68804) fix simple dialog introducing additional node for semantics label (cla: yes, f: material design, framework)
[68807](https://github.com/flutter/flutter/pull/68807) Make Material/CupertinoLocalizations non-nullable (cla: yes, f: cupertino, f: material design, framework)
[68812](https://github.com/flutter/flutter/pull/68812) Handle backspace in text fields (cla: yes, framework)
[68814](https://github.com/flutter/flutter/pull/68814) Ignore "unused" analysis for dart:ui imports for web-only API. (cla: yes, framework, platform-web, waiting for tree to go green)
[68817](https://github.com/flutter/flutter/pull/68817) Turn off CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER in CocoaPod targets (cla: yes, tool, waiting for tree to go green)
[68822](https://github.com/flutter/flutter/pull/68822) [Doc Fixit 2020] Move dashboard documentation to flutter/cocoon (cla: yes, team, team: infra, waiting for tree to go green)
[68826](https://github.com/flutter/flutter/pull/68826) Better error message when export options plist does not a fix (cla: yes, tool)
[68831](https://github.com/flutter/flutter/pull/68831) [Material] Add support for customizing active + disabled state color for selection controls. (cla: yes, f: material design, framework)
[68841](https://github.com/flutter/flutter/pull/68841) Revert "Fix a multiple pointers bug" (cla: yes, framework)
[68844](https://github.com/flutter/flutter/pull/68844) Stop debugger when iOS app crashes (cla: yes, tool, waiting for tree to go green)
[68845](https://github.com/flutter/flutter/pull/68845) Revert "[flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web" (cla: yes, tool)
[68848](https://github.com/flutter/flutter/pull/68848) Support --web-renderer options which would allow user to specify which rendering backend to use. (cla: yes, tool, waiting for tree to go green)
[68854](https://github.com/flutter/flutter/pull/68854) [flutter_tools] Support zipped application bundles for macOS (cla: yes, tool)
[68855](https://github.com/flutter/flutter/pull/68855) Apple silicon arch -arm64 to -arm64e (cla: yes, platform-ios, platform-mac, t: xcode, tool, waiting for tree to go green)
[68866](https://github.com/flutter/flutter/pull/68866) [flutter_tools] Add --verify-only flag to flutter upgrade (cla: yes, tool)
[68883](https://github.com/flutter/flutter/pull/68883) Fix a typo: "Its weight" instead of "It's weight" (cla: yes, f: material design, framework, waiting for tree to go green)
[68887](https://github.com/flutter/flutter/pull/68887) [flutter_tools] reland: drive service (cla: yes, tool)
[68894](https://github.com/flutter/flutter/pull/68894) retry getting the main isolate (a: tests, cla: yes, framework)
[68895](https://github.com/flutter/flutter/pull/68895) [devicelab] mark web twc as flaky (cla: yes, team)
[68897](https://github.com/flutter/flutter/pull/68897) Roll Engine from defa8be2b106 to 0b26570e933f (21 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[68898](https://github.com/flutter/flutter/pull/68898) [flutter_tools] null safety mode is used for dill naming (cla: yes, tool, waiting for tree to go green)
[68900](https://github.com/flutter/flutter/pull/68900) [devicelab] never run pub (cla: yes, team)
[68905](https://github.com/flutter/flutter/pull/68905) Remove `nullOk` parameter from Cupertino color resolution APIs (cla: yes, d: examples, f: cupertino, f: material design, framework, team)
[68906](https://github.com/flutter/flutter/pull/68906) [devicelab] mark uncaught exceptions as flaky (cla: yes, team)
[68908](https://github.com/flutter/flutter/pull/68908) Remove nullOk from Scaffold.of and ScaffoldMessenger.of, create maybeOf for both (cla: yes, f: material design, framework, waiting for tree to go green)
[68910](https://github.com/flutter/flutter/pull/68910) Remove nullOk parameter from Router.of and make it return a non-nullable value (cla: yes, framework, waiting for tree to go green)
[68911](https://github.com/flutter/flutter/pull/68911) Add maybeLocaleOf to Localizations (cla: yes, framework, waiting for tree to go green)
[68913](https://github.com/flutter/flutter/pull/68913) Delay Route disposal until OverlayEntries are unmounted (cla: yes, f: cupertino, framework)
[68917](https://github.com/flutter/flutter/pull/68917) Remove nullOk parameter from Focus.of, FocusTraversalOrder.of, and FocusTraversalGroup.of (cla: yes, f: material design, framework)
[68918](https://github.com/flutter/flutter/pull/68918) Adaptive TextField (cla: yes, f: material design, framework, waiting for tree to go green)
[68920](https://github.com/flutter/flutter/pull/68920) Revert "change TextEditingController.clear() behavior" (cla: yes, framework)
[68921](https://github.com/flutter/flutter/pull/68921) Remove nullOk parameter from Shortcuts.of, Actions.find, and Actions.handler (cla: yes, framework)
[68922](https://github.com/flutter/flutter/pull/68922) Make Theme.of non-nullable (cla: yes, f: material design, framework, waiting for tree to go green)
[68923](https://github.com/flutter/flutter/pull/68923) Fix crash if update pages right after a navigator pop (cla: yes, framework)
[68925](https://github.com/flutter/flutter/pull/68925) Remove nullOk parameter from AnimatedList.of and SliverAnimatedList.of (cla: yes, framework, waiting for tree to go green)
[68927](https://github.com/flutter/flutter/pull/68927) Roll Engine from 0b26570e933f to 38d75c9e77e2 (6 revisions) (cla: yes, waiting for tree to go green)
[68931](https://github.com/flutter/flutter/pull/68931) Send command line arguments through to the Flutter Engine on Windows (cla: yes, tool, waiting for tree to go green)
[68942](https://github.com/flutter/flutter/pull/68942) Roll Engine from 38d75c9e77e2 to 432974a52b06 (5 revisions) (cla: yes, waiting for tree to go green)
[68951](https://github.com/flutter/flutter/pull/68951) Roll Engine from 432974a52b06 to a3cdaf49b191 (2 revisions) (cla: yes, waiting for tree to go green)
[68963](https://github.com/flutter/flutter/pull/68963) Roll Engine from a3cdaf49b191 to 2640541dc00f (4 revisions) (cla: yes, waiting for tree to go green)
[68968](https://github.com/flutter/flutter/pull/68968) Fix typo in form.dart (cla: yes, d: api docs, framework, waiting for tree to go green)
[68978](https://github.com/flutter/flutter/pull/68978) [flutter_tools] eagerly set asset directory path, cache flutter views, simplify error handling (cla: yes, tool)
[68979](https://github.com/flutter/flutter/pull/68979) Roll Engine from 2640541dc00f to 95ec45499386 (3 revisions) (cla: yes, waiting for tree to go green)
[68981](https://github.com/flutter/flutter/pull/68981) Error on FocusTraversalGroup or Focus docs (cla: yes, framework)
[68982](https://github.com/flutter/flutter/pull/68982) Roll Engine from 95ec45499386 to 02eda8f1fdae (1 revision) (cla: yes, waiting for tree to go green)
[68987](https://github.com/flutter/flutter/pull/68987) Added none property in a DismissDirection (cla: yes, f: material design, framework, team, waiting for tree to go green)
[68998](https://github.com/flutter/flutter/pull/68998) Roll Engine from 02eda8f1fdae to d4a3c9c471d1 (2 revisions) (cla: yes, waiting for tree to go green)
[69000](https://github.com/flutter/flutter/pull/69000) [flutter_tools] implement safe file copy with multiple fallbacks (cla: yes, tool)
[69002](https://github.com/flutter/flutter/pull/69002) Roll Engine from d4a3c9c471d1 to e2c375084d08 (1 revision) (cla: yes, waiting for tree to go green)
[69005](https://github.com/flutter/flutter/pull/69005) Fix null issue with dynamically updating from zero tabs for TabBar (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[69016](https://github.com/flutter/flutter/pull/69016) [gen_l10n] Add base method code comments for improved discoverability (a: internationalization, cla: yes, tool, waiting for tree to go green)
[69025](https://github.com/flutter/flutter/pull/69025) Reland: enable unnecessary_string_escapes and use_raw_strings (#68302) (a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)
[69027](https://github.com/flutter/flutter/pull/69027) Roll Engine from e2c375084d08 to 42b3b0af6340 (5 revisions) (cla: yes, waiting for tree to go green)
[69032](https://github.com/flutter/flutter/pull/69032) Roll Engine from 42b3b0af6340 to 1857470267f1 (1 revision) (cla: yes, waiting for tree to go green)
[69033](https://github.com/flutter/flutter/pull/69033) [flutter_tools] update test platform to use buildInfo instead of mode + additional params (cla: yes, tool)
[69041](https://github.com/flutter/flutter/pull/69041) Update null safe deps to prepare for the 2.12 sdk version (cla: yes, team, tool, waiting for tree to go green)
[69043](https://github.com/flutter/flutter/pull/69043) [null-safety] add language version to freeform template (cla: yes, team)
[69046](https://github.com/flutter/flutter/pull/69046) Print errors in all build modes (cla: yes, framework, team, waiting for tree to go green)
[69047](https://github.com/flutter/flutter/pull/69047) [flutter_tools] do not include AS validator if android is not enabled (cla: yes)
[69048](https://github.com/flutter/flutter/pull/69048) Migrate Flutter gallery test to null safety (cla: yes, f: cupertino, f: material design, team)
[69050](https://github.com/flutter/flutter/pull/69050) InheritedTheme updates (cla: yes, f: material design, framework, waiting for tree to go green)
[69055](https://github.com/flutter/flutter/pull/69055) Make WidgetsLocalizations.of non-nullable (cla: yes, framework)
[69059](https://github.com/flutter/flutter/pull/69059) [flutter_tools] add package_config.json to analyze_once_test.dart (cla: yes, tool)
[69060](https://github.com/flutter/flutter/pull/69060) Make Directionality.of non-null (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69062](https://github.com/flutter/flutter/pull/69062) Remove duplicate setState in TextFormFieldState.reset (cla: yes, f: material design, framework)
[69063](https://github.com/flutter/flutter/pull/69063) Add horizontal gesture support for CupertinoScrollbar (a: desktop, a: quality, cla: yes, f: cupertino, f: scrolling, framework, waiting for tree to go green)
[69067](https://github.com/flutter/flutter/pull/69067) [flutter_tools] update to vm_service 5.2.0, update to dwds 7.0.0 (cla: yes, team, tool)
[69074](https://github.com/flutter/flutter/pull/69074) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69077](https://github.com/flutter/flutter/pull/69077) Reland "Driver vm service"" (a: tests, cla: yes, framework, team)
[69085](https://github.com/flutter/flutter/pull/69085) Roll Engine from 1857470267f1 to 64e659991025 (11 revisions) (cla: yes, waiting for tree to go green)
[69088](https://github.com/flutter/flutter/pull/69088) added enableFeedback property to ListTile (cla: yes, f: material design, framework)
[69089](https://github.com/flutter/flutter/pull/69089) Revert "Driver vm service" (a: tests, cla: yes, framework, team)
[69096](https://github.com/flutter/flutter/pull/69096) Improve resampling of up and remove events. (cla: yes, framework)
[69101](https://github.com/flutter/flutter/pull/69101) Mouse drag should not show selection handles (cla: yes, framework)
[69107](https://github.com/flutter/flutter/pull/69107) remove unnecessary null aware operator (cla: yes, f: cupertino, framework)
[69114](https://github.com/flutter/flutter/pull/69114) [flutter_tools] enable web integration tests (cla: yes, tool)
[69115](https://github.com/flutter/flutter/pull/69115) [flutter_tools] handle windows holding file lock in web build directory (cla: yes, tool)
[69117](https://github.com/flutter/flutter/pull/69117) Add Directionality.maybeOf (cla: yes, framework, waiting for tree to go green)
[69119](https://github.com/flutter/flutter/pull/69119) Adaptive icons (cla: yes, f: material design, framework, team)
[69121](https://github.com/flutter/flutter/pull/69121) [flutter_tools] fix test expectation in resident_runner.dart (cla: yes, tool)
[69122](https://github.com/flutter/flutter/pull/69122) [null-safety] fix the snippets (cla: yes, team, waiting for tree to go green)
[69126](https://github.com/flutter/flutter/pull/69126) reland driver vm_service migration (a: tests, cla: yes, framework, team, tool)
[69143](https://github.com/flutter/flutter/pull/69143) Adaptive progress indicator (cla: yes, f: material design, framework, waiting for tree to go green)
[69148](https://github.com/flutter/flutter/pull/69148) allow 2.12 prerelease sdks in flutter_goldens[_client] (cla: yes, team, waiting for tree to go green)
[69155](https://github.com/flutter/flutter/pull/69155) Remove intl_translation dependency from gen_l10n integration test (a: internationalization, cla: yes, tool)
[69156](https://github.com/flutter/flutter/pull/69156) Reland "change TextEditingController.clear() behavior"" (cla: yes, framework)
[69160](https://github.com/flutter/flutter/pull/69160) Use runZonedGuarded() instead of deprecated onError. (cla: yes, f: cupertino, framework, tool)
[69164](https://github.com/flutter/flutter/pull/69164) Replaced null check with `hasContentDimensions` in NestedScrollView (cla: yes, framework, waiting for tree to go green)
[69194](https://github.com/flutter/flutter/pull/69194) Include VS Code + Android Studio URLs in the No IDE message (cla: yes, t: flutter doctor, tool, waiting for tree to go green)
[69197](https://github.com/flutter/flutter/pull/69197) [Material] Add splash radius property to selection controls (cla: yes, f: material design, framework, waiting for tree to go green)
[69210](https://github.com/flutter/flutter/pull/69210) mark test packages `publish_to: none` (cla: yes, team)
[69211](https://github.com/flutter/flutter/pull/69211) Fix dropdown crash (cla: yes, f: material design, framework)
[69219](https://github.com/flutter/flutter/pull/69219) Fix crash when a MultiFrameImageStreamCompleter is disposed during frame decoding (cla: yes, framework, waiting for tree to go green)
[69220](https://github.com/flutter/flutter/pull/69220) [flutter_tools] use throwToolExit (cla: yes, tool)
[69223](https://github.com/flutter/flutter/pull/69223) opt out the listener.dart generated file (cla: yes, tool, waiting for tree to go green)
[69226](https://github.com/flutter/flutter/pull/69226) [flutter_tools] measure driver success and failure (a: tests, cla: yes, framework, team)
[69228](https://github.com/flutter/flutter/pull/69228) [devicelab] mark routing test as flaky (cla: yes, team)
[69230](https://github.com/flutter/flutter/pull/69230) Allow adding/removing onTap/onDismiss to Semantics (a: accessibility, cla: yes, framework, waiting for tree to go green)
[69231](https://github.com/flutter/flutter/pull/69231) Roll Engine from 64e659991025 to 073263e39d1d (1 revision) (cla: yes, waiting for tree to go green)
[69234](https://github.com/flutter/flutter/pull/69234) [flutter_releases] Flutter 1.22.3 framework cherrypicks (a: tests, cla: yes, engine, f: cupertino, f: material design, framework, team, tool)
[69237](https://github.com/flutter/flutter/pull/69237) [flutter_tools] fix --use-existing-app for flutter drive (cla: yes, team, tool)
[69241](https://github.com/flutter/flutter/pull/69241) Revert "Updated SearchDelegate to follow custom InputDecorationTheme (#55209)" (cla: yes, f: material design, framework, waiting for tree to go green)
[69244](https://github.com/flutter/flutter/pull/69244) [flutter_tools] support ws scheme in use-existing-app (cla: yes, tool)
[69245](https://github.com/flutter/flutter/pull/69245) Show macOS arm64 architecture in doctor and devices list (cla: yes, platform-mac, tool, waiting for tree to go green)
[69246](https://github.com/flutter/flutter/pull/69246) [flutter_tools] conditionally invoke pub run test for drive scripts based on presence of dependency (cla: yes, tool)
[69251](https://github.com/flutter/flutter/pull/69251) AppBar draws its defaults from theme.colorScheme (cla: yes, f: material design, framework)
[69253](https://github.com/flutter/flutter/pull/69253) make stack frame parser handle missing class info (cla: yes, framework, waiting for tree to go green)
[69255](https://github.com/flutter/flutter/pull/69255) Make the launch background drawable compatible with older Android API levels (cla: yes, tool, waiting for tree to go green)
[69260](https://github.com/flutter/flutter/pull/69260) Increase device run perf test timeout (cla: yes, team)
[69261](https://github.com/flutter/flutter/pull/69261) Revert "[flutter_tools] enable web integration tests" (cla: yes, tool)
[69264](https://github.com/flutter/flutter/pull/69264) [flutter_tools] Reland: Stage web tests (cla: yes, tool)
[69266](https://github.com/flutter/flutter/pull/69266) Decrease device discovery timeout from 10 to 5 seconds (cla: yes, team)
[69268](https://github.com/flutter/flutter/pull/69268) [devicelab] do not fail test if CPU measurement is not recorded (cla: yes, team)
[69272](https://github.com/flutter/flutter/pull/69272) [devicelab] retry startup of start up test (cla: yes, team)
[69273](https://github.com/flutter/flutter/pull/69273) [devicelab] work around occasional null values for devtools (cla: yes, team)
[69307](https://github.com/flutter/flutter/pull/69307) [framework] increase threshold for compute to 50Kb (cla: yes, framework)
[69312](https://github.com/flutter/flutter/pull/69312) Update FAB elevation to match spec (cla: yes, f: material design, framework)
[69316](https://github.com/flutter/flutter/pull/69316) [flutter_tools] allow default driver log to fail due to IO error (a: tests, cla: yes, framework)
[69319](https://github.com/flutter/flutter/pull/69319) Fix issue with --web-renderer. (cla: yes, tool, waiting for tree to go green)
[69328](https://github.com/flutter/flutter/pull/69328) Reland: Fix a multiple pointers bug (cla: yes, framework)
[69338](https://github.com/flutter/flutter/pull/69338) Mark flutter_gallery_sksl_warmup__transition_perf_e2e_ios32 as unflaky (cla: yes, team)
[69339](https://github.com/flutter/flutter/pull/69339) Do not fail if average_memory_usage is not recorded (cla: yes, team, team: flakes)
[69340](https://github.com/flutter/flutter/pull/69340) [flutter_tools] disable failing gen l10n test (cla: yes, tool)
[69346](https://github.com/flutter/flutter/pull/69346) Adaptive constructor / TextInputAction docs fix (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69350](https://github.com/flutter/flutter/pull/69350) enable web_long_running_tests shard (cla: yes, team)
[69351](https://github.com/flutter/flutter/pull/69351) [flutter_tools] retry sever socket setup (and port selection if port is unspecified) (cla: yes, tool)
[69353](https://github.com/flutter/flutter/pull/69353) Roll Engine from 073263e39d1d to 99cc50dfffab (35 revisions) (cla: yes)
[69364](https://github.com/flutter/flutter/pull/69364) Fix: fix android studio 4.1 plugin path for macOS (cla: yes, tool, waiting for tree to go green)
[69382](https://github.com/flutter/flutter/pull/69382) [gen_l10n] Fix unintended use of raw string in generateString (a: internationalization, cla: yes, severe: regression, team, tool)
[69383](https://github.com/flutter/flutter/pull/69383) Fix the PopupMenuButton offset bug (a: quality, cla: yes, f: material design, framework, waiting for tree to go green)
[69399](https://github.com/flutter/flutter/pull/69399) [RadioListTile] Adds shape, tileColor and selectedTileColor to RadioListTile (cla: yes, f: material design, framework, waiting for tree to go green)
[69404](https://github.com/flutter/flutter/pull/69404) Added padding property in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green)
[69405](https://github.com/flutter/flutter/pull/69405) [null-safety] update tests and tool auto-detection for null safe dart (a: accessibility, cla: yes, engine, team, tool, waiting for tree to go green)
[69418](https://github.com/flutter/flutter/pull/69418) Roll Engine from 99cc50dfffab to 8d3d953192aa (cla: yes, engine)
[69419](https://github.com/flutter/flutter/pull/69419) AutocompleteCore => RawAutocomplete (cla: yes, framework)
[69420](https://github.com/flutter/flutter/pull/69420) [flutter_tools] Make flutter upgrade --verify-only display framework version differences instead of commit hashes (cla: yes, tool, waiting for tree to go green)
[69422](https://github.com/flutter/flutter/pull/69422) [a11y] do not attach onTap semantics if no onTap handler is provided to InkWell (cla: yes, f: material design, framework)
[69426](https://github.com/flutter/flutter/pull/69426) Fix build (cla: yes, framework)
[69427](https://github.com/flutter/flutter/pull/69427) Update readme with link to breaking changes page of website. (cla: yes, waiting for tree to go green)
[69428](https://github.com/flutter/flutter/pull/69428) Material Text Selection Toolbar improvements (a: text input, cla: yes, f: material design, framework)
[69430](https://github.com/flutter/flutter/pull/69430) disable web_long_running_tests due to flakiness (cla: yes, team)
[69432](https://github.com/flutter/flutter/pull/69432) Disable test that times-out on CI (cla: yes, team)
[69440](https://github.com/flutter/flutter/pull/69440) [null-safety] enable null safety (cla: yes, engine)
[69443](https://github.com/flutter/flutter/pull/69443) start and stop chromedriver once per sub-shard; do not wait for it to quit (cla: yes, team, waiting for tree to go green)
[69445](https://github.com/flutter/flutter/pull/69445) Standardize dartdoc macro names (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[69447](https://github.com/flutter/flutter/pull/69447) [devicelab] reboot attached devices after 30 test runs (cla: yes, team)
[69450](https://github.com/flutter/flutter/pull/69450) [flutter_tools] do not reload sources if no sources changed (cla: yes, tool)
[69451](https://github.com/flutter/flutter/pull/69451) Fix spelling errors (a: tests, cla: yes, f: cupertino, f: material design, framework, team)
[69457](https://github.com/flutter/flutter/pull/69457) Enable customization of TabBar's InkWell (cla: yes, f: material design, framework, waiting for tree to go green)
[69498](https://github.com/flutter/flutter/pull/69498) AdoptAWidget - Progress indicator (adopt a widget, cla: yes, f: material design, framework)
[69503](https://github.com/flutter/flutter/pull/69503) AdoptAWidget: FittedBox (adopt a widget, cla: yes, d: api docs, framework, waiting for tree to go green)
[69505](https://github.com/flutter/flutter/pull/69505) [flutter_tools] remove all globals from cache and cache_test (cla: yes, tool)
[69507](https://github.com/flutter/flutter/pull/69507) Add stackTrace to AsyncSnapshot (cla: yes, framework, waiting for tree to go green)
[69509](https://github.com/flutter/flutter/pull/69509) AdoptAWidget: aspectRatio (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69513](https://github.com/flutter/flutter/pull/69513) AnimatedPositioned (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69518](https://github.com/flutter/flutter/pull/69518) AdoptAWidget: Tooltip (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69521](https://github.com/flutter/flutter/pull/69521) AdoptAWidget: AbsorbPointer (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69524](https://github.com/flutter/flutter/pull/69524) AdoptAWidget: NotificationListener (adopt a widget, cla: yes, framework)
[69527](https://github.com/flutter/flutter/pull/69527) Update Draggable API Docs (cla: yes, framework, waiting for tree to go green)
[69530](https://github.com/flutter/flutter/pull/69530) AdoptAWidget: MaterialBanner (adopt a widget, cla: yes, f: material design, framework, waiting for tree to go green)
[69532](https://github.com/flutter/flutter/pull/69532) Add Scaffold to Tooltip code samples (cla: yes, f: material design, framework, waiting for tree to go green)
[69534](https://github.com/flutter/flutter/pull/69534) TextField's hintText should support TextDirection. (cla: yes, f: material design, framework)
[69535](https://github.com/flutter/flutter/pull/69535) AdoptAWidget: Dismissible (adopt a widget, cla: yes, framework, waiting for tree to go green)
[69539](https://github.com/flutter/flutter/pull/69539) AdoptAWidget: PreferredSizeWidget (cla: yes, framework)
[69547](https://github.com/flutter/flutter/pull/69547) [flutter_tools] remove unused or no longer useful code (cla: yes, tool, waiting for tree to go green)
[69548](https://github.com/flutter/flutter/pull/69548) [flutter_tools] remove globals from android_workflow (cla: yes, tool)
[69549](https://github.com/flutter/flutter/pull/69549) [flutter_tool] initialize flutter root in executable (cla: yes, team, tool)
[69550](https://github.com/flutter/flutter/pull/69550) [flutter_tools] add canvaskit hot reload integration test (cla: yes, tool)
[69555](https://github.com/flutter/flutter/pull/69555) AdoptAWidget: SnackBar (cla: yes, f: material design, framework, waiting for tree to go green)
[69557](https://github.com/flutter/flutter/pull/69557) AdoptAWidget: SliverWithKeepAliveWidget (#69470) (cla: yes, framework, waiting for tree to go green)
[69563](https://github.com/flutter/flutter/pull/69563) AdoptAWidget: WillPopScope (adopt a widget, cla: yes, framework)
[69567](https://github.com/flutter/flutter/pull/69567) Offstage Docs Sample (cla: yes, framework)
[69568](https://github.com/flutter/flutter/pull/69568) AdoptAWidget: Shortcut (cla: yes, framework)
[69575](https://github.com/flutter/flutter/pull/69575) [ExpansionTile] adds collapsedBackgroundColor property (cla: yes, f: material design, framework, waiting for tree to go green)
[69576](https://github.com/flutter/flutter/pull/69576) Correct GtkKeyHelper key codes for the Meta key (cla: yes, framework, waiting for tree to go green)
[69588](https://github.com/flutter/flutter/pull/69588) AdoptAWidget: Table (#69488) (cla: yes, framework)
[69591](https://github.com/flutter/flutter/pull/69591) Remove the flaky flag from post-bdf benchmark (cla: yes, team, waiting for tree to go green)
[69592](https://github.com/flutter/flutter/pull/69592) [flutter_tools] support --extra-gen-snapshot-options everywhere --extra-front-end-options is specified (cla: yes, tool)
[69594](https://github.com/flutter/flutter/pull/69594) Fix textfield messing with user-supplied input formatter list (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[69596](https://github.com/flutter/flutter/pull/69596) Updated the button.icon factory constructors for NNBD (cla: yes, f: material design, framework)
[69607](https://github.com/flutter/flutter/pull/69607) Add a --dart-entrypoint-args flag to flutter run to pass through Dart entrypoint arguments on Flutter Desktop (cla: yes, tool, waiting for tree to go green)
[69610](https://github.com/flutter/flutter/pull/69610) Make header optional in PaginatedDataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[69612](https://github.com/flutter/flutter/pull/69612) Build App.framework directly to build directory (cla: yes, t: xcode, tool, waiting for tree to go green)
[69614](https://github.com/flutter/flutter/pull/69614) Remove usage of --enable-experiment to analysis server (cla: yes, engine, framework, tool)
[69617](https://github.com/flutter/flutter/pull/69617) Remove references to `Window`, and switch usages to `PlatformDispatcher` or `SingletonFlutterWindow` (a: accessibility, a: tests, cla: yes, f: material design, framework, team, tool)
[69620](https://github.com/flutter/flutter/pull/69620) Remove deprecated methods from BuildContext (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[69622](https://github.com/flutter/flutter/pull/69622) Move package:integration_test to flutter/flutter (cla: yes, team, tool)
[69624](https://github.com/flutter/flutter/pull/69624) Say [APP] instead of [Gallery] in web benchmarks (cla: yes, team, waiting for tree to go green)
[69629](https://github.com/flutter/flutter/pull/69629) Initial migration of metrics_center (cla: yes, severe: performance, team, team: infra)
[69630](https://github.com/flutter/flutter/pull/69630) Update plugins dependencies for the Gallery test (a: null-safety, a: tests, cla: yes, team, tool)
[69631](https://github.com/flutter/flutter/pull/69631) Revert TextField.adaptive (cla: yes, f: material design, framework)
[69633](https://github.com/flutter/flutter/pull/69633) mark flaky tests as flaky (cla: yes, team, tool)
[69641](https://github.com/flutter/flutter/pull/69641) Revert "Build App.framework directly to build directory" (cla: yes, tool)
[69644](https://github.com/flutter/flutter/pull/69644) Center the AnimatedPositioned code sample (cla: yes, d: api docs, framework, waiting for tree to go green)
[69650](https://github.com/flutter/flutter/pull/69650) Update ReorderableListView API docs (cla: yes, f: material design, framework)
[69653](https://github.com/flutter/flutter/pull/69653) Reland "Updated SearchDelegate to follow custom InputDecorationTheme" (cla: yes, f: material design, framework, waiting for tree to go green)
[69654](https://github.com/flutter/flutter/pull/69654) removed `an` and used `a` (cla: yes, f: material design, framework, waiting for tree to go green)
[69668](https://github.com/flutter/flutter/pull/69668) fix #24469, #67354 (cla: yes, framework, waiting for tree to go green)
[69693](https://github.com/flutter/flutter/pull/69693) Update dartdoc to 0.36.2 (cla: yes, team, waiting for tree to go green)
[69696](https://github.com/flutter/flutter/pull/69696) mark flutter_gallery__transition_perf_e2e_ios32 flaky (cla: yes, team)
[69699](https://github.com/flutter/flutter/pull/69699) Build App.framework directly to build directory (cla: yes, t: xcode, team, tool)
[69703](https://github.com/flutter/flutter/pull/69703) Revert "[devicelab] reboot attached devices after 30 test runs" (cla: yes, team)
[69709](https://github.com/flutter/flutter/pull/69709) Roll Engine from 346051939814 to 59b01e0e5a3f (35 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[69710](https://github.com/flutter/flutter/pull/69710) [devicelab] re-land cocoon auto-restart (cla: yes, team)
[69713](https://github.com/flutter/flutter/pull/69713) ButtonStyle style side should default to shape.side (cla: yes, f: material design, framework, waiting for tree to go green)
[69717](https://github.com/flutter/flutter/pull/69717) AdoptAWidget - Update ActionListener with an example (adopt a widget, cla: yes, framework)
[69720](https://github.com/flutter/flutter/pull/69720) Deprecate build ios-framework --universal (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[69723](https://github.com/flutter/flutter/pull/69723) Do not analyze files that are not checked in git (cla: yes, team, waiting for tree to go green)
[69724](https://github.com/flutter/flutter/pull/69724) Fix excessive rebuilds of DSS (cla: yes, framework, waiting for tree to go green)
[69726](https://github.com/flutter/flutter/pull/69726) Do not use --first-parent when determining version on master (cla: yes, tool)
[69728](https://github.com/flutter/flutter/pull/69728) Disable web expression evaluation tests (cla: yes, tool)
[69731](https://github.com/flutter/flutter/pull/69731) Compile snapshot_assembly with sdk root set in Xcode (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69732](https://github.com/flutter/flutter/pull/69732) Cancel drag or hold when scrolling is disabled. (cla: yes, framework, waiting for tree to go green)
[69736](https://github.com/flutter/flutter/pull/69736) Methods in build_ios_framework for universal and XCFrameworks (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)
[69749](https://github.com/flutter/flutter/pull/69749) Roll Engine from 59b01e0e5a3f to c7391d6b12c3 (12 revisions) (cla: yes, waiting for tree to go green)
[69761](https://github.com/flutter/flutter/pull/69761) Link the API docs on waitFor() to the docs for runUnsynchronized() (a: tests, cla: yes, framework)
[69781](https://github.com/flutter/flutter/pull/69781) Added dartpad examples for SliverAppBar (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, team, waiting for tree to go green)
[69783](https://github.com/flutter/flutter/pull/69783) Reduce refresh indicator pull-down distance (cla: yes, f: material design, framework)
[69784](https://github.com/flutter/flutter/pull/69784) [flutter_tools] forward all args to pub (cla: yes, tool)
[69791](https://github.com/flutter/flutter/pull/69791) [flutter_conductor] update dev/tools with release tool (cla: yes, team, tool, waiting for tree to go green)
[69793](https://github.com/flutter/flutter/pull/69793) Do not crash if RichText has recognizers without handlers (cla: yes, framework, waiting for tree to go green)
[69795](https://github.com/flutter/flutter/pull/69795) Default Keyboard ScrollActions with PrimaryScrollController (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[69798](https://github.com/flutter/flutter/pull/69798) fix hot reload benchmark data (cla: yes, tool)
[69799](https://github.com/flutter/flutter/pull/69799) Choose higher-res image variants on low-DPR screens (cla: yes, framework)
[69802](https://github.com/flutter/flutter/pull/69802) disable hot reload web tests on CI due to flakes (cla: yes, tool)
[69803](https://github.com/flutter/flutter/pull/69803) Mark prod_builders tests as not flaky (cla: yes, team)
[69809](https://github.com/flutter/flutter/pull/69809) Update CocoaPods recommended version to 1.9 (cla: yes, platform-ios, t: xcode, team, tool)
[69810](https://github.com/flutter/flutter/pull/69810) [versions] roll versions (cla: yes, team, tool)
[69812](https://github.com/flutter/flutter/pull/69812) fix typo in RenderChip.computeMaxIntrinsicWidth implementation (cla: yes, f: material design, framework, waiting for tree to go green)
[69828](https://github.com/flutter/flutter/pull/69828) Fix prod_builders json (cla: yes, team)
[69831](https://github.com/flutter/flutter/pull/69831) [null-safety] update Dart SDK constraints (cla: yes, team)
[69837](https://github.com/flutter/flutter/pull/69837) Run more xcodebuild commands in native arm on Apple Silicon (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[69840](https://github.com/flutter/flutter/pull/69840) Build either iphoneos or iphonesimulator App.framework, not both (a: existing-apps, cla: yes, platform-ios, tool)
[69844](https://github.com/flutter/flutter/pull/69844) [flutter_web_plugins] Migrate to null safety. (cla: yes, team, waiting for tree to go green)
[69846](https://github.com/flutter/flutter/pull/69846) Remove add-to-app Xcode build phase input files (a: existing-apps, cla: yes, t: xcode, tool)
[69848](https://github.com/flutter/flutter/pull/69848) Revert "Initial migration of metrics_center" (cla: yes, team)
[69850](https://github.com/flutter/flutter/pull/69850) Roll Engine from c7391d6b12c3 to bf259226b224 (16 revisions) (cla: yes, waiting for tree to go green)
[69854](https://github.com/flutter/flutter/pull/69854) Revert "[null-safety] update Dart SDK constraints (#69831)" (cla: yes, team)
[69857](https://github.com/flutter/flutter/pull/69857) Roll Engine from bf259226b224 to e66a720137d9 (3 revisions) (cla: yes, waiting for tree to go green)
[69866](https://github.com/flutter/flutter/pull/69866) Add a [valid] property of [MouseTrackerAnnotation] indicates the annotation states. (cla: yes, framework, waiting for tree to go green)
[69870](https://github.com/flutter/flutter/pull/69870) Revert "Fix: fix android studio 4.1 plugin path for macOS" (cla: yes, tool)
[69889](https://github.com/flutter/flutter/pull/69889) Revert "Roll Engine from bf259226b224 to e66a720137d9 (3 revisions)" (cla: yes, engine)
[69890](https://github.com/flutter/flutter/pull/69890) Added enableFeedback property PopupMenuButton (cla: yes, f: material design, framework, waiting for tree to go green)
[69891](https://github.com/flutter/flutter/pull/69891) Fix Editable(Text) shortcuts to respect read-only on desktop (cla: yes, framework, waiting for tree to go green)
[69892](https://github.com/flutter/flutter/pull/69892) [versions] update more null safe versions (cla: yes, team, tool)
[69900](https://github.com/flutter/flutter/pull/69900) [null-safety] update version constraint (cla: yes, team)
[69904](https://github.com/flutter/flutter/pull/69904) Ignore several import_of_legacy_library_into_null_safe (a: tests, cla: yes, framework)
[69906](https://github.com/flutter/flutter/pull/69906) Roll Engine from bf259226b224 to 0693ee04d130 (9 revisions) (cla: yes, waiting for tree to go green)
[69911](https://github.com/flutter/flutter/pull/69911) [flutter_tools] allow using flutter test for testing the tool too (cla: yes, team, tool)
[69914](https://github.com/flutter/flutter/pull/69914) [flutter_tools] split web integration tests into new shard (cla: yes, team, tool)
[69919](https://github.com/flutter/flutter/pull/69919) Fix crash when widgetspan does not produce a semantics node in render… (cla: yes, framework)
[69920](https://github.com/flutter/flutter/pull/69920) [flutter_tools] deploy version.json asset on Linux (cla: yes, tool, waiting for tree to go green)
[69921](https://github.com/flutter/flutter/pull/69921) Persist Chrome Default Directory (cla: yes, tool, waiting for tree to go green)
[69930](https://github.com/flutter/flutter/pull/69930) [null-safety] remove enable experiment flags (cla: yes, team)
[69932](https://github.com/flutter/flutter/pull/69932) [flutter_tools] only run web shard if requested (cla: yes, team)
[69954](https://github.com/flutter/flutter/pull/69954) Fix android studio 4.1 plugin path for mac (cla: yes, tool)
[69965](https://github.com/flutter/flutter/pull/69965) Roll Engine from 0693ee04d130 to 40408629770c (23 revisions) (cla: yes, waiting for tree to go green)
[69966](https://github.com/flutter/flutter/pull/69966) remove the use of the analysis server --enable-experiments flag (cla: yes, tool)
[69970](https://github.com/flutter/flutter/pull/69970) mark flutter_gallery_sksl_warmup__transition_perf_e2e_ios32 as flaky (cla: yes, team)
[69971](https://github.com/flutter/flutter/pull/69971) [flutter_tools] work around bug in plugins CI (cla: yes, tool)
[69972](https://github.com/flutter/flutter/pull/69972) [flutter_tools] wrap http send in async guard (cla: yes, tool)
[69974](https://github.com/flutter/flutter/pull/69974) Roll Engine from 40408629770c to d21bb634e054 (1 revision) (cla: yes, waiting for tree to go green)
[69976](https://github.com/flutter/flutter/pull/69976) Roll Engine from d21bb634e054 to cf376142ed5f (2 revisions) (cla: yes, waiting for tree to go green)
[69982](https://github.com/flutter/flutter/pull/69982) Add new ListTile parameters to ListTileTheme (cla: yes, f: material design, framework, waiting for tree to go green)
[69987](https://github.com/flutter/flutter/pull/69987) [flutter_tools] remove material design schema, use dart code (cla: yes, f: material design, tool)
[69988](https://github.com/flutter/flutter/pull/69988) Revert "Roll Engine from d21bb634e054 to cf376142ed5f (2 revisions) (#69976)" (cla: yes, engine)
[69990](https://github.com/flutter/flutter/pull/69990) Add PageView benchmark (representative of full screen CustomPainter) (cla: yes, platform-web, team, waiting for tree to go green)
[69991](https://github.com/flutter/flutter/pull/69991) Roll Engine from d21bb634e054 to 2440ad6d39a5 (8 revisions) (cla: yes, waiting for tree to go green)
[69996](https://github.com/flutter/flutter/pull/69996) Reland migration (cla: yes, team)
[69997](https://github.com/flutter/flutter/pull/69997) move cupertino_icon template to 1.0.1 for null safety (cla: yes, team, tool)
[70000](https://github.com/flutter/flutter/pull/70000) Revert "Roll Engine from d21bb634e054 to 2440ad6d39a5 (8 revisions)" (cla: yes, engine)
[70005](https://github.com/flutter/flutter/pull/70005) Roll Engine from d21bb634e054 to 7ab39127ee25 (16 revisions) (cla: yes, waiting for tree to go green)
[70008](https://github.com/flutter/flutter/pull/70008) Roll Engine from 7ab39127ee25 to 1e3ceb037f64 (2 revisions) (cla: yes, waiting for tree to go green)
[70011](https://github.com/flutter/flutter/pull/70011) [flutter_tools] remove most globals from asset system and remove Cache manipulation in unit tests (cla: yes, tool)
[70014](https://github.com/flutter/flutter/pull/70014) [flutter_tools] remove workaround for caching sound dill (a: null-safety, cla: yes, team, tool)
[70023](https://github.com/flutter/flutter/pull/70023) Revert "Migrate Flutter gallery test to null safety" (cla: yes, f: cupertino, f: material design, team, tool)
[70026](https://github.com/flutter/flutter/pull/70026) [flutter_tools] Let CMake handle escaping (cla: yes, tool, waiting for tree to go green)
[70030](https://github.com/flutter/flutter/pull/70030) Add Dart SDK constraint to a pubspec (cla: yes, team, waiting for tree to go green)
[70031](https://github.com/flutter/flutter/pull/70031) Roll Engine from 1e3ceb037f64 to e4956eb118fa (6 revisions) (cla: yes, waiting for tree to go green)
[70036](https://github.com/flutter/flutter/pull/70036) Roll Engine from e4956eb118fa to 0f7cdca65fba (2 revisions) (cla: yes, waiting for tree to go green)
[70056](https://github.com/flutter/flutter/pull/70056) [flutter_tools] restore pub caching functionality (cla: yes, tool)
[70058](https://github.com/flutter/flutter/pull/70058) [flutter_tools] remove branch migration and standardize constructor style for version interface (cla: yes, tool, work in progress; do not review)
[70065](https://github.com/flutter/flutter/pull/70065) [flutter_tools] improve hash performance (cla: yes, tool)
[70073](https://github.com/flutter/flutter/pull/70073) [integration_test] Add a setter for defaultTestTimeout (cla: yes)
[70075](https://github.com/flutter/flutter/pull/70075) [integration_test] Add a `run` method for proper reporting of test results (cla: yes, team)
[70078](https://github.com/flutter/flutter/pull/70078) Roll engine and fix pubspecs that do not have a Dart SDK constraint (cla: yes, engine, team, tool)
[70080](https://github.com/flutter/flutter/pull/70080) Let SnackBar inherit themeData from its ancestor (cla: yes, f: material design, framework, waiting for tree to go green)
[70092](https://github.com/flutter/flutter/pull/70092) AdoptAWidget: Stepper (cla: yes, f: material design, framework)
[70107](https://github.com/flutter/flutter/pull/70107) Ignore several import_of_legacy_library_into_null_safe (cla: yes, team)
[70112](https://github.com/flutter/flutter/pull/70112) [null-safety] migrate hello_world to null safety (cla: yes, d: examples, team)
[70115](https://github.com/flutter/flutter/pull/70115) Ignore import_of_legacy_library_into_null_safe (cla: yes, team)
[70116](https://github.com/flutter/flutter/pull/70116) Migrate Flutter Gallery test to null safety (cla: yes, f: cupertino, f: material design, team, tool)
[70117](https://github.com/flutter/flutter/pull/70117) Roll Engine from 3cf292226986 to 40b8f8227b9a (7 revisions) (cla: yes, waiting for tree to go green)
[70120](https://github.com/flutter/flutter/pull/70120) default to unsound nullability for web (cla: yes, tool, waiting for tree to go green)
[70123](https://github.com/flutter/flutter/pull/70123) Roll Engine from 40b8f8227b9a to 7f07491bcafb (1 revision) (cla: yes, waiting for tree to go green)
[70126](https://github.com/flutter/flutter/pull/70126) [null-safety] implement autodetection for the web (cla: yes, tool)
[70130](https://github.com/flutter/flutter/pull/70130) Bump Gallery version (cla: yes, team)
[70131](https://github.com/flutter/flutter/pull/70131) Remove old todo (cla: yes, framework, waiting for tree to go green)
[70132](https://github.com/flutter/flutter/pull/70132) Revert "[flutter_tools] restore pub caching functionality" (cla: yes, tool)
[70133](https://github.com/flutter/flutter/pull/70133) [flutter_tools] restore pub caching functionality (cla: yes, tool)
[70135](https://github.com/flutter/flutter/pull/70135) Roll Engine from 7f07491bcafb to 014da89eb015 (3 revisions) (cla: yes, waiting for tree to go green)
[70136](https://github.com/flutter/flutter/pull/70136) [flutter_tools] always run pub with prebuilt applications on drive (cla: yes, tool)
[70139](https://github.com/flutter/flutter/pull/70139) Assert for RenderFlex intrinsics if using baseline alignment (cla: yes, framework)
[70140](https://github.com/flutter/flutter/pull/70140) Roll Engine from 014da89eb015 to d642a939c34b (2 revisions) (cla: yes, waiting for tree to go green)
[70144](https://github.com/flutter/flutter/pull/70144) Revert "[flutter_tools] restore pub caching functionality" (cla: yes, tool)
[70146](https://github.com/flutter/flutter/pull/70146) [flutter_tools] always use dart to run test script. (cla: yes, tool)
[70149](https://github.com/flutter/flutter/pull/70149) Fix for the ListTile horizontalTitleGap calculation introduced with PR #64222. (cla: yes, f: material design, framework)
[70153](https://github.com/flutter/flutter/pull/70153) Add SkiaPerfPoint and FlutterEngineMetricPoint (cla: yes, team)
[70156](https://github.com/flutter/flutter/pull/70156) Ignore DismissIntent when barrier is not dismissible (cla: yes, framework)
[70157](https://github.com/flutter/flutter/pull/70157) Update cupertino and material translations (a: internationalization, cla: yes, f: cupertino, f: material design)
[70158](https://github.com/flutter/flutter/pull/70158) Roll Engine from d642a939c34b to e50ac2c55240 (2 revisions) (cla: yes, waiting for tree to go green)
[70160](https://github.com/flutter/flutter/pull/70160) Update PopupMenuButton to match Material Design spec (a: fidelity, cla: yes, f: material design, framework, waiting for tree to go green)
[70163](https://github.com/flutter/flutter/pull/70163) Roll Engine from e50ac2c55240 to 4e0f7ab788bd (2 revisions) (cla: yes, waiting for tree to go green)
[70175](https://github.com/flutter/flutter/pull/70175) Revert "[flutter_tools] always use dart to run test script." (cla: yes, tool)
[70180](https://github.com/flutter/flutter/pull/70180) [flutter_tools] reland: cache pub invocations (cla: yes, tool)
[70183](https://github.com/flutter/flutter/pull/70183) [flutter_tools] remove experiment tracking analytics for null safety (cla: yes, tool)
[70184](https://github.com/flutter/flutter/pull/70184) [FloatingActionButtonLocation] Add diagrams to documentation of FloatingActionButtonLocation (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70185](https://github.com/flutter/flutter/pull/70185) 🚀 AdoptAWidget: IgnorePointer (cla: yes, framework)
[70189](https://github.com/flutter/flutter/pull/70189) [flutter_tools] dont use autodetect enum for web (cla: yes, tool)
[70200](https://github.com/flutter/flutter/pull/70200) [flutter_tools] migrate .packages to package_config, partial (cla: yes, tool)
[70212](https://github.com/flutter/flutter/pull/70212) Revert "AppBar draws its defaults from theme.colorScheme" (cla: yes, f: material design, framework, waiting for tree to go green)
[70215](https://github.com/flutter/flutter/pull/70215) [flutter_tools] Display "no platforms" message based on results when creating plugins project (cla: yes, tool, waiting for tree to go green)
[70224](https://github.com/flutter/flutter/pull/70224) Move Flutter.framework to build directory instead of ios/Flutter (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[70226](https://github.com/flutter/flutter/pull/70226) Move web integration tool tests to web.shard (cla: yes, team, tool)
[70231](https://github.com/flutter/flutter/pull/70231) Roll Engine from 4e0f7ab788bd to caf678d30fc0 (10 revisions) (cla: yes, waiting for tree to go green)
[70236](https://github.com/flutter/flutter/pull/70236) Intrinsic Width fixes for RenderParagraph (cla: yes, framework, waiting for tree to go green)
[70237](https://github.com/flutter/flutter/pull/70237) Roll Engine from caf678d30fc0 to 5f660ce78474 (1 revision) (cla: yes, waiting for tree to go green)
[70240](https://github.com/flutter/flutter/pull/70240) Add integration_test template to create template (cla: yes, tool, waiting for tree to go green)
[70245](https://github.com/flutter/flutter/pull/70245) [null-safety] opt driver tests into null safety (cla: yes, team, waiting for tree to go green)
[70251](https://github.com/flutter/flutter/pull/70251) Roll Engine from 5f660ce78474 to c5cbbb000f2c (5 revisions) (cla: yes, waiting for tree to go green)
[70252](https://github.com/flutter/flutter/pull/70252) Fix Platform channel errors in web tests (a: tests, cla: yes, framework, waiting for tree to go green)
[70255](https://github.com/flutter/flutter/pull/70255) mark catalina ios tasks as flaky (cla: yes, team)
[70264](https://github.com/flutter/flutter/pull/70264) Roll Engine from c5cbbb000f2c to 3de24322acf5 (1 revision) (cla: yes, waiting for tree to go green)
[70266](https://github.com/flutter/flutter/pull/70266) Roll Engine from 3de24322acf5 to 81f219c59c62 (1 revision) (cla: yes, waiting for tree to go green)
[70277](https://github.com/flutter/flutter/pull/70277) Improve the behavior of DropdownButton.disabledHint (cla: yes, f: material design, framework, waiting for tree to go green)
[70311](https://github.com/flutter/flutter/pull/70311) [Material] Add selection control themes (cla: yes, f: material design, framework, waiting for tree to go green)
[70317](https://github.com/flutter/flutter/pull/70317) Roll Engine from 81f219c59c62 to c5c7e83b9e53 (3 revisions) (cla: yes, waiting for tree to go green)
[70319](https://github.com/flutter/flutter/pull/70319) Revert usages of the binding's platformDispatcher to use window instead (a: accessibility, a: tests, cla: yes, framework)
[70320](https://github.com/flutter/flutter/pull/70320) [flutter_tools] make getBuildInfo async (cla: yes, tool)
[70321](https://github.com/flutter/flutter/pull/70321) Add autofill troubleshooting tips to autofillHints documentation (cla: yes, framework, waiting for tree to go green)
[70323](https://github.com/flutter/flutter/pull/70323) [flutter_tools] use initially parsed package config for language version, sound mode determination (cla: yes, tool)
[70324](https://github.com/flutter/flutter/pull/70324) Include null in the type that UpdateUrlFetcher's Future returns (cla: yes, team, waiting for tree to go green)
[70327](https://github.com/flutter/flutter/pull/70327) [flutter_releases] Flutter 1.22.4 framework cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[70328](https://github.com/flutter/flutter/pull/70328) Revert "mark catalina ios tasks as flaky" (cla: yes, team, waiting for tree to go green)
[70333](https://github.com/flutter/flutter/pull/70333) Roll Engine from c5c7e83b9e53 to d97a81c88983 (6 revisions) (cla: yes, waiting for tree to go green)
[70334](https://github.com/flutter/flutter/pull/70334) [flutter_tools] make most integration tests null safe (cla: yes, tool)
[70336](https://github.com/flutter/flutter/pull/70336) Support legacy behavior for --host-vmservice-port and --observatory-port with DDS (cla: yes, tool)
[70337](https://github.com/flutter/flutter/pull/70337) Simplify the flutter_web_plugins plugin registration API. (cla: yes, tool)
[70343](https://github.com/flutter/flutter/pull/70343) Code sample small fixes (adopt a widget, cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[70368](https://github.com/flutter/flutter/pull/70368) [integration_test] Wrap pumped widgets with a RepaintBoundary (cla: yes, framework, waiting for tree to go green)
[70379](https://github.com/flutter/flutter/pull/70379) Added Tabar Code samples (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70382](https://github.com/flutter/flutter/pull/70382) Update FlexibleSpaceBar dartpad sample (adopt a widget, cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[70388](https://github.com/flutter/flutter/pull/70388) Revert "Roll Engine from c5c7e83b9e53 to d97a81c88983 (6 revisions)" (cla: yes, engine)
[70391](https://github.com/flutter/flutter/pull/70391) Revert "Default Keyboard ScrollActions with PrimaryScrollController" (cla: yes, f: cupertino, f: material design, framework)
[70392](https://github.com/flutter/flutter/pull/70392) Revert "Actually consume top padding in bottomsheet if scrollcontrolled" (cla: yes, f: material design, framework, waiting for tree to go green)
[70393](https://github.com/flutter/flutter/pull/70393) Update OutlinedButton default outline geometry to be backwards compatible (cla: yes, f: material design, framework)
[70396](https://github.com/flutter/flutter/pull/70396) Set the mixWithOthers option in the Gallery video demo (cla: yes, team)
[70397](https://github.com/flutter/flutter/pull/70397) Fix return type of ContextAction.invoke (cla: yes, framework, waiting for tree to go green)
[70398](https://github.com/flutter/flutter/pull/70398) Properly initialize RestorationManager in the TestBinding (a: tests, cla: yes, framework, waiting for tree to go green)
[70401](https://github.com/flutter/flutter/pull/70401) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (a: desktop, cla: yes, f: cupertino, f: focus, f: material design, f: scrolling, framework, platform-web, severe: new feature)
[70403](https://github.com/flutter/flutter/pull/70403) Clean up Windows plugin template (cla: yes, tool)
[70404](https://github.com/flutter/flutter/pull/70404) Allow propagation to ancestor actions if actions lower down are disabled (cla: yes, framework)
[70405](https://github.com/flutter/flutter/pull/70405) Add -miphoneos-version-min=8.0 to App framework stub (cla: yes, platform-ios, tool)
[70407](https://github.com/flutter/flutter/pull/70407) Revert "Add SkiaPerfPoint and FlutterEngineMetricPoint" (cla: yes, team)
[70412](https://github.com/flutter/flutter/pull/70412) [flutter_tools] Add bot configuration to run web_tool_tests for linux, mac, and windows (cla: yes, team, tool)
[70415](https://github.com/flutter/flutter/pull/70415) [gen-l10n] NNBD generated code (cla: yes, tool)
[70419](https://github.com/flutter/flutter/pull/70419) Reland "Add SkiaPerfPoint and FlutterEngineMetricPoint (#70153)" (cla: yes, team)
[70423](https://github.com/flutter/flutter/pull/70423) Add casts to widgets_test.dart to fix the engine roll. (a: internationalization, cla: yes, waiting for tree to go green)
[70424](https://github.com/flutter/flutter/pull/70424) Cherry pick - Flutter 1.24 candidate.11 (a: accessibility, a: tests, cla: yes, framework, team)
[70429](https://github.com/flutter/flutter/pull/70429) Roll Engine from c5c7e83b9e53 to dddb532b5c7b (40 revisions) (cla: yes, waiting for tree to go green)
[70439](https://github.com/flutter/flutter/pull/70439) e2e perf tests don't have CPU/GPU/memory metrics (cla: yes, team)
[70447](https://github.com/flutter/flutter/pull/70447) fix some unit test cases(ink_well_test.dart) bug (cla: yes, f: material design, framework)
[70464](https://github.com/flutter/flutter/pull/70464) [devicelab] LUCI builder flag (cla: yes, team, waiting for tree to go green)
[70466](https://github.com/flutter/flutter/pull/70466) Revert "[integration_test] Add a `run` method for proper reporting of test results" (cla: yes, team)
[70469](https://github.com/flutter/flutter/pull/70469) Enable test after engine fix (cla: yes, framework, waiting for tree to go green)
[70475](https://github.com/flutter/flutter/pull/70475) [flutter_tools] remove automatic doctor from flutter create (cla: yes, tool)
[70477](https://github.com/flutter/flutter/pull/70477) Roll Engine from dddb532b5c7b to bbcf19ad143c (6 revisions) (cla: yes, waiting for tree to go green)
[70480](https://github.com/flutter/flutter/pull/70480) [flutter_tools] remove unused JSON schema (cla: yes, tool)
[70482](https://github.com/flutter/flutter/pull/70482) [flutter_tools] remove global variables from mdns client (cla: yes, tool, waiting for tree to go green)
[70485](https://github.com/flutter/flutter/pull/70485) Disable failing test due to SDK issue (cla: yes, tool)
[70487](https://github.com/flutter/flutter/pull/70487) Ignore text selection boxes when assembling semantics for placeholder runs (cla: yes, framework, waiting for tree to go green)
[70490](https://github.com/flutter/flutter/pull/70490) Roll Engine from bbcf19ad143c to 63a6fe3cf9ef (3 revisions) (cla: yes, waiting for tree to go green)
[70491](https://github.com/flutter/flutter/pull/70491) Remove some unnecessary casts, now that changes have rolled from the engine (a: internationalization, a: tests, cla: yes, framework, waiting for tree to go green)
[70494](https://github.com/flutter/flutter/pull/70494) Roll Engine from 63a6fe3cf9ef to e06f10638598 (3 revisions) (cla: yes, waiting for tree to go green)
[70495](https://github.com/flutter/flutter/pull/70495) [flutter_releases] Flutter 1.24.0-10.1.pre framework cherrypicks (cla: yes, engine, tool)
[70496](https://github.com/flutter/flutter/pull/70496) Revert "[devicelab] LUCI builder flag" (cla: yes, team, waiting for tree to go green)
[70500](https://github.com/flutter/flutter/pull/70500) More lints (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, framework, team)
[70501](https://github.com/flutter/flutter/pull/70501) Minor documentation fixes (cla: yes, framework, waiting for tree to go green)
[70505](https://github.com/flutter/flutter/pull/70505) Revert "Simplify the flutter_web_plugins plugin registration API." (cla: yes, tool)
[70509](https://github.com/flutter/flutter/pull/70509) [flutter_tools] remove unused/deprecated asset parameters (cla: yes, tool, waiting for tree to go green)
[70511](https://github.com/flutter/flutter/pull/70511) [flutter_tools] stop unit from writing real file (cla: yes, tool)
[70513](https://github.com/flutter/flutter/pull/70513) [integration_test] Reland add a `run` method for proper reporting of test results (cla: yes, team)
[70514](https://github.com/flutter/flutter/pull/70514) [flutter_tools] reduce build bundle API (cla: yes, tool)
[70515](https://github.com/flutter/flutter/pull/70515) [flutter_tools] remove globals from features (cla: yes, tool)
[70518](https://github.com/flutter/flutter/pull/70518) Remove unused host_app_editable_cocoapods template files (a: existing-apps, cla: yes, tool)
[70554](https://github.com/flutter/flutter/pull/70554) Roll Engine from e06f10638598 to 3e77d854a7cb (18 revisions) (cla: yes, waiting for tree to go green)
[70603](https://github.com/flutter/flutter/pull/70603) [Material] Decoration for DataTable is not used inside PaginatedDataTable (cla: yes, f: material design, framework, waiting for tree to go green)
[70617](https://github.com/flutter/flutter/pull/70617) Add liblzma as an explicit dependancy on Linux (cla: yes, team, tool, waiting for tree to go green)
[70624](https://github.com/flutter/flutter/pull/70624) Roll Engine from 3e77d854a7cb to fae92ed57427 (6 revisions) (cla: yes, waiting for tree to go green)
[70631](https://github.com/flutter/flutter/pull/70631) Increase timeouts on XCUITest existence checks (cla: yes, team)
[70637](https://github.com/flutter/flutter/pull/70637) Remove last references to Window in docs. (cla: yes, framework)
[70643](https://github.com/flutter/flutter/pull/70643) [devicelab] update hot reload benchmark to be more representative (cla: yes, team)
[70647](https://github.com/flutter/flutter/pull/70647) Allow any iOS app to be added to an existing host app (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)
[70649](https://github.com/flutter/flutter/pull/70649) Exclude ARM from macOS builds architectures (cla: yes, platform-mac, t: xcode, tool, waiting for tree to go green)
[70653](https://github.com/flutter/flutter/pull/70653) skip `roll_dev_integration_test` (cla: yes, team)
[70656](https://github.com/flutter/flutter/pull/70656) Fixes Intrinsics for RenderParagraph and RenderWrap (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework)
[70657](https://github.com/flutter/flutter/pull/70657) Roll Engine from fae92ed57427 to f0e80100f740 (8 revisions) (cla: yes, waiting for tree to go green)
[70665](https://github.com/flutter/flutter/pull/70665) Roll Engine from f0e80100f740 to 635df897603a (3 revisions) (cla: yes, waiting for tree to go green)
[70666](https://github.com/flutter/flutter/pull/70666) fix and re-enable roll_dev_integration test (cla: yes, team, waiting for tree to go green)
[70668](https://github.com/flutter/flutter/pull/70668) preserve detailFiles entry in TaskResult JSON (cla: yes, team, waiting for tree to go green)
[70669](https://github.com/flutter/flutter/pull/70669) [Material] Add method to get dark mode overlay color without needing BuildContext (cla: yes, f: material design, framework, waiting for tree to go green)
[70670](https://github.com/flutter/flutter/pull/70670) Update [ToggleButtons] to support extend down/up vertically (cla: yes, f: material design, framework, waiting for tree to go green)
[70674](https://github.com/flutter/flutter/pull/70674) Add SkiaPerfGcsAdaptor and its tests (cla: yes, team, waiting for tree to go green)
[70675](https://github.com/flutter/flutter/pull/70675) Revert "Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (#70401)" (cla: yes, f: cupertino, f: material design, framework)
[70676](https://github.com/flutter/flutter/pull/70676) Added CupertinoFormSection, CupertinoSplitFormRow, and CupertinoTextFormField (cla: yes, f: cupertino, framework, waiting for tree to go green)
[70683](https://github.com/flutter/flutter/pull/70683) Set [InputDecoration.floatingLabelBehavior] default to null (cla: yes, f: material design, framework, waiting for tree to go green)
[70687](https://github.com/flutter/flutter/pull/70687) Chip theme label style is merged with the provided label style (cla: yes, f: material design, framework, waiting for tree to go green)
[70696](https://github.com/flutter/flutter/pull/70696) Roll Engine from 635df897603a to 8d93ea0d06e9 (4 revisions) (cla: yes, waiting for tree to go green)
[70702](https://github.com/flutter/flutter/pull/70702) [devicelab] LUCI builder flag (cla: yes, team, waiting for tree to go green)
[70704](https://github.com/flutter/flutter/pull/70704) Roll Engine from 8d93ea0d06e9 to f3cc39a5d646 (2 revisions) (cla: yes, waiting for tree to go green)
[70708](https://github.com/flutter/flutter/pull/70708) Material Date Picker code restructure (cla: yes, f: material design, framework)
[70712](https://github.com/flutter/flutter/pull/70712) Roll package:dds to 1.5.1 and add isCompleted guards around completers in base/dds.dart (cla: yes, team, tool, waiting for tree to go green)
[70714](https://github.com/flutter/flutter/pull/70714) [flutter_tools] use frontend_server for web test compilation (a: null-safety, cla: yes, team, tool)
[70718](https://github.com/flutter/flutter/pull/70718) [flutter_tools] display message for current null safety mode (a: null-safety, cla: yes, tool)
[70719](https://github.com/flutter/flutter/pull/70719) Add extra Flutter settings to ios_app_with_extensions Podfile (cla: yes, platform-ios, t: xcode, team, tool)
[70721](https://github.com/flutter/flutter/pull/70721) Roll Engine from f3cc39a5d646 to 94e217bcf609 (7 revisions) (cla: yes, waiting for tree to go green)
[70722](https://github.com/flutter/flutter/pull/70722) Simplify the flutter_web_plugins plugin registration API. (#70337) (cla: yes, tool)
[70724](https://github.com/flutter/flutter/pull/70724) Turn off bitcode in ios_app_with_extensions to match normal Flutter projects (cla: yes, platform-ios, team)
[70726](https://github.com/flutter/flutter/pull/70726) Remove the `nullOk` parameter from `Navigator.of` and add `Navigator.maybeOf` (cla: yes, f: cupertino, f: material design, framework, team)
[70730](https://github.com/flutter/flutter/pull/70730) Improve performance of Widget Tests (a: tests, cla: yes, framework, waiting for tree to go green)
[70735](https://github.com/flutter/flutter/pull/70735) Force regeneration of old Podfile (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[70736](https://github.com/flutter/flutter/pull/70736) Roll Engine from 94e217bcf609 to 35a0b9fe6827 (5 revisions) (cla: yes, waiting for tree to go green)
[70737](https://github.com/flutter/flutter/pull/70737) [flutter_releases] Flutter 1.24.0-10.2.pre framework cherrypicks (cla: yes, engine, team)
[70739](https://github.com/flutter/flutter/pull/70739) Revert "Allow any iOS app to be added to an existing host app" (cla: yes, team, tool)
[70740](https://github.com/flutter/flutter/pull/70740) Reland "Allow any iOS app to be added to an existing host app" (cla: yes, team, tool)
[70773](https://github.com/flutter/flutter/pull/70773) Use adaptive more icon for popup_menu (cla: yes, f: material design, framework, waiting for tree to go green)
[70787](https://github.com/flutter/flutter/pull/70787) Restart EditableText cursor timer when it moves (cla: yes, framework, waiting for tree to go green)
[70790](https://github.com/flutter/flutter/pull/70790) Stop extra framework copy during build ios-framework (cla: yes, tool)
[70791](https://github.com/flutter/flutter/pull/70791) [flutter_tools] add support for dart defines to flutter test (cla: yes, team, tool)
[70795](https://github.com/flutter/flutter/pull/70795) [flutter_tools] refactor shared memory filesystem logic (cla: yes, tool)
[70797](https://github.com/flutter/flutter/pull/70797) [flutter_tools] update dependencies (cla: yes, team, tool)
[70799](https://github.com/flutter/flutter/pull/70799) [flutter_tools] run web unit tests in sound null safety (cla: yes, team, tool)
[70801](https://github.com/flutter/flutter/pull/70801) Detect ARM ffi CocoaPods error, suggest gem install (cla: yes, platform-mac, tool)
[70802](https://github.com/flutter/flutter/pull/70802) Revert "Stop extra framework copy during build ios-framework" (cla: yes, tool)
[70804](https://github.com/flutter/flutter/pull/70804) Run module tests on try builders when flutter_tools changes (cla: yes, team, team: infra)
[70808](https://github.com/flutter/flutter/pull/70808) Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[70809](https://github.com/flutter/flutter/pull/70809) Fix type cast null safety in MethodChannel._invokeMethod (cla: yes, framework, waiting for tree to go green)
[70818](https://github.com/flutter/flutter/pull/70818) remove ephemeral files (cla: yes, waiting for tree to go green)
[70819](https://github.com/flutter/flutter/pull/70819) Add RichText debugFillProperties TestCase (cla: yes, framework, waiting for tree to go green)
[70834](https://github.com/flutter/flutter/pull/70834) Fix error message typo (cla: yes, tool, waiting for tree to go green)
[70847](https://github.com/flutter/flutter/pull/70847) Ensure attaching to an application with an existing DDS instance is not treated as a fatal error (cla: yes, team, tool)
[70853](https://github.com/flutter/flutter/pull/70853) [flutter_tools] skip ck restart on all platforms (cla: yes, tool, waiting for tree to go green)
[70862](https://github.com/flutter/flutter/pull/70862) [flutter_test] Correct flutter_test_configuration.dart documentation (a: tests, cla: yes, framework, waiting for tree to go green)
[70863](https://github.com/flutter/flutter/pull/70863) [flutter_tools] remove globals from flutter web platform (cla: yes, tool)
[70865](https://github.com/flutter/flutter/pull/70865) [flutter_tools] wire up alternative invalidation strategy to features (cla: yes, tool)
[70871](https://github.com/flutter/flutter/pull/70871) Roll Engine from 35a0b9fe6827 to a0da844845f5 (20 revisions) (cla: yes, waiting for tree to go green)
[70872](https://github.com/flutter/flutter/pull/70872) Prevent text from overflowing in OutlineButton and OutlinedButton label. (cla: yes, f: material design, framework)
[70874](https://github.com/flutter/flutter/pull/70874) flutter_tools: refactor `CreateCommand`. (cla: yes, tool, waiting for tree to go green)
[70880](https://github.com/flutter/flutter/pull/70880) Clean-up docs for the --web-renderer option (cla: yes, tool, waiting for tree to go green)
[70881](https://github.com/flutter/flutter/pull/70881) skip flaky test (cla: yes, team)
[70882](https://github.com/flutter/flutter/pull/70882) Update dartdoc to 0.37.0 (cla: yes, team, waiting for tree to go green)
[70883](https://github.com/flutter/flutter/pull/70883) Skip reformatting and calling onChanged for composing region only changes. (cla: yes, framework, waiting for tree to go green)
[70884](https://github.com/flutter/flutter/pull/70884) Revert "[flutter_tools] wire up alternative invalidation strategy to features" (cla: yes, tool)
[70887](https://github.com/flutter/flutter/pull/70887) Add a post-submit test shard for flutter/plugins tests (cla: yes, team)
[70893](https://github.com/flutter/flutter/pull/70893) Re-land 'Default Keyboard ScrollActions with PrimaryScrollController' (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[70896](https://github.com/flutter/flutter/pull/70896) Use module Profile scheme when profiling (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[70898](https://github.com/flutter/flutter/pull/70898) Remove deprecated 'flutter build aot' (cla: yes, tool)
[70903](https://github.com/flutter/flutter/pull/70903) [flutter_tools] share bootstrap module between run and test (cla: yes, tool)
[70904](https://github.com/flutter/flutter/pull/70904) Roll Engine from a0da844845f5 to 23a8e027dbbe (5 revisions) (cla: yes, waiting for tree to go green)
[70912](https://github.com/flutter/flutter/pull/70912) [flutter_tools] disable SWR optimization on dev (cla: yes, tool)
[70914](https://github.com/flutter/flutter/pull/70914) [flutter_tools] delete BuildRunnerWebCompilationProxy and WebCompilationProxy (cla: yes, tool)
[70945](https://github.com/flutter/flutter/pull/70945) Use details tag to improve issue log readability (cla: yes, team, waiting for tree to go green)
[70953](https://github.com/flutter/flutter/pull/70953) Fix pointer scroll for nested NeverScrollables (a: desktop, cla: yes, f: scrolling, framework, platform-web, severe: regression, waiting for tree to go green)
[70958](https://github.com/flutter/flutter/pull/70958) Roll Engine from 23a8e027dbbe to 97cacfbfec89 (14 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[70959](https://github.com/flutter/flutter/pull/70959) flutter_tools: do more refactor on `CreateBase` and `CreateCommand` (cla: yes, tool, waiting for tree to go green)
[70962](https://github.com/flutter/flutter/pull/70962) only use code single path for verification of target file existence (cla: yes, tool)
[70963](https://github.com/flutter/flutter/pull/70963) Uncomment build_ios_framework_module_test tmp cleanup (cla: yes, team)
[70965](https://github.com/flutter/flutter/pull/70965) [devicelab] don't use set modified for hot reload bench (cla: yes, team)
[70966](https://github.com/flutter/flutter/pull/70966) [web] Add wrapbox scroll benchmark (cla: yes, team)
[70967](https://github.com/flutter/flutter/pull/70967) [flutter_tools] Catch all exception subtypes when unzipping a file (cla: yes, tool)
[70968](https://github.com/flutter/flutter/pull/70968) [flutter] Update package README (cla: yes, framework, waiting for tree to go green)
[70969](https://github.com/flutter/flutter/pull/70969) [flutter_tools] support canvaskit unit testing on web (cla: yes, tool)
[70970](https://github.com/flutter/flutter/pull/70970) Wait for Android plugin to load before configuring plugin dependency (cla: yes, tool)
[70972](https://github.com/flutter/flutter/pull/70972) Fix EditableText.enableInteractiveSelection on desktop & web (cla: yes, framework)
[70974](https://github.com/flutter/flutter/pull/70974) Fix _LateInitializationError for RenderObjectElement.renderObject (cla: yes, framework)
[70975](https://github.com/flutter/flutter/pull/70975) Remove private OutlinedButton default outline geometry class (cla: yes, f: material design, framework)
[70977](https://github.com/flutter/flutter/pull/70977) [flutter_tools] Remove usage of --precompiled flag for web tests (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, tool)
[70999](https://github.com/flutter/flutter/pull/70999) [flutter_tools] fix port leak in flutter_driver (a: tests, cla: yes, framework, tool)
[71003](https://github.com/flutter/flutter/pull/71003) [flutter_tools] Set basic error matcher for Linux builds (cla: yes, tool)
[71041](https://github.com/flutter/flutter/pull/71041) Remove unnecessary argument from Row and Column constructor comments (cla: yes, framework, waiting for tree to go green)
[71050](https://github.com/flutter/flutter/pull/71050) Add dartpad sample for AnimatedPadding (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71061](https://github.com/flutter/flutter/pull/71061) Expose the YearPicker as a public API again to match the previous API. (cla: yes, f: material design, framework)
[71079](https://github.com/flutter/flutter/pull/71079) [BottomNavigationBar] Adds more control to ToolTip (cla: yes, f: material design, framework, waiting for tree to go green)
[71093](https://github.com/flutter/flutter/pull/71093) AdoptAWidget: ColorFiltered (adopt a widget, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)
[71094](https://github.com/flutter/flutter/pull/71094) iOS aot assembly requires SDK root (cla: yes, team, tool)
[71095](https://github.com/flutter/flutter/pull/71095) Rename SdkType -> EnvironmentType (cla: yes, platform-ios, tool, waiting for tree to go green)
[71096](https://github.com/flutter/flutter/pull/71096) Revert "Migrate template to Gradle 6.7 and AGP 4.1.0" (a: accessibility, cla: yes, d: examples, team, tool)
[71097](https://github.com/flutter/flutter/pull/71097) Implement dryLayout for RenderAnimatedSize (cla: yes, framework, waiting for tree to go green)
[71100](https://github.com/flutter/flutter/pull/71100) Make simulator framework test check explicit (a: existing-apps, cla: yes, platform-ios, team, waiting for tree to go green)
[71103](https://github.com/flutter/flutter/pull/71103) Move Flutter.podspec to add-to-app project template (a: existing-apps, cla: yes, platform-ios, tool)
[71108](https://github.com/flutter/flutter/pull/71108) Enable mac web_tool_tests (cla: yes, team, waiting for tree to go green)
[71113](https://github.com/flutter/flutter/pull/71113) Add XCFramework artifacts (cla: yes, platform-ios, tool, waiting for tree to go green)
[71114](https://github.com/flutter/flutter/pull/71114) roll engine hotfix (cla: yes, engine)
[71128](https://github.com/flutter/flutter/pull/71128) [gen-l10n] Fix forwarding of output-dir in l10n.yaml file (cla: yes, tool, waiting for tree to go green)
[71137](https://github.com/flutter/flutter/pull/71137) Fix the duration assertion error for the _animateToInternal method and refine the error description (cla: yes, framework, waiting for tree to go green)
[71161](https://github.com/flutter/flutter/pull/71161) Roll Engine from 97cacfbfec89 to 850bfb5ca3e9 (35 revisions) (cla: yes, waiting for tree to go green)
[71165](https://github.com/flutter/flutter/pull/71165) Roll Engine from 850bfb5ca3e9 to 6ed357c8b3cb (2 revisions) (cla: yes, waiting for tree to go green)
[71166](https://github.com/flutter/flutter/pull/71166) Pin the version of flutter/plugins to test against (cla: yes, team, waiting for tree to go green)
[71170](https://github.com/flutter/flutter/pull/71170) Update CocoaPods minimum version to 1.9 (cla: yes, t: xcode, tool)
[71174](https://github.com/flutter/flutter/pull/71174) AdoptAWidget: PageView (cla: yes, d: api docs, d: examples, documentation, framework)
[71180](https://github.com/flutter/flutter/pull/71180) Revert "Implement dryLayout for RenderAnimatedSize" (cla: yes, framework)
[71184](https://github.com/flutter/flutter/pull/71184) Update AppBar and AppBar Theme to new Theme conventions and latest Material spec (cla: yes, f: material design, framework)
[71185](https://github.com/flutter/flutter/pull/71185) Reland "Implement dryLayout for RenderAnimatedSize" (cla: yes, framework, waiting for tree to go green)
[71188](https://github.com/flutter/flutter/pull/71188) mark "smoke_catalina_hot_mode_dev_cycle_ios__benchmark" flaky (cla: yes, team)
[71196](https://github.com/flutter/flutter/pull/71196) [flutter_tools]fix typo in printHowToConsumeAar,which case sync fail (cla: yes, tool, waiting for tree to go green)
[71213](https://github.com/flutter/flutter/pull/71213) Roll Engine from 6ed357c8b3cb to 8eb8bd153f7c (10 revisions) (cla: yes, waiting for tree to go green)
[71215](https://github.com/flutter/flutter/pull/71215) [flutter_tools] Don't fail copying files if the destination is not writable (cla: yes, tool, waiting for tree to go green)
[71224](https://github.com/flutter/flutter/pull/71224) Roll Engine from 8eb8bd153f7c to 3fa7ffc612db (1 revision) (cla: yes, waiting for tree to go green)
[71231](https://github.com/flutter/flutter/pull/71231) Roll Engine from 3fa7ffc612db to 20caf5496951 (1 revision) (cla: yes, waiting for tree to go green)
[71236](https://github.com/flutter/flutter/pull/71236) Raw keyboard shortcuts & deletions should not read from _plainText (cla: yes, f: material design, framework, waiting for tree to go green)
[71244](https://github.com/flutter/flutter/pull/71244) Improve codesign script (cla: yes, team)
[71266](https://github.com/flutter/flutter/pull/71266) [Proposal] Make mouseWheel zoom in % instead of pixels value (cla: yes, framework)
[71286](https://github.com/flutter/flutter/pull/71286) Update engine hash for 1.25-candidate.1 (cla: yes, engine)
[71303](https://github.com/flutter/flutter/pull/71303) RefreshIndicator can be shown when dragging from non-zero scroll position (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71314](https://github.com/flutter/flutter/pull/71314) BottomNavigationBar unselected items modified to use unselectedWidgetColor (cla: yes, f: material design, framework, waiting for tree to go green)
[71376](https://github.com/flutter/flutter/pull/71376) Added mainAxisExtent to SliverGridDelegateWithFixedCrossAxisCount and SliverGridDelegateWithMaxCrossAxisExtent (cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71378](https://github.com/flutter/flutter/pull/71378) [FloatingActionButtonLocation] Add proper formatting to documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[71401](https://github.com/flutter/flutter/pull/71401) Update documentation link (cla: yes, f: material design, framework, team)
[71411](https://github.com/flutter/flutter/pull/71411) Add testing shard for release mode guard (cla: yes, framework, team, tool)
[71417](https://github.com/flutter/flutter/pull/71417) [flutter_tools] do not validate unused services key (cla: yes, tool)
[71424](https://github.com/flutter/flutter/pull/71424) Try to avoid more false-positives in people using this template (cla: yes, waiting for tree to go green)
[71433](https://github.com/flutter/flutter/pull/71433) [flutter_tools] update some web configuration defaults (cla: yes, tool)
[71434](https://github.com/flutter/flutter/pull/71434) [flutter_tools] allow hiding web server device, provide flags to re-enable (cla: yes, tool)
[71439](https://github.com/flutter/flutter/pull/71439) [fluttter_tools] reland enable experimental invalidation strategy on by default in master channel (cla: yes, tool)
[71446](https://github.com/flutter/flutter/pull/71446) Relands: Migrate template to Gradle 6.7 and AGP 4.1.0 (a: accessibility, cla: yes, d: examples, team, tool)
[71450](https://github.com/flutter/flutter/pull/71450) Upgrade deps (cla: yes, team, waiting for tree to go green)
[71451](https://github.com/flutter/flutter/pull/71451) Validate empty observatory URI for screenshot (cla: yes, tool, waiting for tree to go green)
[71459](https://github.com/flutter/flutter/pull/71459) Revert "Fix excessive rebuilds of DSS" (cla: yes, framework)
[71487](https://github.com/flutter/flutter/pull/71487) [flutter_tools] report basic analytics for null-safety (cla: yes, tool)
[71490](https://github.com/flutter/flutter/pull/71490) Revert "Added CupertinoFormSection, CupertinoSplitFormRow, and CupertinoTextFormField" (cla: yes, f: cupertino, framework)
[71491](https://github.com/flutter/flutter/pull/71491) [flutter_tools] hide web server by default (cla: yes, tool)
[71495](https://github.com/flutter/flutter/pull/71495) Adopt Flutter.xcframework in tool (cla: yes, platform-ios, t: xcode, team, tool)
[71497](https://github.com/flutter/flutter/pull/71497) InteractiveViewer Scale Jump (cla: yes, framework, waiting for tree to go green)
[71498](https://github.com/flutter/flutter/pull/71498) Roll Engine from 20caf5496951 to d2ad4419bb07 (27 revisions) (cla: yes)
[71499](https://github.com/flutter/flutter/pull/71499) [flutter_tools] post process the gradle log output (cla: yes, tool)
[71502](https://github.com/flutter/flutter/pull/71502) Run the flutter/plugins tests on presubmit, make it part of the tree status (cla: yes, team)
[71519](https://github.com/flutter/flutter/pull/71519) Revert "Roll Engine from 20caf5496951 to d2ad4419bb07 (27 revisions) … (cla: yes, engine)
[71522](https://github.com/flutter/flutter/pull/71522) Re-land CupertinoFormSection, CupertinoFormRow, and CupertinoTextFormFieldRow (cla: yes, f: cupertino, framework)
[71525](https://github.com/flutter/flutter/pull/71525) ios_host_app Podfile search paths (cla: yes, platform-ios, team)
[71527](https://github.com/flutter/flutter/pull/71527) Revert "[flutter_tools] post process the gradle log output" (cla: yes)
[71531](https://github.com/flutter/flutter/pull/71531) Update CI to CocoaPods 1.10 (cla: yes, platform-ios, team, team: infra)
[71539](https://github.com/flutter/flutter/pull/71539) Add a test for intrinsic size checks (cla: yes, framework, waiting for tree to go green)
[71547](https://github.com/flutter/flutter/pull/71547) fix nullability of parameters with redirecting factory constructors (cla: yes, f: material design, framework)
[71559](https://github.com/flutter/flutter/pull/71559) Revert "Improve the behavior of DropdownButton.disabledHint" (cla: yes, f: material design, framework)
[71569](https://github.com/flutter/flutter/pull/71569) [Material] Resolve overlay color for pressed/active/inactive states in selection controls (cla: yes, f: material design, framework, waiting for tree to go green)
[71580](https://github.com/flutter/flutter/pull/71580) Updated dialog background color documentation (cla: yes, f: material design, framework)
[71587](https://github.com/flutter/flutter/pull/71587) Accessibility: repeated label on BottomNavigationBar fixed (cla: yes, f: material design, framework, waiting for tree to go green)
[71597](https://github.com/flutter/flutter/pull/71597) Ensure the packaging script does not overwrite a previous upload (cla: yes, team)
[71598](https://github.com/flutter/flutter/pull/71598) [flutter_tools] enable CK restart tests (cla: yes, tool)
[71600](https://github.com/flutter/flutter/pull/71600) Create symlinks for local engine Maven metadata files required by the Android Gradle plugin (cla: yes, tool, waiting for tree to go green)
[71601](https://github.com/flutter/flutter/pull/71601) [flutter_tools] mode code size output to ~/.flutter-devtools (cla: yes, tool)
[71602](https://github.com/flutter/flutter/pull/71602) Turn on dependabot to roll bundler dependencies (cla: yes, team, team: infra, waiting for tree to go green)
[71609](https://github.com/flutter/flutter/pull/71609) remove obsolete firebase script (cla: yes, team, waiting for tree to go green)
[71610](https://github.com/flutter/flutter/pull/71610) Add verbose flag to hot mode tests (cla: yes, team)
[71611](https://github.com/flutter/flutter/pull/71611) Updated GridView API Doc (cla: yes, framework)
[71616](https://github.com/flutter/flutter/pull/71616) Mark hot_mode_dev_cycle_macos_target__benchmark flaky (cla: yes, team)
[71618](https://github.com/flutter/flutter/pull/71618) [flutter_tools] wire up native-null-assertions for flutter web (cla: yes, tool)
[71623](https://github.com/flutter/flutter/pull/71623) Add sysctl file fallbacks (cla: yes, platform-mac, tool, waiting for tree to go green)
[71624](https://github.com/flutter/flutter/pull/71624) Fix dependabot directory (cla: yes, team, team: infra, waiting for tree to go green)
[71628](https://github.com/flutter/flutter/pull/71628) Reland "Improve the behavior of DropdownButton.disabledHint" (cla: yes, f: material design, framework)
[71636](https://github.com/flutter/flutter/pull/71636) [showModalBottomSheet] fix: showModalBottomSheet does not move along keyboard (cla: yes, f: material design, framework, waiting for tree to go green)
[71653](https://github.com/flutter/flutter/pull/71653) [State Restoration] RestorableBoolN (a: state restoration, cla: yes, framework, waiting for tree to go green)
[71656](https://github.com/flutter/flutter/pull/71656) enableFlutterDriverExtension: optionally disable text entry emulation (a: tests, cla: yes, framework)
[71657](https://github.com/flutter/flutter/pull/71657) [ExpansionPanel] Exposes color property of MaterialSlice (cla: yes, f: material design, framework, waiting for tree to go green)
[71660](https://github.com/flutter/flutter/pull/71660) Revert "Add integration_test template to create template" (cla: yes, tool)
[71663](https://github.com/flutter/flutter/pull/71663) Remove left-overs from causal async stacks. (cla: yes, tool, waiting for tree to go green)
[71664](https://github.com/flutter/flutter/pull/71664) Updated Interactive Scrollbars (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[71671](https://github.com/flutter/flutter/pull/71671) [flutter_tools] roll deps, fix completion bug (cla: yes, team, waiting for tree to go green)
[71689](https://github.com/flutter/flutter/pull/71689) Minor doc, style, and perf updates to Navigator/Routes (cla: yes, framework)
[71699](https://github.com/flutter/flutter/pull/71699) Roll Engine from 20caf5496951 to 14a6fd97ca12 (67 revisions) (cla: yes)
[71705](https://github.com/flutter/flutter/pull/71705) Copy the glibc bug fix to devicelab/integration tests (cla: yes, team)
[71707](https://github.com/flutter/flutter/pull/71707) Add stretch property to CupertinoSliverNavigationBar (cla: yes, f: cupertino, framework)
[71721](https://github.com/flutter/flutter/pull/71721) Pass --local-engine* flags from dev/bots/test.dart down to `pub test` via env variables (cla: yes, team, waiting for tree to go green)
[71726](https://github.com/flutter/flutter/pull/71726) [flutter_tool] fix incorrect coverage file generation (cla: yes, tool)
[71728](https://github.com/flutter/flutter/pull/71728) [flutter_tool] Report analytics as disabled when suppressed (cla: yes, tool)
[71730](https://github.com/flutter/flutter/pull/71730) Turn off flaky module_test_ios FlutterUITests (a: tests, cla: yes, team)
[71734](https://github.com/flutter/flutter/pull/71734) Roll Engine from 14a6fd97ca12 to 59b4baea5124 (9 revisions) (cla: yes, waiting for tree to go green)
[71737](https://github.com/flutter/flutter/pull/71737) Launch DevTools from pub instead of devtools_server (cla: yes, team, tool)
[71738](https://github.com/flutter/flutter/pull/71738) Allow flavors and build types when using plugins (cla: yes, platform-android, t: gradle, team, tool, waiting for tree to go green)
[71740](https://github.com/flutter/flutter/pull/71740) Reland integration template (cla: yes, tool, waiting for tree to go green)
[71744](https://github.com/flutter/flutter/pull/71744) Remove Flutter Authors from macOS project organization name (cla: yes, platform-mac, tool)
[71745](https://github.com/flutter/flutter/pull/71745) Update macOS Xcode compatibilityVersion (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71748](https://github.com/flutter/flutter/pull/71748) Profiling Xcode app should use Flutter profile mode (cla: yes, d: examples, platform-mac, team, tool)
[71750](https://github.com/flutter/flutter/pull/71750) Remove missing macOS RunnerUITests (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[71751](https://github.com/flutter/flutter/pull/71751) [devicelab] Add upload metrics test builder as flaky (cla: yes, team, waiting for tree to go green)
[71752](https://github.com/flutter/flutter/pull/71752) Remove unused local from xcode_backend (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)
[71756](https://github.com/flutter/flutter/pull/71756) Correct text selection pivot points (cla: yes, f: material design, framework, waiting for tree to go green)
[71757](https://github.com/flutter/flutter/pull/71757) Rename IOSMigrator -> ProjectMigrator (cla: yes, tool, waiting for tree to go green)
[71760](https://github.com/flutter/flutter/pull/71760) Make macrobenchmarks buildable for macos (a: tests, cla: yes, platform-mac, team)
[71761](https://github.com/flutter/flutter/pull/71761) Check in manual_tests gitignores (cla: yes, platform-mac, team)
[71764](https://github.com/flutter/flutter/pull/71764) Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, team, tool)
[71771](https://github.com/flutter/flutter/pull/71771) Roll Engine from 59b4baea5124 to 6e0c7e493162 (12 revisions) (cla: yes, waiting for tree to go green)
[71774](https://github.com/flutter/flutter/pull/71774) Roll Engine from 6e0c7e493162 to 6491c7518f34 (1 revision) (cla: yes, waiting for tree to go green)
[71783](https://github.com/flutter/flutter/pull/71783) circleAvatar: foreground Image uses background Image as a fall-back (cla: yes, f: material design, framework, will affect goldens)
[71807](https://github.com/flutter/flutter/pull/71807) StandardMethodCodec.decodeEnvelope should allow null error message (a: null-safety, cla: yes, framework)
[71829](https://github.com/flutter/flutter/pull/71829) Add --dart-define option support to build aar command (cla: yes, tool, waiting for customer response)
[71830](https://github.com/flutter/flutter/pull/71830) Fix a ConstantTween's clerical error and Add some Tween testcases. (cla: yes, framework, waiting for tree to go green)
[71838](https://github.com/flutter/flutter/pull/71838) showDialog assertion for non-null builder or child property (cla: yes, f: material design, framework, waiting for tree to go green)
[71843](https://github.com/flutter/flutter/pull/71843) Improve the ScrollBar behavior when nested (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[71852](https://github.com/flutter/flutter/pull/71852) Fix text direction logic for material icon variants (cla: yes, f: material design, framework, team, waiting for tree to go green)
[71853](https://github.com/flutter/flutter/pull/71853) Add previews for CupertinoIcons (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[71858](https://github.com/flutter/flutter/pull/71858) Roll Engine from 6491c7518f34 to 69dacc4138d1 (5 revisions) (cla: yes, waiting for tree to go green)
[71859](https://github.com/flutter/flutter/pull/71859) Update integration_test README for iOS (cla: yes, documentation, waiting for tree to go green)
[71860](https://github.com/flutter/flutter/pull/71860) Do not add CI build settings to macOS (cla: yes, team, tool)
[71861](https://github.com/flutter/flutter/pull/71861) Remove isMaterialAppTheme property (cla: yes, f: material design, framework, waiting for tree to go green)
[71862](https://github.com/flutter/flutter/pull/71862) Remove manual Flutter linking for iOS projects (cla: yes, platform-ios, t: xcode, tool)
[71866](https://github.com/flutter/flutter/pull/71866) Mark hot_mode_dev_cycle_macos_target__benchmark not flaky (cla: yes, team, waiting for tree to go green)
[71868](https://github.com/flutter/flutter/pull/71868) Doc fixes for dry layout (cla: yes, framework)
[71869](https://github.com/flutter/flutter/pull/71869) Roll Engine from 69dacc4138d1 to d1a511743a22 (4 revisions) (cla: yes, waiting for tree to go green)
[71870](https://github.com/flutter/flutter/pull/71870) Stop using Xcode build settings in materialized Info.plist (cla: yes, platform-ios, tool)
[71872](https://github.com/flutter/flutter/pull/71872) Make FocusManager configurable in BuildOwner (cla: yes, framework)
[71878](https://github.com/flutter/flutter/pull/71878) Roll Engine from d1a511743a22 to a3ee6150e18d (3 revisions) (cla: yes, waiting for tree to go green)
[71879](https://github.com/flutter/flutter/pull/71879) Add DynamicFeature system channel (cla: yes, engine, framework, platform-android)
[71880](https://github.com/flutter/flutter/pull/71880) Constrain width/hight when asking child for intrinsics (cla: yes, framework)
[71882](https://github.com/flutter/flutter/pull/71882) Migrate devicelab to package:vm_service (cla: yes, team, tool, waiting for tree to go green)
[71883](https://github.com/flutter/flutter/pull/71883) Roll Engine from a3ee6150e18d to a26e80c931d6 (2 revisions) (cla: yes, waiting for tree to go green)
[71886](https://github.com/flutter/flutter/pull/71886) [devicelab] Pass git branch via flag to test runner (cla: yes, team, waiting for tree to go green)
[71889](https://github.com/flutter/flutter/pull/71889) Roll Engine from a26e80c931d6 to b0d31ae1667b (2 revisions) (cla: yes, waiting for tree to go green)
[71892](https://github.com/flutter/flutter/pull/71892) Roll Engine from b0d31ae1667b to 1efa85188b60 (1 revision) (cla: yes, waiting for tree to go green)
[71899](https://github.com/flutter/flutter/pull/71899) let NOTICES be double gzip wrapped to reduce on-disk installed space (cla: yes, framework, team, tool)
[71922](https://github.com/flutter/flutter/pull/71922) Roll Engine from 1efa85188b60 to 4d1465f77e73 (4 revisions) (cla: yes, waiting for tree to go green)
[71932](https://github.com/flutter/flutter/pull/71932) Roll Engine from 4d1465f77e73 to de341faa4d51 (5 revisions) (cla: yes, waiting for tree to go green)
[71934](https://github.com/flutter/flutter/pull/71934) Add integration_test to integration tests build shard (cla: yes, p: integration_test, team, waiting for tree to go green)
[71935](https://github.com/flutter/flutter/pull/71935) Update dartdoc to 0.38.0 (cla: yes, team, waiting for tree to go green)
[71937](https://github.com/flutter/flutter/pull/71937) Run plugin tests on try builders when flutter_tools changes (cla: yes, team, waiting for tree to go green)
[71940](https://github.com/flutter/flutter/pull/71940) Remove duplicate code in Element.rebuild() and BuildOwner.buildScope() (cla: yes, framework)
[71944](https://github.com/flutter/flutter/pull/71944) app bar leading back button should not change if the route is popped (cla: yes, f: material design, framework, waiting for tree to go green)
[71950](https://github.com/flutter/flutter/pull/71950) [flutter_tool] Fix crash in update-packages (cla: yes, tool)
[71951](https://github.com/flutter/flutter/pull/71951) Revert "Move embedding and linking macOS Flutter frameworks into the tool" (cla: yes, team, tool)
[71953](https://github.com/flutter/flutter/pull/71953) Add macOS to lint plugins integration test (cla: yes, platform-mac, team)
[71957](https://github.com/flutter/flutter/pull/71957) Stop using the List constructor (cla: yes, d: examples, team, waiting for tree to go green)
[71962](https://github.com/flutter/flutter/pull/71962) [flutter_tools] update message for `flutter create -t plugin` when no `--platforms` specified (cla: yes, tool, waiting for tree to go green)
[71964](https://github.com/flutter/flutter/pull/71964) Ensure apps can build while using AGP 3.3.0 (cla: yes, t: gradle, team, tool, waiting for tree to go green)
[71965](https://github.com/flutter/flutter/pull/71965) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[71966](https://github.com/flutter/flutter/pull/71966) Roll Engine from de341faa4d51 to ed110bfd717a (13 revisions) (cla: yes, waiting for tree to go green)
[71969](https://github.com/flutter/flutter/pull/71969) Roll Engine from ed110bfd717a to df39e5c51517 (1 revision) (cla: yes, waiting for tree to go green)
[71973](https://github.com/flutter/flutter/pull/71973) Roll Engine from df39e5c51517 to 5db69719d1b8 (1 revision) (cla: yes, waiting for tree to go green)
[71981](https://github.com/flutter/flutter/pull/71981) Test generated_plugin_registrant analysis & suppress long lines in web plugin registrant (cla: yes, tool, waiting for tree to go green)
[71986](https://github.com/flutter/flutter/pull/71986) Add removeListenerWhileNotifying benchmark for ChangeNotifier (cla: yes, framework, team, waiting for tree to go green)
[72003](https://github.com/flutter/flutter/pull/72003) Roll Engine from 5db69719d1b8 to d2ccdefe1877 (5 revisions) (cla: yes, waiting for tree to go green)
[72011](https://github.com/flutter/flutter/pull/72011) Editable text should call onSelectionChanged when selection changes a… (cla: yes, framework, waiting for tree to go green)
[72012](https://github.com/flutter/flutter/pull/72012) Revert "Reland Move embedding and linking macOS Flutter frameworks into the tool" (cla: yes, team, tool)
[72014](https://github.com/flutter/flutter/pull/72014) [flutter_releases] Flutter Framework Stable 1.22.5 Cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72016](https://github.com/flutter/flutter/pull/72016) Flutter Logo for Dark Mode (cla: yes, team, waiting for tree to go green)
[72017](https://github.com/flutter/flutter/pull/72017) Remove deprecated CupertinoTextThemeData.brightness (cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)
[72020](https://github.com/flutter/flutter/pull/72020) Move macOS Podfile logic into the tool (cla: yes, platform-mac, t: xcode, team, tool)
[72036](https://github.com/flutter/flutter/pull/72036) Roll Engine from d2ccdefe1877 to 8518a5bbe69a (2 revisions) (cla: yes, waiting for tree to go green)
[72040](https://github.com/flutter/flutter/pull/72040) Prepare to migrate API doc samples and snippets to null safety (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[72041](https://github.com/flutter/flutter/pull/72041) Roll Engine from 8518a5bbe69a to 827aa5d073f3 (4 revisions) (cla: yes, waiting for tree to go green)
[72043](https://github.com/flutter/flutter/pull/72043) Deprecate `maxLengthEnforced` for text fields (cla: yes, f: cupertino, f: material design, framework)
[72046](https://github.com/flutter/flutter/pull/72046) Add footer to CupertinoFormSection and fix CupertinoFormSection margins. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72079](https://github.com/flutter/flutter/pull/72079) [flutter_releases] Flutter Framework Stable 1.22.5 cherrypicks (a: tests, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)
[72086](https://github.com/flutter/flutter/pull/72086) Roll Engine from 827aa5d073f3 to 4797b0665242 (12 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[72091](https://github.com/flutter/flutter/pull/72091) Cleanup nullability for ImplicitlyAnimatedWidgetState (cla: yes, f: material design, framework, waiting for tree to go green)
[72092](https://github.com/flutter/flutter/pull/72092) Revert "Migrate devicelab to package:vm_service" (cla: yes, team, tool)
[72102](https://github.com/flutter/flutter/pull/72102) Revert "Constrain width/hight when asking child for intrinsics" (cla: yes, framework, waiting for tree to go green)
[72103](https://github.com/flutter/flutter/pull/72103) Fix RenderCustomPaint intrinsics (cla: yes, framework)
[72110](https://github.com/flutter/flutter/pull/72110) Fix launching DevTools with Flutter Web applications (cla: yes, tool, waiting for tree to go green)
[72114](https://github.com/flutter/flutter/pull/72114) macos_content_validation_test integration test (cla: yes, tool, waiting for tree to go green)
[72115](https://github.com/flutter/flutter/pull/72115) Reschedule engine frame if it arrives in the middle of warm-up (cla: yes, framework)
[72120](https://github.com/flutter/flutter/pull/72120) Revert "Remove duplicate code in Element.rebuild() and BuildOwner.buildScope()" (cla: yes, cp: 1.25, cp: 1.25 completed, framework)
[72122](https://github.com/flutter/flutter/pull/72122) Avoid null check operator failure in RenderFlex._hasOverflow (cla: yes, framework)
[72132](https://github.com/flutter/flutter/pull/72132) RefreshIndicator should not be shown when overscroll occurs due to inertia (cla: yes, f: material design, framework, waiting for tree to go green)
[72136](https://github.com/flutter/flutter/pull/72136) [dev] Don't use await for on stdout and stdin; pass local engine argument (cla: yes, team)
[72141](https://github.com/flutter/flutter/pull/72141) Revert "Pass --local-engine* flags from dev/bots/test.dart down to ` pub test` via env variables (#71721)" (cla: yes, team)
[72145](https://github.com/flutter/flutter/pull/72145) Reenable module_test_ios UI tests (a: tests, cla: yes, platform-ios, team, waiting for tree to go green)
[72147](https://github.com/flutter/flutter/pull/72147) Roll Engine from 4797b0665242 to 4794d0448f8f (23 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[72149](https://github.com/flutter/flutter/pull/72149) Roll flutter/plugins (cla: yes, waiting for tree to go green)
[72151](https://github.com/flutter/flutter/pull/72151) Allow iOS plugins to support bitcode (cla: yes, tool)
[72155](https://github.com/flutter/flutter/pull/72155) Revert "Roll Engine from 4797b0665242 to 4794d0448f8f (23 revisions)" (cla: yes, engine)
[72159](https://github.com/flutter/flutter/pull/72159) Fix api doc to fix tree (cla: yes, f: material design, framework)
[72162](https://github.com/flutter/flutter/pull/72162) Make web buttons respond to enter key (cla: yes, f: material design, framework, waiting for tree to go green)
[72163](https://github.com/flutter/flutter/pull/72163) Add some new examples to Actions and Shortcuts (cla: yes, f: material design, framework)
[72166](https://github.com/flutter/flutter/pull/72166) [devicelab] Migrate web_benchmarks_canvaskit to LUCI (cla: yes, team, waiting for tree to go green)
[72169](https://github.com/flutter/flutter/pull/72169) Migrate the first batch of API samples to null safety (a: accessibility, cla: yes, framework, team, waiting for tree to go green)
[72189](https://github.com/flutter/flutter/pull/72189) [flutter_tools] use 1-based index for device selection (cla: yes, tool, waiting for tree to go green)
[72196](https://github.com/flutter/flutter/pull/72196) [flutter_tools] improve error surfacing from Linux builds (cla: yes, tool, waiting for tree to go green)
[72207](https://github.com/flutter/flutter/pull/72207) Fix navigator 2.0 in Flutter Web (cla: yes, framework, waiting for tree to go green)
[72295](https://github.com/flutter/flutter/pull/72295) Add text to --analyze-size command output to launch DevTools with size data (cla: yes, tool)
[72297](https://github.com/flutter/flutter/pull/72297) Migrate some material doc samples to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[72300](https://github.com/flutter/flutter/pull/72300) Fixed issue for SliverAppBar collapsedHeight (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72303](https://github.com/flutter/flutter/pull/72303) Migrate some more material doc samples to null safety. (cla: yes, f: material design, framework, waiting for tree to go green)
[72304](https://github.com/flutter/flutter/pull/72304) Roll Engine from 4797b0665242 to 360a16ad7542 (40 revisions) (cla: yes, waiting for tree to go green)
[72305](https://github.com/flutter/flutter/pull/72305) InteractiveViewer NNBD Docs Migration (cla: yes, framework)
[72306](https://github.com/flutter/flutter/pull/72306) Flutter clean Flutter.podspec (cla: yes, tool, waiting for tree to go green)
[72307](https://github.com/flutter/flutter/pull/72307) RawAutocomplete NNBD Docs Migration (cla: yes, framework)
[72308](https://github.com/flutter/flutter/pull/72308) Add ScrollbarTheme/ScrollbarThemeData (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72316](https://github.com/flutter/flutter/pull/72316) Remove Scrollbar.isAlwaysShown assert based on Scrollbar.controller (a: quality, cla: yes, f: cupertino, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)
[72317](https://github.com/flutter/flutter/pull/72317) Revert "Roll Engine from 4797b0665242 to 360a16ad7542 (40 revisions) … (cla: yes, engine)
[72318](https://github.com/flutter/flutter/pull/72318) Roll Engine from 4797b0665242 to 1749dbcc1b09 (49 revisions) (cla: yes, waiting for tree to go green)
[72323](https://github.com/flutter/flutter/pull/72323) Launch named iOS simulators (cla: yes, platform-ios, tool)
[72338](https://github.com/flutter/flutter/pull/72338) Roll Engine from 1749dbcc1b09 to c59f94dfa116 (9 revisions) (cla: yes, waiting for tree to go green)
[72344](https://github.com/flutter/flutter/pull/72344) Add BuildContext parameter to TextEditingController.buildTextSpan (cla: yes, f: material design, framework, waiting for tree to go green)
[72357](https://github.com/flutter/flutter/pull/72357) Roll Engine from c59f94dfa116 to cca6ab654e6e (7 revisions) (cla: yes, waiting for tree to go green)
[72360](https://github.com/flutter/flutter/pull/72360) [devicelab] Migrate remaining linux vm tests to LUCI (cla: yes, team, waiting for tree to go green)
[72363](https://github.com/flutter/flutter/pull/72363) Roll Engine from cca6ab654e6e to 89d64daf18f6 (1 revision) (cla: yes, waiting for tree to go green)
[72366](https://github.com/flutter/flutter/pull/72366) [devicelab] Remove plugin_test_win from manifest (cla: yes, team, waiting for tree to go green)
[72370](https://github.com/flutter/flutter/pull/72370) Roll Engine from 89d64daf18f6 to 6b4d4a39df6c (2 revisions) (cla: yes, waiting for tree to go green)
[72372](https://github.com/flutter/flutter/pull/72372) Reland Move embedding and linking macOS Flutter frameworks into the tool (cla: yes, platform-mac, team, tool)
[72374](https://github.com/flutter/flutter/pull/72374) Roll Engine from 6b4d4a39df6c to fead6dc01fcf (2 revisions) (cla: yes, waiting for tree to go green)
[72378](https://github.com/flutter/flutter/pull/72378) Build/copy macOS frameworks to built products instead of ephemeral directory (cla: yes, platform-mac, team, tool)
[72380](https://github.com/flutter/flutter/pull/72380) Roll Engine from fead6dc01fcf to 3d3e16e30314 (2 revisions) (cla: yes, waiting for tree to go green)
[72382](https://github.com/flutter/flutter/pull/72382) [flutter_releases] Flutter 1.25.0-8.1.pre framework cherrypicks (cla: yes, engine, framework)
[72384](https://github.com/flutter/flutter/pull/72384) Fix cupertino icons mapping which was misaligned by 1 (cla: yes, f: cupertino, framework, team)
[72389](https://github.com/flutter/flutter/pull/72389) Nnbd docs updates for various widgets (cla: yes, framework, waiting for tree to go green)
[72392](https://github.com/flutter/flutter/pull/72392) Migrate more doc samples (cla: yes, framework)
[72395](https://github.com/flutter/flutter/pull/72395) Remove deprecated [PointerEnterEvent, PointerExitEvent].fromHoverEvent (cla: yes, framework, severe: API break, waiting for tree to go green)
[72397](https://github.com/flutter/flutter/pull/72397) Roll Engine from 3d3e16e30314 to 3d4c021fbd92 (1 revision) (cla: yes, waiting for tree to go green)
[72401](https://github.com/flutter/flutter/pull/72401) Add first ten linux devicelab luci tests (cla: yes, team, waiting for tree to go green)
[72402](https://github.com/flutter/flutter/pull/72402) Roll Engine from 3d4c021fbd92 to 0495b45c60cd (1 revision) (cla: yes, waiting for tree to go green)
[72403](https://github.com/flutter/flutter/pull/72403) Fix devicelab Linux builder names (cla: yes, team)
[72404](https://github.com/flutter/flutter/pull/72404) Roll Engine from 0495b45c60cd to b080bdf56fe7 (3 revisions) (cla: yes, waiting for tree to go green)
[72405](https://github.com/flutter/flutter/pull/72405) Fix devicelab luci builder names with "__" (cla: yes)
[72408](https://github.com/flutter/flutter/pull/72408) Roll Engine from b080bdf56fe7 to a70f6de1397f (2 revisions) (cla: yes, waiting for tree to go green)
[72409](https://github.com/flutter/flutter/pull/72409) Return null instead of empty in Future.catchError callbacks (cla: yes, tool, waiting for tree to go green)
[72410](https://github.com/flutter/flutter/pull/72410) Remove unused dart:async imports. (cla: yes, f: cupertino, framework, tool, waiting for tree to go green)
[72413](https://github.com/flutter/flutter/pull/72413) Fix builder name for `Linux complex_layout_android__compile` (cla: yes, team)
[72414](https://github.com/flutter/flutter/pull/72414) Roll Engine from a70f6de1397f to 0445f7985e06 (6 revisions) (cla: yes, waiting for tree to go green)
[72420](https://github.com/flutter/flutter/pull/72420) update cupertino icons to 1.0.2 (cla: yes, team, tool, will affect goldens)
[72425](https://github.com/flutter/flutter/pull/72425) Roll Engine from 0445f7985e06 to e9f2f0eaea4a (2 revisions) (cla: yes, waiting for tree to go green)
[72431](https://github.com/flutter/flutter/pull/72431) Fixes: "FloatingActionButton.extended's isExtended property if false should show icon, not label" (cla: yes, f: material design, framework)
[72433](https://github.com/flutter/flutter/pull/72433) Roll Engine from e9f2f0eaea4a to 9e3803b36718 (2 revisions) (cla: yes, waiting for tree to go green)
[72438](https://github.com/flutter/flutter/pull/72438) Revert "let NOTICES be double gzip wrapped to reduce on-disk installed space" (cla: yes, framework, team, tool)
[72445](https://github.com/flutter/flutter/pull/72445) Enable remaining LUCI devicelab linux builders to flutter dashboard (cla: yes, team, waiting for tree to go green)
[72446](https://github.com/flutter/flutter/pull/72446) Enable structured errors by default. (cla: yes, framework)
[72447](https://github.com/flutter/flutter/pull/72447) Revert "Launch named iOS simulators" (cla: yes, tool)
[72454](https://github.com/flutter/flutter/pull/72454) Roll Engine from 9e3803b36718 to f0655e0847ad (1 revision) (cla: yes, waiting for tree to go green)
[72455](https://github.com/flutter/flutter/pull/72455) remove flaky flag & disable devicelab tests (cla: yes, team, waiting for tree to go green)
[72463](https://github.com/flutter/flutter/pull/72463) Roll Engine from f0655e0847ad to b0c6686d4217 (1 revision) (cla: yes, waiting for tree to go green)
[72468](https://github.com/flutter/flutter/pull/72468) Roll Engine from b0c6686d4217 to 69d7e8eb918a (1 revision) (cla: yes, waiting for tree to go green)
[72470](https://github.com/flutter/flutter/pull/72470) Roll Engine from 69d7e8eb918a to 6edb402ee452 (1 revision) (cla: yes, waiting for tree to go green)
[72472](https://github.com/flutter/flutter/pull/72472) Added backwardsCompatibility flag to AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)
[72476](https://github.com/flutter/flutter/pull/72476) Allow nullable tweens in TweenAnimationBuilder (a: animation, a: null-safety, cla: yes, framework, waiting for tree to go green)
[72477](https://github.com/flutter/flutter/pull/72477) Updated the MaterialBanner example, NNBD, etc (cla: yes, f: material design, framework, waiting for tree to go green)
[72478](https://github.com/flutter/flutter/pull/72478) Roll Engine from 6edb402ee452 to fd6b409f950b (2 revisions) (cla: yes, waiting for tree to go green)
[72479](https://github.com/flutter/flutter/pull/72479) add doc for scroll_smoothness metrics (cla: yes, team, waiting for tree to go green)
[72488](https://github.com/flutter/flutter/pull/72488) Support flutter_test_config for `flutter test` on web platforms (cla: yes, framework, tool, waiting for tree to go green)
[72490](https://github.com/flutter/flutter/pull/72490) Bottom navigation items length docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[72494](https://github.com/flutter/flutter/pull/72494) Fix flutter in preparation for implementing Dart's "Infer non-nullability from local boolean variables" (cla: yes, framework)
[72512](https://github.com/flutter/flutter/pull/72512) fix a DragTarget type cast bug (cla: yes, framework, waiting for tree to go green)
[72519](https://github.com/flutter/flutter/pull/72519) Add --no-launch-browser flag to DevTools pub run command (cla: yes, tool)
[72526](https://github.com/flutter/flutter/pull/72526) Make RenderColoredBox.paint() skip painting color if it's transparent (cla: yes, framework, will affect goldens)
[72530](https://github.com/flutter/flutter/pull/72530) Slight cleanup in MultiChildRenderObjectElement (cla: yes, framework)
[72531](https://github.com/flutter/flutter/pull/72531) Update Scrollbar behavior for mobile devices (a: fidelity, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[72532](https://github.com/flutter/flutter/pull/72532) Remove deprecated showDialog.child (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72538](https://github.com/flutter/flutter/pull/72538) Migrate usage value plugin count off .flutter-plugins (cla: yes, tool)
[72541](https://github.com/flutter/flutter/pull/72541) Proposal : #72346 - expose property to pass AnimationController to showBottomSheet/showModalBottomSheet (a: animation, cla: yes, f: material design, framework)
[72544](https://github.com/flutter/flutter/pull/72544) Fix bug in docs.dart (cla: yes, team)
[72548](https://github.com/flutter/flutter/pull/72548) Update various API docs (cla: yes, framework)
[72553](https://github.com/flutter/flutter/pull/72553) Autocomplete Split UI (cla: yes, framework)
[72554](https://github.com/flutter/flutter/pull/72554) groovy escaping was wrong for aar (cla: yes, tool)
[72557](https://github.com/flutter/flutter/pull/72557) Create SECURITY.md (cla: yes, team)
[72558](https://github.com/flutter/flutter/pull/72558) Migrate some sample code to NNBD [1] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)
[72559](https://github.com/flutter/flutter/pull/72559) [flutter_tools] catch fatal build output errors on Linux (cla: yes, tool, waiting for tree to go green)
[72560](https://github.com/flutter/flutter/pull/72560) Add PrioritizedIntents to support multiple shortcut configurations (a: desktop, cla: yes, f: focus, f: scrolling, framework, platform-web, severe: new feature, waiting for tree to go green)
[72563](https://github.com/flutter/flutter/pull/72563) Unflaky remaining linux tasks (cla: yes, team)
[72584](https://github.com/flutter/flutter/pull/72584) Roll Engine from fd6b409f950b to de1de9d44f58 (36 revisions) (cla: yes, waiting for tree to go green)
[72589](https://github.com/flutter/flutter/pull/72589) Roll Engine from de1de9d44f58 to 1be6f414e7db (1 revision) (cla: yes, waiting for tree to go green)
[72607](https://github.com/flutter/flutter/pull/72607) Roll Engine from 1be6f414e7db to 7983c6fda0b9 (3 revisions) (cla: yes)
[72628](https://github.com/flutter/flutter/pull/72628) make sure tests and benchmarks use correct backend (cla: yes, team)
[72641](https://github.com/flutter/flutter/pull/72641) Remove an obsolete (and now incorrect) comment in the pubspec.yaml (cla: yes, team, waiting for tree to go green)
[72666](https://github.com/flutter/flutter/pull/72666) Roll Engine from 7983c6fda0b9 to 57a5ad0ab5eb (8 revisions) (cla: yes, waiting for tree to go green)
[72667](https://github.com/flutter/flutter/pull/72667) Roll Plugins from 7d392476ac20 to b4466e7c7fea (27 revisions) (cla: yes, waiting for tree to go green)
[72699](https://github.com/flutter/flutter/pull/72699) [integration_test] Fix incorrect logging for the legacy reporter (cla: yes, waiting for tree to go green)
[72708](https://github.com/flutter/flutter/pull/72708) [State Restoration] Adds remaining Restorable{Property}N (a: state restoration, cla: yes, framework, waiting for tree to go green)
[72729](https://github.com/flutter/flutter/pull/72729) Roll Engine from 57a5ad0ab5eb to af6889a600e7 (9 revisions) (cla: yes, waiting for tree to go green)
[72736](https://github.com/flutter/flutter/pull/72736) Catch StateError and output more useful error message when DDS fails to start (cla: yes, tool, waiting for tree to go green)
[72741](https://github.com/flutter/flutter/pull/72741) Apply physics boundary to scrollbar dragging (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)
[72746](https://github.com/flutter/flutter/pull/72746) Roll Plugins from b4466e7c7fea to c986058e301c (1 revision) (cla: yes, waiting for tree to go green)
[72748](https://github.com/flutter/flutter/pull/72748) Exclude ARM from macOS builds (cla: yes, platform-mac, tool, waiting for tree to go green)
[72754](https://github.com/flutter/flutter/pull/72754) [flutter_releases] Flutter Beta 1.25.0-8.2 Framework Cherrypicks (cla: yes, engine, framework, team, tool)
[72755](https://github.com/flutter/flutter/pull/72755) Migrate some sample code to NNBD [2] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72756](https://github.com/flutter/flutter/pull/72756) run framework unit tests on html backend (cla: yes, team, waiting for tree to go green)
[72761](https://github.com/flutter/flutter/pull/72761) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool)
[72762](https://github.com/flutter/flutter/pull/72762) Roll Plugins from c986058e301c to 0f1c20dd25c0 (2 revisions) (cla: yes, waiting for tree to go green)
[72764](https://github.com/flutter/flutter/pull/72764) Force plugins to inherit minimum macOS version from Flutter app (cla: yes, platform-mac, team, tool)
[72765](https://github.com/flutter/flutter/pull/72765) [devicelab] Add results path flag to test runner (cla: yes, team, waiting for tree to go green)
[72766](https://github.com/flutter/flutter/pull/72766) Migrated some cupertino doc comments to null safety. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72772](https://github.com/flutter/flutter/pull/72772) Unprefixes the class with the "new" keyword (cla: yes, f: material design, framework, waiting for tree to go green)
[72788](https://github.com/flutter/flutter/pull/72788) [State Restoration] Scaffold.drawer and Scaffold.endDrawer (a: state restoration, cla: yes, f: material design, framework, waiting for tree to go green)
[72792](https://github.com/flutter/flutter/pull/72792) Migrated some services and widgets doc comments to null safety. (cla: yes, framework, team, waiting for tree to go green)
[72794](https://github.com/flutter/flutter/pull/72794) [NNBD] Migrate sample code pt 1 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72798](https://github.com/flutter/flutter/pull/72798) [NNBD] Migrate sample code pt 2 (a: null-safety, cla: yes, f: material design, framework, waiting for tree to go green)
[72803](https://github.com/flutter/flutter/pull/72803) [text_input] prepare for custom text input sources (cla: yes, framework, waiting for tree to go green)
[72817](https://github.com/flutter/flutter/pull/72817) Cherrypick engine to 63a92ca0db5f5db462714f60f5b8e88bcef8f57b (cla: yes, engine)
[72827](https://github.com/flutter/flutter/pull/72827) Roll Engine from af6889a600e7 to b7cd3f8e706d (22 revisions) (cla: yes, waiting for tree to go green)
[72829](https://github.com/flutter/flutter/pull/72829) Migrate some sample code to NNBD [3] (a: null-safety, cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)
[72833](https://github.com/flutter/flutter/pull/72833) Fix scrollbar configuration for hover events (a: desktop, cla: yes, f: material design, f: scrolling, framework, platform-web, waiting for tree to go green)
[72834](https://github.com/flutter/flutter/pull/72834) Check for iOS simulator SDK during AOT validation instead of assuming x86 (cla: yes, platform-ios, tool)
[72837](https://github.com/flutter/flutter/pull/72837) [NNBD] Migrate sample code pt 3 (a: null-safety, cla: yes, f: material design, framework, team, waiting for tree to go green)
[72838](https://github.com/flutter/flutter/pull/72838) Migrated some more widgets doc comments to null safety. (cla: yes, framework, waiting for tree to go green)
[72842](https://github.com/flutter/flutter/pull/72842) [NNBD] Migrate sample code pt 4 (a: null-safety, cla: yes, framework, waiting for tree to go green)
[72845](https://github.com/flutter/flutter/pull/72845) [NNBD] Migrate sample code pt 5 (cla: yes, framework, waiting for tree to go green)
[72862](https://github.com/flutter/flutter/pull/72862) Fix type issue with RestorableNumN (and its subclasses) (cla: yes, framework)
[72890](https://github.com/flutter/flutter/pull/72890) Remove deprecated Scaffold.resizeToAvoidBottomPadding (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[72893](https://github.com/flutter/flutter/pull/72893) Remove deprecated WidgetsBinding.[deferFirstFrameReport, allowFirstFrameReport] (cla: yes, framework, severe: API break, waiting for tree to go green)
[72895](https://github.com/flutter/flutter/pull/72895) DeferredComponent utility class for manual handling of Deferred Components (cla: yes, customer: money (g3), engine, framework, severe: new feature, waiting for tree to go green)
[72901](https://github.com/flutter/flutter/pull/72901) Remove deprecated StatefulElement.inheritFromElement (cla: yes, framework, severe: API break, waiting for tree to go green)
[72903](https://github.com/flutter/flutter/pull/72903) Remove deprecated Element methods (cla: yes, f: cupertino, f: material design, framework, severe: API break, waiting for tree to go green)
[72904](https://github.com/flutter/flutter/pull/72904) improve error message when herocontroller is shared by multiple navig… (a: animation, a: error message, cla: yes, framework, waiting for tree to go green)
[72905](https://github.com/flutter/flutter/pull/72905) Roll Engine from b7cd3f8e706d to 596bae264b0c (17 revisions) (cla: yes, waiting for tree to go green)
[72907](https://github.com/flutter/flutter/pull/72907) Roll Engine from 596bae264b0c to 1c975f1e7c82 (1 revision) (cla: yes, waiting for tree to go green)
[72922](https://github.com/flutter/flutter/pull/72922) fix a RenderSliverFixedExtentBoxAdaptor Exception (cla: yes, framework, waiting for tree to go green)
[72927](https://github.com/flutter/flutter/pull/72927) Improve Cupertino docs (cla: yes, f: cupertino, framework)
[72930](https://github.com/flutter/flutter/pull/72930) Correct typos in RenderParagraph (cla: yes, framework, waiting for tree to go green)
[72931](https://github.com/flutter/flutter/pull/72931) Roll Plugins from 0f1c20dd25c0 to a9513d592101 (4 revisions) (cla: yes, waiting for tree to go green)
[72933](https://github.com/flutter/flutter/pull/72933) fix(cupertinoDatePicker): do not display previous day when minimumDat… (cla: yes, f: cupertino, framework, waiting for tree to go green)
[72938](https://github.com/flutter/flutter/pull/72938) [NNBD] Migrate sample code pt 6 (cla: yes, f: material design, framework)
[72939](https://github.com/flutter/flutter/pull/72939) Complete migration to null safety in api documentation (a: null-safety, cla: yes, f: cupertino, f: material design, framework, team)
[72944](https://github.com/flutter/flutter/pull/72944) [gen_l10n] Improve status message when untranslated messages are still present (a: internationalization, cla: yes, tool, waiting for tree to go green)
[72945](https://github.com/flutter/flutter/pull/72945) Add widget of the week videos (cla: yes, f: material design, framework, waiting for tree to go green)
[72946](https://github.com/flutter/flutter/pull/72946) Handle infinite/NaN rects in Hero flights. Less exclamation marks. (cla: yes, framework, waiting for tree to go green)
[72950](https://github.com/flutter/flutter/pull/72950) [gen_l10n] Use l10n.yaml file instead of command line arguments if it exists (cla: yes, tool)
[72954](https://github.com/flutter/flutter/pull/72954) Roll Engine from 1c975f1e7c82 to f5364860ab10 (8 revisions) (cla: yes, waiting for tree to go green)
[73016](https://github.com/flutter/flutter/pull/73016) fix an assertion causes by zero offset pointer scroll (cla: yes, f: scrolling, framework, severe: crash, waiting for tree to go green)
[73018](https://github.com/flutter/flutter/pull/73018) Document TableRowInkWell and DataTable interactions better (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)
[73044](https://github.com/flutter/flutter/pull/73044) [Api docs]Added dartpad demo for Bottom App Bar (cla: yes, d: api docs, d: examples, documentation, f: material design, framework, waiting for tree to go green)
[73047](https://github.com/flutter/flutter/pull/73047) [web] make sure tests and benchmarks use correct backend - add autodetect false (cla: yes, team)
[73049](https://github.com/flutter/flutter/pull/73049) Roll Plugins from a9513d592101 to 1c0090511fc8 (3 revisions) (cla: yes, waiting for tree to go green)
[73050](https://github.com/flutter/flutter/pull/73050) Roll Engine from f5364860ab10 to 892034dc6a7c (6 revisions) (cla: yes, waiting for tree to go green)
[73052](https://github.com/flutter/flutter/pull/73052) Avoid broken symlinks in embedded Flutter frameworks (cla: yes, platform-mac, team, tool, waiting for tree to go green)
[73056](https://github.com/flutter/flutter/pull/73056) Revert "Roll Plugins from a9513d592101 to 1c0090511fc8 (3 revisions)" (cla: yes)
[73060](https://github.com/flutter/flutter/pull/73060) Revert plugins from a9513d to 025101 (cla: yes)
[73067](https://github.com/flutter/flutter/pull/73067) Revert "Rerun text formatters in didUpdateWidget if needed" (cla: yes, framework, waiting for tree to go green)
[73069](https://github.com/flutter/flutter/pull/73069) [web] add web-renderer option to flutter test. run web tests with this option (cla: yes, team, tool)
[73070](https://github.com/flutter/flutter/pull/73070) Use simctl exit code instead of stderr (cla: yes, platform-ios, t: xcode, tool)
[73071](https://github.com/flutter/flutter/pull/73071) Roll Plugins from 0251017cc973 to 65d041fd9adc (31 revisions) (cla: yes, waiting for tree to go green)
[73072](https://github.com/flutter/flutter/pull/73072) Use SDK podhelper in add-to-app module Podfile (cla: yes, team, tool)
[73076](https://github.com/flutter/flutter/pull/73076) Roll Engine from 892034dc6a7c to b304148d465e (9 revisions) (cla: yes, waiting for tree to go green)
[73082](https://github.com/flutter/flutter/pull/73082) Navigator assert on non restorable routes returned by onGenerateInitialRoutes (a: state restoration, cla: yes, framework, waiting for tree to go green)
[73084](https://github.com/flutter/flutter/pull/73084) Improve the Scaffold.bottomSheet update behavior (a: quality, cla: yes, f: focus, f: material design, framework, waiting for tree to go green)
[73096](https://github.com/flutter/flutter/pull/73096) Roll Plugins from 65d041fd9adc to 72cc8e219773 (1 revision) (cla: yes, waiting for tree to go green)
[73103](https://github.com/flutter/flutter/pull/73103) Add BottomNavigationBarType.shifting sample #72936 (cla: yes, f: material design, framework, waiting for tree to go green)
[73110](https://github.com/flutter/flutter/pull/73110) Default add-to-app xcode_backend script to be verbose (a: existing-apps, cla: yes, platform-ios, t: xcode, tool)
[73111](https://github.com/flutter/flutter/pull/73111) Roll Engine from b304148d465e to 3cf52c274382 (4 revisions) (cla: yes, waiting for tree to go green)
[73112](https://github.com/flutter/flutter/pull/73112) Optionally include CocoaPods xcconfig (cla: yes, platform-ios, t: xcode, team, tool)
[73116](https://github.com/flutter/flutter/pull/73116) Roll Engine from 3cf52c274382 to eff27c74bf8c (4 revisions) (cla: yes, waiting for tree to go green)
[73119](https://github.com/flutter/flutter/pull/73119) Roll Engine from eff27c74bf8c to 34bc19b57449 (1 revision) (cla: yes, waiting for tree to go green)
[73121](https://github.com/flutter/flutter/pull/73121) Roll Engine from 34bc19b57449 to 33c127018ba1 (1 revision) (cla: yes, waiting for tree to go green)
[73123](https://github.com/flutter/flutter/pull/73123) Roll Engine from 33c127018ba1 to 84e1eb9c8b23 (1 revision) (cla: yes, waiting for tree to go green)
[73124](https://github.com/flutter/flutter/pull/73124) Roll Engine from 84e1eb9c8b23 to d3a0669458a8 (1 revision) (cla: yes, waiting for tree to go green)
[73126](https://github.com/flutter/flutter/pull/73126) Roll Engine from d3a0669458a8 to 0e5a25d77929 (1 revision) (cla: yes, waiting for tree to go green)
[73127](https://github.com/flutter/flutter/pull/73127) Roll Engine from 0e5a25d77929 to e344970f1ac8 (1 revision) (cla: yes, waiting for tree to go green)
[73138](https://github.com/flutter/flutter/pull/73138) Removed mouseCursor property from list of not null properties in InkWell and InkResponse. (cla: yes, f: material design, framework, waiting for tree to go green)
[73146](https://github.com/flutter/flutter/pull/73146) Roll Plugins from 72cc8e219773 to 96e2328fe633 (1 revision) (cla: yes, waiting for tree to go green)
[73150](https://github.com/flutter/flutter/pull/73150) Roll Engine from e344970f1ac8 to 98ebeb11b5f7 (5 revisions) (cla: yes, waiting for tree to go green)
[73151](https://github.com/flutter/flutter/pull/73151) Roll Engine from 98ebeb11b5f7 to 7cb464aedbf3 (1 revision) (cla: yes, waiting for tree to go green)
[73153](https://github.com/flutter/flutter/pull/73153) improve error message for navigator page api (cla: yes, framework, waiting for tree to go green)
[73154](https://github.com/flutter/flutter/pull/73154) Roll Engine from 7cb464aedbf3 to 82b4ae86d69b (4 revisions) (cla: yes, waiting for tree to go green)
[73170](https://github.com/flutter/flutter/pull/73170) Roll Plugins from 96e2328fe633 to cfa709835ab8 (1 revision) (cla: yes, waiting for tree to go green)
[73195](https://github.com/flutter/flutter/pull/73195) SliverAppBar with ShrinkWrap Patch (a: layout, cla: yes, f: scrolling, framework, waiting for tree to go green)
[73235](https://github.com/flutter/flutter/pull/73235) Roll Engine from 82b4ae86d69b to 121b67fb8594 (8 revisions) (cla: yes, waiting for tree to go green)
[73247](https://github.com/flutter/flutter/pull/73247) Fixed typo in icon theme (cla: yes, documentation, framework, waiting for tree to go green)
[73259](https://github.com/flutter/flutter/pull/73259) Roll Engine from 121b67fb8594 to c2c11bc74557 (5 revisions) (cla: yes, waiting for tree to go green)
[73269](https://github.com/flutter/flutter/pull/73269) Roll Engine from c2c11bc74557 to bae6f4490209 (2 revisions) (cla: yes, waiting for tree to go green)
[73276](https://github.com/flutter/flutter/pull/73276) Fix dateAndTime and time modes of CupertinoDatePicker. (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73281](https://github.com/flutter/flutter/pull/73281) Add clipBehavior to InteractiveViewer (cla: yes, framework)
[73285](https://github.com/flutter/flutter/pull/73285) Roll Engine from bae6f4490209 to 90d1f05686e7 (5 revisions) (cla: yes, waiting for tree to go green)
[73290](https://github.com/flutter/flutter/pull/73290) Roll Engine from 90d1f05686e7 to 0049dcbfe92a (1 revision) (cla: yes, waiting for tree to go green)
[73292](https://github.com/flutter/flutter/pull/73292) Roll Engine from 0049dcbfe92a to b9dc0cf1d8c2 (1 revision) (cla: yes, waiting for tree to go green)
[73297](https://github.com/flutter/flutter/pull/73297) Roll Engine from b9dc0cf1d8c2 to b7352132cdc7 (2 revisions) (cla: yes, waiting for tree to go green)
[73300](https://github.com/flutter/flutter/pull/73300) Selecting spaces on SelectableText (mobile) (cla: yes, framework, waiting for tree to go green)
[73301](https://github.com/flutter/flutter/pull/73301) Roll Plugins from cfa709835ab8 to 16f37e9a814e (1 revision) (cla: yes, waiting for tree to go green)
[73303](https://github.com/flutter/flutter/pull/73303) fix a Gallery Menus issue (cla: yes, f: material design, team)
[73328](https://github.com/flutter/flutter/pull/73328) Roll Engine from b7352132cdc7 to 022bb11fa76c (2 revisions) (cla: yes, waiting for tree to go green)
[73340](https://github.com/flutter/flutter/pull/73340) Remove "unnecessary" imports in flutter/src/services (cla: yes, framework, waiting for tree to go green)
[73343](https://github.com/flutter/flutter/pull/73343) Roll Engine from 022bb11fa76c to e43fab841e89 (2 revisions) (cla: yes, waiting for tree to go green)
[73344](https://github.com/flutter/flutter/pull/73344) Remove "unnecessary" imports. (cla: yes, framework, waiting for tree to go green)
[73348](https://github.com/flutter/flutter/pull/73348) Roll Plugins from 16f37e9a814e to b64bebff9743 (2 revisions) (cla: yes, waiting for tree to go green)
[73349](https://github.com/flutter/flutter/pull/73349) Roll Engine from e43fab841e89 to d34c9912eb4a (2 revisions) (cla: yes, waiting for tree to go green)
[73352](https://github.com/flutter/flutter/pull/73352) Deprecated obsolete Material classes: FlatButton, RaisedButton, OutlineButton (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73353](https://github.com/flutter/flutter/pull/73353) [flutter_tools] delegate first run message re-display to new class, only if changed (cla: yes, tool, waiting for tree to go green)
[73357](https://github.com/flutter/flutter/pull/73357) [flutter_tools] prevent NPE due to moved/deleted packages during upgrade packages (cla: yes, tool, waiting for tree to go green)
[73361](https://github.com/flutter/flutter/pull/73361) Add material icons golden test (cla: yes, f: material design, framework, will affect goldens)
[73364](https://github.com/flutter/flutter/pull/73364) [flutter_tools] delete .packages during flutter clean (cla: yes, tool, waiting for tree to go green)
[73365](https://github.com/flutter/flutter/pull/73365) Roll Engine from d34c9912eb4a to a39f2839fa9c (5 revisions) (cla: yes, waiting for tree to go green)
[73366](https://github.com/flutter/flutter/pull/73366) [flutter_tools] Serve DevTools at app start (cla: yes, tool)
[73368](https://github.com/flutter/flutter/pull/73368) Remove "unnecessary" imports in flutter/src/rendering (cla: yes, framework, waiting for tree to go green)
[73370](https://github.com/flutter/flutter/pull/73370) minor streetAddressLine2 documentation update (cla: yes, framework, waiting for tree to go green)
[73371](https://github.com/flutter/flutter/pull/73371) Roll Engine from a39f2839fa9c to e1c1eb0d8c95 (1 revision) (cla: yes, waiting for tree to go green)
[73373](https://github.com/flutter/flutter/pull/73373) Map Linux AltGr to right alt. It was currently being ignored. (cla: yes, framework, team)
[73374](https://github.com/flutter/flutter/pull/73374) macrobenchmark: active TextField with complex paragraph (cla: yes, framework, team, waiting for tree to go green)
[73375](https://github.com/flutter/flutter/pull/73375) Minor tweaks to CONTRIBUTING.md (cla: yes, waiting for tree to go green)
[73376](https://github.com/flutter/flutter/pull/73376) Simplify the pull request template further. (cla: yes, waiting for tree to go green)
[73378](https://github.com/flutter/flutter/pull/73378) build ios-framework simulator slices for profile/release (cla: yes, team, tool)
[73380](https://github.com/flutter/flutter/pull/73380) Roll Engine from e1c1eb0d8c95 to e115066dcd65 (2 revisions) (cla: yes, waiting for tree to go green)
[73381](https://github.com/flutter/flutter/pull/73381) fix dropdown menu to position based on nearest navigator (cla: yes, f: material design, framework, waiting for tree to go green)
[73383](https://github.com/flutter/flutter/pull/73383) Remove build ios-framework --universal flag (a: existing-apps, cla: yes, platform-ios, team, tool)
[73389](https://github.com/flutter/flutter/pull/73389) Remove "unnecessary" imports from flutter/src/gestures (cla: yes, framework, waiting for tree to go green)
[73390](https://github.com/flutter/flutter/pull/73390) Roll Engine from e115066dcd65 to c98ff298fe0e (2 revisions) (cla: yes, waiting for tree to go green)
[73416](https://github.com/flutter/flutter/pull/73416) [web] Fix offline resource loader for serviceworker (cla: yes, tool, waiting for tree to go green)
[73417](https://github.com/flutter/flutter/pull/73417) Fix Android delete key crash (cla: yes, framework, waiting for tree to go green)
[73420](https://github.com/flutter/flutter/pull/73420) [flutter_tools] prevent hot reload/restart if device has not finished devFS initialization (cla: yes, tool, waiting for tree to go green)
[73426](https://github.com/flutter/flutter/pull/73426) [flutter_tools] describe current null safety build mode (cla: yes, tool)
[73430](https://github.com/flutter/flutter/pull/73430) [flutter_tools] allow applications to specify additional license files to be bundled into the application NOTICES automatically (cla: yes, tool, waiting for tree to go green)
[73436](https://github.com/flutter/flutter/pull/73436) Roll Plugins from b64bebff9743 to dac4b6f3c692 (1 revision) (cla: yes, waiting for tree to go green)
[73437](https://github.com/flutter/flutter/pull/73437) Revert "Build iOS apps using Swift Packages" (cla: yes, d: examples, team, tool)
[73442](https://github.com/flutter/flutter/pull/73442) Run pod repo update in iOS extension test (cla: yes, platform-ios, team)
[73449](https://github.com/flutter/flutter/pull/73449) Roll Engine from c98ff298fe0e to 1758eaa4edc3 (17 revisions) (cla: yes, waiting for tree to go green)
[73457](https://github.com/flutter/flutter/pull/73457) Roll Engine from 1758eaa4edc3 to 2e5833b7c572 (1 revision) (cla: yes, waiting for tree to go green)
[73458](https://github.com/flutter/flutter/pull/73458) Exclude arm64 from supported iOS simulator architectures (cla: yes, platform-ios, t: xcode, team, tool)
[73465](https://github.com/flutter/flutter/pull/73465) Roll Engine from 2e5833b7c572 to 7f00e2f6c53c (3 revisions) (cla: yes, waiting for tree to go green)
[73469](https://github.com/flutter/flutter/pull/73469) Roll Plugins from dac4b6f3c692 to 43ee609f0262 (1 revision) (cla: yes, waiting for tree to go green)
[73474](https://github.com/flutter/flutter/pull/73474) Add [pointerCount] property to Scale Gesture Details (cla: yes, f: material design, framework, waiting for tree to go green)
[73486](https://github.com/flutter/flutter/pull/73486) Remove "unnecessary" imports in flutter/src/cupertino (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73488](https://github.com/flutter/flutter/pull/73488) Remove "unnecessary" import in flutter_tools (cla: yes, tool, waiting for tree to go green)
[73490](https://github.com/flutter/flutter/pull/73490) Revert "Roll Engine from 2e5833b7c572 to 7f00e2f6c53c (3 revisions)" (cla: yes, engine)
[73500](https://github.com/flutter/flutter/pull/73500) Roll Plugins from 43ee609f0262 to d026d07afea2 (1 revision) (cla: yes, waiting for tree to go green)
[73502](https://github.com/flutter/flutter/pull/73502) [web] Switch flutter tool web-renderer default for web to auto (cla: yes, tool, waiting for tree to go green)
[73503](https://github.com/flutter/flutter/pull/73503) Revert "Add BuildContext parameter to TextEditingController.buildTextSpan" (cla: yes, f: material design, framework)
[73505](https://github.com/flutter/flutter/pull/73505) Remove an obsolete comment from pubspec.yaml (cla: yes, team, tool, waiting for tree to go green)
[73507](https://github.com/flutter/flutter/pull/73507) Roll Plugins from d026d07afea2 to 1b7afc52353c (2 revisions) (cla: yes, waiting for tree to go green)
[73508](https://github.com/flutter/flutter/pull/73508) Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73509](https://github.com/flutter/flutter/pull/73509) Migrate missed sample code to NNBD (cla: yes, f: material design, framework, waiting for tree to go green)
[73511](https://github.com/flutter/flutter/pull/73511) Revert "Exclude arm64 from supported iOS simulator architectures" (cla: yes, team, tool)
[73514](https://github.com/flutter/flutter/pull/73514) Update outdated links (a: internationalization, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)
[73521](https://github.com/flutter/flutter/pull/73521) Revert "Add material icons golden test (#73361)" (cla: yes, f: material design, framework)
[73522](https://github.com/flutter/flutter/pull/73522) Flutter 1.26 candidate.8 (cla: yes, engine, f: material design, framework)
[73529](https://github.com/flutter/flutter/pull/73529) Revert "[web] Switch flutter tool web-renderer default for web to auto" (cla: yes, tool)
[73545](https://github.com/flutter/flutter/pull/73545) Re-enable a ensureVisible test case (a: tests, cla: yes, framework, waiting for tree to go green)
[73558](https://github.com/flutter/flutter/pull/73558) snackBar should paint above the bottomSheet (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[73566](https://github.com/flutter/flutter/pull/73566) Fix "RefreshIndicator.color didn't update at runtime" (cla: yes, f: material design, framework)
[73571](https://github.com/flutter/flutter/pull/73571) Expose insetPadding and clipBehavior in SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green)
[73573](https://github.com/flutter/flutter/pull/73573) Roll Plugins from 1b7afc52353c to d01c84cb64d1 (3 revisions) (cla: yes, waiting for tree to go green)
[73575](https://github.com/flutter/flutter/pull/73575) Revert "Fix _LateInitializationError for RenderObjectElement.renderObject" (cla: yes, framework)
[73576](https://github.com/flutter/flutter/pull/73576) [flutter_tools] add API for passing arbitrary flags to tester binary (cla: yes, tool)
[73577](https://github.com/flutter/flutter/pull/73577) Move ios_content_validation_test to pre-submit tools test (cla: yes, team, tool)
[73578](https://github.com/flutter/flutter/pull/73578) Cupertino text selection menu customization (cla: yes, f: cupertino, f: material design, framework)
[73579](https://github.com/flutter/flutter/pull/73579) [flutter_tools] add 483 to non-recoverable errors (cla: yes, tool)
[73580](https://github.com/flutter/flutter/pull/73580) Reland "Fix _LateInitializationError for RenderObjectElement.renderObject" (cla: yes, framework, waiting for tree to go green)
[73582](https://github.com/flutter/flutter/pull/73582) web benchmark choose renderer explicitly (cla: yes, team, waiting for tree to go green)
[73585](https://github.com/flutter/flutter/pull/73585) Add ios and hot reload/restart infos to restoration docs (cla: yes, framework)
[73586](https://github.com/flutter/flutter/pull/73586) Mark firebase tests as flaky (a: tests, cla: yes, team, team: infra)
[73588](https://github.com/flutter/flutter/pull/73588) Roll Plugins from d01c84cb64d1 to b3bc1f2e246f (1 revision) (cla: yes, waiting for tree to go green)
[73589](https://github.com/flutter/flutter/pull/73589) Mark smoke-catalina not flaky (cla: yes, team, waiting for tree to go green)
[73591](https://github.com/flutter/flutter/pull/73591) Revert "Mark firebase tests as flaky" (cla: yes, team, team: infra)
[73594](https://github.com/flutter/flutter/pull/73594) Roll Engine from 2e5833b7c572 to 9cb4d2dd243d (32 revisions) (cla: yes, waiting for tree to go green)
[73595](https://github.com/flutter/flutter/pull/73595) [web] Reland - Switch flutter tool web-renderer default for web to auto (cla: yes, tool, waiting for tree to go green)
[73604](https://github.com/flutter/flutter/pull/73604) Remove deprecated CupertinoDialog (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73609](https://github.com/flutter/flutter/pull/73609) Revert "Roll Engine from 2e5833b7c572 to 9cb4d2dd243d (32 revisions)" (cla: yes, engine)
[73610](https://github.com/flutter/flutter/pull/73610) Revert "Revert "Roll Engine from 2e5833b7c572 to 9cb4d2dd243d (32 revisions)"" (cla: yes, engine)
[73612](https://github.com/flutter/flutter/pull/73612) Temporarily mark some tests flaky that fail now that they are being run by infra (cla: yes, team)
[73618](https://github.com/flutter/flutter/pull/73618) ListTile Material Ripple and Shape Patch (cla: yes, f: material design, framework)
[73626](https://github.com/flutter/flutter/pull/73626) Roll Engine from 9cb4d2dd243d to df07060e4e20 (7 revisions) (cla: yes, waiting for tree to go green)
[73627](https://github.com/flutter/flutter/pull/73627) Revert "Temporarily mark some tests flaky that fail now that they are being run by infra" (cla: yes, team)
[73629](https://github.com/flutter/flutter/pull/73629) Roll Engine from df07060e4e20 to 2d1810285ca5 (2 revisions) (cla: yes, waiting for tree to go green)
[73630](https://github.com/flutter/flutter/pull/73630) Generate dSYM files during iOS archive (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)
[73631](https://github.com/flutter/flutter/pull/73631) Roll Engine from 2d1810285ca5 to 40f385f57b43 (2 revisions) (cla: yes, waiting for tree to go green)
[73633](https://github.com/flutter/flutter/pull/73633) Roll Engine from 40f385f57b43 to 2bcb01b80ce5 (1 revision) (cla: yes, waiting for tree to go green)
[73636](https://github.com/flutter/flutter/pull/73636) Roll Engine from 2bcb01b80ce5 to caf6a8191fab (4 revisions) (cla: yes, waiting for tree to go green)
[73638](https://github.com/flutter/flutter/pull/73638) Roll Engine from caf6a8191fab to 87004b05ab5a (1 revision) (cla: yes, waiting for tree to go green)
[73654](https://github.com/flutter/flutter/pull/73654) Fix dropdown menu overscroll (cla: yes, f: material design, framework, waiting for tree to go green)
[73689](https://github.com/flutter/flutter/pull/73689) Bump cocoapods from 1.10.0 to 1.10.1 in /dev/ci/mac (cla: yes, team, team: infra, waiting for tree to go green)
[73712](https://github.com/flutter/flutter/pull/73712) Roll Engine from 87004b05ab5a to d5cacaa3a6a4 (13 revisions) (cla: yes, waiting for tree to go green)
[73715](https://github.com/flutter/flutter/pull/73715) Revert "Prevent text from overflowing in OutlineButton and OutlinedButton label." (cla: yes, f: material design, framework, waiting for tree to go green)
[73720](https://github.com/flutter/flutter/pull/73720) increase the value of debugImageOverheadAllowance from 1024 bytes to 128kb (cla: yes, framework)
[73722](https://github.com/flutter/flutter/pull/73722) Roll Engine from d5cacaa3a6a4 to bbf8668d53ab (3 revisions) (cla: yes, waiting for tree to go green)
[73728](https://github.com/flutter/flutter/pull/73728) Turn off mac_build_gallery during infra investigation (cla: yes, team, team: infra)
[73729](https://github.com/flutter/flutter/pull/73729) Roll Engine from bbf8668d53ab to 0ed964d6b764 (1 revision) (cla: yes, waiting for tree to go green)
[73732](https://github.com/flutter/flutter/pull/73732) Removed the color field from AppBarTheme (cla: yes, f: material design, framework)
[73733](https://github.com/flutter/flutter/pull/73733) [flutter_tools] flutter precache downloads all enabled platforms if no flags are provided (cla: yes, tool, waiting for tree to go green)
[73736](https://github.com/flutter/flutter/pull/73736) [flutter_tools] daemon does not report platforms that are not enabled (cla: yes, tool)
[73745](https://github.com/flutter/flutter/pull/73745) Remove deprecated actionsForegroundColor from Cupertino[Sliver]NavigationBar (cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)
[73746](https://github.com/flutter/flutter/pull/73746) Remove deprecated ButtonTheme.bar (cla: yes, f: material design, framework, severe: API break, waiting for tree to go green)
[73747](https://github.com/flutter/flutter/pull/73747) Remove span deprecations (cla: yes, framework, severe: API break, waiting for tree to go green)
[73748](https://github.com/flutter/flutter/pull/73748) Remove deprecated RenderView.scheduleInitialFrame (cla: yes, framework, severe: API break, waiting for tree to go green)
[73749](https://github.com/flutter/flutter/pull/73749) Remove deprecated Layer.findAll (cla: yes, framework, severe: API break, waiting for tree to go green)
[73753](https://github.com/flutter/flutter/pull/73753) Autocomplete (Material) (cla: yes, f: material design, framework)
[73754](https://github.com/flutter/flutter/pull/73754) Remove deprecated WaitUntil[NoTransientCallbacks, NoPendingFrame, FirstFrameRasterized] methods from flutter_driver (a: tests, cla: yes, framework, severe: API break, waiting for tree to go green)
[73755](https://github.com/flutter/flutter/pull/73755) Exclude arm64 from valid iOS simulators (cla: yes, team, tool)
[73756](https://github.com/flutter/flutter/pull/73756) Roll Engine from 0ed964d6b764 to 2dee0d2f071b (8 revisions) (cla: yes, waiting for tree to go green)
[73758](https://github.com/flutter/flutter/pull/73758) Fix plugin java class desugar (cla: yes, team, tool, waiting for tree to go green)
[73760](https://github.com/flutter/flutter/pull/73760) Fix typo resolved->reported in security.md (cla: yes, waiting for tree to go green)
[73761](https://github.com/flutter/flutter/pull/73761) add a readme for the dart fix tests (cla: yes, documentation, framework)
[73765](https://github.com/flutter/flutter/pull/73765) Revert "Roll Engine from 0ed964d6b764 to 2dee0d2f071b (8 revisions)" (cla: yes, engine)
[73771](https://github.com/flutter/flutter/pull/73771) Roll Engine from 0ed964d6b764 to 10cee6abcb35 (17 revisions) (cla: yes, waiting for tree to go green)
[73772](https://github.com/flutter/flutter/pull/73772) Update CupertinoSlidingSegmentedControl (cla: yes, f: cupertino, framework, waiting for tree to go green)
[73773](https://github.com/flutter/flutter/pull/73773) Fix typo ' to ` in template (cla: yes, tool, waiting for tree to go green)
[73780](https://github.com/flutter/flutter/pull/73780) Fix single ToggleButton border painting bugs (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)
[73798](https://github.com/flutter/flutter/pull/73798) [flutter_tools] ensure --dart-define can parse args with commas (cla: yes, team, tool)
[73799](https://github.com/flutter/flutter/pull/73799) Roll Plugins from b3bc1f2e246f to a0e793734eac (4 revisions) (cla: yes, waiting for tree to go green)
[73800](https://github.com/flutter/flutter/pull/73800) [versions] update all dependencies (cla: yes, team, waiting for tree to go green)
[73803](https://github.com/flutter/flutter/pull/73803) sorting plugins alphabetically when refreshed (cla: yes, tool)
[73807](https://github.com/flutter/flutter/pull/73807) Revert "Exclude arm64 from valid iOS simulators" (cla: yes, team, tool)
[73808](https://github.com/flutter/flutter/pull/73808) Add recommended Xcode version to doctor (cla: yes, t: xcode, tool)
[73809](https://github.com/flutter/flutter/pull/73809) Mark linux_web_tool_tests not flaky (cla: yes, platform-web, team)
[73829](https://github.com/flutter/flutter/pull/73829) Expose DialogRoutes for state restoration support (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73846](https://github.com/flutter/flutter/pull/73846) fix a tap gesture exception (cla: yes, framework, waiting for tree to go green)
[73868](https://github.com/flutter/flutter/pull/73868) Roll Plugins from a0e793734eac to 782a7a9c95c8 (1 revision) (cla: yes, waiting for tree to go green)
[73875](https://github.com/flutter/flutter/pull/73875) Migrate the rest of the metrics center library (cla: yes, team)
[73877](https://github.com/flutter/flutter/pull/73877) Move async guard wrapping of crash reporter up a level (cla: yes, tool, waiting for tree to go green)
[73878](https://github.com/flutter/flutter/pull/73878) Roll Plugins from 782a7a9c95c8 to 4fec22738731 (1 revision) (cla: yes, waiting for tree to go green)
[73879](https://github.com/flutter/flutter/pull/73879) [flutter_tools] do not crash if target file cannot be read for language version (cla: yes, tool, waiting for tree to go green)
[73882](https://github.com/flutter/flutter/pull/73882) Mac context menu (cla: yes, f: cupertino, f: material design, framework)
[73886](https://github.com/flutter/flutter/pull/73886) Roll Engine from 10cee6abcb35 to 648dae9d99e7 (25 revisions) (cla: yes, waiting for tree to go green)
[73889](https://github.com/flutter/flutter/pull/73889) Add hot reload test tasks for Linux and Windows desktop (cla: yes, team)
[73890](https://github.com/flutter/flutter/pull/73890) [flutter_tools] add error handling wrapping for File.createSync (cla: yes, tool, waiting for tree to go green)
[73891](https://github.com/flutter/flutter/pull/73891) [flutter_tools] dont crash on invalid utf8 in pubspec (cla: yes, tool, waiting for tree to go green)
[73894](https://github.com/flutter/flutter/pull/73894) Added ButtonStyle.alignment property (cla: yes, f: material design, framework)
[73895](https://github.com/flutter/flutter/pull/73895) Flutter 1.26 candidate.10 (cla: yes, f: material design, framework, waiting for tree to go green)
[73896](https://github.com/flutter/flutter/pull/73896) Revert "[flutter_tools] Serve DevTools at app start" (cla: yes, tool)
[73897](https://github.com/flutter/flutter/pull/73897) Roll Engine from 648dae9d99e7 to 546e70df8ce7 (5 revisions) (cla: yes, waiting for tree to go green)
[73898](https://github.com/flutter/flutter/pull/73898) Roll Plugins from 4fec22738731 to 0434f0640052 (3 revisions) (cla: yes, waiting for tree to go green)
[73899](https://github.com/flutter/flutter/pull/73899) Restore adaptive nature to new Scrollbar (cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)
[73900](https://github.com/flutter/flutter/pull/73900) Added CupertinoButton alignment property (cla: yes, f: cupertino, framework)
[73901](https://github.com/flutter/flutter/pull/73901) Add gradle_desugar_test to the builders (cla: yes, team)
[73902](https://github.com/flutter/flutter/pull/73902) Roll Engine from 546e70df8ce7 to 4c11ced794d6 (3 revisions) (cla: yes, waiting for tree to go green)
[73903](https://github.com/flutter/flutter/pull/73903) Revert "Revert "[flutter_tools] Serve DevTools at app start"" (cla: yes, tool)
[73904](https://github.com/flutter/flutter/pull/73904) Mark perf tests as flaky (cla: yes, team)
[73909](https://github.com/flutter/flutter/pull/73909) Roll Engine from 4c11ced794d6 to 1b5e16cda29a (3 revisions) (cla: yes, waiting for tree to go green)
[73925](https://github.com/flutter/flutter/pull/73925) Apply ListTile colors to leading and trailing text widgets (cla: yes, f: material design, framework, waiting for tree to go green)
[73934](https://github.com/flutter/flutter/pull/73934) Roll Plugins from 0434f0640052 to d0b7109f6b00 (3 revisions) (cla: yes, waiting for tree to go green)
[73939](https://github.com/flutter/flutter/pull/73939) Roll Plugins from d0b7109f6b00 to 980b674cb402 (1 revision) (cla: yes, waiting for tree to go green)
[73944](https://github.com/flutter/flutter/pull/73944) Avoid relative paths in .dart_tool/package_config.json when generate:true (cla: yes, tool)
[73955](https://github.com/flutter/flutter/pull/73955) Roll Plugins from 980b674cb402 to 5916f55664e1 (1 revision) (cla: yes, waiting for tree to go green)
[73957](https://github.com/flutter/flutter/pull/73957) [flutter_tools] no-op maven artifacts if Android SDK is absent (cla: yes, tool, waiting for tree to go green)
[73961](https://github.com/flutter/flutter/pull/73961) Revert "Improve codesign script" (cla: yes, team)
[73962](https://github.com/flutter/flutter/pull/73962) [flutter_tools] open chrome to correct base URL when base url is specified in index.html (cla: yes, tool, waiting for tree to go green)
[73984](https://github.com/flutter/flutter/pull/73984) Roll Engine from 1b5e16cda29a to effb529ecec8 (17 revisions) (cla: yes, waiting for tree to go green)
[73985](https://github.com/flutter/flutter/pull/73985) [flutter_releases] Flutter 1.25.0-8.3.pre framework cherrypicks (cla: yes, engine, f: cupertino, framework, team, tool)
[73986](https://github.com/flutter/flutter/pull/73986) Remove flaky non-e2e test (cla: yes, team)
[73989](https://github.com/flutter/flutter/pull/73989) Add fixes for Stack deprecation (cla: yes, framework, team, waiting for tree to go green)
[73992](https://github.com/flutter/flutter/pull/73992) BorderTween.lerp supports null begin/end values (cla: yes, f: cupertino, framework)
[73993](https://github.com/flutter/flutter/pull/73993) Fix canpop logic to be more robust (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[73994](https://github.com/flutter/flutter/pull/73994) Add fixes for deprecations in TextTheme (cla: yes, f: material design, framework, team, waiting for tree to go green)
[73995](https://github.com/flutter/flutter/pull/73995) Roll Engine from effb529ecec8 to ee2ac2a5afc3 (3 revisions) (cla: yes, waiting for tree to go green)
[73996](https://github.com/flutter/flutter/pull/73996) Add fixes for autovalidate deprecation in Form, FormField, TextFormField, and DropdownButtonFormField (cla: yes, f: material design, framework, team, waiting for tree to go green)
[73997](https://github.com/flutter/flutter/pull/73997) Re-land codesign test improvement (cla: yes, team, waiting for tree to go green)
[74000](https://github.com/flutter/flutter/pull/74000) Update DDS to 1.7.1 (cla: yes, team)
[74003](https://github.com/flutter/flutter/pull/74003) Build x86_64 iOS apps with simulator local engines (a: existing-apps, cla: yes, platform-ios, tool)
[74004](https://github.com/flutter/flutter/pull/74004) Roll Engine from ee2ac2a5afc3 to 0123541c394c (7 revisions) (cla: yes, waiting for tree to go green)
[74006](https://github.com/flutter/flutter/pull/74006) Remove smoke_catalina_hot_mode_dev_cycle__benchmark (a: tests, cla: yes, platform-mac, team, team: infra)
[74007](https://github.com/flutter/flutter/pull/74007) Remove smoke_catalina_start_up_ios (cla: yes, team)
[74010](https://github.com/flutter/flutter/pull/74010) Roll Engine from 0123541c394c to efa768683eaf (1 revision) (cla: yes, waiting for tree to go green)
[74017](https://github.com/flutter/flutter/pull/74017) Roll Plugins from 5916f55664e1 to eccc3cd64402 (4 revisions) (cla: yes, waiting for tree to go green)
[74028](https://github.com/flutter/flutter/pull/74028) Roll Engine from efa768683eaf to 69a7538a908c (4 revisions) (cla: yes, waiting for tree to go green)
[74037](https://github.com/flutter/flutter/pull/74037) Roll Engine from 69a7538a908c to 67591c224585 (1 revision) (cla: yes, waiting for tree to go green)
[74049](https://github.com/flutter/flutter/pull/74049) Roll Plugins from eccc3cd64402 to e11301324721 (1 revision) (cla: yes, waiting for tree to go green)
[74055](https://github.com/flutter/flutter/pull/74055) Skip flaky flutter_immediately_exit test (cla: yes, team: flakes, tool)
[74060](https://github.com/flutter/flutter/pull/74060) Fix pub upgrade to work with new arguments (cla: yes, tool)
[74062](https://github.com/flutter/flutter/pull/74062) Remove more flaky non-e2e tests (cla: yes, team)
[74065](https://github.com/flutter/flutter/pull/74065) No test core (cla: yes, team)
[74066](https://github.com/flutter/flutter/pull/74066) Remove unused semantics tap action for readonly textfield and selecta… (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74068](https://github.com/flutter/flutter/pull/74068) Revert integration_test in flutter create template (cla: yes, tool)
[74072](https://github.com/flutter/flutter/pull/74072) Roll Engine from 67591c224585 to a243f4df0711 (4 revisions) (cla: yes, waiting for tree to go green)
[74075](https://github.com/flutter/flutter/pull/74075) [flutter_tools] handle NPE in language analytics (cla: yes, tool, waiting for tree to go green)
[74077](https://github.com/flutter/flutter/pull/74077) Expand Stack fix to more exporting libraries (cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)
[74078](https://github.com/flutter/flutter/pull/74078) Roll Engine from a243f4df0711 to 1424dfbe4d57 (6 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[74079](https://github.com/flutter/flutter/pull/74079) [flutter_tools] verify successful dart migrate (cla: yes, tool, waiting for tree to go green)
[74080](https://github.com/flutter/flutter/pull/74080) Add verbose build flag to ios_app_with_extensions_test (a: tests, cla: yes, team)
[74088](https://github.com/flutter/flutter/pull/74088) Revert "Improve the ScrollBar behavior when nested" (cla: yes, f: cupertino, f: material design, framework)
[74089](https://github.com/flutter/flutter/pull/74089) Update the alt text to match recommendations in HTML spec (cla: yes, framework, waiting for tree to go green)
[74090](https://github.com/flutter/flutter/pull/74090) Tests that module/plugin/package templates can be migrated to null-safety (cla: yes, tool, waiting for tree to go green)
[74091](https://github.com/flutter/flutter/pull/74091) [flutter_tools] ensure allowExistingDdsInstance param is always non-null (cla: yes, tool)
[74093](https://github.com/flutter/flutter/pull/74093) ScaffoldMessenger only shows to root nested Scaffold (a: layout, a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green, will affect goldens)
[74094](https://github.com/flutter/flutter/pull/74094) Roll Plugins from e11301324721 to 6ee63e8802d2 (2 revisions) (cla: yes, waiting for tree to go green)
[74097](https://github.com/flutter/flutter/pull/74097) Roll Plugins from 6ee63e8802d2 to 5cff819332b1 (1 revision) (cla: yes, waiting for tree to go green)
[74099](https://github.com/flutter/flutter/pull/74099) Roll Plugins from 5cff819332b1 to faa26ec364cd (1 revision) (cla: yes, waiting for tree to go green)
[74104](https://github.com/flutter/flutter/pull/74104) Reland "Improve the ScrollBar behavior when nested (#71843)" (cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)
[74109](https://github.com/flutter/flutter/pull/74109) Add tracing test to check default streams (cla: yes, team)
[74126](https://github.com/flutter/flutter/pull/74126) Roll Engine from 1424dfbe4d57 to f392053b1f2a (11 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[74130](https://github.com/flutter/flutter/pull/74130) Roll Engine from f392053b1f2a to 0716ca8943f5 (4 revisions) (cla: yes, waiting for tree to go green)
[74131](https://github.com/flutter/flutter/pull/74131) Add material icons golden test (cla: yes, f: material design, framework)
[74141](https://github.com/flutter/flutter/pull/74141) Roll Engine from 0716ca8943f5 to 609036f2bf7c (3 revisions) (cla: yes, waiting for tree to go green)
[74171](https://github.com/flutter/flutter/pull/74171) Roll package:dds to 1.7.2 (cla: yes, team)
[74215](https://github.com/flutter/flutter/pull/74215) Use package:vm_service instead of json_rpc_2 (cla: yes, team, tool)
[74249](https://github.com/flutter/flutter/pull/74249) [flutter_tools] ensure pub get can run from partially valid state (cla: yes, tool, waiting for tree to go green)
[74251](https://github.com/flutter/flutter/pull/74251) Print DevTools inspector links in RenderFlex Overflow errors (cla: yes, framework, tool, waiting for tree to go green)
[74259](https://github.com/flutter/flutter/pull/74259) [flutter_tools] throwToolExit from archive failure (cla: yes, tool)
[74264](https://github.com/flutter/flutter/pull/74264) [flutter_tools] pub get skips example dir if there is no pubspec.yaml (cla: yes, tool)
[74265](https://github.com/flutter/flutter/pull/74265) Add null safety note to flutter create (cla: yes, tool)
[74266](https://github.com/flutter/flutter/pull/74266) Roll Engine from 609036f2bf7c to 915e2ca178e5 (13 revisions) (cla: yes, waiting for tree to go green)
[74269](https://github.com/flutter/flutter/pull/74269) Roll Engine from 915e2ca178e5 to b58dbc88fce9 (1 revision) (cla: yes, waiting for tree to go green)
[74271](https://github.com/flutter/flutter/pull/74271) Return the existing DevTools server from DevToolsLauncher.serve if one is already running. (cla: yes, tool)
[74272](https://github.com/flutter/flutter/pull/74272) Roll package:dds to 1.7.3 and add error handling for VM service disappearing (cla: yes, team, tool)
[74273](https://github.com/flutter/flutter/pull/74273) Replaced uses of AppBarTheme.color with AppBarTheme.backgroundColor (cla: yes, f: material design, framework)
[74280](https://github.com/flutter/flutter/pull/74280) Check VM service URI is valid before attempting to start DDS (Re-upload #73998) (cla: yes, tool, waiting for tree to go green)
[74285](https://github.com/flutter/flutter/pull/74285) Pass only Uri to package:http APIs (cla: yes, team, tool, waiting for tree to go green)
[74286](https://github.com/flutter/flutter/pull/74286) Material Desktop Context Menu (cla: yes, f: cupertino, f: material design, framework)
[74293](https://github.com/flutter/flutter/pull/74293) [flutter_tools] Fix ignoring of Flutter tester exitCode (cla: yes, tool)
[74299](https://github.com/flutter/flutter/pull/74299) New Reorderable list widgets (cla: yes, f: material design, f: scrolling, framework, severe: new feature)
[74306](https://github.com/flutter/flutter/pull/74306) Rephrase null safety mode (cla: yes, tool)
[74309](https://github.com/flutter/flutter/pull/74309) MaterialBanner alignment fixes and improvements (cla: yes, f: material design, framework, waiting for tree to go green)
[74329](https://github.com/flutter/flutter/pull/74329) Roll Engine from b58dbc88fce9 to 0c79393dde01 (14 revisions) (cla: yes)
[74335](https://github.com/flutter/flutter/pull/74335) Revert "ListTile Material Ripple and Shape Patch (#73618)" (cla: yes, f: material design, framework)
[74341](https://github.com/flutter/flutter/pull/74341) Improve DebugCreator docs (cla: yes, framework)
[74342](https://github.com/flutter/flutter/pull/74342) Don't use iOS font names for the macOS theme (cla: yes, f: material design, framework)
[74348](https://github.com/flutter/flutter/pull/74348) Adjust desktop feature flag (cla: yes, tool)
[74349](https://github.com/flutter/flutter/pull/74349) Revert "[text_input] prepare for custom text input sources" (cla: yes, framework, waiting for tree to go green)
[74355](https://github.com/flutter/flutter/pull/74355) [flutter_releases] Flutter Stable 1.22.6 Framework Cherrypicks (cla: yes, engine, tool)
[74359](https://github.com/flutter/flutter/pull/74359) Skip flutter_immediately_exit_test (cla: yes, team, tool)
[74362](https://github.com/flutter/flutter/pull/74362) Roll Engine from 0c79393dde01 to ced7bff0c28b (12 revisions) (cla: yes, waiting for tree to go green)
[74365](https://github.com/flutter/flutter/pull/74365) Don't crash on narrow window widths (cla: yes, tool)
[74369](https://github.com/flutter/flutter/pull/74369) Roll Engine from ced7bff0c28b to 920a33a0fc3a (4 revisions) (cla: yes, waiting for tree to go green)
[74371](https://github.com/flutter/flutter/pull/74371) Roll Engine from 920a33a0fc3a to dde6b7e8ea0a (1 revision) (cla: yes, waiting for tree to go green)
[74375](https://github.com/flutter/flutter/pull/74375) Roll Engine from dde6b7e8ea0a to a05fc88f8f39 (2 revisions) (cla: yes, waiting for tree to go green)
[74383](https://github.com/flutter/flutter/pull/74383) Remove "unnecessary" imports in dev/integration_tests (a: accessibility, cla: yes, f: material design, team, waiting for tree to go green)
[74385](https://github.com/flutter/flutter/pull/74385) Remove "unnecessary" imports in dev/manual_tests (cla: yes, f: material design, team, waiting for tree to go green)
[74396](https://github.com/flutter/flutter/pull/74396) Roll Engine from a05fc88f8f39 to 30bb7452f8f0 (2 revisions) (cla: yes, waiting for tree to go green)
[74401](https://github.com/flutter/flutter/pull/74401) Cherrypick engine to 78200e894425e978bacba54320ef63e570af234a (cla: yes, engine)
[74402](https://github.com/flutter/flutter/pull/74402) fix a RenderBox.size access exception (cla: yes, framework, waiting for tree to go green)
[74420](https://github.com/flutter/flutter/pull/74420) Roll Engine from 30bb7452f8f0 to 30486859d161 (2 revisions) (cla: yes, waiting for tree to go green)
[74423](https://github.com/flutter/flutter/pull/74423) Fix bugs with ext.flutter.activeDevToolsServerAddress (cla: yes, tool, waiting for tree to go green)
[74424](https://github.com/flutter/flutter/pull/74424) Handle service disappeared RPCError when VM service connection disappears (cla: yes, tool)
[74425](https://github.com/flutter/flutter/pull/74425) Desktop keys: up/down + line modifier (cla: yes, framework)
[74426](https://github.com/flutter/flutter/pull/74426) Roll Plugins from faa26ec364cd to 07cf89a08b88 (5 revisions) (cla: yes, waiting for tree to go green)
[74427](https://github.com/flutter/flutter/pull/74427) Roll Engine from 30486859d161 to 90641fa92385 (4 revisions) (cla: yes, waiting for tree to go green)
[74428](https://github.com/flutter/flutter/pull/74428) Add details to the iOS part integration_test (cla: yes, team)
[74434](https://github.com/flutter/flutter/pull/74434) Manually close tree while devicelab staging is failing (cla: yes, team)
[74438](https://github.com/flutter/flutter/pull/74438) Revert "Manually close tree while devicelab staging is failing (#74434)" (cla: yes, team)
[74439](https://github.com/flutter/flutter/pull/74439) Revert "Update PopupMenuButton to match Material Design spec" (a: internationalization, cla: yes, f: material design, framework)
[74441](https://github.com/flutter/flutter/pull/74441) Block the tree on mac_android test failures running on luci. (cla: yes, team)
[74444](https://github.com/flutter/flutter/pull/74444) [flutter_tools] flag flip (cla: yes, tool)
[74449](https://github.com/flutter/flutter/pull/74449) Remove workaround now that type promotion accounts for local boolean variables. (cla: yes, framework, waiting for tree to go green)
[74450](https://github.com/flutter/flutter/pull/74450) Revert "Add removeListenerWhileNotifying benchmark for...(#71986)" (cla: yes, team)
[74452](https://github.com/flutter/flutter/pull/74452) [flutter_tools] provide correct sources and metadata for different base hrefs (cla: yes, tool, waiting for tree to go green)
[74454](https://github.com/flutter/flutter/pull/74454) Space and arrow keys in a text field shouldn't scroll (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74455](https://github.com/flutter/flutter/pull/74455) Create custom DiagnosticsNode type for DevTools deep links. (cla: yes, framework)
[74456](https://github.com/flutter/flutter/pull/74456) Roll Plugins from 07cf89a08b88 to 6fa2ead23e8d (2 revisions) (cla: yes, waiting for tree to go green)
[74459](https://github.com/flutter/flutter/pull/74459) Remove devicelab mac android tasks from manifest.yaml (cla: yes, team)
[74463](https://github.com/flutter/flutter/pull/74463) Remove build_gallery tests (cla: yes, team, waiting for tree to go green)
[74464](https://github.com/flutter/flutter/pull/74464) [flutter_tools] test toggle debugPaintsize (cla: yes, tool)
[74473](https://github.com/flutter/flutter/pull/74473) [integration_test] fix zip command (cla: yes, team)
[74513](https://github.com/flutter/flutter/pull/74513) [flutter_tools] fix web messaging (cla: yes, tool)
[74514](https://github.com/flutter/flutter/pull/74514) Roll Plugins from 6fa2ead23e8d to 6783cd5ebd54 (1 revision) (cla: yes, waiting for tree to go green)
[74517](https://github.com/flutter/flutter/pull/74517) Roll Engine from 90641fa92385 to fdddf8708039 (32 revisions) (cla: yes, waiting for tree to go green)
[74526](https://github.com/flutter/flutter/pull/74526) [flutter_tools] ensure unstable compiler features are not available on stable (cla: yes, tool)
[74528](https://github.com/flutter/flutter/pull/74528) Handle RPCError when VM service disappears while invoking `VmService.getIsolate` (cla: yes, tool)
[74531](https://github.com/flutter/flutter/pull/74531) Re-add tool test general per-test timeout (cla: yes, team, tool)
[74532](https://github.com/flutter/flutter/pull/74532) Remove unused bigquery code and deps (cla: yes, team)
[74534](https://github.com/flutter/flutter/pull/74534) Add connectedVmServiceUri service extension and set from flutter_tools (cla: yes, framework, tool)
[74535](https://github.com/flutter/flutter/pull/74535) Drop metrics_center (cla: yes, team, waiting for tree to go green)
[74540](https://github.com/flutter/flutter/pull/74540) Roll Engine from fdddf8708039 to 05b4bec8b3c1 (8 revisions) (cla: yes, waiting for tree to go green, will affect goldens)
[74543](https://github.com/flutter/flutter/pull/74543) Fail ColdRunner.attach() eagerly when device connection fails (cla: yes, tool, waiting for tree to go green)
[74545](https://github.com/flutter/flutter/pull/74545) Allow tests to override _DevFSHttpWriter._startWrite throttle time (cla: yes, team, tool, waiting for tree to go green)
[74570](https://github.com/flutter/flutter/pull/74570) Roll Plugins from 6783cd5ebd54 to 712dcc184380 (1 revision) (cla: yes, waiting for tree to go green)
[74572](https://github.com/flutter/flutter/pull/74572) Cherrypick engine to 5c9b34399c2a4c6087feeae81f710fe7651568f5 (cla: yes, engine)
[74574](https://github.com/flutter/flutter/pull/74574) Handle more cases where the tool receives RPCError 112 (cla: yes, tool)
[74601](https://github.com/flutter/flutter/pull/74601) Revert "Handle more cases where the tool receives RPCError 112" (cla: yes, tool)
[74602](https://github.com/flutter/flutter/pull/74602) Reland: Handle more cases where the tool receives RPCError 112 (cla: yes, tool)
[74610](https://github.com/flutter/flutter/pull/74610) ChoiceChip's default "selected" style in dark mode theme is unreadabl… (cla: yes, f: material design, framework, waiting for tree to go green)
[74622](https://github.com/flutter/flutter/pull/74622) [flutter_tools] Consistently set the working directory for Flutter Test (a: internationalization, cla: yes, f: cupertino, f: material design, team, tool, waiting for tree to go green)
[74627](https://github.com/flutter/flutter/pull/74627) use predefined constants (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74635](https://github.com/flutter/flutter/pull/74635) Update localizations (a: internationalization, cla: yes, f: cupertino, f: material design)
[74657](https://github.com/flutter/flutter/pull/74657) Remove vestigial nullOk parameter from Localizations.localeOf (a: internationalization, cla: yes, framework)
[74661](https://github.com/flutter/flutter/pull/74661) remove some stray nullOK mentions from docs (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)
[74663](https://github.com/flutter/flutter/pull/74663) Roll Plugins from 712dcc184380 to 18124285feeb (1 revision) (cla: yes, waiting for tree to go green)
[74664](https://github.com/flutter/flutter/pull/74664) [flutter_tools] handle waitForExtension having no isolates (cla: yes, tool, waiting for tree to go green)
[74665](https://github.com/flutter/flutter/pull/74665) Handle 'Existing VM service clients' error from old VM service instances (cla: yes, tool, waiting for tree to go green)
[74666](https://github.com/flutter/flutter/pull/74666) Roll Engine from 05b4bec8b3c1 to 45579893b117 (24 revisions) (cla: yes, waiting for tree to go green)
[74669](https://github.com/flutter/flutter/pull/74669) default CupertinoSliverNavigationBar's stretch to false (cla: yes, f: cupertino, framework, waiting for tree to go green)
[74671](https://github.com/flutter/flutter/pull/74671) Roll packages (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)
[74672](https://github.com/flutter/flutter/pull/74672) [flutter_tools] check if process manager can find adb (cla: yes, tool, waiting for tree to go green)
[74675](https://github.com/flutter/flutter/pull/74675) Remove unused deploy_gallery.sh (cla: yes, team, waiting for tree to go green)
[74680](https://github.com/flutter/flutter/pull/74680) Remove nullOk from Actions.invoke, add Actions.maybeInvoke (cla: yes, framework)
[74681](https://github.com/flutter/flutter/pull/74681) Roll Engine from 45579893b117 to ee07d1b448ba (10 revisions) (cla: yes, waiting for tree to go green)
[74683](https://github.com/flutter/flutter/pull/74683) Swap the Shortcuts widget with its child in TextField (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)
[74685](https://github.com/flutter/flutter/pull/74685) Move android_plugin_example_app_build_test from devicelab to tool integration tests (cla: yes, team, tool)
[74689](https://github.com/flutter/flutter/pull/74689) Added some tests and comments for the Reorderable Lists. (cla: yes, framework, waiting for tree to go green)
[74690](https://github.com/flutter/flutter/pull/74690) Roll Engine from ee07d1b448ba to ecbafdd52327 (4 revisions) (cla: yes, waiting for tree to go green)
[74691](https://github.com/flutter/flutter/pull/74691) Roll Plugins from 18124285feeb to 919eaef4dcc7 (2 revisions) (cla: yes, waiting for tree to go green)
[74693](https://github.com/flutter/flutter/pull/74693) Roll Engine from ecbafdd52327 to 6e391c5942b4 (5 revisions) (cla: yes, waiting for tree to go green)
[74694](https://github.com/flutter/flutter/pull/74694) Roll Engine from 6e391c5942b4 to f47ab4434dbe (1 revision) (cla: yes, waiting for tree to go green)
### Merged PRs in `flutter/engine` from 2020-09-11T02:17:00.000Z to 2021-01-26T18:58:00.000Z
There were 1864 pull requests.
[17881](https://github.com/flutter/engine/pull/17881) Enabled metal on ios simulator (cla: yes, waiting for tree to go green)
[18733](https://github.com/flutter/engine/pull/18733) delete opengl texture when it detatch from surfacetexture. (cla: yes, waiting for tree to go green)
[19134](https://github.com/flutter/engine/pull/19134) [web] Support custom url strategies (cla: yes, platform-web)
[19292](https://github.com/flutter/engine/pull/19292) [iOS] Fix platfotm view called multiple times (cla: yes, platform-ios, waiting for tree to go green)
[19405](https://github.com/flutter/engine/pull/19405) Add windows plugin texture support (Work in progress (WIP), cla: yes, waiting for tree to go green)
[19634](https://github.com/flutter/engine/pull/19634) Add accessibility suport to Linux shell. (cla: yes)
[19843](https://github.com/flutter/engine/pull/19843) Migrate Dart_WeakPersistentHandle uses and roll Dart (cla: yes)
[19905](https://github.com/flutter/engine/pull/19905) Updated ColorMatrix to ColorFilter (cla: yes)
[19929](https://github.com/flutter/engine/pull/19929) Implement iOS [UITextInput firstRectForRange:] with markedText (cla: yes, platform-ios)
[19998](https://github.com/flutter/engine/pull/19998) Added GLFW error-callback into FlutterEmbedderGLFW (cla: yes)
[20160](https://github.com/flutter/engine/pull/20160) iOS Text Editing Infinite Loop (cla: yes, platform-ios)
[20254](https://github.com/flutter/engine/pull/20254) Add support of cross-building the engine for ARM64 Linux Host (cla: yes)
[20309](https://github.com/flutter/engine/pull/20309) Exposing ColorFilter to ImageFilter conversion and Compose() (cla: yes, waiting for tree to go green)
[20330](https://github.com/flutter/engine/pull/20330) Minor documentation details/breadcrumbs (cla: yes, platform-android)
[20472](https://github.com/flutter/engine/pull/20472) set old_gen_heap_size to half of available memory on iOS (cla: yes, platform-ios, waiting for tree to go green)
[20473](https://github.com/flutter/engine/pull/20473) Limit heap growth on Android (cla: yes, platform-android)
[20496](https://github.com/flutter/engine/pull/20496) Migration to PlatformDispatcher and multi-window (cla: yes, platform-android, platform-ios)
[20531](https://github.com/flutter/engine/pull/20531) hasStrings Mac (cla: yes)
[20629](https://github.com/flutter/engine/pull/20629) Add Linux Wayland support (cla: yes)
[20643](https://github.com/flutter/engine/pull/20643) SKP based shader warmup (cla: yes, waiting for tree to go green)
[20748](https://github.com/flutter/engine/pull/20748) Git versioning flag (cla: yes)
[20794](https://github.com/flutter/engine/pull/20794) Implement browser history class for router widget (cla: yes, platform-web, waiting for tree to go green)
[20836](https://github.com/flutter/engine/pull/20836) Track lock key down state instead of lock state (affects: desktop, cla: yes, needs tests, platform-linux)
[20868](https://github.com/flutter/engine/pull/20868) Deprecate Android v1 embedding classes (cla: yes, platform-android, waiting for tree to go green)
[20962](https://github.com/flutter/engine/pull/20962) Split out EmbedderTest{Context,Compositor} to handle software and GL separately (cla: yes, waiting for tree to go green)
[20963](https://github.com/flutter/engine/pull/20963) running screenshot tests on ios-safari unit tests (cla: yes)
[20972](https://github.com/flutter/engine/pull/20972) Added keyEvent support for iOS 13.4+ (cla: yes, platform-ios, waiting for tree to go green)
[20981](https://github.com/flutter/engine/pull/20981) Clean up deprecated EncodableValue code (cla: yes)
[20997](https://github.com/flutter/engine/pull/20997) add checker board for clip_path,clip_rect,clip_rrect,physical_shap_layer (cla: yes)
[21048](https://github.com/flutter/engine/pull/21048) [web] Allow updating input configuration while connection is active (cla: yes, platform-web)
[21057](https://github.com/flutter/engine/pull/21057) Create an ImageHandle wrapper (cla: yes)
[21059](https://github.com/flutter/engine/pull/21059) Add a new raster status `kSkipAndRetry` frame (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21062](https://github.com/flutter/engine/pull/21062) Make drain() consistently asynchronous. (cla: yes, waiting for tree to go green)
[21074](https://github.com/flutter/engine/pull/21074) Roll Skia from fb5e0ebef07c to 0b6bf1c9668e (2 revisions) (cla: yes, waiting for tree to go green)
[21076](https://github.com/flutter/engine/pull/21076) add a line to build host for scenario tests (cla: yes, waiting for tree to go green)
[21077](https://github.com/flutter/engine/pull/21077) updating the documentation after integration_test migration (cla: yes)
[21079](https://github.com/flutter/engine/pull/21079) Roll Fuchsia Mac SDK from 5o9onBKYd... to b9rM1nBK1... (cla: yes, waiting for tree to go green)
[21080](https://github.com/flutter/engine/pull/21080) Disable flaky iOS Scenario app tests (cla: yes)
[21081](https://github.com/flutter/engine/pull/21081) Remove deprecated methods from FlutterViewController (cla: yes)
[21082](https://github.com/flutter/engine/pull/21082) Minor windows.h cleanup (cla: yes)
[21083](https://github.com/flutter/engine/pull/21083) Roll Dart SDK from 72393cc698da to 1abce6d054ad (3 revisions) (cla: yes)
[21085](https://github.com/flutter/engine/pull/21085) Roll Skia from 0b6bf1c9668e to 9d6f955f52e9 (8 revisions) (cla: yes, waiting for tree to go green)
[21086](https://github.com/flutter/engine/pull/21086) Roll Fuchsia Linux SDK from l8baHga4c... to XIejclW2X... (cla: yes, waiting for tree to go green)
[21087](https://github.com/flutter/engine/pull/21087) Re-enable (most) iOS Scenarios tests (cla: yes)
[21088](https://github.com/flutter/engine/pull/21088) re-enable scenario tests on iOS (cla: yes)
[21089](https://github.com/flutter/engine/pull/21089) Copyright header hygiene improvements (cla: yes, platform-android)
[21090](https://github.com/flutter/engine/pull/21090) Roll Skia from 9d6f955f52e9 to bbe69951b416 (4 revisions) (cla: yes, waiting for tree to go green)
[21091](https://github.com/flutter/engine/pull/21091) Prefer C++ standard headers to their C counterpart (cla: yes)
[21092](https://github.com/flutter/engine/pull/21092) Roll Dart SDK from 1abce6d054ad to 14f1940f537e (1 revision) (cla: yes, waiting for tree to go green)
[21093](https://github.com/flutter/engine/pull/21093) Roll Dart SDK from 14f1940f537e to 1c887123b92c (1 revision) (cla: yes, waiting for tree to go green)
[21095](https://github.com/flutter/engine/pull/21095) [macOS] Set the display refresh rate (cla: yes)
[21096](https://github.com/flutter/engine/pull/21096) Roll Skia from bbe69951b416 to 6518d77a2200 (1 revision) (cla: yes, waiting for tree to go green)
[21101](https://github.com/flutter/engine/pull/21101) Roll Fuchsia Mac SDK from b9rM1nBK1... to ggoll70iR... (cla: yes, waiting for tree to go green)
[21102](https://github.com/flutter/engine/pull/21102) Handle malloc edge-case in mock_engine (cla: yes)
[21107](https://github.com/flutter/engine/pull/21107) Fix a AppLifecycleTest present time race between the animation and the rest of the test (cla: yes, platform-ios, waiting for tree to go green)
[21109](https://github.com/flutter/engine/pull/21109) Fix erroneous dartdoc @tool directive. (cla: yes, waiting for tree to go green)
[21111](https://github.com/flutter/engine/pull/21111) Update OCMock to version 3.7.1 (cla: yes)
[21112](https://github.com/flutter/engine/pull/21112) [web] Fix mis-aligned widget spans (cla: yes, platform-web)
[21114](https://github.com/flutter/engine/pull/21114) Fix comment indentation (cla: yes, platform-android)
[21115](https://github.com/flutter/engine/pull/21115) web: make a few variables non-null (cla: yes, platform-web)
[21118](https://github.com/flutter/engine/pull/21118) Check for a valid SkSL cache directory before calling VisitFiles (cla: yes)
[21121](https://github.com/flutter/engine/pull/21121) Roll Fuchsia Linux SDK from XIejclW2X... to f3YqG3OdI... (cla: yes, waiting for tree to go green)
[21122](https://github.com/flutter/engine/pull/21122) Roll Skia from 6518d77a2200 to 9eb848ae8218 (20 revisions) (cla: yes, waiting for tree to go green)
[21124](https://github.com/flutter/engine/pull/21124) Roll Skia from 9eb848ae8218 to 582c5a9a84ac (1 revision) (cla: yes, waiting for tree to go green)
[21125](https://github.com/flutter/engine/pull/21125) Disable iOS application lifetime Scenario tests (cla: yes)
[21127](https://github.com/flutter/engine/pull/21127) Clean up C++ header includes (cla: yes, platform-android)
[21128](https://github.com/flutter/engine/pull/21128) Roll Dart SDK from 1c887123b92c to d2ba4fd3275e (1 revision) (cla: yes, waiting for tree to go green)
[21130](https://github.com/flutter/engine/pull/21130) [felt] Use autoninja instead of hardcoding threads (cla: yes)
[21131](https://github.com/flutter/engine/pull/21131) Roll Fuchsia Mac SDK from ggoll70iR... to oINI9fspF... (cla: yes, waiting for tree to go green)
[21132](https://github.com/flutter/engine/pull/21132) Roll Fuchsia Linux SDK from f3YqG3OdI... to hO-ki0WJb... (cla: yes, waiting for tree to go green)
[21133](https://github.com/flutter/engine/pull/21133) Roll Skia from 582c5a9a84ac to 186866c46179 (1 revision) (cla: yes, waiting for tree to go green)
[21134](https://github.com/flutter/engine/pull/21134) Roll Dart SDK from d2ba4fd3275e to 3533cfda999e (1 revision) (cla: yes, waiting for tree to go green)
[21135](https://github.com/flutter/engine/pull/21135) [felt] Eliminate ninja-jobs argument (cla: yes)
[21136](https://github.com/flutter/engine/pull/21136) Roll Fuchsia Mac SDK from oINI9fspF... to C73kzh_IF... (cla: yes, waiting for tree to go green)
[21137](https://github.com/flutter/engine/pull/21137) Roll Dart SDK from 3533cfda999e to 4bf1f624d06e (1 revision) (cla: yes, waiting for tree to go green)
[21138](https://github.com/flutter/engine/pull/21138) Roll Fuchsia Linux SDK from hO-ki0WJb... to 0XXjmMun1... (cla: yes, waiting for tree to go green)
[21139](https://github.com/flutter/engine/pull/21139) Roll Dart SDK from 4bf1f624d06e to b6f67aa2cc72 (1 revision) (cla: yes, waiting for tree to go green)
[21140](https://github.com/flutter/engine/pull/21140) Roll Skia from 186866c46179 to b711737c1384 (1 revision) (cla: yes, waiting for tree to go green)
[21141](https://github.com/flutter/engine/pull/21141) Roll Fuchsia Mac SDK from C73kzh_IF... to 78RTO77Tu... (cla: yes, waiting for tree to go green)
[21142](https://github.com/flutter/engine/pull/21142) Roll Fuchsia Linux SDK from 0XXjmMun1... to KA_kDgY7C... (cla: yes, waiting for tree to go green)
[21143](https://github.com/flutter/engine/pull/21143) Roll Fuchsia Mac SDK from 78RTO77Tu... to m7z9dEdGg... (cla: yes, waiting for tree to go green)
[21144](https://github.com/flutter/engine/pull/21144) Roll Fuchsia Linux SDK from KA_kDgY7C... to zKQw_oHsx... (cla: yes, waiting for tree to go green)
[21146](https://github.com/flutter/engine/pull/21146) Roll Skia from b711737c1384 to 081bc32703b7 (4 revisions) (cla: yes, waiting for tree to go green)
[21147](https://github.com/flutter/engine/pull/21147) Roll Dart SDK from b6f67aa2cc72 to 27d9970dfeb1 (1 revision) (cla: yes, waiting for tree to go green)
[21148](https://github.com/flutter/engine/pull/21148) Fix an include path to match the others. (cla: yes)
[21149](https://github.com/flutter/engine/pull/21149) Add --enable-isolate-groups to allowed flags in switches.cc (cla: yes)
[21151](https://github.com/flutter/engine/pull/21151) Roll Fuchsia Mac SDK from m7z9dEdGg... to arL8NjPHW... (cla: yes, waiting for tree to go green)
[21152](https://github.com/flutter/engine/pull/21152) [fuchsia] set maxframesinflight to be configurable (cla: yes)
[21156](https://github.com/flutter/engine/pull/21156) Roll Skia from 081bc32703b7 to 34b19c575066 (7 revisions) (cla: yes, waiting for tree to go green)
[21157](https://github.com/flutter/engine/pull/21157) Remove suppression of null-related warnings (cla: yes, waiting for tree to go green)
[21159](https://github.com/flutter/engine/pull/21159) Roll Skia from 34b19c575066 to 6253b5787df8 (7 revisions) (cla: yes, waiting for tree to go green)
[21160](https://github.com/flutter/engine/pull/21160) Roll Dart SDK from 27d9970dfeb1 to c835079edda4 (2 revisions) (cla: yes, waiting for tree to go green)
[21161](https://github.com/flutter/engine/pull/21161) [windows] Allow engine flags via environment vars (cla: yes)
[21162](https://github.com/flutter/engine/pull/21162) Roll Skia from 6253b5787df8 to 37fd658981dd (1 revision) (cla: yes, waiting for tree to go green)
[21163](https://github.com/flutter/engine/pull/21163) Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[21164](https://github.com/flutter/engine/pull/21164) Add an explicit API for font change notification (cla: yes)
[21166](https://github.com/flutter/engine/pull/21166) Define _USE_MATH_DEFINES on Windows where needed (cla: yes, waiting for tree to go green)
[21167](https://github.com/flutter/engine/pull/21167) Force builders to run. (cla: yes)
[21169](https://github.com/flutter/engine/pull/21169) Roll Fuchsia Mac SDK from arL8NjPHW... to 8q8xxvY60... (cla: yes, waiting for tree to go green)
[21170](https://github.com/flutter/engine/pull/21170) Roll Skia from 37fd658981dd to 2bc4077c9e42 (4 revisions) (cla: yes, waiting for tree to go green)
[21171](https://github.com/flutter/engine/pull/21171) Roll Fuchsia Linux SDK from zKQw_oHsx... to -iBBiPj1C... (cla: yes, waiting for tree to go green)
[21172](https://github.com/flutter/engine/pull/21172) Roll Skia from 2bc4077c9e42 to aecd484d03d7 (2 revisions) (cla: yes, waiting for tree to go green)
[21176](https://github.com/flutter/engine/pull/21176) Add missing <cstring> header for (strcmp, strrchr) (cla: yes)
[21178](https://github.com/flutter/engine/pull/21178) Roll Skia from aecd484d03d7 to 22aa7d791515 (5 revisions) (cla: yes, waiting for tree to go green)
[21179](https://github.com/flutter/engine/pull/21179) Discard wrong size layer tree instead of rendering it (cla: yes, perf: speed, severe: performance, waiting for tree to go green)
[21181](https://github.com/flutter/engine/pull/21181) Roll Skia from 22aa7d791515 to d911c91d8895 (5 revisions) (cla: yes, waiting for tree to go green)
[21183](https://github.com/flutter/engine/pull/21183) Roll Skia from d911c91d8895 to 6f3ed7f72cd6 (3 revisions) (cla: yes, waiting for tree to go green)
[21186](https://github.com/flutter/engine/pull/21186) Roll Skia from 6f3ed7f72cd6 to 50dd7e15af47 (3 revisions) (cla: yes, waiting for tree to go green)
[21188](https://github.com/flutter/engine/pull/21188) Flutter 1.22.0-12.1.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21189](https://github.com/flutter/engine/pull/21189) Fix NPE in PlatformPlugin.getClipboardData() (cla: yes, platform-android)
[21190](https://github.com/flutter/engine/pull/21190) Roll Skia from 50dd7e15af47 to a195d101f96c (2 revisions) (cla: yes, waiting for tree to go green)
[21191](https://github.com/flutter/engine/pull/21191) Account for current open image in FlutterImageView (cla: yes, platform-android, waiting for tree to go green)
[21193](https://github.com/flutter/engine/pull/21193) [darwin] Header #import hygiene (cla: yes, platform-ios)
[21194](https://github.com/flutter/engine/pull/21194) [web] Integration test for selectable text (affects: text input, cla: yes, platform-web)
[21197](https://github.com/flutter/engine/pull/21197) Roll Fuchsia Linux SDK from -iBBiPj1C... to sXR21ye3r... (cla: yes, waiting for tree to go green)
[21203](https://github.com/flutter/engine/pull/21203) Verify Flutter clang module, add hook for verifying consumer warnings (cla: yes, platform-ios)
[21205](https://github.com/flutter/engine/pull/21205) Roll Skia from a195d101f96c to 3e72b3ff8ca7 (7 revisions) (cla: yes, waiting for tree to go green)
[21206](https://github.com/flutter/engine/pull/21206) Roll Fuchsia Mac SDK from 8q8xxvY60... to VpUd_W9Oi... (cla: yes, waiting for tree to go green)
[21208](https://github.com/flutter/engine/pull/21208) Fix x-axis direction in Offset.direction doc (cla: yes)
[21209](https://github.com/flutter/engine/pull/21209) Roll Dart SDK from c835079edda4 to 7476b58cc9d0 (8 revisions) (cla: yes, waiting for tree to go green)
[21210](https://github.com/flutter/engine/pull/21210) Roll Skia from 3e72b3ff8ca7 to 2610e8261e9e (4 revisions) (cla: yes, waiting for tree to go green)
[21212](https://github.com/flutter/engine/pull/21212) Roll Fuchsia Linux SDK from sXR21ye3r... to G5UItrFeP... (cla: yes, waiting for tree to go green)
[21213](https://github.com/flutter/engine/pull/21213) IME Animation clean up extraneous window inset call (cla: yes, platform-android)
[21216](https://github.com/flutter/engine/pull/21216) Roll Dart SDK from 7476b58cc9d0 to 9b3b9c26a343 (2 revisions) (cla: yes, waiting for tree to go green)
[21217](https://github.com/flutter/engine/pull/21217) Add missing cstring header (fixes fl_renderer_wayland.cc) (cla: yes, waiting for tree to go green)
[21218](https://github.com/flutter/engine/pull/21218) Support Wayland only (without X11 support in gdk) (cla: yes)
[21220](https://github.com/flutter/engine/pull/21220) Roll Skia from 2610e8261e9e to 2564767d24e5 (5 revisions) (cla: yes, waiting for tree to go green)
[21221](https://github.com/flutter/engine/pull/21221) Roll Fuchsia Mac SDK from VpUd_W9Oi... to 13BzEPO47... (cla: yes, waiting for tree to go green)
[21222](https://github.com/flutter/engine/pull/21222) Roll Dart SDK from 9b3b9c26a343 to 83365979ea85 (1 revision) (cla: yes, waiting for tree to go green)
[21224](https://github.com/flutter/engine/pull/21224) Roll Dart SDK from 83365979ea85 to e41a6008746d (1 revision) (cla: yes, waiting for tree to go green)
[21226](https://github.com/flutter/engine/pull/21226) [web] enable ios safari screenshot tests (cla: yes, platform-web)
[21228](https://github.com/flutter/engine/pull/21228) [web] run safari desktop tests on luci (cla: yes)
[21230](https://github.com/flutter/engine/pull/21230) Roll Skia from 2564767d24e5 to bf66ffbbd4ce (27 revisions) (cla: yes, waiting for tree to go green)
[21231](https://github.com/flutter/engine/pull/21231) Enable delayed event delivery for macOS (affects: text input, cla: yes)
[21232](https://github.com/flutter/engine/pull/21232) Roll Fuchsia Linux SDK from G5UItrFeP... to 91U3isvKn... (cla: yes, waiting for tree to go green)
[21233](https://github.com/flutter/engine/pull/21233) Roll Dart SDK from e41a6008746d to eb24e3324908 (1 revision) (cla: yes, waiting for tree to go green)
[21234](https://github.com/flutter/engine/pull/21234) Fix segfault if engine is disposed with an uncompleted task. (cla: yes)
[21235](https://github.com/flutter/engine/pull/21235) Roll Skia from bf66ffbbd4ce to f9fdf291c567 (1 revision) (cla: yes, waiting for tree to go green)
[21238](https://github.com/flutter/engine/pull/21238) Roll Fuchsia Mac SDK from 13BzEPO47... to 2nHpC_AEO... (cla: yes, waiting for tree to go green)
[21239](https://github.com/flutter/engine/pull/21239) Roll Dart SDK from eb24e3324908 to 99970d646dc9 (1 revision) (cla: yes, waiting for tree to go green)
[21241](https://github.com/flutter/engine/pull/21241) [Fix] Replaces call to deprecated method Name.name. (cla: yes)
[21242](https://github.com/flutter/engine/pull/21242) Roll Skia from f9fdf291c567 to 51a7f9559ad4 (5 revisions) (cla: yes, waiting for tree to go green)
[21244](https://github.com/flutter/engine/pull/21244) Roll Skia from 51a7f9559ad4 to 12d06a38427d (3 revisions) (cla: yes, waiting for tree to go green)
[21245](https://github.com/flutter/engine/pull/21245) Roll Dart SDK from 99970d646dc9 to fcaedc6d9587 (3 revisions) (cla: yes, waiting for tree to go green)
[21246](https://github.com/flutter/engine/pull/21246) Roll Fuchsia Linux SDK from 91U3isvKn... to Qi0ptKLxN... (cla: yes, waiting for tree to go green)
[21247](https://github.com/flutter/engine/pull/21247) [web] Remove commented import (cla: yes, platform-web)
[21248](https://github.com/flutter/engine/pull/21248) avoid hard coding OS (cla: yes, waiting for tree to go green)
[21249](https://github.com/flutter/engine/pull/21249) Roll Skia from 12d06a38427d to 45f41b376260 (6 revisions) (cla: yes, waiting for tree to go green)
[21250](https://github.com/flutter/engine/pull/21250) Roll Skia from 45f41b376260 to c21dc07a78b9 (4 revisions) (cla: yes, waiting for tree to go green)
[21254](https://github.com/flutter/engine/pull/21254) Disable ShellTest.SkipAndSubmitFrame for flakes (cla: yes)
[21257](https://github.com/flutter/engine/pull/21257) Roll Dart SDK from fcaedc6d9587 to 2cec6af2652f (1 revision) (cla: yes, waiting for tree to go green)
[21258](https://github.com/flutter/engine/pull/21258) Workaround for an Android emulator EGL bug that can cause inaccurate GL version strings (cla: yes, platform-android, waiting for tree to go green)
[21259](https://github.com/flutter/engine/pull/21259) Do not pass invalid platform view rendering surfaces to the rasterizer (cla: yes, waiting for tree to go green)
[21260](https://github.com/flutter/engine/pull/21260) Roll Skia from c21dc07a78b9 to 31634288fdf3 (5 revisions) (cla: yes, waiting for tree to go green)
[21261](https://github.com/flutter/engine/pull/21261) Roll Dart SDK from 2cec6af2652f to 6f333dbd6a2b (1 revision) (cla: yes, waiting for tree to go green)
[21262](https://github.com/flutter/engine/pull/21262) Roll Fuchsia Mac SDK from 2nHpC_AEO... to i2PBGu2n-... (cla: yes, waiting for tree to go green)
[21265](https://github.com/flutter/engine/pull/21265) Roll Fuchsia Linux SDK from Qi0ptKLxN... to K2Oiy-AYh... (cla: yes, waiting for tree to go green)
[21266](https://github.com/flutter/engine/pull/21266) Roll Skia from 31634288fdf3 to feb4d10f7b2d (4 revisions) (cla: yes, waiting for tree to go green)
[21270](https://github.com/flutter/engine/pull/21270) Fix boolean value checks in StandardMessageCodec (cla: yes, platform-android, waiting for tree to go green)
[21272](https://github.com/flutter/engine/pull/21272) Enforce exclusivity for activity and fragments attached to the FlutterEngine (cla: yes, platform-android)
[21275](https://github.com/flutter/engine/pull/21275) support uri intent launcher in android (cla: yes, platform-android)
[21276](https://github.com/flutter/engine/pull/21276) Roll Dart SDK from 6f333dbd6a2b to 8c45e2e29cb4 (3 revisions) (cla: yes, waiting for tree to go green)
[21277](https://github.com/flutter/engine/pull/21277) Dark mode friendly iOS debugging message (cla: yes, platform-ios, waiting for tree to go green)
[21278](https://github.com/flutter/engine/pull/21278) Roll Dart SDK from 8c45e2e29cb4 to 8bd3017291e5 (1 revision) (cla: yes, waiting for tree to go green)
[21279](https://github.com/flutter/engine/pull/21279) Roll Fuchsia Mac SDK from i2PBGu2n-... to WsUbW2ZnA... (cla: yes, waiting for tree to go green)
[21284](https://github.com/flutter/engine/pull/21284) [web] dispatch browser event on flutter/service_worker channel (cla: yes)
[21286](https://github.com/flutter/engine/pull/21286) Fix iOS platform view's mask view blocking touch events. (cla: yes, platform-ios)
[21290](https://github.com/flutter/engine/pull/21290) SecurityException: Permission Denial (cla: yes, platform-android)
[21297](https://github.com/flutter/engine/pull/21297) Make SkCanvas types @anonymous; reduce logging noise (cla: yes)
[21298](https://github.com/flutter/engine/pull/21298) implement decodeFromPixels (cla: yes, waiting for tree to go green)
[21301](https://github.com/flutter/engine/pull/21301) Do not create a TestGLSurface for software-only rendering in EmbedderTest (cla: yes, waiting for tree to go green)
[21302](https://github.com/flutter/engine/pull/21302) [fuchsia] add frames_in_flight info to trace events (cla: yes)
[21303](https://github.com/flutter/engine/pull/21303) [iOS TextInput] Avoid Unnecessary UndateEditingClient Calls (cla: yes, platform-ios, waiting for tree to go green)
[21304](https://github.com/flutter/engine/pull/21304) Implement toString for Images on web (cla: yes, waiting for tree to go green)
[21307](https://github.com/flutter/engine/pull/21307) Disconnect the view's AndroidKeyProcessor when detaching from the engine (cla: yes, platform-android, waiting for tree to go green)
[21308](https://github.com/flutter/engine/pull/21308) [manual roll] Roll Fuchsia Linux SDK from K2Oiy-AYh... to 2rXyLF0YK (cla: yes, waiting for tree to go green)
[21309](https://github.com/flutter/engine/pull/21309) Roll Skia from feb4d10f7b2d to 371fde549e35 (46 revisions) (cla: yes, waiting for tree to go green)
[21310](https://github.com/flutter/engine/pull/21310) Roll Dart SDK from 8bd3017291e5 to c660a695266a (7 revisions) (cla: yes, waiting for tree to go green)
[21311](https://github.com/flutter/engine/pull/21311) Relax test around a11y updates (cla: yes, waiting for tree to go green)
[21312](https://github.com/flutter/engine/pull/21312) Roll Skia from 371fde549e35 to 1a49a5334c36 (1 revision) (cla: yes, waiting for tree to go green)
[21313](https://github.com/flutter/engine/pull/21313) [web] Add canUpdateAsMatch to PersistedPlatformView. (cla: yes, waiting for tree to go green)
[21314](https://github.com/flutter/engine/pull/21314) Detect errors encoding method channel responses (cla: yes)
[21315](https://github.com/flutter/engine/pull/21315) Roll Dart SDK from c660a695266a to c61a0818e4bd (1 revision) (cla: yes, waiting for tree to go green)
[21316](https://github.com/flutter/engine/pull/21316) Add FlEventChannel (cla: yes, waiting for customer response)
[21317](https://github.com/flutter/engine/pull/21317) Roll Fuchsia Linux SDK from 2rXyLF0YK... to VgNGzw-DQ... (cla: yes, waiting for tree to go green)
[21318](https://github.com/flutter/engine/pull/21318) Roll Skia from 1a49a5334c36 to 7a1f241c0134 (4 revisions) (cla: yes, waiting for tree to go green)
[21319](https://github.com/flutter/engine/pull/21319) Roll Fuchsia Mac SDK from WsUbW2ZnA... to WcbX470pS... (cla: yes, waiting for tree to go green)
[21320](https://github.com/flutter/engine/pull/21320) Roll Dart SDK from c61a0818e4bd to 2b8d00ac48e7 (1 revision) (cla: yes, waiting for tree to go green)
[21321](https://github.com/flutter/engine/pull/21321) Roll Skia from 7a1f241c0134 to 77960d9addc8 (1 revision) (cla: yes, waiting for tree to go green)
[21322](https://github.com/flutter/engine/pull/21322) Roll Skia from 77960d9addc8 to a38945abe337 (5 revisions) (cla: yes, waiting for tree to go green)
[21323](https://github.com/flutter/engine/pull/21323) Roll Skia from a38945abe337 to 84a008fa55b0 (2 revisions) (cla: yes, waiting for tree to go green)
[21324](https://github.com/flutter/engine/pull/21324) creating test result directory before running tests (cla: yes)
[21325](https://github.com/flutter/engine/pull/21325) enable Web Framework tests on try builds (cla: yes)
[21326](https://github.com/flutter/engine/pull/21326) Roll Skia from 84a008fa55b0 to 187b04b35777 (1 revision) (cla: yes, waiting for tree to go green)
[21328](https://github.com/flutter/engine/pull/21328) Roll Skia from 187b04b35777 to c61c895393ea (5 revisions) (cla: yes, waiting for tree to go green)
[21329](https://github.com/flutter/engine/pull/21329) [a11y] Flutter sends node roles as part of Fuchsia semantics updates. (cla: yes, waiting for tree to go green)
[21330](https://github.com/flutter/engine/pull/21330) Retain the WindowInsetsAnimation callback if code shrinking is enabled (cla: yes, platform-android, waiting for tree to go green)
[21331](https://github.com/flutter/engine/pull/21331) clarify that offset is not used in addPlatformView for iOS/Android (cla: yes)
[21332](https://github.com/flutter/engine/pull/21332) Roll Fuchsia Linux SDK from VgNGzw-DQ... to VGnJQMPQM... (cla: yes, waiting for tree to go green)
[21333](https://github.com/flutter/engine/pull/21333) Remove spurious semicolon (cla: yes, platform-ios)
[21336](https://github.com/flutter/engine/pull/21336) Added the ability to set the initial route via launch urls. (cla: yes, platform-ios)
[21338](https://github.com/flutter/engine/pull/21338) Revert "Deprecate Android v1 embedding classes" (cla: yes, platform-android)
[21340](https://github.com/flutter/engine/pull/21340) Roll Skia from c61c895393ea to 2b469ebd0627 (9 revisions) (cla: yes, waiting for tree to go green)
[21341](https://github.com/flutter/engine/pull/21341) disabled the auto assign bot (cla: yes)
[21343](https://github.com/flutter/engine/pull/21343) Roll Skia from 2b469ebd0627 to 3eb813e0cc13 (2 revisions) (cla: yes, waiting for tree to go green)
[21347](https://github.com/flutter/engine/pull/21347) Re-land deprecate Android v1 embedding classes (cla: yes, platform-android)
[21349](https://github.com/flutter/engine/pull/21349) Roll Fuchsia Linux SDK from VGnJQMPQM... to IWfLWIJ93... (cla: yes, waiting for tree to go green)
[21350](https://github.com/flutter/engine/pull/21350) Locale -> LanguageRange conversion to be more general in Android platformResolvedLocale (cla: yes, platform-android, waiting for tree to go green)
[21351](https://github.com/flutter/engine/pull/21351) Roll Skia from 3eb813e0cc13 to 18f4b1c7e31a (4 revisions) (cla: yes, waiting for tree to go green)
[21352](https://github.com/flutter/engine/pull/21352) Roll Skia from 18f4b1c7e31a to 443d2c17b79b (3 revisions) (cla: yes, waiting for tree to go green)
[21353](https://github.com/flutter/engine/pull/21353) remove web_tests from cirrus since they already run on LUCI (cla: yes)
[21354](https://github.com/flutter/engine/pull/21354) Roll Skia from 443d2c17b79b to ba615e892fcb (1 revision) (cla: yes, waiting for tree to go green)
[21355](https://github.com/flutter/engine/pull/21355) Embedder API Support for display settings (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21356](https://github.com/flutter/engine/pull/21356) Add an adjustment to currentLineWidth comparisons when pushing greedy line breaks (cla: yes)
[21357](https://github.com/flutter/engine/pull/21357) Roll Skia from ba615e892fcb to 81fc1fc3bfe6 (2 revisions) (cla: yes, waiting for tree to go green)
[21358](https://github.com/flutter/engine/pull/21358) Roll Fuchsia Mac SDK from WcbX470pS... to z7zaxhmps... (cla: yes, waiting for tree to go green)
[21359](https://github.com/flutter/engine/pull/21359) Remove legacy C++ EncodableValue (cla: yes)
[21362](https://github.com/flutter/engine/pull/21362) Update error text for iOS 14 launch (cla: yes, platform-ios)
[21363](https://github.com/flutter/engine/pull/21363) Roll Skia from 81fc1fc3bfe6 to 7b97b3cb2bd0 (5 revisions) (cla: yes, waiting for tree to go green)
[21364](https://github.com/flutter/engine/pull/21364) Apply dpr transform to fuchsia accessibility bridge (cla: yes, waiting for tree to go green)
[21365](https://github.com/flutter/engine/pull/21365) Roll Skia from 7b97b3cb2bd0 to 59b2a92c96ba (4 revisions) (cla: yes, waiting for tree to go green)
[21366](https://github.com/flutter/engine/pull/21366) Flutter 1.22.0-12.2.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21367](https://github.com/flutter/engine/pull/21367) Reland: Adds fuchsia node roles to accessibility bridge updat… (cla: yes)
[21368](https://github.com/flutter/engine/pull/21368) Roll Skia from 59b2a92c96ba to 1b89eb742a66 (5 revisions) (cla: yes, waiting for tree to go green)
[21369](https://github.com/flutter/engine/pull/21369) Roll Fuchsia Linux SDK from IWfLWIJ93... to -grWUcdOo... (cla: yes, waiting for tree to go green)
[21370](https://github.com/flutter/engine/pull/21370) fix EnginePicture.toImage; implement rawRgba toByteData; add test (cla: yes, platform-web, waiting for tree to go green)
[21371](https://github.com/flutter/engine/pull/21371) isCloneOf for Image (cla: yes, waiting for tree to go green)
[21372](https://github.com/flutter/engine/pull/21372) Fix for issue flutter/#66502. (cla: yes, platform-web)
[21373](https://github.com/flutter/engine/pull/21373) Roll Skia from 1b89eb742a66 to fc396a85e4c8 (1 revision) (cla: yes, waiting for tree to go green)
[21374](https://github.com/flutter/engine/pull/21374) Roll Skia from fc396a85e4c8 to 96d9b52bb948 (2 revisions) (cla: yes, waiting for tree to go green)
[21376](https://github.com/flutter/engine/pull/21376) Roll Dart SDK from 2b8d00ac48e7 to 616bc676e75b (1 revision) (cla: yes, waiting for tree to go green)
[21377](https://github.com/flutter/engine/pull/21377) Roll Fuchsia Mac SDK from z7zaxhmps... to v7dguVBSA... (cla: yes, waiting for tree to go green)
[21378](https://github.com/flutter/engine/pull/21378) Roll Skia from 96d9b52bb948 to cf43fc676856 (1 revision) (cla: yes, waiting for tree to go green)
[21380](https://github.com/flutter/engine/pull/21380) Roll Dart SDK from 616bc676e75b to aac512605bfe (2 revisions) (cla: yes, waiting for tree to go green)
[21381](https://github.com/flutter/engine/pull/21381) Roll Fuchsia Linux SDK from -grWUcdOo... to NeYDIjo58... (cla: yes, waiting for tree to go green)
[21383](https://github.com/flutter/engine/pull/21383) E2e screenshot tests2 (cla: yes, platform-web)
[21384](https://github.com/flutter/engine/pull/21384) Roll Skia from cf43fc676856 to e74cebefdeeb (6 revisions) (cla: yes, waiting for tree to go green)
[21385](https://github.com/flutter/engine/pull/21385) Roll Skia from e74cebefdeeb to 6e51d92a0278 (7 revisions) (cla: yes, waiting for tree to go green)
[21386](https://github.com/flutter/engine/pull/21386) Split out embedder_unittests test cases into GL and non-GL tests (cla: yes, waiting for tree to go green)
[21387](https://github.com/flutter/engine/pull/21387) Roll Dart SDK from aac512605bfe to 62aea7e5112a (1 revision) (cla: yes, waiting for tree to go green)
[21388](https://github.com/flutter/engine/pull/21388) hasStrings Linux (affects: desktop, cla: yes, needs tests, platform-linux)
[21389](https://github.com/flutter/engine/pull/21389) Avoid sending a 0 DPR to framework (cla: yes)
[21390](https://github.com/flutter/engine/pull/21390) Roll Skia from 6e51d92a0278 to fe3d9a23095e (2 revisions) (cla: yes, waiting for tree to go green)
[21391](https://github.com/flutter/engine/pull/21391) Revert "Make drain() consistently asynchronous." (cla: yes)
[21392](https://github.com/flutter/engine/pull/21392) fuchsia: Don't send ViewportMetrics w/ 0 DPR (cla: yes, platform-fuchsia)
[21393](https://github.com/flutter/engine/pull/21393) Roll Skia from fe3d9a23095e to 03c31eca19ce (1 revision) (cla: yes, waiting for tree to go green)
[21395](https://github.com/flutter/engine/pull/21395) Roll Dart SDK from 62aea7e5112a to eb8e6232da02 (1 revision) (cla: yes, waiting for tree to go green)
[21396](https://github.com/flutter/engine/pull/21396) Support dragging native platform views (cla: yes, platform-android)
[21397](https://github.com/flutter/engine/pull/21397) Remove ASCII art from mDNS error log (cla: yes, platform-ios)
[21398](https://github.com/flutter/engine/pull/21398) Roll Fuchsia Mac SDK from v7dguVBSA... to xnB_uJM8T... (cla: yes, waiting for tree to go green)
[21399](https://github.com/flutter/engine/pull/21399) Roll Skia from 03c31eca19ce to 5227335b0add (2 revisions) (cla: yes, waiting for tree to go green)
[21402](https://github.com/flutter/engine/pull/21402) Roll Skia from 5227335b0add to 1748c6a3b8c8 (1 revision) (cla: yes, waiting for tree to go green)
[21403](https://github.com/flutter/engine/pull/21403) Roll Fuchsia Linux SDK from NeYDIjo58... to BFLXvCMVi... (cla: yes, waiting for tree to go green)
[21405](https://github.com/flutter/engine/pull/21405) Add workaround for missing fl_method_xxx_response_get_type() symbols (cla: yes, waiting for tree to go green)
[21406](https://github.com/flutter/engine/pull/21406) fl_method_response.cc: fix lint failures (cla: yes)
[21407](https://github.com/flutter/engine/pull/21407) Roll Dart SDK from eb8e6232da02 to 13b3f2d7b6ea (3 revisions) (cla: yes, waiting for tree to go green)
[21408](https://github.com/flutter/engine/pull/21408) Fix linking issue (missing wayland-client library) (cla: yes)
[21410](https://github.com/flutter/engine/pull/21410) Roll Skia from 1748c6a3b8c8 to 3b88c0772e89 (1 revision) (cla: yes, waiting for tree to go green)
[21411](https://github.com/flutter/engine/pull/21411) Roll Skia from 3b88c0772e89 to d7ab45027877 (1 revision) (cla: yes, waiting for tree to go green)
[21414](https://github.com/flutter/engine/pull/21414) Roll Fuchsia Mac SDK from xnB_uJM8T... to _e0onA6gY... (cla: yes, waiting for tree to go green)
[21415](https://github.com/flutter/engine/pull/21415) Roll Skia from d7ab45027877 to aeae3a58e3da (6 revisions) (cla: yes, waiting for tree to go green)
[21417](https://github.com/flutter/engine/pull/21417) Roll Skia from aeae3a58e3da to 7bd60430299f (1 revision) (cla: yes, waiting for tree to go green)
[21418](https://github.com/flutter/engine/pull/21418) Enable embedder_unittests on Fuchsia (cla: yes, waiting for tree to go green)
[21419](https://github.com/flutter/engine/pull/21419) Roll Dart SDK from 13b3f2d7b6ea to 4fb134a228c7 (2 revisions) (cla: yes, waiting for tree to go green)
[21420](https://github.com/flutter/engine/pull/21420) Roll Fuchsia Linux SDK from BFLXvCMVi... to XcAUWQUZm... (cla: yes)
[21421](https://github.com/flutter/engine/pull/21421) Roll Skia from 7bd60430299f to 68861e391313 (14 revisions) (cla: yes, waiting for tree to go green)
[21422](https://github.com/flutter/engine/pull/21422) Fix getNextFrame (cla: yes)
[21423](https://github.com/flutter/engine/pull/21423) [web] Respond with null for unimplemented method channels (cla: yes, platform-web)
[21424](https://github.com/flutter/engine/pull/21424) Roll Skia from 68861e391313 to a05d27b170ee (1 revision) (cla: yes, waiting for tree to go green)
[21425](https://github.com/flutter/engine/pull/21425) Roll Skia from a05d27b170ee to 5e1545fa00c8 (1 revision) (cla: yes, waiting for tree to go green)
[21426](https://github.com/flutter/engine/pull/21426) Roll Dart SDK from 4fb134a228c7 to db7eb2549480 (1 revision) (cla: yes, waiting for tree to go green)
[21427](https://github.com/flutter/engine/pull/21427) Roll Dart SDK from db7eb2549480 to 200e8da5072a (1 revision) (cla: yes, waiting for tree to go green)
[21430](https://github.com/flutter/engine/pull/21430) Roll Fuchsia Linux SDK from XcAUWQUZm... to 0nW5DAxcC... (cla: yes, waiting for tree to go green)
[21431](https://github.com/flutter/engine/pull/21431) Roll Skia from 5e1545fa00c8 to 766eeb2ac325 (1 revision) (cla: yes, waiting for tree to go green)
[21432](https://github.com/flutter/engine/pull/21432) [ios] Remove unused is_valid_ from IOS Metal Context (cla: yes, platform-ios)
[21433](https://github.com/flutter/engine/pull/21433) Roll Skia from 766eeb2ac325 to 5648572f4a94 (1 revision) (cla: yes, waiting for tree to go green)
[21434](https://github.com/flutter/engine/pull/21434) Roll Fuchsia Mac SDK from _e0onA6gY... to SUSVNJcX5... (cla: yes, waiting for tree to go green)
[21435](https://github.com/flutter/engine/pull/21435) Roll Skia from 5648572f4a94 to eabce08bb2f2 (1 revision) (cla: yes, waiting for tree to go green)
[21436](https://github.com/flutter/engine/pull/21436) Allow hot reload without syncing all asset files to devFS (cla: yes)
[21437](https://github.com/flutter/engine/pull/21437) Roll Dart SDK from 200e8da5072a to c938793e2d6f (1 revision) (cla: yes, waiting for tree to go green)
[21438](https://github.com/flutter/engine/pull/21438) Respect the --debug option in Firefox (cla: yes, platform-web, waiting for tree to go green)
[21439](https://github.com/flutter/engine/pull/21439) Roll Fuchsia Linux SDK from 0nW5DAxcC... to xdxm8rU8b... (cla: yes, waiting for tree to go green)
[21440](https://github.com/flutter/engine/pull/21440) Roll Dart SDK from c938793e2d6f to fe83360d3a7c (1 revision) (cla: yes, waiting for tree to go green)
[21441](https://github.com/flutter/engine/pull/21441) Roll Fuchsia Mac SDK from SUSVNJcX5... to v5Ko06GkT... (cla: yes, waiting for tree to go green)
[21443](https://github.com/flutter/engine/pull/21443) Roll Fuchsia Linux SDK from xdxm8rU8b... to ej-CkfSra... (cla: yes, waiting for tree to go green)
[21444](https://github.com/flutter/engine/pull/21444) Remove unnecessary `?`s from web_ui. (cla: yes)
[21445](https://github.com/flutter/engine/pull/21445) Roll Fuchsia Mac SDK from v5Ko06GkT... to k_lSjZxIH... (cla: yes, waiting for tree to go green)
[21446](https://github.com/flutter/engine/pull/21446) Roll Dart SDK from fe83360d3a7c to 44e4f3958019 (1 revision) (cla: yes, waiting for tree to go green)
[21447](https://github.com/flutter/engine/pull/21447) Roll Fuchsia Linux SDK from ej-CkfSra... to HNNs4gfuM... (cla: yes, waiting for tree to go green)
[21448](https://github.com/flutter/engine/pull/21448) Roll Skia from eabce08bb2f2 to ad6aeace6eee (2 revisions) (cla: yes, waiting for tree to go green)
[21451](https://github.com/flutter/engine/pull/21451) Roll Dart SDK from 44e4f3958019 to e2a4eaba73b8 (1 revision) (cla: yes, waiting for tree to go green)
[21453](https://github.com/flutter/engine/pull/21453) Roll Dart SDK from e2a4eaba73b8 to 13deada5b267 (1 revision) (cla: yes, waiting for tree to go green)
[21454](https://github.com/flutter/engine/pull/21454) Roll Fuchsia Mac SDK from k_lSjZxIH... to qyoO7f9Sk... (cla: yes, waiting for tree to go green)
[21455](https://github.com/flutter/engine/pull/21455) Roll Skia from ad6aeace6eee to 6a189f23af5e (6 revisions) (cla: yes, waiting for tree to go green)
[21456](https://github.com/flutter/engine/pull/21456) Revert multiple display support for embedder API (cla: yes, waiting for tree to go green)
[21458](https://github.com/flutter/engine/pull/21458) Revert "Apply dpr transform to fuchsia accessibility bridge" (cla: yes)
[21459](https://github.com/flutter/engine/pull/21459) Reland Apply dpr transform to fuchsia accessibility bridge (cla: yes)
[21461](https://github.com/flutter/engine/pull/21461) Roll Fuchsia Linux SDK from HNNs4gfuM... to 2NPr4uMi-... (cla: yes, waiting for tree to go green)
[21462](https://github.com/flutter/engine/pull/21462) Run embedder_tests on Fuchsia CI (cla: yes, waiting for tree to go green)
[21463](https://github.com/flutter/engine/pull/21463) Roll Dart SDK from 13deada5b267 to 58248a54dd58 (1 revision) (cla: yes, waiting for tree to go green)
[21464](https://github.com/flutter/engine/pull/21464) Reland multiple display support for embedder API (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21465](https://github.com/flutter/engine/pull/21465) Roll Skia from 6a189f23af5e to d82e2c1ec126 (15 revisions) (cla: yes, waiting for tree to go green)
[21466](https://github.com/flutter/engine/pull/21466) Flutter 1.22.0-12.3.pre engine cherrypicks (cla: yes, platform-android, platform-ios)
[21467](https://github.com/flutter/engine/pull/21467) Make scoped_nsprotocol::release() private. (cla: yes)
[21468](https://github.com/flutter/engine/pull/21468) [macos] Allow engine flags via environment vars (cla: yes)
[21469](https://github.com/flutter/engine/pull/21469) Roll Skia from d82e2c1ec126 to 427d8ebf308c (4 revisions) (cla: yes, waiting for tree to go green)
[21471](https://github.com/flutter/engine/pull/21471) Roll Skia from 427d8ebf308c to e96cdd18ac5f (6 revisions) (cla: yes, waiting for tree to go green)
[21472](https://github.com/flutter/engine/pull/21472) Roll Dart SDK from 58248a54dd58 to 281f1e388107 (1 revision) (cla: yes, waiting for tree to go green)
[21473](https://github.com/flutter/engine/pull/21473) Clear the Minikin layout cache during engine destruction (cla: yes)
[21474](https://github.com/flutter/engine/pull/21474) Replace kLegacyFontHost_InitType with kUnknown_SkPixelGeometry. (cla: yes)
[21475](https://github.com/flutter/engine/pull/21475) Roll Dart SDK from 281f1e388107 to 4c0245356649 (1 revision) (cla: yes, waiting for tree to go green)
[21476](https://github.com/flutter/engine/pull/21476) Roll Fuchsia Mac SDK from qyoO7f9Sk... to iiCa4hab1... (cla: yes, waiting for tree to go green)
[21477](https://github.com/flutter/engine/pull/21477) Roll Skia from e96cdd18ac5f to 1fdcd389873d (1 revision) (cla: yes, waiting for tree to go green)
[21478](https://github.com/flutter/engine/pull/21478) Do not remove directories in purge (cla: yes)
[21479](https://github.com/flutter/engine/pull/21479) Roll Skia from 1fdcd389873d to 01bbe189b0d0 (1 revision) (cla: yes, waiting for tree to go green)
[21480](https://github.com/flutter/engine/pull/21480) Roll Fuchsia Linux SDK from 2NPr4uMi-... to 4UZwprAK4... (cla: yes, waiting for tree to go green)
[21481](https://github.com/flutter/engine/pull/21481) Roll Skia from 01bbe189b0d0 to 842805ced156 (1 revision) (cla: yes, waiting for tree to go green)
[21482](https://github.com/flutter/engine/pull/21482) Roll Dart SDK from 4c0245356649 to 4ea46a8b10a1 (1 revision) (cla: yes, waiting for tree to go green)
[21483](https://github.com/flutter/engine/pull/21483) Roll Skia from 842805ced156 to c73bff39bd21 (1 revision) (cla: yes, waiting for tree to go green)
[21484](https://github.com/flutter/engine/pull/21484) [fuchsia][a11y] Don't populate hidden state. (accessibility, cla: yes, platform-fuchsia, waiting for tree to go green)
[21485](https://github.com/flutter/engine/pull/21485) Roll Skia from c73bff39bd21 to 4b6f37d90277 (1 revision) (cla: yes, waiting for tree to go green)
[21487](https://github.com/flutter/engine/pull/21487) Roll Skia from 4b6f37d90277 to 0b0fb4d50b75 (2 revisions) (cla: yes, waiting for tree to go green)
[21488](https://github.com/flutter/engine/pull/21488) [fuchsia] fix typo (cla: yes)
[21489](https://github.com/flutter/engine/pull/21489) Roll Dart SDK from 4ea46a8b10a1 to 2a4169b3cfab (1 revision) (cla: yes, waiting for tree to go green)
[21492](https://github.com/flutter/engine/pull/21492) Roll Fuchsia Mac SDK from iiCa4hab1... to tuXjGvikz... (cla: yes, waiting for tree to go green)
[21495](https://github.com/flutter/engine/pull/21495) fuchsia: Remove display device availability check from Flutter (cla: yes)
[21497](https://github.com/flutter/engine/pull/21497) [linux] Allow engine flags via environment vars (affects: desktop, affects: engine, cla: yes, platform-linux)
[21499](https://github.com/flutter/engine/pull/21499) [web] Fix 3d transforms for html backend (cla: yes, platform-web)
[21500](https://github.com/flutter/engine/pull/21500) Roll Skia from 0b0fb4d50b75 to 9ecb3abfdfe8 (12 revisions) (cla: yes, waiting for tree to go green)
[21502](https://github.com/flutter/engine/pull/21502) Roll Fuchsia Linux SDK from 4UZwprAK4... to _ABSfRa7C... (cla: yes, waiting for tree to go green)
[21503](https://github.com/flutter/engine/pull/21503) Roll Skia from 9ecb3abfdfe8 to 4cf00a814f7d (1 revision) (cla: yes, waiting for tree to go green)
[21504](https://github.com/flutter/engine/pull/21504) Support loading assets from Android dynamic feature modules (cla: yes, platform-android)
[21505](https://github.com/flutter/engine/pull/21505) Roll Skia from 4cf00a814f7d to f201af8b00e8 (2 revisions) (cla: yes, waiting for tree to go green)
[21506](https://github.com/flutter/engine/pull/21506) Roll Dart SDK from 2a4169b3cfab to 0ed6ae6d709e (2 revisions) (cla: yes, waiting for tree to go green)
[21507](https://github.com/flutter/engine/pull/21507) Roll Skia from f201af8b00e8 to 8a1ed2a97bf4 (1 revision) (cla: yes, waiting for tree to go green)
[21508](https://github.com/flutter/engine/pull/21508) Roll Skia from 8a1ed2a97bf4 to a87c5076a876 (2 revisions) (cla: yes, waiting for tree to go green)
[21509](https://github.com/flutter/engine/pull/21509) Roll Fuchsia Mac SDK from tuXjGvikz... to aO19K7Ut2... (cla: yes, waiting for tree to go green)
[21511](https://github.com/flutter/engine/pull/21511) Roll Fuchsia Linux SDK from _ABSfRa7C... to sDtTSnOFx... (cla: yes, waiting for tree to go green)
[21513](https://github.com/flutter/engine/pull/21513) Revert "Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android" (cla: yes, platform-android)
[21520](https://github.com/flutter/engine/pull/21520) re-enable CanvasKit path ops test (cla: yes, waiting for tree to go green)
[21522](https://github.com/flutter/engine/pull/21522) Fix windows popup when unit tests have failures (cla: yes)
[21523](https://github.com/flutter/engine/pull/21523) Add missing returns in system channels handlers (affects: desktop, cla: yes, needs tests, platform-windows)
[21525](https://github.com/flutter/engine/pull/21525) Smooth window resizing on macOS (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21526](https://github.com/flutter/engine/pull/21526) iOS: only add explicit transactions when there are platform views (only on main threads) (cla: yes, platform-ios, waiting for tree to go green)
[21527](https://github.com/flutter/engine/pull/21527) fuchsia: Remove Opacity hole-punch (cla: yes, platform-fuchsia)
[21529](https://github.com/flutter/engine/pull/21529) Roll Fuchsia Mac SDK from aO19K7Ut2... to U2Cd8uL4-... (cla: yes, waiting for tree to go green)
[21530](https://github.com/flutter/engine/pull/21530) [web] Fix monotonic quadratic winding (cla: yes)
[21531](https://github.com/flutter/engine/pull/21531) [web] Fix setPreferredOrientations failure on iOS due to NNBD change. (cla: yes)
[21532](https://github.com/flutter/engine/pull/21532) cloning flutter repo for luci recipes (cla: yes)
[21533](https://github.com/flutter/engine/pull/21533) Roll Fuchsia Linux SDK from sDtTSnOFx... to GEYgsTBRM... (cla: yes, waiting for tree to go green)
[21534](https://github.com/flutter/engine/pull/21534) [Android Text Input] Make the editing state listenable and allow batch edits (affects: text input, cla: yes, platform-android, waiting for tree to go green)
[21537](https://github.com/flutter/engine/pull/21537) Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision) (cla: yes, waiting for tree to go green)
[21538](https://github.com/flutter/engine/pull/21538) Roll Fuchsia Mac SDK from U2Cd8uL4-... to UKTUc5UVB... (cla: yes, waiting for tree to go green)
[21540](https://github.com/flutter/engine/pull/21540) Revert "Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision)" (cla: yes)
[21541](https://github.com/flutter/engine/pull/21541) Roll Fuchsia Linux SDK from GEYgsTBRM... to EdtRxRaCS... (cla: yes, waiting for tree to go green)
[21542](https://github.com/flutter/engine/pull/21542) Roll Dart SDK from 0ed6ae6d709e to ddbeaabe8b3d (1 revision) (cla: yes, waiting for tree to go green)
[21543](https://github.com/flutter/engine/pull/21543) fuchsia: Fix test compile (affects: tests, cla: yes, platform-fuchsia)
[21544](https://github.com/flutter/engine/pull/21544) embedder: Exclude GL code (affects: engine, cla: yes, platform-fuchsia)
[21546](https://github.com/flutter/engine/pull/21546) Writing the commit no to a text file (cla: yes)
[21547](https://github.com/flutter/engine/pull/21547) Add debugDisposed to Image (cla: yes, waiting for tree to go green)
[21548](https://github.com/flutter/engine/pull/21548) Extract the WindowInsetsAnimation.Callback subclass into a separate class that will be lazily loaded (cla: yes, platform-android, waiting for tree to go green)
[21550](https://github.com/flutter/engine/pull/21550) Adds response to view requestFocus platformview message (cla: yes)
[21552](https://github.com/flutter/engine/pull/21552) web: implement frame timings (cla: yes)
[21554](https://github.com/flutter/engine/pull/21554) Roll Fuchsia Mac SDK from UKTUc5UVB... to gZ122oeKO... (cla: yes, waiting for tree to go green)
[21555](https://github.com/flutter/engine/pull/21555) Implement Image.clone for CanvasKit (cla: yes, waiting for tree to go green)
[21556](https://github.com/flutter/engine/pull/21556) Roll Fuchsia Linux SDK from EdtRxRaCS... to CG6NCkBX9... (cla: yes, waiting for tree to go green)
[21562](https://github.com/flutter/engine/pull/21562) Roll Skia from a87c5076a876 to 36366209d412 (55 revisions) (cla: yes, waiting for tree to go green)
[21564](https://github.com/flutter/engine/pull/21564) remove the web integration test (cla: yes)
[21565](https://github.com/flutter/engine/pull/21565) Roll Skia from 36366209d412 to 8cc5f19f439d (1 revision) (cla: yes, waiting for tree to go green)
[21566](https://github.com/flutter/engine/pull/21566) Roll Fuchsia Linux SDK from CG6NCkBX9... to 8Evelbjqf... (cla: yes, waiting for tree to go green)
[21567](https://github.com/flutter/engine/pull/21567) test CkPath.reset() (cla: yes)
[21568](https://github.com/flutter/engine/pull/21568) Roll Skia from 8cc5f19f439d to b509bbb81f36 (3 revisions) (cla: yes, waiting for tree to go green)
[21569](https://github.com/flutter/engine/pull/21569) Roll Dart SDK from ddbeaabe8b3d to 9c89ce329247 (1 revision) (cla: yes, waiting for tree to go green)
[21570](https://github.com/flutter/engine/pull/21570) Roll Skia from b509bbb81f36 to 2d7973afc29d (5 revisions) (cla: yes, waiting for tree to go green)
[21571](https://github.com/flutter/engine/pull/21571) Roll Fuchsia Mac SDK from gZ122oeKO... to 1i9GaCxm8... (cla: yes, waiting for tree to go green)
[21574](https://github.com/flutter/engine/pull/21574) Roll Dart SDK from 9c89ce329247 to 2eab25e4b239 (1 revision) (cla: yes, waiting for tree to go green)
[21576](https://github.com/flutter/engine/pull/21576) Hookup view connected/disconnected events for platform view codepath (cla: yes)
[21577](https://github.com/flutter/engine/pull/21577) Roll Dart SDK from 2eab25e4b239 to 9f810fa15a9e (1 revision) (cla: yes, waiting for tree to go green)
[21578](https://github.com/flutter/engine/pull/21578) Use absolute path in ios_test_flutter target (cla: yes, platform-ios, waiting for tree to go green)
[21580](https://github.com/flutter/engine/pull/21580) Roll Fuchsia Linux SDK from 8Evelbjqf... to J5Qe0sLAi... (cla: yes, waiting for tree to go green)
[21581](https://github.com/flutter/engine/pull/21581) Roll Fuchsia Mac SDK from 1i9GaCxm8... to 0pFgNUM8S... (cla: yes, waiting for tree to go green)
[21584](https://github.com/flutter/engine/pull/21584) [web] Fix CapsLock keyevent (cla: yes)
[21585](https://github.com/flutter/engine/pull/21585) Refactor make_mock_engine into fl_test (cla: yes, waiting for tree to go green)
[21587](https://github.com/flutter/engine/pull/21587) Roll Dart SDK from 9f810fa15a9e to 1a039e595379 (1 revision) (cla: yes, waiting for tree to go green)
[21588](https://github.com/flutter/engine/pull/21588) Roll Fuchsia Linux SDK from J5Qe0sLAi... to tz23Y3d1u... (cla: yes, waiting for tree to go green)
[21589](https://github.com/flutter/engine/pull/21589) Roll Fuchsia Mac SDK from 0pFgNUM8S... to D6xcV5RGw... (cla: yes, waiting for tree to go green)
[21590](https://github.com/flutter/engine/pull/21590) Roll Fuchsia Linux SDK from tz23Y3d1u... to Hq4nRfNIg... (cla: yes, waiting for tree to go green)
[21591](https://github.com/flutter/engine/pull/21591) Roll Skia from 2d7973afc29d to 223ffcdff922 (8 revisions) (cla: yes, waiting for tree to go green)
[21592](https://github.com/flutter/engine/pull/21592) Roll Fuchsia Mac SDK from D6xcV5RGw... to qljWjWwoR... (cla: yes, waiting for tree to go green)
[21595](https://github.com/flutter/engine/pull/21595) Roll Fuchsia Linux SDK from Hq4nRfNIg... to 5KQYmRGqZ... (cla: yes, waiting for tree to go green)
[21596](https://github.com/flutter/engine/pull/21596) Roll Fuchsia Mac SDK from qljWjWwoR... to mhxbBrFZD... (cla: yes, waiting for tree to go green)
[21597](https://github.com/flutter/engine/pull/21597) Roll Skia from 223ffcdff922 to e34a8d7f01ff (2 revisions) (cla: yes, waiting for tree to go green)
[21598](https://github.com/flutter/engine/pull/21598) Roll Dart SDK from 1a039e595379 to 9560a32779fc (1 revision) (cla: yes, waiting for tree to go green)
[21599](https://github.com/flutter/engine/pull/21599) Roll Fuchsia Linux SDK from 5KQYmRGqZ... to DMUD0TMLr... (cla: yes, waiting for tree to go green)
[21600](https://github.com/flutter/engine/pull/21600) Roll Skia from e34a8d7f01ff to bd0881cb58eb (12 revisions) (cla: yes, waiting for tree to go green)
[21601](https://github.com/flutter/engine/pull/21601) Roll Skia from bd0881cb58eb to e2c4999ec340 (5 revisions) (cla: yes, waiting for tree to go green)
[21603](https://github.com/flutter/engine/pull/21603) Use the gpu config for shell_unittests to declare SHELL_ENABLE_{GL,VULKAN} (cla: yes, waiting for tree to go green)
[21604](https://github.com/flutter/engine/pull/21604) Roll Skia from e2c4999ec340 to 0d31ed506863 (5 revisions) (cla: yes, waiting for tree to go green)
[21606](https://github.com/flutter/engine/pull/21606) Roll ICU to 146cb611fb2c1f53e63c2e59bd735d7a8ac6ec8c (cla: yes, waiting for tree to go green)
[21607](https://github.com/flutter/engine/pull/21607) Roll Skia from 0d31ed506863 to d30e9efdab5c (4 revisions) (cla: yes, waiting for tree to go green)
[21608](https://github.com/flutter/engine/pull/21608) Roll Skia from d30e9efdab5c to 41d906752d13 (2 revisions) (cla: yes, waiting for tree to go green)
[21610](https://github.com/flutter/engine/pull/21610) fixing the autofill overlay problem (blue area for chrome) (cla: yes)
[21611](https://github.com/flutter/engine/pull/21611) Preserve specified AssetResolvers when performing a hot restart or updating the asset directory (cla: yes, platform-android)
[21612](https://github.com/flutter/engine/pull/21612) Separate mutators for text and selection (affects: desktop, affects: text input, cla: yes, platform-linux, platform-windows, waiting for tree to go green)
[21613](https://github.com/flutter/engine/pull/21613) running web tests only on DEPS and web directories (cla: yes)
[21615](https://github.com/flutter/engine/pull/21615) Roll Skia from 41d906752d13 to 05162812fd37 (1 revision) (cla: yes, waiting for tree to go green)
[21617](https://github.com/flutter/engine/pull/21617) Roll Skia from 05162812fd37 to 347e5dc37127 (1 revision) (cla: yes, waiting for tree to go green)
[21619](https://github.com/flutter/engine/pull/21619) Roll Fuchsia Mac SDK from mhxbBrFZD... to 8q-OCkyhO... (cla: yes, waiting for tree to go green)
[21620](https://github.com/flutter/engine/pull/21620) Roll Skia from 347e5dc37127 to fa5ff7d234b8 (1 revision) (cla: yes, waiting for tree to go green)
[21621](https://github.com/flutter/engine/pull/21621) Roll Fuchsia Linux SDK from DMUD0TMLr... to HeAkKHbFY... (cla: yes, waiting for tree to go green)
[21622](https://github.com/flutter/engine/pull/21622) Roll Skia from fa5ff7d234b8 to 00dc0bcb4d54 (3 revisions) (cla: yes, waiting for tree to go green)
[21624](https://github.com/flutter/engine/pull/21624) Roll Skia from 00dc0bcb4d54 to e2c6940c36e4 (1 revision) (cla: yes, waiting for tree to go green)
[21625](https://github.com/flutter/engine/pull/21625) Roll Skia from e2c6940c36e4 to c3bdd1c597dc (4 revisions) (cla: yes, waiting for tree to go green)
[21628](https://github.com/flutter/engine/pull/21628) Roll Skia from c3bdd1c597dc to 33b42e12ab71 (6 revisions) (cla: yes, waiting for tree to go green)
[21629](https://github.com/flutter/engine/pull/21629) Add more TextStyle support to Paragraph in CanvasKit mode (cla: yes, platform-web)
[21630](https://github.com/flutter/engine/pull/21630) Roll Fuchsia Linux SDK from HeAkKHbFY... to kr1tNtZvZ... (cla: yes, waiting for tree to go green)
[21632](https://github.com/flutter/engine/pull/21632) Add flag to not publish the observatory port over mDNS (cla: yes, platform-ios)
[21633](https://github.com/flutter/engine/pull/21633) add api_conform_test to analyze step (cla: yes)
[21634](https://github.com/flutter/engine/pull/21634) Roll Skia from 33b42e12ab71 to 107114dd1d6e (5 revisions) (cla: yes, waiting for tree to go green)
[21635](https://github.com/flutter/engine/pull/21635) Roll Fuchsia Mac SDK from 8q-OCkyhO... to xM2vYLfIT... (cla: yes, waiting for tree to go green)
[21648](https://github.com/flutter/engine/pull/21648) Use preTranslate when applying offset to matrix (cla: yes, waiting for tree to go green)
[21656](https://github.com/flutter/engine/pull/21656) Roll Fuchsia Mac SDK from xM2vYLfIT... to m6w8tDXMm... (cla: yes)
[21660](https://github.com/flutter/engine/pull/21660) Run desktop darwin tests in debug mode (cla: yes, waiting for tree to go green)
[21663](https://github.com/flutter/engine/pull/21663) Store selection base/extent as size_t (affects: text input, cla: yes, platform-linux, platform-windows)
[21665](https://github.com/flutter/engine/pull/21665) Ensure JNI is not called from raster thread (cla: yes, platform-android, waiting for tree to go green)
[21666](https://github.com/flutter/engine/pull/21666) Roll Skia from 107114dd1d6e to a7f69c290667 (18 revisions) (cla: yes)
[21668](https://github.com/flutter/engine/pull/21668) Remove dependencies on _product variants of libdart from the Fuchsia release mode build (cla: yes)
[21669](https://github.com/flutter/engine/pull/21669) [flutter_releases] Flutter 1.22.1 Engine Cherrypicks (cla: yes, platform-android, platform-ios)
[21670](https://github.com/flutter/engine/pull/21670) [macOS] Allow loading of AOT snapshots and instructions from elf bundle (cla: yes, waiting for tree to go green)
[21676](https://github.com/flutter/engine/pull/21676) Roll Skia from a7f69c290667 to 041fd0ad7d93 (5 revisions) (cla: yes, waiting for tree to go green)
[21677](https://github.com/flutter/engine/pull/21677) Pass angles for SweepGradient in degrees, not radians (cla: yes, platform-web)
[21678](https://github.com/flutter/engine/pull/21678) Roll Dart SDK from 9560a32779fc to 8f1a96317589 (12 revisions) (cla: yes, waiting for tree to go green)
[21679](https://github.com/flutter/engine/pull/21679) [flutter_releases] fix infra failure for web framework tests (cla: yes, platform-android, platform-ios)
[21680](https://github.com/flutter/engine/pull/21680) Avoid leaking the FlutterEngineAOTData structure in FlutterEngineCollectAOTData. (cla: yes, waiting for tree to go green)
[21681](https://github.com/flutter/engine/pull/21681) [macOS] flutter_desktop_darwin_unittests can be enabled for all runtime modes (cla: yes, waiting for tree to go green)
[21682](https://github.com/flutter/engine/pull/21682) Add multi-step IME support to TextInputModel (affects: text input, cla: yes, platform-linux, platform-windows)
[21683](https://github.com/flutter/engine/pull/21683) Roll Skia from 041fd0ad7d93 to 38e6d226f24e (1 revision) (cla: yes, waiting for tree to go green)
[21684](https://github.com/flutter/engine/pull/21684) Roll Fuchsia Linux SDK from kr1tNtZvZ... to ZJHmp3INU... (cla: yes, waiting for tree to go green)
[21685](https://github.com/flutter/engine/pull/21685) Make TextInputModel::selection_start/end const (affects: text input, cla: yes, platform-linux, platform-windows)
[21686](https://github.com/flutter/engine/pull/21686) Roll Dart SDK from 8f1a96317589 to 8572b5c0f6dc (1 revision) (cla: yes, waiting for tree to go green)
[21687](https://github.com/flutter/engine/pull/21687) Revert "[web] Support custom url strategies" (cla: yes)
[21688](https://github.com/flutter/engine/pull/21688) Roll Skia from 38e6d226f24e to ac0723a06b53 (3 revisions) (cla: yes, waiting for tree to go green)
[21689](https://github.com/flutter/engine/pull/21689) Roll Fuchsia Mac SDK from m6w8tDXMm... to zhRBO0hCr... (cla: yes, waiting for tree to go green)
[21690](https://github.com/flutter/engine/pull/21690) Use buildroot clang for scenario app (cla: yes, waiting for tree to go green)
[21691](https://github.com/flutter/engine/pull/21691) Roll Dart SDK from 8572b5c0f6dc to 98ea0b4971dd (1 revision) (cla: yes, waiting for tree to go green)
[21692](https://github.com/flutter/engine/pull/21692) Roll Skia from ac0723a06b53 to 8d43858ed21a (1 revision) (cla: yes, waiting for tree to go green)
[21694](https://github.com/flutter/engine/pull/21694) Skip flaky test (cla: yes, platform-ios)
[21695](https://github.com/flutter/engine/pull/21695) Roll Dart SDK from 98ea0b4971dd to 44fa3b9e566c (1 revision) (cla: yes, waiting for tree to go green)
[21696](https://github.com/flutter/engine/pull/21696) Forbid android.util.Log (cla: yes, platform-android, waiting for tree to go green)
[21697](https://github.com/flutter/engine/pull/21697) Update PR template to include the presubmit flake form (cla: yes, waiting for tree to go green)
[21698](https://github.com/flutter/engine/pull/21698) Roll Skia from 8d43858ed21a to 9c0b79a35489 (14 revisions) (cla: yes, waiting for tree to go green)
[21699](https://github.com/flutter/engine/pull/21699) [macOS] Fix docs for loadAOTData and minor refactor (affects: desktop, cla: yes, needs tests, platform-macos)
[21701](https://github.com/flutter/engine/pull/21701) Fix engine Xcode projection for newer versions of Xcode. (cla: yes)
[21702](https://github.com/flutter/engine/pull/21702) [web] Reland Support custom url strategies (cla: yes, platform-web)
[21705](https://github.com/flutter/engine/pull/21705) chrome driver for chrome 86 (cla: yes)
[21706](https://github.com/flutter/engine/pull/21706) Fix the offset passed to minikin::GraphemeBreak::isGraphemeBreak (cla: yes)
[21707](https://github.com/flutter/engine/pull/21707) Roll Skia from 9c0b79a35489 to e17b0501963a (15 revisions) (cla: yes, waiting for tree to go green)
[21708](https://github.com/flutter/engine/pull/21708) Roll Dart SDK from 44fa3b9e566c to 4ba58cad60e4 (1 revision) (cla: yes, waiting for tree to go green)
[21709](https://github.com/flutter/engine/pull/21709) Roll Fuchsia Linux SDK from ZJHmp3INU... to wrXNShr_8... (cla: yes, waiting for tree to go green)
[21711](https://github.com/flutter/engine/pull/21711) Perform selection check in DeleteSelected (affects: text input, cla: yes, platform-linux, platform-windows)
[21714](https://github.com/flutter/engine/pull/21714) Revert "fix On iOS, dialog titles are announced twice (#19826)" (cla: yes, platform-ios, waiting for tree to go green)
[21716](https://github.com/flutter/engine/pull/21716) [web] Add ShaderBuilder, change drawVertices to use builder. (cla: yes)
[21718](https://github.com/flutter/engine/pull/21718) Roll Dart SDK from 4ba58cad60e4 to fe566e6d08b1 (1 revision) (cla: yes, waiting for tree to go green)
[21719](https://github.com/flutter/engine/pull/21719) Allow TalkBack navigation while a platform view is rendered (cla: yes, platform-android, waiting for tree to go green)
[21720](https://github.com/flutter/engine/pull/21720) Roll Fuchsia Mac SDK from zhRBO0hCr... to LyP59nILn... (cla: yes, waiting for tree to go green)
[21722](https://github.com/flutter/engine/pull/21722) Extract textrange (affects: text input, cla: yes, platform-linux, platform-windows)
[21723](https://github.com/flutter/engine/pull/21723) Roll Dart SDK from fe566e6d08b1 to 1e7250f91944 (1 revision) (cla: yes, waiting for tree to go green)
[21725](https://github.com/flutter/engine/pull/21725) Roll Dart SDK from 1e7250f91944 to 712e35f7fd0b (1 revision) (cla: yes, waiting for tree to go green)
[21729](https://github.com/flutter/engine/pull/21729) Roll Fuchsia Linux SDK from wrXNShr_8... to EBX49sN_X... (cla: yes, waiting for tree to go green)
[21730](https://github.com/flutter/engine/pull/21730) Fix viewInset.bottom and viewPadding.bottom… (affects: engine, cla: yes, platform-android, waiting for tree to go green)
[21732](https://github.com/flutter/engine/pull/21732) Roll Skia from e17b0501963a to 453f67ff0ade (28 revisions) (cla: yes, waiting for tree to go green)
[21733](https://github.com/flutter/engine/pull/21733) Roll Fuchsia Mac SDK from LyP59nILn... to lqn8xmlDn... (cla: yes, waiting for tree to go green)
[21734](https://github.com/flutter/engine/pull/21734) Forward font collection APIs to the SkParagraph font collection (cla: yes, waiting for tree to go green)
[21736](https://github.com/flutter/engine/pull/21736) Roll Dart SDK from 712e35f7fd0b to 06536d68ca0f (2 revisions) (cla: yes, waiting for tree to go green)
[21737](https://github.com/flutter/engine/pull/21737) Add dart_entrypoint_argc/argv to the FlutterProjectArgs (cla: yes, waiting for tree to go green)
[21739](https://github.com/flutter/engine/pull/21739) Roll Skia from 453f67ff0ade to 269e43fd9830 (11 revisions) (cla: yes, waiting for tree to go green)
[21740](https://github.com/flutter/engine/pull/21740) Fix filesystem access prior to macOS 10.15 (cla: yes, waiting for tree to go green)
[21741](https://github.com/flutter/engine/pull/21741) Remove uses of Dart VM bytecode mode from Flutter engine (cla: yes)
[21742](https://github.com/flutter/engine/pull/21742) Roll Skia from 269e43fd9830 to 88cda17bbeb8 (3 revisions) (cla: yes, waiting for tree to go green)
[21744](https://github.com/flutter/engine/pull/21744) Roll Skia from 88cda17bbeb8 to 61003cde7688 (4 revisions) (cla: yes, waiting for tree to go green)
[21746](https://github.com/flutter/engine/pull/21746) Roll Skia from 61003cde7688 to 13fc260c7080 (1 revision) (cla: yes, waiting for tree to go green)
[21747](https://github.com/flutter/engine/pull/21747) Reland "Create root isolate asynchronously (#20142)" (cla: yes)
[21749](https://github.com/flutter/engine/pull/21749) Roll Fuchsia Mac SDK from lqn8xmlDn... to gzhbqRUap... (cla: yes, waiting for tree to go green)
[21752](https://github.com/flutter/engine/pull/21752) Roll Skia from 13fc260c7080 to aa64c352b349 (1 revision) (cla: yes, waiting for tree to go green)
[21753](https://github.com/flutter/engine/pull/21753) Roll Fuchsia Linux SDK from EBX49sN_X... to YRTc9YoiB... (cla: yes, waiting for tree to go green)
[21754](https://github.com/flutter/engine/pull/21754) Windows: Add UWP target stub [Flutter#14697] (cla: yes, waiting for tree to go green)
[21758](https://github.com/flutter/engine/pull/21758) Roll Skia from aa64c352b349 to d71dc2d25b8b (1 revision) (cla: yes, waiting for tree to go green)
[21759](https://github.com/flutter/engine/pull/21759) Roll Fuchsia Mac SDK from gzhbqRUap... to _0R2HD4c8... (cla: yes, waiting for tree to go green)
[21760](https://github.com/flutter/engine/pull/21760) Roll Fuchsia Linux SDK from YRTc9YoiB... to Nw5-0_sVF... (cla: yes, waiting for tree to go green)
[21762](https://github.com/flutter/engine/pull/21762) Roll Fuchsia Mac SDK from _0R2HD4c8... to 82ankF-Ht... (cla: yes, waiting for tree to go green)
[21768](https://github.com/flutter/engine/pull/21768) Roll Fuchsia Mac SDK from 82ankF-Ht... to FFpTJfmj1... (cla: yes, waiting for tree to go green)
[21771](https://github.com/flutter/engine/pull/21771) Roll Fuchsia Linux SDK from Nw5-0_sVF... to h-DeV4tgE... (cla: yes, waiting for tree to go green)
[21772](https://github.com/flutter/engine/pull/21772) Roll Skia from d71dc2d25b8b to ceb6214a556a (5 revisions) (cla: yes, waiting for tree to go green)
[21773](https://github.com/flutter/engine/pull/21773) Ignore analysis warning for doc comment (cla: yes)
[21774](https://github.com/flutter/engine/pull/21774) Roll Skia from ceb6214a556a to 9213e610ed92 (8 revisions) (cla: yes, waiting for tree to go green)
[21775](https://github.com/flutter/engine/pull/21775) Roll Dart SDK from 06536d68ca0f to e256855d07ba (6 revisions) (cla: yes)
[21777](https://github.com/flutter/engine/pull/21777) Prevent a race between SurfaceTexture.release and updateTexImage (cla: yes, platform-android, waiting for tree to go green)
[21779](https://github.com/flutter/engine/pull/21779) Roll Skia from 9213e610ed92 to 840e8ea7403e (11 revisions) (cla: yes, waiting for tree to go green)
[21780](https://github.com/flutter/engine/pull/21780) Fix documentation build for window changes. (cla: yes)
[21781](https://github.com/flutter/engine/pull/21781) [web] Fix Altgr keyboard crash (cla: yes)
[21782](https://github.com/flutter/engine/pull/21782) Add missing ninja call to analyze.sh so it can be run locally easily (cla: yes, waiting for tree to go green)
[21783](https://github.com/flutter/engine/pull/21783) Roll Skia from 840e8ea7403e to ab6e62c131e9 (7 revisions) (cla: yes, waiting for tree to go green)
[21784](https://github.com/flutter/engine/pull/21784) [null-safety] fix build rule to produce sound dill (cla: yes)
[21786](https://github.com/flutter/engine/pull/21786) Ocmock dylib (cla: yes, platform-ios)
[21789](https://github.com/flutter/engine/pull/21789) [macOS] Add plumbing to grab dart entrypoint args (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[21790](https://github.com/flutter/engine/pull/21790) Call PlatformView.dispose when removing hybrid composition platform views (cla: yes, platform-android)
[21792](https://github.com/flutter/engine/pull/21792) Revert "Migration to PlatformDispatcher and multi-window #20496" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21794](https://github.com/flutter/engine/pull/21794) Roll Skia from ab6e62c131e9 to f58db3c94da3 (6 revisions) (cla: yes, waiting for tree to go green)
[21795](https://github.com/flutter/engine/pull/21795) Roll Fuchsia Mac SDK from FFpTJfmj1... to 8Cb2zG9e3... (cla: yes, waiting for tree to go green)
[21797](https://github.com/flutter/engine/pull/21797) Roll Fuchsia Linux SDK from h-DeV4tgE... to gdo4mZ5oI... (cla: yes, waiting for tree to go green)
[21798](https://github.com/flutter/engine/pull/21798) [ios] Create a standalone external view embedder on iOS (cla: yes, platform-ios, waiting for tree to go green)
[21801](https://github.com/flutter/engine/pull/21801) Roll Skia from f58db3c94da3 to 387fd62a1280 (3 revisions) (cla: yes, waiting for tree to go green)
[21802](https://github.com/flutter/engine/pull/21802) Enable lazy-async-stacks by-default in all modes (Take 4) (cla: yes)
[21803](https://github.com/flutter/engine/pull/21803) Roll Skia from 387fd62a1280 to c89a7ee628db (1 revision) (cla: yes, waiting for tree to go green)
[21804](https://github.com/flutter/engine/pull/21804) Roll Skia from c89a7ee628db to fa8891164062 (1 revision) (cla: yes, waiting for tree to go green)
[21805](https://github.com/flutter/engine/pull/21805) Roll Skia from fa8891164062 to 01b93eabe25b (4 revisions) (cla: yes, waiting for tree to go green)
[21806](https://github.com/flutter/engine/pull/21806) Forward Error objects to uncaught exception handler if there is one. (cla: yes, platform-android)
[21807](https://github.com/flutter/engine/pull/21807) [web] enabling firefox screenshot tests. adding to documentation (cla: yes)
[21808](https://github.com/flutter/engine/pull/21808) Roll Dart SDK from e256855d07ba to a3b62f366529 (4 revisions) (cla: yes, waiting for tree to go green)
[21809](https://github.com/flutter/engine/pull/21809) Roll Dart SDK from e256855d07ba to a3b62f366529 (4 revisions) (cla: yes, waiting for tree to go green)
[21810](https://github.com/flutter/engine/pull/21810) Roll Skia from 01b93eabe25b to 2e0c70dc9c3e (10 revisions) (cla: yes, waiting for tree to go green)
[21811](https://github.com/flutter/engine/pull/21811) Switch macOS embedding to proc table embedder API (affects: desktop, affects: engine, cla: yes, platform-macos)
[21813](https://github.com/flutter/engine/pull/21813) Add a proc table version of embedder API (cla: yes, waiting for tree to go green)
[21814](https://github.com/flutter/engine/pull/21814) Roll Fuchsia Linux SDK from gdo4mZ5oI... to 41fVbRhb0... (cla: yes, waiting for tree to go green)
[21816](https://github.com/flutter/engine/pull/21816) Roll Skia from 2e0c70dc9c3e to 7bbdde059685 (10 revisions) (cla: yes, waiting for tree to go green)
[21817](https://github.com/flutter/engine/pull/21817) Enable clipRRect for android platform view hybrid composition (cla: yes, platform-android, waiting for tree to go green)
[21819](https://github.com/flutter/engine/pull/21819) Add a style note about Linux embedding style (cla: yes, waiting for tree to go green)
[21820](https://github.com/flutter/engine/pull/21820) Enable loading snapshots with sound null safety enabled. (cla: yes, waiting for tree to go green)
[21821](https://github.com/flutter/engine/pull/21821) [flutter] add intercept_all_input flag support (cla: yes)
[21823](https://github.com/flutter/engine/pull/21823) Revert "Roll Fuchsia Linux SDK from gdo4mZ5oI... to 41fVbRhb0..." (cla: yes)
[21827](https://github.com/flutter/engine/pull/21827) Upgrade to latest process runner, fix commands that throw to fail test (cla: yes)
[21828](https://github.com/flutter/engine/pull/21828) Collect logs in the background. (cla: yes)
[21829](https://github.com/flutter/engine/pull/21829) Revert Linux Fuchsia SDK rolls to 10/8 (cla: yes)
[21830](https://github.com/flutter/engine/pull/21830) Roll Dart SDK from a3b62f366529 to 4226116043f5 (1 revision) (cla: yes, waiting for tree to go green)
[21831](https://github.com/flutter/engine/pull/21831) Explicitly make the X connection for EGL. (cla: yes)
[21832](https://github.com/flutter/engine/pull/21832) Roll Fuchsia Mac SDK from 8Cb2zG9e3... to SFNhlfVb_... (cla: yes, waiting for tree to go green)
[21834](https://github.com/flutter/engine/pull/21834) Roll Skia from 7bbdde059685 to 99446001182c (5 revisions) (cla: yes, waiting for tree to go green)
[21838](https://github.com/flutter/engine/pull/21838) [flutter_releases] Flutter 1.23.0-18.1.pre Engine Cherrypicks (cla: yes)
[21839](https://github.com/flutter/engine/pull/21839) [android] Refactor surface factory and wire in external view embedder (cla: yes, platform-android, waiting for tree to go green)
[21840](https://github.com/flutter/engine/pull/21840) Fix destruction order in C++ plugin registrar (cla: yes)
[21841](https://github.com/flutter/engine/pull/21841) [flutter_releases] Flutter 1.22.2 engine cherrypicks (cla: yes, platform-android, platform-ios)
[21842](https://github.com/flutter/engine/pull/21842) Update flutter to pass Skia the VkImageUsageFlags and Samples (cla: yes)
[21846](https://github.com/flutter/engine/pull/21846) Roll Dart SDK from 4226116043f5 to 04cf6ade9fc4 (4 revisions) (cla: yes, waiting for tree to go green)
[21847](https://github.com/flutter/engine/pull/21847) [embedder] Platform View owns lifecycle of external view embedder (cla: yes)
[21848](https://github.com/flutter/engine/pull/21848) Roll Skia from 99446001182c to f4bda743ff8d (22 revisions) (cla: yes, waiting for tree to go green)
[21850](https://github.com/flutter/engine/pull/21850) [fuchsia] External view embedder will be shared with platform view (cla: yes, waiting for tree to go green)
[21851](https://github.com/flutter/engine/pull/21851) Revert "Explicitly make the X connection for EGL. (#21831)" (cla: yes)
[21852](https://github.com/flutter/engine/pull/21852) Auto detect mode to determine which rendering backend to use. (cla: yes, platform-web, waiting for tree to go green)
[21854](https://github.com/flutter/engine/pull/21854) Migrate TextInputPlugin API to TextRange (affects: text input, cla: yes, platform-linux, platform-windows)
[21856](https://github.com/flutter/engine/pull/21856) Fixing semantics borders on mobile web (cla: yes, platform-web)
[21864](https://github.com/flutter/engine/pull/21864) Update more class names from GrContext to GrDirectContext (cla: yes, platform-ios)
[21871](https://github.com/flutter/engine/pull/21871) Reland "Explicitly make the X connection for EGL." (cla: yes)
[21873](https://github.com/flutter/engine/pull/21873) [web] Implement sweep gradient (cla: yes, platform-web)
[21874](https://github.com/flutter/engine/pull/21874) Add TextRange::Contains tests spanning base/extent (affects: text input, cla: yes, platform-linux, platform-windows)
[21875](https://github.com/flutter/engine/pull/21875) Fix typos in FlValue docs (cla: yes, waiting for tree to go green)
[21877](https://github.com/flutter/engine/pull/21877) [ios] Refactor IOSSurface factory and unify surface creation (cla: yes, platform-ios)
[21879](https://github.com/flutter/engine/pull/21879) Fix memory leaks in FlTextInputPlugin (cla: yes)
[21882](https://github.com/flutter/engine/pull/21882) Revert "Add flag to not publish the observatory port over mDNS" (cla: yes, platform-ios)
[21883](https://github.com/flutter/engine/pull/21883) Add flag to not publish the observatory port over mDNS (cla: yes, platform-ios)
[21884](https://github.com/flutter/engine/pull/21884) Roll buildroot to 9184ff0695be1b3e4bb20cf64efcfa56daa0a3c0 (cla: yes)
[21889](https://github.com/flutter/engine/pull/21889) Fix incldues to be flutter/shell rather than shell/ (cla: yes, platform-android)
[21890](https://github.com/flutter/engine/pull/21890) Refactored the FlutterEngine to make it easier to implement spawn functionality (cla: yes, platform-ios)
[21891](https://github.com/flutter/engine/pull/21891) Check for null images in ImageFromCompressedData (cla: yes, waiting for tree to go green)
[21892](https://github.com/flutter/engine/pull/21892) Roll Skia from f4bda743ff8d to f1b53836b705 (21 revisions) (cla: yes, waiting for tree to go green)
[21896](https://github.com/flutter/engine/pull/21896) Show OSK on GNOME+Wayland (cla: yes)
[21897](https://github.com/flutter/engine/pull/21897) Add multi-step input method support for Linux (affects: desktop, affects: text input, cla: yes, needs tests, platform-linux)
[21901](https://github.com/flutter/engine/pull/21901) [web] Implement ClipOp.difference (cla: yes)
[21904](https://github.com/flutter/engine/pull/21904) Eliminate FLUTTER_NOLINT where possible (cla: yes, code health, platform-android)
[21906](https://github.com/flutter/engine/pull/21906) Roll Fuchsia Mac SDK from SFNhlfVb_... to _FaRRt69Z... (cla: yes, waiting for tree to go green)
[21909](https://github.com/flutter/engine/pull/21909) Roll Dart SDK from 04cf6ade9fc4 to 80288ca68c49 (6 revisions) (cla: yes, waiting for tree to go green)
[21910](https://github.com/flutter/engine/pull/21910) Roll Skia from f1b53836b705 to db0288d747ae (7 revisions) (cla: yes, waiting for tree to go green)
[21911](https://github.com/flutter/engine/pull/21911) Roll Skia from db0288d747ae to 839fb228ac44 (1 revision) (cla: yes, waiting for tree to go green)
[21915](https://github.com/flutter/engine/pull/21915) Roll Dart SDK from 80288ca68c49 to e655b9a3839e (1 revision) (cla: yes, waiting for tree to go green)
[21917](https://github.com/flutter/engine/pull/21917) Roll Skia from 839fb228ac44 to 418eda2c599a (9 revisions) (cla: yes, waiting for tree to go green)
[21918](https://github.com/flutter/engine/pull/21918) Break the reference cycle between the surface factory and the external view embedder (cla: yes, platform-android)
[21919](https://github.com/flutter/engine/pull/21919) Roll Dart SDK from e655b9a3839e to b58cfe5ab24e (1 revision) (cla: yes, waiting for tree to go green)
[21920](https://github.com/flutter/engine/pull/21920) Roll Dart SDK from e655b9a3839e to b58cfe5ab24e (1 revision) (cla: yes, waiting for tree to go green)
[21921](https://github.com/flutter/engine/pull/21921) Update FLUTTER_NOLINT uses to include issue link (cla: yes, code health)
[21922](https://github.com/flutter/engine/pull/21922) Require that FLUTTER_NOLINT include issue link (cla: yes)
[21923](https://github.com/flutter/engine/pull/21923) Roll Skia from 418eda2c599a to f9c7b2803461 (3 revisions) (cla: yes, waiting for tree to go green)
[21924](https://github.com/flutter/engine/pull/21924) Revert "[fuchsia] External view embedder will be shared with platform view" (cla: yes)
[21926](https://github.com/flutter/engine/pull/21926) Set strokeCap, strokeJoin, and strokeMiter when resurrecting Paint (cla: yes, waiting for tree to go green)
[21927](https://github.com/flutter/engine/pull/21927) Define SK_VULKAN for clang-tidy runs (cla: yes, code health)
[21928](https://github.com/flutter/engine/pull/21928) [web] Fix scroll wheel line delta on Firefox. (cla: yes, platform-web)
[21929](https://github.com/flutter/engine/pull/21929) Roll Skia from f9c7b2803461 to f60a76e2ac01 (4 revisions) (cla: yes, waiting for tree to go green)
[21932](https://github.com/flutter/engine/pull/21932) Reland: Migration to PlatformDispatcher and multi-window (affects: desktop, cla: yes)
[21933](https://github.com/flutter/engine/pull/21933) Plumb through Dart entrypoint arguments on the Linux embedder (affects: desktop, cla: yes, needs tests, platform-linux)
[21934](https://github.com/flutter/engine/pull/21934) [fuchsia] Adds a test for timezone change (cla: yes, waiting for tree to go green)
[21935](https://github.com/flutter/engine/pull/21935) Eliminate unnecessary linter opt-outs (cla: yes, code health)
[21936](https://github.com/flutter/engine/pull/21936) Roll Skia from f60a76e2ac01 to be8004d2fb6c (1 revision) (cla: yes, waiting for tree to go green)
[21937](https://github.com/flutter/engine/pull/21937) Roll the process_runner package used by the formatter script (cla: yes)
[21938](https://github.com/flutter/engine/pull/21938) Roll Dart SDK from b58cfe5ab24e to aaab579579be (1 revision) (cla: yes, waiting for tree to go green)
[21939](https://github.com/flutter/engine/pull/21939) [web] Fix image gap due to svg element without position attribute (cla: yes)
[21940](https://github.com/flutter/engine/pull/21940) Reformat some files that were not auto-formatted (cla: yes, platform-android, waiting for tree to go green)
[21941](https://github.com/flutter/engine/pull/21941) Add FML_UNREACHABLE to declare points in code that should never be reached. (cla: yes, waiting for tree to go green)
[21942](https://github.com/flutter/engine/pull/21942) [null-safety] fix type declaration of Picutre._toImage (cla: yes)
[21944](https://github.com/flutter/engine/pull/21944) Roll Fuchsia Mac SDK from _FaRRt69Z... to XZSNobQCT... (cla: yes, waiting for tree to go green)
[21946](https://github.com/flutter/engine/pull/21946) Roll Dart SDK from aaab579579be to 42a0bf548ea3 (1 revision) (cla: yes, waiting for tree to go green)
[21948](https://github.com/flutter/engine/pull/21948) Roll Dart SDK from 42a0bf548ea3 to 675c7165c071 (1 revision) (cla: yes, waiting for tree to go green)
[21950](https://github.com/flutter/engine/pull/21950) Roll Fuchsia Mac SDK from XZSNobQCT... to 9mMCqUXkF... (cla: yes, waiting for tree to go green)
[21952](https://github.com/flutter/engine/pull/21952) Roll Dart SDK from 675c7165c071 to 5c59a47beda7 (1 revision) (cla: yes, waiting for tree to go green)
[21953](https://github.com/flutter/engine/pull/21953) Restore missing call to RuntimeDelegate.OnRootIsolateCreated (cla: yes)
[21955](https://github.com/flutter/engine/pull/21955) Roll Fuchsia Mac SDK from 9mMCqUXkF... to MR_bRfe8I... (cla: yes, waiting for tree to go green)
[21956](https://github.com/flutter/engine/pull/21956) Roll Skia from be8004d2fb6c to 27f7fe32f49b (1 revision) (cla: yes, waiting for tree to go green)
[21959](https://github.com/flutter/engine/pull/21959) [null-safety] fix return type of some pushLayer native bindings (cla: yes)
[21970](https://github.com/flutter/engine/pull/21970) Revert "[ios] Refactor IOSSurface factory and unify surface creation" (cla: yes, platform-ios, waiting for tree to go green)
[21971](https://github.com/flutter/engine/pull/21971) Temporarily disabled tests that were using latin and arabic characters while we fix them. (cla: yes)
[21974](https://github.com/flutter/engine/pull/21974) Specify the Noto Naskh Arabic font to get consistent results in tests using Arabic characters (cla: yes)
[21975](https://github.com/flutter/engine/pull/21975) Fixes Edge trigger route change announcement (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[21976](https://github.com/flutter/engine/pull/21976) Roll Fuchsia Linux SDK from ZJHmp3INU... to dcMRY8S12... (cla: yes, waiting for tree to go green)
[21977](https://github.com/flutter/engine/pull/21977) Fix the initialization of AndroidSurfaceFactoryImpl (cla: yes, platform-android)
[21978](https://github.com/flutter/engine/pull/21978) Roll Dart SDK from 5c59a47beda7 to 902538ea56d5 (2 revisions) (cla: yes, waiting for tree to go green)
[21979](https://github.com/flutter/engine/pull/21979) Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[21980](https://github.com/flutter/engine/pull/21980) Fix native constructor of list of zircon handles and remove unused list factory specializations. (cla: yes, waiting for tree to go green)
[21981](https://github.com/flutter/engine/pull/21981) Roll Dart SDK from 902538ea56d5 to fc82eeed7df3 (1 revision) (cla: yes, waiting for tree to go green)
[21982](https://github.com/flutter/engine/pull/21982) Roll Fuchsia Mac SDK from MR_bRfe8I... to pZ9FgVZTK... (cla: yes, waiting for tree to go green)
[21983](https://github.com/flutter/engine/pull/21983) [null-safety] fix Scene.toImage declaration (cla: yes)
[21984](https://github.com/flutter/engine/pull/21984) Roll Skia from 27f7fe32f49b to ac1ded033136 (15 revisions) (cla: yes, waiting for tree to go green)
[21986](https://github.com/flutter/engine/pull/21986) Revert "[web] Fix image gap due to svg element without position attribute" (cla: yes)
[21987](https://github.com/flutter/engine/pull/21987) [iOS] Fixes leaks of presses key message (cla: yes, platform-ios)
[21988](https://github.com/flutter/engine/pull/21988) Roll Fuchsia Linux SDK from dcMRY8S12... to lPMs_KwnU... (cla: yes, waiting for tree to go green)
[21989](https://github.com/flutter/engine/pull/21989) Roll Skia from ac1ded033136 to a25c0619b5ef (2 revisions) (cla: yes, waiting for tree to go green)
[21990](https://github.com/flutter/engine/pull/21990) Roll Skia from a25c0619b5ef to 4964300530d3 (2 revisions) (cla: yes, waiting for tree to go green)
[21993](https://github.com/flutter/engine/pull/21993) Roll Skia from 4964300530d3 to 51dc28505fb9 (5 revisions) (cla: yes, waiting for tree to go green)
[21994](https://github.com/flutter/engine/pull/21994) [null-safety] fix soundness of Paragraph._addPlaceholder (cla: yes, waiting for tree to go green)
[21995](https://github.com/flutter/engine/pull/21995) Roll Skia from 51dc28505fb9 to 1c823674d957 (8 revisions) (cla: yes, waiting for tree to go green)
[22002](https://github.com/flutter/engine/pull/22002) Roll Dart SDK from fc82eeed7df3 to 8be6a08153cc (1 revision) (cla: yes, waiting for tree to go green)
[22003](https://github.com/flutter/engine/pull/22003) [fuchsia] zx::vmar::map migration (cla: yes)
[22004](https://github.com/flutter/engine/pull/22004) Revert "Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (#21979)" (cla: yes, platform-android)
[22005](https://github.com/flutter/engine/pull/22005) Roll Dart SDK from fc82eeed7df3 to 8be6a08153cc (1 revision) (cla: yes, waiting for tree to go green)
[22007](https://github.com/flutter/engine/pull/22007) Fix FlTextInputPlugin tear down (affects: desktop, cla: yes, needs tests, platform-linux, waiting for tree to go green)
[22008](https://github.com/flutter/engine/pull/22008) Reland fuchsia external view embedder will be shared with platform view (cla: yes)
[22009](https://github.com/flutter/engine/pull/22009) [fuchsia] opt-out null-safety in standalone scripts (cla: yes, waiting for tree to go green)
[22012](https://github.com/flutter/engine/pull/22012) Revert "Define SK_VULKAN for clang-tidy runs (#21927)" (cla: yes)
[22013](https://github.com/flutter/engine/pull/22013) Determine null-safety isolate flags for launches of the service isolate. (cla: yes, waiting for tree to go green)
[22015](https://github.com/flutter/engine/pull/22015) Roll Skia from 1c823674d957 to 2d2f82c00aeb (13 revisions) (cla: yes)
[22016](https://github.com/flutter/engine/pull/22016) Reland [ios] Refactor IOSSurface factory and unify surface creation (cla: yes, platform-ios, waiting for tree to go green)
[22018](https://github.com/flutter/engine/pull/22018) Roll Dart SDK from 8be6a08153cc to 86242db30c23 (2 revisions) (cla: yes, waiting for tree to go green)
[22019](https://github.com/flutter/engine/pull/22019) Allow parse_and_send to use access tokens (cla: yes, waiting for tree to go green)
[22023](https://github.com/flutter/engine/pull/22023) Roll Dart SDK from 86242db30c23 to 874709e52a99 (1 revision) (cla: yes, waiting for tree to go green)
[22026](https://github.com/flutter/engine/pull/22026) Roll Dart SDK from 874709e52a99 to a3d902d8598e (1 revision) (cla: yes, waiting for tree to go green)
[22033](https://github.com/flutter/engine/pull/22033) Add a golden scenario test for fallback font rendering on iOS take 2 (cla: yes, waiting for tree to go green)
[22038](https://github.com/flutter/engine/pull/22038) Run framework tests in sound null safety mode (cla: yes)
[22041](https://github.com/flutter/engine/pull/22041) Ensure root isolate create callback is invoked before the isolate is in the running phase. (cla: yes, waiting for tree to go green)
[22052](https://github.com/flutter/engine/pull/22052) Isolates launched by the engine instance use the settings of that instance. (cla: yes)
[22055](https://github.com/flutter/engine/pull/22055) Roll Fuchsia Mac SDK from pZ9FgVZTK... to WLxBkBnZa... (cla: yes, waiting for tree to go green)
[22057](https://github.com/flutter/engine/pull/22057) Roll Fuchsia Linux SDK from lPMs_KwnU... to gqS_DIjN4... (cla: yes, waiting for tree to go green)
[22058](https://github.com/flutter/engine/pull/22058) Roll Dart SDK from a3d902d8598e to 9f907e198970 (2 revisions) (cla: yes, waiting for tree to go green)
[22059](https://github.com/flutter/engine/pull/22059) Roll Skia from 2d2f82c00aeb to 5c7bb326a7b3 (33 revisions) (cla: yes, waiting for tree to go green)
[22060](https://github.com/flutter/engine/pull/22060) Roll Skia from 5c7bb326a7b3 to 65674e4c2e56 (3 revisions) (cla: yes, waiting for tree to go green)
[22061](https://github.com/flutter/engine/pull/22061) Includes roles for links, checkboxes, and radio buttons in semantics (cla: yes, waiting for tree to go green)
[22062](https://github.com/flutter/engine/pull/22062) Roll Skia from 65674e4c2e56 to 01b05e5b830b (3 revisions) (cla: yes, waiting for tree to go green)
[22063](https://github.com/flutter/engine/pull/22063) Defer macOS arrow and backspace handling to framework (cla: yes)
[22064](https://github.com/flutter/engine/pull/22064) [web] Prevent using DOM nodes for canvas with large number of draws (cla: yes)
[22065](https://github.com/flutter/engine/pull/22065) Roll Skia from 01b05e5b830b to 53281c712159 (1 revision) (cla: yes, waiting for tree to go green)
[22067](https://github.com/flutter/engine/pull/22067) Add "input shield" to capture pointer input for reinjection (cla: yes, waiting for tree to go green)
[22069](https://github.com/flutter/engine/pull/22069) Roll Dart SDK from 9f907e198970 to 37ccceacad41 (3 revisions) (cla: yes, waiting for tree to go green)
[22070](https://github.com/flutter/engine/pull/22070) [web] Fix positioning of canvas elements due to svg filters (cla: yes, platform-web)
[22072](https://github.com/flutter/engine/pull/22072) [web] Fix image getting evicted after being consumed from CrossFrameCache (cla: yes)
[22073](https://github.com/flutter/engine/pull/22073) Roll Fuchsia Mac SDK from WLxBkBnZa... to zDfaxkqlv... (cla: yes, waiting for tree to go green)
[22074](https://github.com/flutter/engine/pull/22074) Roll Fuchsia Linux SDK from gqS_DIjN4... to vuKxZmSVj... (cla: yes, waiting for tree to go green)
[22075](https://github.com/flutter/engine/pull/22075) Roll Skia from 53281c712159 to 58cf3fe83b93 (5 revisions) (cla: yes, waiting for tree to go green)
[22078](https://github.com/flutter/engine/pull/22078) Revert dart rolls (cla: yes)
[22080](https://github.com/flutter/engine/pull/22080) add web framework tests to the prod builder (cla: yes, waiting for tree to go green)
[22081](https://github.com/flutter/engine/pull/22081) Roll Skia from 58cf3fe83b93 to 7c64798b3d0c (5 revisions) (cla: yes, waiting for tree to go green)
[22082](https://github.com/flutter/engine/pull/22082) [ios] Convert FlutterPlatformViewsController to smart pointer (cla: yes, platform-ios)
[22084](https://github.com/flutter/engine/pull/22084) Roll Fuchsia Linux SDK from vuKxZmSVj... to ivUuUUnOL... (cla: yes, waiting for tree to go green)
[22085](https://github.com/flutter/engine/pull/22085) Implement Scene.toImage() in CanvasKit mode. (cla: yes, platform-web)
[22086](https://github.com/flutter/engine/pull/22086) Add metrics scripts in preparation to move the builder to LUCI. (cla: yes)
[22087](https://github.com/flutter/engine/pull/22087) Roll Fuchsia Mac SDK from zDfaxkqlv... to kCSI3uPt1... (cla: yes, waiting for tree to go green)
[22089](https://github.com/flutter/engine/pull/22089) Fix _lerpInt precision bug (cla: yes)
[22090](https://github.com/flutter/engine/pull/22090) Roll Dart SDK from a3d902d8598e to ae67d4be7d8e (9 revisions) (cla: yes, waiting for tree to go green)
[22091](https://github.com/flutter/engine/pull/22091) Remove some obsolete code from RuntimeController (cla: yes, waiting for tree to go green)
[22094](https://github.com/flutter/engine/pull/22094) Add plumbing for command line arguments on Windows (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22095](https://github.com/flutter/engine/pull/22095) Revert "Add a golden scenario test for fallback font rendering on iOS take 2" (cla: yes)
[22096](https://github.com/flutter/engine/pull/22096) Roll Dart SDK from ae67d4be7d8e to 51b403c0134a (2 revisions) (cla: yes, waiting for tree to go green)
[22097](https://github.com/flutter/engine/pull/22097) Roll Fuchsia Linux SDK from ivUuUUnOL... to gHKi9MwVc... (cla: yes, waiting for tree to go green)
[22098](https://github.com/flutter/engine/pull/22098) Roll Fuchsia Mac SDK from kCSI3uPt1... to pis4h1dA0... (cla: yes, waiting for tree to go green)
[22100](https://github.com/flutter/engine/pull/22100) Roll Dart SDK from 51b403c0134a to 11d1c3de8d01 (1 revision) (cla: yes, waiting for tree to go green)
[22101](https://github.com/flutter/engine/pull/22101) Roll Skia from 7c64798b3d0c to 312535b47d38 (9 revisions) (cla: yes, waiting for tree to go green)
[22103](https://github.com/flutter/engine/pull/22103) Roll Dart SDK from 11d1c3de8d01 to 1897e02f5b1c (2 revisions) (cla: yes, waiting for tree to go green)
[22106](https://github.com/flutter/engine/pull/22106) Roll Fuchsia Mac SDK from pis4h1dA0... to xFEwU5hU7... (cla: yes, waiting for tree to go green)
[22107](https://github.com/flutter/engine/pull/22107) Roll Fuchsia Linux SDK from gHKi9MwVc... to 33fGX8ZWr... (cla: yes, waiting for tree to go green)
[22108](https://github.com/flutter/engine/pull/22108) Roll Skia from 312535b47d38 to aea82732415c (1 revision) (cla: yes, waiting for tree to go green)
[22110](https://github.com/flutter/engine/pull/22110) Roll Fuchsia Linux SDK from 33fGX8ZWr... to d3HGOZddM... (cla: yes, waiting for tree to go green)
[22112](https://github.com/flutter/engine/pull/22112) Roll Fuchsia Mac SDK from xFEwU5hU7... to GcGZpyAMA... (cla: yes, waiting for tree to go green)
[22113](https://github.com/flutter/engine/pull/22113) Roll Dart SDK from 1897e02f5b1c to 96369fde1083 (2 revisions) (cla: yes, waiting for tree to go green)
[22114](https://github.com/flutter/engine/pull/22114) Roll Fuchsia Linux SDK from d3HGOZddM... to 5teTtbQ9-... (cla: yes, waiting for tree to go green)
[22115](https://github.com/flutter/engine/pull/22115) Roll Dart SDK from 96369fde1083 to 9ba287dfd221 (1 revision) (cla: yes, waiting for tree to go green)
[22116](https://github.com/flutter/engine/pull/22116) Roll Fuchsia Mac SDK from GcGZpyAMA... to n-yA0KEMT... (cla: yes, waiting for tree to go green)
[22117](https://github.com/flutter/engine/pull/22117) Roll Dart SDK from 9ba287dfd221 to 6e015bd9cddb (1 revision) (cla: yes, waiting for tree to go green)
[22118](https://github.com/flutter/engine/pull/22118) Roll Skia from aea82732415c to c493eabd56d0 (2 revisions) (cla: yes, waiting for tree to go green)
[22119](https://github.com/flutter/engine/pull/22119) Roll Skia from c493eabd56d0 to 189ecd485ade (3 revisions) (cla: yes, waiting for tree to go green)
[22121](https://github.com/flutter/engine/pull/22121) Roll Skia from 189ecd485ade to 5bbbb49f1da0 (4 revisions) (cla: yes, waiting for tree to go green)
[22124](https://github.com/flutter/engine/pull/22124) add a package config file to const finder test fixtures (cla: yes, waiting for tree to go green)
[22125](https://github.com/flutter/engine/pull/22125) Fix possible use of std::moved value in Rasterizer (cla: yes, waiting for tree to go green)
[22127](https://github.com/flutter/engine/pull/22127) Roll Fuchsia Linux SDK from 5teTtbQ9-... to XYN02FThN... (cla: yes, waiting for tree to go green)
[22129](https://github.com/flutter/engine/pull/22129) Set strut font to Roboto if the given font hasn't been registered (cla: yes)
[22130](https://github.com/flutter/engine/pull/22130) Add braces on if statements to match linter style (cla: yes)
[22134](https://github.com/flutter/engine/pull/22134) [null-safety] update path version (cla: yes)
[22135](https://github.com/flutter/engine/pull/22135) Fix incorrect parameter used for self object (cla: yes, waiting for tree to go green)
[22136](https://github.com/flutter/engine/pull/22136) Fix warning when no entrypoint args provided. (affects: desktop, cla: yes, needs tests, platform-linux)
[22138](https://github.com/flutter/engine/pull/22138) Roll Fuchsia Mac SDK from n-yA0KEMT... to GKPwGj1Ux... (cla: yes, waiting for tree to go green)
[22140](https://github.com/flutter/engine/pull/22140) Roll Skia from 5bbbb49f1da0 to 7737a5bd2510 (13 revisions) (cla: yes, waiting for tree to go green)
[22142](https://github.com/flutter/engine/pull/22142) Add dart-lang/sdk's new package:clock dependency (cla: yes)
[22146](https://github.com/flutter/engine/pull/22146) Roll Skia from 7737a5bd2510 to 5567a6091ceb (8 revisions) (cla: yes, waiting for tree to go green)
[22147](https://github.com/flutter/engine/pull/22147) Roll Fuchsia Linux SDK from XYN02FThN... to UKgKCjxSA... (cla: yes, waiting for tree to go green)
[22150](https://github.com/flutter/engine/pull/22150) [web] Clean up unused previousStyle logic (cla: yes, platform-web, waiting for tree to go green)
[22151](https://github.com/flutter/engine/pull/22151) Roll Fuchsia Mac SDK from GKPwGj1Ux... to xHjtLQPQ5... (cla: yes, waiting for tree to go green)
[22153](https://github.com/flutter/engine/pull/22153) Manual Dart SDK roll 6e015bd9cddb to 9c6e76468ca4 (6 revisions) (cla: yes, waiting for tree to go green)
[22155](https://github.com/flutter/engine/pull/22155) Roll Skia from 5567a6091ceb to f548a028ce70 (7 revisions) (cla: yes, waiting for tree to go green)
[22157](https://github.com/flutter/engine/pull/22157) Invalidate the cached SkParagraph font collection when a new font manager is installed (cla: yes)
[22159](https://github.com/flutter/engine/pull/22159) Report error when instantiating CanvasKit network image (cla: yes, platform-web)
[22160](https://github.com/flutter/engine/pull/22160) [web] Fixes canvas pixelation and overallocation due to transforms. (cla: yes, platform-web)
[22169](https://github.com/flutter/engine/pull/22169) Update constraint to latest integration test (cla: yes)
[22170](https://github.com/flutter/engine/pull/22170) [profiling] Handle thread_info to account for killed threads (cla: yes, platform-ios)
[22171](https://github.com/flutter/engine/pull/22171) [flutter_releases] Flutter 1.22.3 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22172](https://github.com/flutter/engine/pull/22172) [web] Fix transform not invalidating path bounds causing debugValidate failure (cla: yes, platform-web)
[22175](https://github.com/flutter/engine/pull/22175) Roll Fuchsia Linux SDK from UKgKCjxSA... to PY5hNI-wY... (cla: yes, waiting for tree to go green)
[22177](https://github.com/flutter/engine/pull/22177) Roll ANGLE to latest version (cla: yes)
[22179](https://github.com/flutter/engine/pull/22179) Split AOT Android Embedder and shell (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22180](https://github.com/flutter/engine/pull/22180) Standardize macro names for dartdoc macros (cla: yes, waiting for tree to go green)
[22181](https://github.com/flutter/engine/pull/22181) Refactor platform message logic (cla: yes, waiting for tree to go green)
[22182](https://github.com/flutter/engine/pull/22182) [web] Fix for firefox custom clipping (cla: yes, platform-web, waiting for tree to go green)
[22184](https://github.com/flutter/engine/pull/22184) [web] Assign default natural width/height for svgs that report 0,0 on firefox and ie11 (cla: yes, platform-web)
[22188](https://github.com/flutter/engine/pull/22188) Roll Fuchsia Mac SDK from xHjtLQPQ5... to ICK_JlnKJ... (cla: yes, waiting for tree to go green)
[22194](https://github.com/flutter/engine/pull/22194) [iOS] Fixes DisplayLinkManager leaks (cla: yes, platform-ios)
[22195](https://github.com/flutter/engine/pull/22195) Update painting.dart with an annotation error. (cla: yes, waiting for tree to go green)
[22197](https://github.com/flutter/engine/pull/22197) Roll Fuchsia Linux SDK from PY5hNI-wY... to Usec4YBzR... (cla: yes, waiting for tree to go green)
[22198](https://github.com/flutter/engine/pull/22198) Migrate runZoned to runZonedGuarded (cla: yes, waiting for tree to go green)
[22201](https://github.com/flutter/engine/pull/22201) bring back build_test to ensure we validate licenses (cla: yes)
[22203](https://github.com/flutter/engine/pull/22203) Fix some serious lifecycle bugs with Android embedding code (cla: yes, platform-android, waiting for tree to go green)
[22205](https://github.com/flutter/engine/pull/22205) makes android semanticsnode to ignore hittest if it is not focusable (cla: yes, platform-android, waiting for tree to go green)
[22206](https://github.com/flutter/engine/pull/22206) [ios] Surface factory holds the canonical reference to the external view embedder (cla: yes, platform-ios)
[22207](https://github.com/flutter/engine/pull/22207) Defer Windows arrow key and delete handling (cla: yes)
[22211](https://github.com/flutter/engine/pull/22211) Switch Windows embedding to proc table embedder API (cla: yes)
[22212](https://github.com/flutter/engine/pull/22212) use the dart analyze command to analyze source (cla: yes)
[22213](https://github.com/flutter/engine/pull/22213) Manual Roll of Dart to ba80ed989cc...9c6e76468ca (cla: yes, waiting for tree to go green)
[22214](https://github.com/flutter/engine/pull/22214) Platform views have CreateExternalViewEmbedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22215](https://github.com/flutter/engine/pull/22215) [web] Canoncalize font family on input fields (cla: yes, platform-web, waiting for tree to go green)
[22216](https://github.com/flutter/engine/pull/22216) Manual roll of Dart 1a18fff9ad2e...ba80ed989cc (cla: yes, waiting for tree to go green)
[22219](https://github.com/flutter/engine/pull/22219) Roll Fuchsia Mac SDK from ICK_JlnKJ... to mhak7e_o6... (cla: yes, waiting for tree to go green)
[22220](https://github.com/flutter/engine/pull/22220) Roll Fuchsia Linux SDK from Usec4YBzR... to sNx8qabBn... (cla: yes, waiting for tree to go green)
[22221](https://github.com/flutter/engine/pull/22221) Update painting.dart (cla: yes, waiting for tree to go green)
[22222](https://github.com/flutter/engine/pull/22222) Roll Dart SDK from 1a18fff9ad2e to f01bcdc24ec6 (2 revisions) (cla: yes, waiting for tree to go green)
[22223](https://github.com/flutter/engine/pull/22223) Roll Dart SDK from f01bcdc24ec6 to fed66f60a3bc (1 revision) (cla: yes, waiting for tree to go green)
[22224](https://github.com/flutter/engine/pull/22224) Roll Skia from f548a028ce70 to c21902c0d3cc (46 revisions) (cla: yes, waiting for tree to go green)
[22225](https://github.com/flutter/engine/pull/22225) Roll Dart SDK from fed66f60a3bc to 25ef5dc559cf (1 revision) (cla: yes, waiting for tree to go green)
[22226](https://github.com/flutter/engine/pull/22226) Roll Skia from c21902c0d3cc to 9615bcf71f2a (1 revision) (cla: yes, waiting for tree to go green)
[22227](https://github.com/flutter/engine/pull/22227) Fix includes to start with shell (cla: yes, platform-ios)
[22230](https://github.com/flutter/engine/pull/22230) Report image diff status for iOS scenario golden tests (cla: yes)
[22231](https://github.com/flutter/engine/pull/22231) Roll Fuchsia Mac SDK from mhak7e_o6... to 8SkbMXJJ9... (cla: yes, waiting for tree to go green)
[22234](https://github.com/flutter/engine/pull/22234) Roll Skia from 9615bcf71f2a to d5e6368fffd0 (8 revisions) (cla: yes, waiting for tree to go green)
[22235](https://github.com/flutter/engine/pull/22235) updating integration tests version. (cla: yes)
[22236](https://github.com/flutter/engine/pull/22236) disable AppLifecycleTests (cla: yes)
[22237](https://github.com/flutter/engine/pull/22237) Roll Skia from d5e6368fffd0 to 7585a65ac709 (7 revisions) (cla: yes, waiting for tree to go green)
[22239](https://github.com/flutter/engine/pull/22239) [web] Put the paragraph painting logic in the Paragraph class (cla: yes, platform-web)
[22240](https://github.com/flutter/engine/pull/22240) Remove the metrics task from cirrus. (cla: yes)
[22243](https://github.com/flutter/engine/pull/22243) Roll Dart SDK from 25ef5dc559cf to 5acb5fcf84cb (4 revisions) (cla: yes, waiting for tree to go green)
[22244](https://github.com/flutter/engine/pull/22244) Roll Fuchsia Linux SDK from sNx8qabBn... to QqGvMWaYk... (cla: yes, waiting for tree to go green)
[22246](https://github.com/flutter/engine/pull/22246) Roll Fuchsia Mac SDK from 8SkbMXJJ9... to Pz4ZHZrUp... (cla: yes, waiting for tree to go green)
[22247](https://github.com/flutter/engine/pull/22247) scenario app: update golden for platform view opacity test (cla: yes)
[22248](https://github.com/flutter/engine/pull/22248) [web] fix type error during hot restart in font manager (cla: yes)
[22250](https://github.com/flutter/engine/pull/22250) Roll Skia from 7585a65ac709 to dffd20efe95c (14 revisions) (cla: yes, waiting for tree to go green)
[22251](https://github.com/flutter/engine/pull/22251) fix _getArrayBuffer signature (cla: yes)
[22252](https://github.com/flutter/engine/pull/22252) [web] Fix nullability issue with Image.network (cla: yes)
[22255](https://github.com/flutter/engine/pull/22255) Roll Dart SDK from 5acb5fcf84cb to a9d583383410 (4 revisions) (cla: yes, waiting for tree to go green)
[22256](https://github.com/flutter/engine/pull/22256) [web] Add test for Image.network (cla: yes)
[22257](https://github.com/flutter/engine/pull/22257) do not print in _computePixelDensity (cla: yes, waiting for tree to go green)
[22258](https://github.com/flutter/engine/pull/22258) Roll Dart SDK from a9d583383410 to d2577410a501 (1 revision) (cla: yes, waiting for tree to go green)
[22260](https://github.com/flutter/engine/pull/22260) Upgrades to felt (running on multiple modes, multiple backends, single test target option) (cla: yes, platform-web)
[22261](https://github.com/flutter/engine/pull/22261) web: make some errors more idiomatic (cla: yes, platform-web)
[22262](https://github.com/flutter/engine/pull/22262) Roll Fuchsia Mac SDK from Pz4ZHZrUp... to 6yEx5GNGG... (cla: yes, waiting for tree to go green)
[22264](https://github.com/flutter/engine/pull/22264) Roll Fuchsia Linux SDK from QqGvMWaYk... to oLF1FW-gC... (cla: yes, waiting for tree to go green)
[22265](https://github.com/flutter/engine/pull/22265) Roll Dart SDK from 52783837369d to b43baaaa477d (723 revisions) (cla: yes, waiting for tree to go green)
[22267](https://github.com/flutter/engine/pull/22267) Make `PlatformDispatcher.locale` and `locales` return consistent values (cla: yes)
[22268](https://github.com/flutter/engine/pull/22268) Fix Linux handling of window exposure events (affects: desktop, cla: yes, needs tests, platform-linux)
[22269](https://github.com/flutter/engine/pull/22269) Roll Dart SDK from b43baaaa477d to a4fbabcd73dc (1 revision) (cla: yes, waiting for tree to go green)
[22270](https://github.com/flutter/engine/pull/22270) Fix code style issues in MacOS embedder (cla: yes, waiting for tree to go green)
[22271](https://github.com/flutter/engine/pull/22271) Roll Fuchsia Mac SDK from 6yEx5GNGG... to o45EAhxJZ... (cla: yes, waiting for tree to go green)
[22272](https://github.com/flutter/engine/pull/22272) Remove GetExternalViewEmbedder from surface (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22273](https://github.com/flutter/engine/pull/22273) [web] Fix repaint logic for cullrect,transform changes (cla: yes)
[22275](https://github.com/flutter/engine/pull/22275) Do not involve external_view_embedder in submit frame process if threads are not merged. (cla: yes, platform-ios, waiting for tree to go green)
[22276](https://github.com/flutter/engine/pull/22276) Roll Fuchsia Linux SDK from oLF1FW-gC... to Esyuo1am1... (cla: yes, waiting for tree to go green)
[22277](https://github.com/flutter/engine/pull/22277) Roll Skia from dffd20efe95c to 6e7cfaff1817 (37 revisions) (cla: yes, waiting for tree to go green)
[22280](https://github.com/flutter/engine/pull/22280) Switch Linux embedding to proc table embedder API (cla: yes)
[22281](https://github.com/flutter/engine/pull/22281) Roll Skia from 6e7cfaff1817 to 0e54309477ac (2 revisions) (cla: yes, waiting for tree to go green)
[22282](https://github.com/flutter/engine/pull/22282) added unit tests to the rasterizer (cla: yes, waiting for tree to go green)
[22283](https://github.com/flutter/engine/pull/22283) Roll Dart SDK from a4fbabcd73dc to 57bb12dc24d2 (1 revision) (cla: yes, waiting for tree to go green)
[22284](https://github.com/flutter/engine/pull/22284) [linux] Change the buildroot DEPS for Linux Arm64 support (cla: yes, waiting for tree to go green)
[22285](https://github.com/flutter/engine/pull/22285) [web] Enable Control+MouseWheel browser zoom (cla: yes)
[22286](https://github.com/flutter/engine/pull/22286) Roll Skia from 0e54309477ac to 938932225cef (1 revision) (cla: yes, waiting for tree to go green)
[22287](https://github.com/flutter/engine/pull/22287) Roll Dart SDK from 57bb12dc24d2 to 599329b5cd98 (1 revision) (cla: yes, waiting for tree to go green)
[22288](https://github.com/flutter/engine/pull/22288) Roll Skia from 938932225cef to 97469f4abe0a (2 revisions) (cla: yes, waiting for tree to go green)
[22289](https://github.com/flutter/engine/pull/22289) Roll Fuchsia Mac SDK from o45EAhxJZ... to m1uK0SlYN... (cla: yes, waiting for tree to go green)
[22291](https://github.com/flutter/engine/pull/22291) Roll Dart SDK from 599329b5cd98 to fbc56c1561ba (1 revision) (cla: yes, waiting for tree to go green)
[22292](https://github.com/flutter/engine/pull/22292) Updated return-type for PathMetric.extractPath to be non-nullable (cla: yes, waiting for tree to go green)
[22293](https://github.com/flutter/engine/pull/22293) Roll Dart SDK from fbc56c1561ba to bf751197ddb9 (1 revision) (cla: yes, waiting for tree to go green)
[22294](https://github.com/flutter/engine/pull/22294) Roll Skia from 97469f4abe0a to a8f4c91114b5 (1 revision) (cla: yes, waiting for tree to go green)
[22295](https://github.com/flutter/engine/pull/22295) Roll Fuchsia Linux SDK from Esyuo1am1... to Z1HqmxtPR... (cla: yes, waiting for tree to go green)
[22296](https://github.com/flutter/engine/pull/22296) Roll Skia from a8f4c91114b5 to 3744b2a36638 (6 revisions) (cla: yes, waiting for tree to go green)
[22297](https://github.com/flutter/engine/pull/22297) Roll Skia from 3744b2a36638 to 007d97d69962 (2 revisions) (cla: yes, waiting for tree to go green)
[22298](https://github.com/flutter/engine/pull/22298) Revert "support uri intent launcher in android (#21275)" (cla: yes, platform-android, waiting for tree to go green)
[22299](https://github.com/flutter/engine/pull/22299) Roll Dart SDK from bf751197ddb9 to e182eac158cf (1 revision) (cla: yes, waiting for tree to go green)
[22302](https://github.com/flutter/engine/pull/22302) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22304](https://github.com/flutter/engine/pull/22304) Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[22306](https://github.com/flutter/engine/pull/22306) Roll Skia from 007d97d69962 to 68dcf542b79f (12 revisions) (cla: yes, waiting for tree to go green)
[22307](https://github.com/flutter/engine/pull/22307) [web] Split the EngineParagraph interface from the legacy implementation (cla: yes, platform-web)
[22309](https://github.com/flutter/engine/pull/22309) Roll the path package in web_ui and web_test_utils to match the version used by the framework (cla: yes)
[22316](https://github.com/flutter/engine/pull/22316) Roll Fuchsia Mac SDK from m1uK0SlYN... to NimIr5BT-... (cla: yes, waiting for tree to go green)
[22317](https://github.com/flutter/engine/pull/22317) Roll Fuchsia Linux SDK from Z1HqmxtPR... to 2rLs0vAIz... (cla: yes, waiting for tree to go green)
[22319](https://github.com/flutter/engine/pull/22319) Roll Skia from 68dcf542b79f to 694ff1735711 (5 revisions) (cla: yes, waiting for tree to go green)
[22320](https://github.com/flutter/engine/pull/22320) Move common graphics utils to //flutter/common/graphics (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22321](https://github.com/flutter/engine/pull/22321) Revert "Reland: Use dispatchKeyEventPreIme, and handle keys sent to InputConnection.sendKeyEvent on Android (#22304)" (cla: yes, platform-android)
[22322](https://github.com/flutter/engine/pull/22322) [null-safety] increase sky engine min sdk (cla: yes)
[22323](https://github.com/flutter/engine/pull/22323) Add initial settings message to Windows embedding (affects: desktop, cla: yes, platform-windows)
[22324](https://github.com/flutter/engine/pull/22324) Roll Skia from 694ff1735711 to 71624de2c5d9 (12 revisions) (cla: yes, waiting for tree to go green)
[22326](https://github.com/flutter/engine/pull/22326) Ignore several import_of_legacy_library_into_null_safe (cla: yes)
[22328](https://github.com/flutter/engine/pull/22328) [web] Improve dom canvas speed. Fix density calculation regression in recomputeTransformClip (cla: yes)
[22330](https://github.com/flutter/engine/pull/22330) Roll Fuchsia Mac SDK from NimIr5BT-... to XV9_JbDD-... (cla: yes, waiting for tree to go green)
[22331](https://github.com/flutter/engine/pull/22331) Roll Fuchsia Linux SDK from 2rLs0vAIz... to pCIhWatQU... (cla: yes, waiting for tree to go green)
[22332](https://github.com/flutter/engine/pull/22332) Roll dart e182eac158cf..9bc7d4604277 (cla: yes, waiting for tree to go green)
[22333](https://github.com/flutter/engine/pull/22333) Roll Skia from 71624de2c5d9 to f8f23b203079 (8 revisions) (cla: yes, waiting for tree to go green)
[22335](https://github.com/flutter/engine/pull/22335) [web] Remove sink parameter since _BaseAdapter exposes _callback (cla: yes)
[22336](https://github.com/flutter/engine/pull/22336) Move layer clip culling to Paint() method to fix child caching (cla: yes, waiting for tree to go green)
[22337](https://github.com/flutter/engine/pull/22337) Revert "Added the ability to set the initial route via launch urls. (… (cla: yes, platform-ios, waiting for tree to go green)
[22339](https://github.com/flutter/engine/pull/22339) Roll Skia from f8f23b203079 to 8d0f710ef0e0 (2 revisions) (cla: yes, waiting for tree to go green)
[22340](https://github.com/flutter/engine/pull/22340) Use dispatchKeyEvent, and handle keys sent to InputConnection.sendKeyEvent on Android (cla: yes, platform-android)
[22341](https://github.com/flutter/engine/pull/22341) Roll Dart SDK from 9bc7d4604277 to 1936a7d1909d (2 revisions) (cla: yes, waiting for tree to go green)
[22342](https://github.com/flutter/engine/pull/22342) [web] Fix recycling same canvas more than once and add assert to detect (cla: yes)
[22343](https://github.com/flutter/engine/pull/22343) Roll Skia from 8d0f710ef0e0 to 92bc649cd7e6 (1 revision) (cla: yes, waiting for tree to go green)
[22344](https://github.com/flutter/engine/pull/22344) Roll Skia from 92bc649cd7e6 to 05f74f28d688 (3 revisions) (cla: yes, waiting for tree to go green)
[22345](https://github.com/flutter/engine/pull/22345) move deprecation from the PluginRegistry outer interface to inner, v1-specific fields (cla: yes, platform-android)
[22346](https://github.com/flutter/engine/pull/22346) Roll Fuchsia Mac SDK from XV9_JbDD-... to TwfKJxO8r... (cla: yes, waiting for tree to go green)
[22347](https://github.com/flutter/engine/pull/22347) Roll Fuchsia Linux SDK from pCIhWatQU... to oNrhKDRLZ... (cla: yes, waiting for tree to go green)
[22348](https://github.com/flutter/engine/pull/22348) Rasterizer is initialized with an external view embedder (cla: yes)
[22349](https://github.com/flutter/engine/pull/22349) Roll Skia from 05f74f28d688 to 6cafdc069bdb (1 revision) (cla: yes, waiting for tree to go green)
[22350](https://github.com/flutter/engine/pull/22350) Roll Dart SDK from 1936a7d1909d to fe12b0536f42 (1 revision) (cla: yes, waiting for tree to go green)
[22352](https://github.com/flutter/engine/pull/22352) Roll Skia from 6cafdc069bdb to ba9a04fb8d5a (3 revisions) (cla: yes, waiting for tree to go green)
[22353](https://github.com/flutter/engine/pull/22353) PlatformViewIOS CreateExternalViewEmbedder refactor (cla: yes, platform-android, platform-ios)
[22355](https://github.com/flutter/engine/pull/22355) Roll Skia from ba9a04fb8d5a to 4eb7c23d5289 (4 revisions) (cla: yes, waiting for tree to go green)
[22356](https://github.com/flutter/engine/pull/22356) Reland deeplinking with info.plist check (cla: yes, platform-ios, waiting for tree to go green)
[22357](https://github.com/flutter/engine/pull/22357) [web] Remove as checks (_generalNullableAsCheckImplementation) / pushSurface calls (cla: yes)
[22358](https://github.com/flutter/engine/pull/22358) Roll Skia from 4eb7c23d5289 to b8123cc87770 (6 revisions) (cla: yes, waiting for tree to go green)
[22360](https://github.com/flutter/engine/pull/22360) [android] Platform view creates external view embedder (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22361](https://github.com/flutter/engine/pull/22361) Roll Skia from b8123cc87770 to e886b8e8b10b (7 revisions) (cla: yes, waiting for tree to go green)
[22362](https://github.com/flutter/engine/pull/22362) Remove extra method in ComputePlatformResolvedLocale (cla: yes)
[22363](https://github.com/flutter/engine/pull/22363) reland support uri launch in android (cla: yes, platform-android)
[22364](https://github.com/flutter/engine/pull/22364) Roll Skia from e886b8e8b10b to 86d4cfdf8edc (2 revisions) (cla: yes, waiting for tree to go green)
[22365](https://github.com/flutter/engine/pull/22365) [web] Implement style inheritance during paragraph construction (cla: yes, platform-web)
[22366](https://github.com/flutter/engine/pull/22366) Update pubspecs to null-safe dependencies (cla: yes)
[22367](https://github.com/flutter/engine/pull/22367) Revert "Rasterizer is initialized with an external view embedder (#22348)" (cla: yes, platform-ios)
[22368](https://github.com/flutter/engine/pull/22368) Roll Skia from 86d4cfdf8edc to c2bfcff07225 (1 revision) (cla: yes, waiting for tree to go green)
[22369](https://github.com/flutter/engine/pull/22369) Roll Fuchsia Mac SDK from TwfKJxO8r... to VMNxgZGv9... (cla: yes, waiting for tree to go green)
[22371](https://github.com/flutter/engine/pull/22371) [web] Restore the ability to set a custom url strategy (cla: yes, platform-web)
[22372](https://github.com/flutter/engine/pull/22372) Reland "Do not involve external_view_embedder in submit frame process if threads are not merged. #22275" (cla: yes, platform-ios, waiting for tree to go green)
[22373](https://github.com/flutter/engine/pull/22373) loadFontFromList returns void instead of string (cla: yes, waiting for tree to go green)
[22375](https://github.com/flutter/engine/pull/22375) Add SDK constraint to a pubspec (cla: yes, waiting for tree to go green)
[22376](https://github.com/flutter/engine/pull/22376) Roll Fuchsia Linux SDK from oNrhKDRLZ... to KMV-UCyzK... (cla: yes, waiting for tree to go green)
[22378](https://github.com/flutter/engine/pull/22378) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22379](https://github.com/flutter/engine/pull/22379) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22380](https://github.com/flutter/engine/pull/22380) Roll ICU to 715ec351c0bcdd6b2d22f36e7d33b8e2ec519846 (cla: yes)
[22381](https://github.com/flutter/engine/pull/22381) Roll Fuchsia Mac SDK from VMNxgZGv9... to rMD6SyXwO... (cla: yes, waiting for tree to go green)
[22382](https://github.com/flutter/engine/pull/22382) Roll Skia from c2bfcff07225 to ed435953dfd6 (1 revision) (cla: yes, waiting for tree to go green)
[22383](https://github.com/flutter/engine/pull/22383) Roll Fuchsia Linux SDK from KMV-UCyzK... to e9vV76ZgA... (cla: yes, waiting for tree to go green)
[22385](https://github.com/flutter/engine/pull/22385) Revert "Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision)" (cla: yes)
[22386](https://github.com/flutter/engine/pull/22386) Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (cla: yes, waiting for tree to go green)
[22389](https://github.com/flutter/engine/pull/22389) Roll Fuchsia Mac SDK from rMD6SyXwO... to ZOJgUMChm... (cla: yes, waiting for tree to go green)
[22390](https://github.com/flutter/engine/pull/22390) Roll Fuchsia Linux SDK from e9vV76ZgA... to OBQ4E_4kG... (cla: yes, waiting for tree to go green)
[22391](https://github.com/flutter/engine/pull/22391) Roll Skia from ed435953dfd6 to cfe647c02fb4 (1 revision) (cla: yes, waiting for tree to go green)
[22392](https://github.com/flutter/engine/pull/22392) Roll Fuchsia Mac SDK from ZOJgUMChm... to 5rXlkcaVT... (cla: yes, waiting for tree to go green)
[22393](https://github.com/flutter/engine/pull/22393) Roll Fuchsia Linux SDK from OBQ4E_4kG... to g6EuxMthn... (cla: yes, waiting for tree to go green)
[22398](https://github.com/flutter/engine/pull/22398) Roll Fuchsia Mac SDK from 5rXlkcaVT... to fkTLW7DRc... (cla: yes, waiting for tree to go green)
[22399](https://github.com/flutter/engine/pull/22399) Roll Skia from cfe647c02fb4 to ee0ce9858cbc (1 revision) (cla: yes, waiting for tree to go green)
[22400](https://github.com/flutter/engine/pull/22400) Roll Dart SDK from a188781c9fc8 to 26219fa05863 (1 revision) (cla: yes, waiting for tree to go green)
[22402](https://github.com/flutter/engine/pull/22402) Roll Skia from ee0ce9858cbc to 5de0b38dd133 (6 revisions) (cla: yes, waiting for tree to go green)
[22403](https://github.com/flutter/engine/pull/22403) [PlatformViewsController] Clear root_views_ in Reset (cla: yes, platform-ios, waiting for tree to go green)
[22404](https://github.com/flutter/engine/pull/22404) Roll Skia from 5de0b38dd133 to ee1098db15b2 (4 revisions) (cla: yes, waiting for tree to go green)
[22405](https://github.com/flutter/engine/pull/22405) Rasterizer is initialized with an external view embedder (cla: yes, waiting for tree to go green)
[22406](https://github.com/flutter/engine/pull/22406) PlatformViewsController always make sure the touch events are finished (cla: yes, platform-ios, waiting for tree to go green)
[22408](https://github.com/flutter/engine/pull/22408) [web] Speed up PageView/CustomPainter rendering (cla: yes)
[22409](https://github.com/flutter/engine/pull/22409) Simplify API for scheduling Skia object deletions (cla: yes)
[22411](https://github.com/flutter/engine/pull/22411) Roll Skia from ee1098db15b2 to 84d503b21322 (3 revisions) (cla: yes, waiting for tree to go green)
[22412](https://github.com/flutter/engine/pull/22412) Add D3D9 fallback path for ANGLE and ensure fallbacks are actually attempted (affects: desktop, cla: yes, needs tests, platform-windows, waiting for tree to go green)
[22413](https://github.com/flutter/engine/pull/22413) Roll Dart SDK from 26219fa05863 to 8749fdff07f5 (2 revisions) (cla: yes, waiting for tree to go green)
[22415](https://github.com/flutter/engine/pull/22415) Simplify refs from CkImage to SkImage (cla: yes, waiting for tree to go green)
[22416](https://github.com/flutter/engine/pull/22416) Roll Fuchsia Mac SDK from fkTLW7DRc... to w10eytxvc... (cla: yes, waiting for tree to go green)
[22417](https://github.com/flutter/engine/pull/22417) Roll Fuchsia Linux SDK from g6EuxMthn... to DzZi2gPbF... (cla: yes, waiting for tree to go green)
[22418](https://github.com/flutter/engine/pull/22418) Roll Skia from 84d503b21322 to 5b8598952931 (7 revisions) (cla: yes, waiting for tree to go green)
[22419](https://github.com/flutter/engine/pull/22419) Roll Skia from 5b8598952931 to 02dd0ed8ce5e (1 revision) (cla: yes, waiting for tree to go green)
[22420](https://github.com/flutter/engine/pull/22420) Roll Skia from 02dd0ed8ce5e to fb5850f41043 (4 revisions) (cla: yes, waiting for tree to go green)
[22421](https://github.com/flutter/engine/pull/22421) Roll Skia from fb5850f41043 to 008d63e23dab (6 revisions) (cla: yes, waiting for tree to go green)
[22422](https://github.com/flutter/engine/pull/22422) Roll Skia from 008d63e23dab to 267826c86552 (4 revisions) (cla: yes, waiting for tree to go green)
[22423](https://github.com/flutter/engine/pull/22423) Roll Fuchsia Mac SDK from w10eytxvc... to e-4Jm-yWa... (cla: yes, waiting for tree to go green)
[22424](https://github.com/flutter/engine/pull/22424) Roll Skia from 267826c86552 to 88e8bb2fe2d5 (3 revisions) (cla: yes, waiting for tree to go green)
[22425](https://github.com/flutter/engine/pull/22425) Roll Skia from 88e8bb2fe2d5 to a0a5146ba9d1 (2 revisions) (cla: yes, waiting for tree to go green)
[22426](https://github.com/flutter/engine/pull/22426) Fix typo in documentation for FlPlatformPlugin (cla: yes)
[22427](https://github.com/flutter/engine/pull/22427) Roll Fuchsia Linux SDK from DzZi2gPbF... to Z-OUQ5Dti... (cla: yes, waiting for tree to go green)
[22428](https://github.com/flutter/engine/pull/22428) Roll Skia from a0a5146ba9d1 to 1fe2b80dc782 (2 revisions) (cla: yes, waiting for tree to go green)
[22429](https://github.com/flutter/engine/pull/22429) Fix talkback in hybrid composition while using FlutterFragmentActivity (cla: yes, platform-android)
[22430](https://github.com/flutter/engine/pull/22430) fuchsia: Add licenses to CIPD (cla: yes, platform-fuchsia)
[22432](https://github.com/flutter/engine/pull/22432) Roll Skia from 1fe2b80dc782 to 24c18526a564 (1 revision) (cla: yes, waiting for tree to go green)
[22433](https://github.com/flutter/engine/pull/22433) Roll Skia from 24c18526a564 to 7006e15df59d (1 revision) (cla: yes, waiting for tree to go green)
[22434](https://github.com/flutter/engine/pull/22434) Revert "[Android Text Input] Make the editing state listenable and allow batch edits " (cla: yes, platform-android, waiting for tree to go green)
[22435](https://github.com/flutter/engine/pull/22435) [Android text input] Reland #21534 (cla: yes, platform-android, waiting for tree to go green)
[22437](https://github.com/flutter/engine/pull/22437) Roll Skia from 7006e15df59d to 869eb97f6c29 (4 revisions) (cla: yes, waiting for tree to go green)
[22439](https://github.com/flutter/engine/pull/22439) [fuchsia] shader warmup fixes (cla: yes)
[22440](https://github.com/flutter/engine/pull/22440) Roll Fuchsia Linux SDK from Z-OUQ5Dti... to pWW5QaeNe... (cla: yes, waiting for tree to go green)
[22442](https://github.com/flutter/engine/pull/22442) [web] Better structure to prepare for rich text measurement (cla: yes, platform-web)
[22443](https://github.com/flutter/engine/pull/22443) [web] Refactor _measureSubstring to better suit rich text measurement (cla: yes, platform-web)
[22444](https://github.com/flutter/engine/pull/22444) [web] Reuse the existing font string builer in TextStyle (cla: yes, platform-web)
[22445](https://github.com/flutter/engine/pull/22445) fuchsia: Update buildroot (cla: yes, platform-fuchsia)
[22446](https://github.com/flutter/engine/pull/22446) Make CkPath resurrectable (cla: yes, waiting for tree to go green)
[22447](https://github.com/flutter/engine/pull/22447) Roll Fuchsia Mac SDK from e-4Jm-yWa... to 9t3yDRxI8... (cla: yes, waiting for tree to go green)
[22449](https://github.com/flutter/engine/pull/22449) [flutter_releases] Flutter 1.22.4 engine cherrypicks (cla: yes, platform-android, platform-ios)
[22450](https://github.com/flutter/engine/pull/22450) Roll Dart SDK from 8749fdff07f5 to 40a4d9b44d72 (1 revision) (cla: yes, waiting for tree to go green)
[22451](https://github.com/flutter/engine/pull/22451) libtxt: use a placeholder run's width as the width of the placeholder character's glyph (cla: yes, waiting for tree to go green)
[22452](https://github.com/flutter/engine/pull/22452) Roll Skia from 869eb97f6c29 to 70eba23828a3 (20 revisions) (cla: yes, waiting for tree to go green)
[22454](https://github.com/flutter/engine/pull/22454) Also maintain the zone on the ChannelBuffers.push callback (cla: yes, waiting for tree to go green)
[22455](https://github.com/flutter/engine/pull/22455) Fix the event size parameters in the Embedder ComplexClip test (cla: yes, waiting for tree to go green)
[22457](https://github.com/flutter/engine/pull/22457) [macOS] Disable synchronous resizing until a frame is produced (affects: desktop, cla: yes, needs tests, platform-macos)
[22458](https://github.com/flutter/engine/pull/22458) Roll Skia from 70eba23828a3 to 59bafeeaa7de (3 revisions) (cla: yes, waiting for tree to go green)
[22459](https://github.com/flutter/engine/pull/22459) make CkContourMeasureIter and CkContourMeasure resurrectable (cla: yes)
[22460](https://github.com/flutter/engine/pull/22460) Roll Dart SDK from 40a4d9b44d72 to 620cf701720d (1 revision) (cla: yes, waiting for tree to go green)
[22461](https://github.com/flutter/engine/pull/22461) Revert "Make `PlatformDispatcher.locale` and `locales` return consistent values" (cla: yes)
[22462](https://github.com/flutter/engine/pull/22462) Roll Fuchsia Linux SDK from pWW5QaeNe... to fULjPqtx9... (cla: yes, waiting for tree to go green)
[22464](https://github.com/flutter/engine/pull/22464) Roll Fuchsia Mac SDK from 9t3yDRxI8... to 8ZF4hapvg... (cla: yes, waiting for tree to go green)
[22465](https://github.com/flutter/engine/pull/22465) Roll ICU to c2a4cae149aae7fd30c4cbe3cf1b30df03b386f1 (cla: yes)
[22466](https://github.com/flutter/engine/pull/22466) Add an include in minikin (cla: yes)
[22467](https://github.com/flutter/engine/pull/22467) Roll Skia from 59bafeeaa7de to 43f0a7d724aa (1 revision) (cla: yes, waiting for tree to go green)
[22468](https://github.com/flutter/engine/pull/22468) Reverts 2 commits that remove surface dependance on external view embedder (cla: yes, platform-android, platform-ios)
[22469](https://github.com/flutter/engine/pull/22469) Default to 2.7 when generating the package config (cla: yes)
[22470](https://github.com/flutter/engine/pull/22470) Reland "remove surface dependance on external view embedder (#22468)" (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22473](https://github.com/flutter/engine/pull/22473) Reland: "Make `PlatformDispatcher.locale` and `locales` return consistent values (#22267)" (cla: yes)
[22478](https://github.com/flutter/engine/pull/22478) [flutter_release] Flutter 1.22.4 engine cherry-pick build error fix (cla: yes, platform-android, platform-ios)
[22479](https://github.com/flutter/engine/pull/22479) Roll Skia from 43f0a7d724aa to fc4fdc5b25f4 (27 revisions) (cla: yes, waiting for tree to go green)
[22480](https://github.com/flutter/engine/pull/22480) Roll Dart SDK from 620cf701720d to 3e502e0c7e04 (4 revisions) (cla: yes, waiting for tree to go green)
[22481](https://github.com/flutter/engine/pull/22481) [web]Update @dart annotation. Change shaders to allocate smaller canvas (cla: yes)
[22482](https://github.com/flutter/engine/pull/22482) Roll Skia from fc4fdc5b25f4 to a06b63c56ecd (2 revisions) (cla: yes, waiting for tree to go green)
[22483](https://github.com/flutter/engine/pull/22483) TBR: remove the extra values which was overshadowing the test result (cla: yes)
[22485](https://github.com/flutter/engine/pull/22485) Add and use --quiet flag on the license checker (cla: yes, waiting for tree to go green)
[22486](https://github.com/flutter/engine/pull/22486) Implement settings channel for the Linux shell (cla: yes)
[22487](https://github.com/flutter/engine/pull/22487) Roll Skia from a06b63c56ecd to 8ead30d51c86 (1 revision) (cla: yes, waiting for tree to go green)
[22490](https://github.com/flutter/engine/pull/22490) Roll Fuchsia Linux SDK from fULjPqtx9... to B4PaMsNWM... (cla: yes, waiting for tree to go green)
[22491](https://github.com/flutter/engine/pull/22491) Roll Dart SDK from 3e502e0c7e04 to 41893ff76b0f (1 revision) (cla: yes, waiting for tree to go green)
[22493](https://github.com/flutter/engine/pull/22493) Roll Skia from 8ead30d51c86 to 011218edb590 (4 revisions) (cla: yes, waiting for tree to go green)
[22497](https://github.com/flutter/engine/pull/22497) Roll Fuchsia Mac SDK from 8ZF4hapvg... to vjuGOKwGt... (cla: yes, waiting for tree to go green)
[22498](https://github.com/flutter/engine/pull/22498) Roll Dart SDK from 41893ff76b0f to bf20abbb8e22 (2 revisions) (cla: yes, waiting for tree to go green)
[22499](https://github.com/flutter/engine/pull/22499) Roll Skia from 011218edb590 to efd628a1a965 (2 revisions) (cla: yes, waiting for tree to go green)
[22501](https://github.com/flutter/engine/pull/22501) [flutter_releases] Flutter 1.24.0-10.1.pre engine cherrypicks (cla: yes)
[22502](https://github.com/flutter/engine/pull/22502) Opt in fixtures to nullsafety (cla: yes)
[22503](https://github.com/flutter/engine/pull/22503) Roll Skia from efd628a1a965 to cae335d5b18f (5 revisions) (cla: yes, waiting for tree to go green)
[22504](https://github.com/flutter/engine/pull/22504) Roll Fuchsia Linux SDK from B4PaMsNWM... to S4lxhP7Qt... (cla: yes, waiting for tree to go green)
[22505](https://github.com/flutter/engine/pull/22505) Remove the Window class now that it is no longer used. (cla: yes)
[22506](https://github.com/flutter/engine/pull/22506) Add xcframework to ios out (cla: yes, platform-ios)
[22509](https://github.com/flutter/engine/pull/22509) [flutter releases] more 1.24 engine CPs (cla: yes)
[22511](https://github.com/flutter/engine/pull/22511) Migrate to CanvasKit 0.19.0 (cla: yes)
[22514](https://github.com/flutter/engine/pull/22514) Roll Skia from cae335d5b18f to 031a76756e24 (8 revisions) (cla: yes, waiting for tree to go green)
[22515](https://github.com/flutter/engine/pull/22515) Roll Dart SDK from bf20abbb8e22 to 7bbace20d14f (1 revision) (cla: yes, waiting for tree to go green)
[22516](https://github.com/flutter/engine/pull/22516) Manual roll of Dart from 7bbace20d1 to 5ea7e4d39f (cla: yes)
[22518](https://github.com/flutter/engine/pull/22518) Roll Dart SDK from 5ea7e4d39f43 to 6a805f4dbcf4 (1 revision) (cla: yes, waiting for tree to go green)
[22519](https://github.com/flutter/engine/pull/22519) Revert "Remove the Window class now that it is no longer used." (cla: yes)
[22521](https://github.com/flutter/engine/pull/22521) Roll Fuchsia Mac SDK from vjuGOKwGt... to 6gGbW-hRH... (cla: yes, waiting for tree to go green)
[22522](https://github.com/flutter/engine/pull/22522) Roll Fuchsia Linux SDK from S4lxhP7Qt... to ywh3expSX... (cla: yes, waiting for tree to go green)
[22523](https://github.com/flutter/engine/pull/22523) Roll Dart SDK from 6a805f4dbcf4 to 6135aed34f56 (1 revision) (cla: yes, waiting for tree to go green)
[22524](https://github.com/flutter/engine/pull/22524) Roll Dart SDK from 6135aed34f56 to 12c5be745bb5 (1 revision) (cla: yes, waiting for tree to go green)
[22525](https://github.com/flutter/engine/pull/22525) Remove the wasm library from the sky_engine package (cla: yes)
[22526](https://github.com/flutter/engine/pull/22526) Roll Fuchsia Mac SDK from 6gGbW-hRH... to wSCtFA1Mj... (cla: yes, waiting for tree to go green)
[22527](https://github.com/flutter/engine/pull/22527) Roll Fuchsia Linux SDK from ywh3expSX... to WVpXfkg-V... (cla: yes, waiting for tree to go green)
[22528](https://github.com/flutter/engine/pull/22528) Roll Fuchsia Mac SDK from wSCtFA1Mj... to 6LXPsNi-P... (cla: yes, waiting for tree to go green)
[22529](https://github.com/flutter/engine/pull/22529) Roll Fuchsia Linux SDK from WVpXfkg-V... to E3briMHHv... (cla: yes, waiting for tree to go green)
[22530](https://github.com/flutter/engine/pull/22530) Replace dead links in docs (cla: yes, waiting for tree to go green)
[22531](https://github.com/flutter/engine/pull/22531) Roll Dart SDK from 12c5be745bb5 to 92e087bf82e2 (1 revision) (cla: yes, waiting for tree to go green)
[22533](https://github.com/flutter/engine/pull/22533) Roll Skia from 031a76756e24 to cce84d1fd893 (4 revisions) (cla: yes, waiting for tree to go green)
[22534](https://github.com/flutter/engine/pull/22534) Roll Fuchsia Mac SDK from 6LXPsNi-P... to LOnq8wpIx... (cla: yes, waiting for tree to go green)
[22536](https://github.com/flutter/engine/pull/22536) Roll Dart SDK from 92e087bf82e2 to d67a5c245285 (1 revision) (cla: yes, waiting for tree to go green)
[22537](https://github.com/flutter/engine/pull/22537) Roll Fuchsia Linux SDK from E3briMHHv... to 2R7OWHAQq... (cla: yes, waiting for tree to go green)
[22538](https://github.com/flutter/engine/pull/22538) [Android] Add systemNavigationBarDividerColor (cla: yes, platform-android, waiting for tree to go green)
[22539](https://github.com/flutter/engine/pull/22539) Roll Skia from cce84d1fd893 to 5a89ed542f06 (7 revisions) (cla: yes, waiting for tree to go green)
[22540](https://github.com/flutter/engine/pull/22540) Fix and clean up scenario app for Android (cla: yes, waiting for tree to go green)
[22541](https://github.com/flutter/engine/pull/22541) Roll Skia from 5a89ed542f06 to ef8d52d8b2bb (3 revisions) (cla: yes, waiting for tree to go green)
[22544](https://github.com/flutter/engine/pull/22544) Roll Dart SDK from d67a5c245285 to 4bf74ee7d04e (2 revisions) (cla: yes, waiting for tree to go green)
[22545](https://github.com/flutter/engine/pull/22545) Check valid view_holder ptr before updating view (cla: yes, platform-fuchsia)
[22546](https://github.com/flutter/engine/pull/22546) Re-enable ShellTest.SkipAndSubmitFrame (cla: yes, waiting for tree to go green)
[22548](https://github.com/flutter/engine/pull/22548) Roll Skia from ef8d52d8b2bb to 396974683cbd (5 revisions) (cla: yes, waiting for tree to go green)
[22549](https://github.com/flutter/engine/pull/22549) Refactor CanvasKit image ref counting; fix a minor memory leak (cla: yes, waiting for tree to go green)
[22550](https://github.com/flutter/engine/pull/22550) [goma] Use depot_tools vended goma when it is present (cla: yes, waiting for tree to go green)
[22551](https://github.com/flutter/engine/pull/22551) Add SDK licenses to DEPS (cla: yes)
[22554](https://github.com/flutter/engine/pull/22554) Roll Skia from 396974683cbd to ee33a3a07262 (1 revision) (cla: yes, waiting for tree to go green)
[22555](https://github.com/flutter/engine/pull/22555) Make the AndroidContext superclass destructor virtual (cla: yes, platform-android)
[22556](https://github.com/flutter/engine/pull/22556) Roll Skia from ee33a3a07262 to 1ce8964db113 (1 revision) (cla: yes, waiting for tree to go green)
[22558](https://github.com/flutter/engine/pull/22558) Roll Dart SDK from 4bf74ee7d04e to 061817652723 (1 revision) (cla: yes, waiting for tree to go green)
[22560](https://github.com/flutter/engine/pull/22560) Use flutter public package for the time being (cla: yes)
[22561](https://github.com/flutter/engine/pull/22561) Roll Fuchsia Linux SDK from 2R7OWHAQq... to NWl53Ll5C... (cla: yes, waiting for tree to go green)
[22562](https://github.com/flutter/engine/pull/22562) Roll Fuchsia Mac SDK from LOnq8wpIx... to 7W0E0ZKtm... (cla: yes, waiting for tree to go green)
[22563](https://github.com/flutter/engine/pull/22563) Roll Skia from 1ce8964db113 to c634fc4a664c (16 revisions) (cla: yes, waiting for tree to go green)
[22566](https://github.com/flutter/engine/pull/22566) Reland: Remove the Window class now that it is no longer used. (cla: yes)
[22567](https://github.com/flutter/engine/pull/22567) Roll Skia from c634fc4a664c to 75c38f94efd6 (2 revisions) (cla: yes, waiting for tree to go green)
[22568](https://github.com/flutter/engine/pull/22568) [flutter_releases] Flutter 1.24.0-10.2.pre engine cherrypicks (cla: yes)
[22569](https://github.com/flutter/engine/pull/22569) [macOS] Isolate openGL rendering to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22570](https://github.com/flutter/engine/pull/22570) Roll Skia from 75c38f94efd6 to 8f46ecc84fab (1 revision) (cla: yes, waiting for tree to go green)
[22572](https://github.com/flutter/engine/pull/22572) [macOS] Move the glContext generation to FlutterOpenGLRenderer (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22574](https://github.com/flutter/engine/pull/22574) PlatformViewsController: clear composition_order_ in the beginning of each frame. (cla: yes, platform-ios, waiting for tree to go green)
[22575](https://github.com/flutter/engine/pull/22575) Implement image resurrection (cla: yes, waiting for tree to go green)
[22576](https://github.com/flutter/engine/pull/22576) Fix typos and fix some env var state leakage in tests (cla: yes)
[22577](https://github.com/flutter/engine/pull/22577) Add delayed event delivery for Linux. (cla: yes)
[22578](https://github.com/flutter/engine/pull/22578) Roll Skia from 8f46ecc84fab to 6aeb414df947 (1 revision) (cla: yes, waiting for tree to go green)
[22579](https://github.com/flutter/engine/pull/22579) Roll Skia from 6aeb414df947 to a1112b326a79 (3 revisions) (cla: yes, waiting for tree to go green)
[22581](https://github.com/flutter/engine/pull/22581) Roll Fuchsia Linux SDK from NWl53Ll5C... to Oh__c-W9V... (cla: yes, waiting for tree to go green)
[22583](https://github.com/flutter/engine/pull/22583) Roll Fuchsia Linux SDK from Oh__c-W9V... to cwFOtNvhn... (cla: yes, waiting for tree to go green)
[22584](https://github.com/flutter/engine/pull/22584) Roll Skia from a1112b326a79 to 2efafe688dd1 (1 revision) (cla: yes, waiting for tree to go green)
[22587](https://github.com/flutter/engine/pull/22587) Roll Fuchsia Mac SDK from 7W0E0ZKtm... to aqxbkh0hC... (cla: yes, waiting for tree to go green)
[22591](https://github.com/flutter/engine/pull/22591) Made tools/gn error out if it can't find goma (cla: yes, waiting for tree to go green)
[22592](https://github.com/flutter/engine/pull/22592) [macOS] Revert breaking change to FlutterEngine public API (cla: yes, waiting for tree to go green)
[22593](https://github.com/flutter/engine/pull/22593) fuchsia: Clamp compositor surface size (cla: yes, platform-fuchsia)
[22594](https://github.com/flutter/engine/pull/22594) libtxt: Clone an ICU line break iterator for each Paragraph/WordBreaker (cla: yes, waiting for tree to go green)
[22596](https://github.com/flutter/engine/pull/22596) Roll Skia from 2efafe688dd1 to d1d872905b0f (28 revisions) (cla: yes, waiting for tree to go green)
[22597](https://github.com/flutter/engine/pull/22597) [web] Implement tilemode for gradient shaders. (cla: yes, platform-web)
[22598](https://github.com/flutter/engine/pull/22598) Replace support libraries for AndroidX (cla: yes, platform-android, waiting for tree to go green)
[22599](https://github.com/flutter/engine/pull/22599) Rename padding->viewPadding to match framework naming conventions (cla: yes, platform-android, waiting for tree to go green)
[22602](https://github.com/flutter/engine/pull/22602) Roll Fuchsia Linux SDK from cwFOtNvhn... to aAb3NJv_h... (cla: yes, waiting for tree to go green)
[22603](https://github.com/flutter/engine/pull/22603) Remove opt outs for dart:ui (cla: yes)
[22604](https://github.com/flutter/engine/pull/22604) Roll Fuchsia Mac SDK from aqxbkh0hC... to DQpWjEN59... (cla: yes, waiting for tree to go green)
[22607](https://github.com/flutter/engine/pull/22607) [macos] Re-land FlutterOpenGLRenderer isolation (cla: yes)
[22608](https://github.com/flutter/engine/pull/22608) Fix PlatformDispatcher.locale to return something meaningful when there are no locales. (cla: yes)
[22610](https://github.com/flutter/engine/pull/22610) Update the log tag for FlutterEngineConnectionRegistry to be 23 characters (cla: yes, platform-android)
[22611](https://github.com/flutter/engine/pull/22611) Introduce a delegate class for gpu metal rendering (cla: yes, platform-ios)
[22615](https://github.com/flutter/engine/pull/22615) Roll Dart SDK from 061817652723 to 12fded61a2bc (12 revisions) (cla: yes, waiting for tree to go green)
[22616](https://github.com/flutter/engine/pull/22616) Roll Skia from d1d872905b0f to 9496fe5bcec9 (25 revisions) (cla: yes, waiting for tree to go green)
[22618](https://github.com/flutter/engine/pull/22618) [web] Fix test failure on high dpi device (cla: yes, platform-web)
[22620](https://github.com/flutter/engine/pull/22620) Set SkPath::setIsVolatile based on whether the path survives at least two frames (cla: yes, perf: memory, perf: speed, severe: performance)
[22621](https://github.com/flutter/engine/pull/22621) Roll Skia from 9496fe5bcec9 to ed289e777cfa (2 revisions) (cla: yes, waiting for tree to go green)
[22622](https://github.com/flutter/engine/pull/22622) [web] Optimize Matrix4.identity (cla: yes, perf: speed, platform-web)
[22623](https://github.com/flutter/engine/pull/22623) Roll Dart SDK from 12fded61a2bc to a06d469024fd (1 revision) (cla: yes, waiting for tree to go green)
[22624](https://github.com/flutter/engine/pull/22624) Split AOT Engine Runtime (affects: engine, cla: yes, waiting for tree to go green)
[22626](https://github.com/flutter/engine/pull/22626) Fix double delete on backspace on Android (cla: yes, platform-android, waiting for tree to go green)
[22628](https://github.com/flutter/engine/pull/22628) Fix java warnings for unchecked conversions in PlayStoreDynamicFeatureManager (cla: yes, platform-android)
[22630](https://github.com/flutter/engine/pull/22630) Roll Dart SDK from a06d469024fd to b8fea79a2549 (1 revision) (cla: yes, waiting for tree to go green)
[22631](https://github.com/flutter/engine/pull/22631) Roll Fuchsia Linux SDK from aAb3NJv_h... to X1ue-JZsc... (cla: yes, waiting for tree to go green)
[22632](https://github.com/flutter/engine/pull/22632) Roll Skia from ed289e777cfa to 9dce4d081f8a (3 revisions) (cla: yes, waiting for tree to go green)
[22633](https://github.com/flutter/engine/pull/22633) Roll Fuchsia Mac SDK from DQpWjEN59... to wGZWtwuY4... (cla: yes, waiting for tree to go green)
[22634](https://github.com/flutter/engine/pull/22634) Roll Dart SDK from b8fea79a2549 to 861ebcb175b6 (1 revision) (cla: yes, waiting for tree to go green)
[22635](https://github.com/flutter/engine/pull/22635) Roll Skia from 9dce4d081f8a to 8c5889937172 (1 revision) (cla: yes, waiting for tree to go green)
[22636](https://github.com/flutter/engine/pull/22636) Roll Dart SDK from 861ebcb175b6 to 1adf3d5fa9d0 (1 revision) (cla: yes, waiting for tree to go green)
[22637](https://github.com/flutter/engine/pull/22637) Roll Skia from 8c5889937172 to 0006ad01ce55 (4 revisions) (cla: yes, waiting for tree to go green)
[22641](https://github.com/flutter/engine/pull/22641) Add more runtime intrinsic symbols to the export checker script (cla: yes)
[22646](https://github.com/flutter/engine/pull/22646) Roll buildroot (cla: yes)
[22647](https://github.com/flutter/engine/pull/22647) Roll Dart SDK from 1adf3d5fa9d0 to d189db64441c (1 revision) (cla: yes, waiting for tree to go green)
[22649](https://github.com/flutter/engine/pull/22649) Roll Fuchsia Linux SDK from X1ue-JZsc... to mw1Z23AQ4... (cla: yes, waiting for tree to go green)
[22650](https://github.com/flutter/engine/pull/22650) Add Instrumentation class to web engine (cla: yes, waiting for tree to go green)
[22652](https://github.com/flutter/engine/pull/22652) Roll Fuchsia Mac SDK from wGZWtwuY4... to OFI5mVERq... (cla: yes, waiting for tree to go green)
[22654](https://github.com/flutter/engine/pull/22654) Fix the unchecked conversion warning for searchPaths in PlayStoreDynamicFeatureManager (cla: yes, platform-android)
[22656](https://github.com/flutter/engine/pull/22656) Create FlutterFrameBufferProvider class (affects: desktop, cla: yes, needs tests, platform-macos, waiting for tree to go green)
[22657](https://github.com/flutter/engine/pull/22657) [embedder][glfw] Add support for locales to glfw shell (cla: yes)
[22658](https://github.com/flutter/engine/pull/22658) Fix race condition in key event handling on Android (cla: yes, platform-android)
[22659](https://github.com/flutter/engine/pull/22659) Roll Skia from 0006ad01ce55 to 0dd83e165ae9 (21 revisions) (cla: yes, waiting for tree to go green)
[22660](https://github.com/flutter/engine/pull/22660) Roll Dart SDK from d189db64441c to 2ff016f0416d (1 revision) (cla: yes, waiting for tree to go green)
[22662](https://github.com/flutter/engine/pull/22662) Enabling semantics tests for safari, ios-safari and firefox (cla: yes, waiting for tree to go green)
[22663](https://github.com/flutter/engine/pull/22663) Create wrapper for IOSurface (affects: desktop, cla: yes, needs tests, platform-macos)
[22664](https://github.com/flutter/engine/pull/22664) Generate XCFramework in recipe package script (cla: yes, waiting for tree to go green)
[22665](https://github.com/flutter/engine/pull/22665) Make AndroidContext::IsValid virtual (cla: yes, platform-android)
[22666](https://github.com/flutter/engine/pull/22666) Roll Fuchsia Linux SDK from mw1Z23AQ4... to L78XAIrlz... (cla: yes, waiting for tree to go green)
[22667](https://github.com/flutter/engine/pull/22667) Roll Fuchsia Mac SDK from OFI5mVERq... to jh5hQRJsk... (cla: yes, waiting for tree to go green)
[22668](https://github.com/flutter/engine/pull/22668) Roll Skia from 0dd83e165ae9 to ee40ec6dd679 (6 revisions) (cla: yes, waiting for tree to go green)
[22671](https://github.com/flutter/engine/pull/22671) Roll Fuchsia Linux SDK from L78XAIrlz... to Nmo4pkY2s... (cla: yes, waiting for tree to go green)
[22673](https://github.com/flutter/engine/pull/22673) Roll Fuchsia Mac SDK from jh5hQRJsk... to qC9Z6PMoY... (cla: yes, waiting for tree to go green)
[22674](https://github.com/flutter/engine/pull/22674) Request quickReject results from correct drawing canvas (cla: yes)
[22677](https://github.com/flutter/engine/pull/22677) Roll Dart SDK from 2ff016f0416d to 962ef010aedd (2 revisions) (cla: yes, waiting for tree to go green)
[22678](https://github.com/flutter/engine/pull/22678) cherrypick: Fix double delete on backspace on Android (#22626) (cla: yes, platform-android)
[22680](https://github.com/flutter/engine/pull/22680) Roll Skia from ee40ec6dd679 to b27f39c92410 (14 revisions) (cla: yes, waiting for tree to go green)
[22683](https://github.com/flutter/engine/pull/22683) Fix shell_unittests flakes related to external_view_embedder (cla: yes, waiting for tree to go green)
[22684](https://github.com/flutter/engine/pull/22684) Roll Skia from b27f39c92410 to 95b5fb9213d7 (2 revisions) (cla: yes, waiting for tree to go green)
[22685](https://github.com/flutter/engine/pull/22685) Generate Maven metadata files for engine artifacts (cla: yes, platform-android, waiting for tree to go green)
[22687](https://github.com/flutter/engine/pull/22687) fuchsia: Ensure full-screen input interceptor (cla: yes, platform-fuchsia)
[22690](https://github.com/flutter/engine/pull/22690) Roll Dart SDK from 962ef010aedd to cde050a4c0b4 (2 revisions) (cla: yes, waiting for tree to go green)
[22692](https://github.com/flutter/engine/pull/22692) Let FlutterFragment not pop the whole activity by default when more fragments are in the activity (cla: yes, platform-android, waiting for tree to go green)
[22704](https://github.com/flutter/engine/pull/22704) Roll Fuchsia Linux SDK from Nmo4pkY2s... to GlHwWVGTU... (cla: yes, waiting for tree to go green)
[22707](https://github.com/flutter/engine/pull/22707) Roll Fuchsia Mac SDK from qC9Z6PMoY... to QKCl4nBGL... (cla: yes, waiting for tree to go green)
[22709](https://github.com/flutter/engine/pull/22709) Roll Dart SDK from cde050a4c0b4 to ed9894865fa3 (2 revisions) (cla: yes, waiting for tree to go green)
[22711](https://github.com/flutter/engine/pull/22711) Roll Skia from 95b5fb9213d7 to 68ac3b9ec3ca (17 revisions) (cla: yes, waiting for tree to go green)
[22712](https://github.com/flutter/engine/pull/22712) Roll Fuchsia Linux SDK from GlHwWVGTU... to eyiA9UhTG... (cla: yes, waiting for tree to go green)
[22713](https://github.com/flutter/engine/pull/22713) Roll Skia from 95b5fb9213d7 to 68ac3b9ec3ca (17 revisions) (cla: yes, waiting for tree to go green)
[22714](https://github.com/flutter/engine/pull/22714) Fix use of uninitialized memory in animator (cla: yes)
[22715](https://github.com/flutter/engine/pull/22715) Roll Skia from 68ac3b9ec3ca to 4dfa9774300c (3 revisions) (cla: yes, waiting for tree to go green)
[22719](https://github.com/flutter/engine/pull/22719) Roll Skia from 4dfa9774300c to 6c5e78d09940 (6 revisions) (cla: yes, waiting for tree to go green)
[22724](https://github.com/flutter/engine/pull/22724) Roll Skia from 6c5e78d09940 to ee792d6c96d9 (8 revisions) (cla: yes, waiting for tree to go green)
[22726](https://github.com/flutter/engine/pull/22726) Roll Fuchsia Mac SDK from QKCl4nBGL... to aXfbrLuUK... (cla: yes, waiting for tree to go green)
[22727](https://github.com/flutter/engine/pull/22727) Roll Dart SDK from ed9894865fa3 to cd7b857e70a7 (1 revision) (cla: yes, waiting for tree to go green)
[22732](https://github.com/flutter/engine/pull/22732) Roll Skia from ee792d6c96d9 to 36d06a806f69 (9 revisions) (cla: yes, waiting for tree to go green)
[22733](https://github.com/flutter/engine/pull/22733) Roll Fuchsia Linux SDK from eyiA9UhTG... to gkfmiRsIl... (cla: yes, waiting for tree to go green)
[22735](https://github.com/flutter/engine/pull/22735) Roll Skia from 36d06a806f69 to 888c5d3e57eb (2 revisions) (cla: yes, waiting for tree to go green)
[22736](https://github.com/flutter/engine/pull/22736) Add a golden scenario test for fallback font rendering on iOS take 3 (cla: yes, waiting for tree to go green)
[22737](https://github.com/flutter/engine/pull/22737) Roll Fuchsia Mac SDK from aXfbrLuUK... to 36uDTGJQp... (cla: yes, waiting for tree to go green)
[22738](https://github.com/flutter/engine/pull/22738) Roll Dart SDK from cd7b857e70a7 to ce76503f5b46 (1 revision) (cla: yes, waiting for tree to go green)
[22744](https://github.com/flutter/engine/pull/22744) Roll Fuchsia Linux SDK from gkfmiRsIl... to un3JixwuO... (cla: yes, waiting for tree to go green)
[22745](https://github.com/flutter/engine/pull/22745) Don't register CanvasKit with `define` (cla: yes)
[22746](https://github.com/flutter/engine/pull/22746) Roll Skia from 888c5d3e57eb to 51b74afb84d4 (12 revisions) (cla: yes, waiting for tree to go green)
[22749](https://github.com/flutter/engine/pull/22749) Roll Skia from 51b74afb84d4 to 452369182f6e (1 revision) (cla: yes, waiting for tree to go green)
[22750](https://github.com/flutter/engine/pull/22750) Roll Skia from 452369182f6e to f2efb80bc316 (4 revisions) (cla: yes, waiting for tree to go green)
[22752](https://github.com/flutter/engine/pull/22752) Add FlutterPlayStoreSplitApplication for simpler opt in to Split AOT (affects: engine, cla: yes, platform-android)
[22753](https://github.com/flutter/engine/pull/22753) Roll Fuchsia Mac SDK from 36uDTGJQp... to qpkZl0s5J... (cla: yes, waiting for tree to go green)
[22754](https://github.com/flutter/engine/pull/22754) Roll Skia from f2efb80bc316 to 8d78da910e45 (5 revisions) (cla: yes, waiting for tree to go green)
[22757](https://github.com/flutter/engine/pull/22757) Roll Fuchsia Linux SDK from un3JixwuO... to Bnaeivv07... (cla: yes, waiting for tree to go green)
[22760](https://github.com/flutter/engine/pull/22760) started providing the GPU sync switch to external view embedders (cla: yes, platform-android, platform-ios)
[22762](https://github.com/flutter/engine/pull/22762) PlatformViewsController: clear composition_order_ in the beginning of each frame. (cla: yes, platform-ios)
[22766](https://github.com/flutter/engine/pull/22766) Manual roll of Dart SDK from ce76503f5b46 to dcd5a8f005a (cla: yes)
[22768](https://github.com/flutter/engine/pull/22768) Roll Dart SDK from dcd5a8f005a2 to 960620d2e811 (794 revisions) (cla: yes, waiting for tree to go green)
[22769](https://github.com/flutter/engine/pull/22769) Cleanup dart_runner examples & tests. (cla: yes, waiting for tree to go green)
[22770](https://github.com/flutter/engine/pull/22770) add file package to deps in prep for glob update (cla: yes, waiting for tree to go green)
[22771](https://github.com/flutter/engine/pull/22771) [web] Add new line break type (prohibited) (cla: yes, platform-web)
[22772](https://github.com/flutter/engine/pull/22772) Roll Skia from 8d78da910e45 to fd41d878b13d (20 revisions) (cla: yes, waiting for tree to go green)
[22775](https://github.com/flutter/engine/pull/22775) Revert "Introduce a delegate class for gpu metal rendering (#22611)" (cla: yes, platform-ios)
[22776](https://github.com/flutter/engine/pull/22776) Roll Skia from fd41d878b13d to 70fe17e12f38 (6 revisions) (cla: yes, waiting for tree to go green)
[22777](https://github.com/flutter/engine/pull/22777) Reland "Introduce a delegate class for gpu metal rendering (#22611)" (cla: yes, platform-ios)
[22778](https://github.com/flutter/engine/pull/22778) Roll Dart SDK from 960620d2e811 to 7a2a3968ef53 (12 revisions) (cla: yes, waiting for tree to go green)
[22779](https://github.com/flutter/engine/pull/22779) [web] Initial rich measurement implementation (cla: yes, platform-web, waiting for tree to go green)
[22780](https://github.com/flutter/engine/pull/22780) [embedder] Compositor can specify that no backing stores be cached (cla: yes)
[22781](https://github.com/flutter/engine/pull/22781) Roll Skia from 70fe17e12f38 to 4c6f57a23e63 (1 revision) (cla: yes, waiting for tree to go green)
[22782](https://github.com/flutter/engine/pull/22782) (MacOS) Add FlutterGLCompositor with support for rendering multiple layers (cla: yes)
[22793](https://github.com/flutter/engine/pull/22793) Stop using the List constructor. (cla: yes, waiting for tree to go green)
[22794](https://github.com/flutter/engine/pull/22794) Add package:file to DEPS (cla: yes)
[22801](https://github.com/flutter/engine/pull/22801) Roll Dart SDK from 7a2a3968ef53 to e9a03fd98faa (5 revisions) (cla: yes, waiting for tree to go green)
[22802](https://github.com/flutter/engine/pull/22802) Roll Skia from 4c6f57a23e63 to a927771c9cce (10 revisions) (cla: yes, waiting for tree to go green)
[22803](https://github.com/flutter/engine/pull/22803) Roll Skia from a927771c9cce to 7b776b514933 (3 revisions) (cla: yes, waiting for tree to go green)
[22804](https://github.com/flutter/engine/pull/22804) Roll buildroot and benchmark (cla: yes, waiting for tree to go green)
[22805](https://github.com/flutter/engine/pull/22805) Roll Fuchsia Mac SDK from qpkZl0s5J... to 7O11wjLVX... (cla: yes, waiting for tree to go green)
[22807](https://github.com/flutter/engine/pull/22807) Make CkPicture resurrectable (cla: yes)
[22808](https://github.com/flutter/engine/pull/22808) Roll Skia from 7b776b514933 to c504ecda03b8 (6 revisions) (cla: yes, waiting for tree to go green)
[22809](https://github.com/flutter/engine/pull/22809) Better handle image codec instantiation failure (cla: yes)
[22810](https://github.com/flutter/engine/pull/22810) Roll Dart SDK from e9a03fd98faa to 5acaa5f14b03 (1 revision) (cla: yes, waiting for tree to go green)
[22811](https://github.com/flutter/engine/pull/22811) Add static text trait to plain semantics object with label in iOS (cla: yes, platform-ios, waiting for tree to go green)
[22812](https://github.com/flutter/engine/pull/22812) Add trace kernel flag to allowlist (cla: yes)
[22813](https://github.com/flutter/engine/pull/22813) [web] Fix event transform between mousedown/up due to mouse move event (cla: yes)
[22816](https://github.com/flutter/engine/pull/22816) Revert "Roll buildroot and benchmark" (cla: yes)
[22817](https://github.com/flutter/engine/pull/22817) Roll Fuchsia Linux SDK from Bnaeivv07... to W14Qninrb... (cla: yes, waiting for tree to go green)
[22818](https://github.com/flutter/engine/pull/22818) Generate gen_snapshot_armv7 and gen_snapshot_arm64 (cla: yes, platform-ios)
[22819](https://github.com/flutter/engine/pull/22819) More rename from GPU thread to raster thread (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[22820](https://github.com/flutter/engine/pull/22820) Roll Fuchsia Mac SDK from 7O11wjLVX... to Z_-ciOYM9... (cla: yes, waiting for tree to go green)
[22823](https://github.com/flutter/engine/pull/22823) Revert "Fix race condition in key event handling on Android (#22658)" (cla: yes, platform-android)
[22824](https://github.com/flutter/engine/pull/22824) Temporarily reduce e2e test matrix to stop flaky web engine builds (cla: yes)
[22827](https://github.com/flutter/engine/pull/22827) Roll Dart SDK from 5acaa5f14b03 to cfaa7606cbf5 (2 revisions) (cla: yes, waiting for tree to go green)
[22828](https://github.com/flutter/engine/pull/22828) Roll Skia from c504ecda03b8 to 9443d58af292 (16 revisions) (cla: yes, waiting for tree to go green)
[22829](https://github.com/flutter/engine/pull/22829) upgrade Firefox to 83 (cla: yes, platform-web)
[22833](https://github.com/flutter/engine/pull/22833) DynamicFeatureChannel MethodChannel and Install state tracking (cla: yes, platform-android)
[22834](https://github.com/flutter/engine/pull/22834) Reland: "Fix race condition in key event handling on Android (#22658)" (cla: yes, platform-android, waiting for tree to go green)
[22838](https://github.com/flutter/engine/pull/22838) Implement pushColorFilter in CanvasKit (cla: yes, platform-web)
[22839](https://github.com/flutter/engine/pull/22839) Roll Skia from 9443d58af292 to c7112edbe0f4 (10 revisions) (cla: yes, waiting for tree to go green)
[22840](https://github.com/flutter/engine/pull/22840) Roll Dart SDK from cfaa7606cbf5 to 97cfd05b3cb3 (2 revisions) (cla: yes, waiting for tree to go green)
[22841](https://github.com/flutter/engine/pull/22841) Roll Fuchsia Mac SDK from Z_-ciOYM9... to DRN4P3zbe... (cla: yes, waiting for tree to go green)
[22842](https://github.com/flutter/engine/pull/22842) Roll Fuchsia Linux SDK from W14Qninrb... to M_8svVndh... (cla: yes, waiting for tree to go green)
[22844](https://github.com/flutter/engine/pull/22844) Roll Skia from c7112edbe0f4 to d39aec0e40ec (17 revisions) (cla: yes, waiting for tree to go green)
[22845](https://github.com/flutter/engine/pull/22845) opt into new Skia APIs (cla: yes, platform-android, waiting for tree to go green)
[22846](https://github.com/flutter/engine/pull/22846) leaving only html tests (cla: yes, waiting for tree to go green)
[22847](https://github.com/flutter/engine/pull/22847) Roll Skia from d39aec0e40ec to 38921cafe1bb (7 revisions) (cla: yes, waiting for tree to go green)
[22848](https://github.com/flutter/engine/pull/22848) memoize the fallback SkPaint in paragraph (cla: yes, platform-web)
[22849](https://github.com/flutter/engine/pull/22849) Roll Dart SDK from 97cfd05b3cb3 to a37a4d42e53d (4 revisions) (cla: yes)
[22851](https://github.com/flutter/engine/pull/22851) Roll Skia from 38921cafe1bb to abcc1ecdfd0c (8 revisions) (cla: yes, waiting for tree to go green)
[22852](https://github.com/flutter/engine/pull/22852) Fix NPE when platform plugin delegate is null (cla: yes, platform-android)
[22853](https://github.com/flutter/engine/pull/22853) Handle null platform plugin delegate for v1 embedding (cla: yes, platform-android, waiting for tree to go green)
[22854](https://github.com/flutter/engine/pull/22854) [embedder] [metal] Add support for Metal Renderer Config in the embedder API (cla: yes, waiting for tree to go green)
[22855](https://github.com/flutter/engine/pull/22855) Roll Skia from abcc1ecdfd0c to c0c5106bd4d4 (3 revisions) (cla: yes, waiting for tree to go green)
[22856](https://github.com/flutter/engine/pull/22856) [web] Optimize BitmapCanvas. Fixes overallocation of canvas elements (cla: yes)
[22857](https://github.com/flutter/engine/pull/22857) Add split AOT loading unit failure/error code path (cla: yes, platform-android, waiting for tree to go green)
[22858](https://github.com/flutter/engine/pull/22858) Remove spammy ELF load log (cla: yes, waiting for tree to go green)
[22859](https://github.com/flutter/engine/pull/22859) Roll Dart SDK from a37a4d42e53d to 2c74e62a050c (1 revision) (cla: yes, waiting for tree to go green)
[22864](https://github.com/flutter/engine/pull/22864) Roll Fuchsia Mac SDK from DRN4P3zbe... to 1EKjnjmeP... (cla: yes, waiting for tree to go green)
[22871](https://github.com/flutter/engine/pull/22871) Update sites to use new SkMatrix factories (cla: yes, platform-ios)
[22872](https://github.com/flutter/engine/pull/22872) Roll Skia from c0c5106bd4d4 to fdb8dbe69cc2 (8 revisions) (cla: yes, waiting for tree to go green)
[22873](https://github.com/flutter/engine/pull/22873) [web] Handle overflow and maxLines in rich text (cla: yes, platform-web)
[22874](https://github.com/flutter/engine/pull/22874) re-enable pointer events inside platform views (cla: yes)
[22877](https://github.com/flutter/engine/pull/22877) Roll Skia from fdb8dbe69cc2 to bc3c41b8742a (3 revisions) (cla: yes, waiting for tree to go green)
[22878](https://github.com/flutter/engine/pull/22878) copy the glibc fix to felt (cla: yes)
[22879](https://github.com/flutter/engine/pull/22879) Roll Fuchsia Mac SDK from 1EKjnjmeP... to eEeK509UF... (cla: yes, waiting for tree to go green)
[22880](https://github.com/flutter/engine/pull/22880) Roll Fuchsia Linux SDK from M_8svVndh... to IuiLYXJbt... (cla: yes, waiting for tree to go green)
[22881](https://github.com/flutter/engine/pull/22881) Roll Dart SDK from 2c74e62a050c to f9760fc12871 (5 revisions) (cla: yes, waiting for tree to go green)
[22882](https://github.com/flutter/engine/pull/22882) Roll Skia from bc3c41b8742a to f2bd501ce3bf (1 revision) (cla: yes, waiting for tree to go green)
[22883](https://github.com/flutter/engine/pull/22883) Roll Dart SDK from 2c74e62a050c to f9760fc12871 (5 revisions) (cla: yes, waiting for tree to go green)
[22884](https://github.com/flutter/engine/pull/22884) [web] sharding change is merged. re-enable tests (cla: yes)
[22885](https://github.com/flutter/engine/pull/22885) Roll Skia from f2bd501ce3bf to 30217950419d (2 revisions) (cla: yes, waiting for tree to go green)
[22887](https://github.com/flutter/engine/pull/22887) Allow the root layout to be overriden. (cla: yes, platform-android)
[22888](https://github.com/flutter/engine/pull/22888) Roll Dart SDK from f9760fc12871 to 2736bd161251 (1 revision) (cla: yes, waiting for tree to go green)
[22889](https://github.com/flutter/engine/pull/22889) Roll Dart SDK from 2736bd161251 to 2ec3ea2df38e (1 revision) (cla: yes, waiting for tree to go green)
[22890](https://github.com/flutter/engine/pull/22890) [canvaskit] fix TransformLayer.preroll (cla: yes)
[22891](https://github.com/flutter/engine/pull/22891) Roll Fuchsia Mac SDK from eEeK509UF... to dx6dSD8vc... (cla: yes, waiting for tree to go green)
[22892](https://github.com/flutter/engine/pull/22892) Roll Fuchsia Linux SDK from IuiLYXJbt... to Ety7pAnEH... (cla: yes, waiting for tree to go green)
[22893](https://github.com/flutter/engine/pull/22893) Roll Dart SDK from 2ec3ea2df38e to db7d75e2239c (1 revision) (cla: yes, waiting for tree to go green)
[22895](https://github.com/flutter/engine/pull/22895) Roll Fuchsia Mac SDK from dx6dSD8vc... to bbMFXPW6S... (cla: yes, waiting for tree to go green)
[22896](https://github.com/flutter/engine/pull/22896) Roll Fuchsia Linux SDK from Ety7pAnEH... to q0Z9X9luW... (cla: yes, waiting for tree to go green)
[22898](https://github.com/flutter/engine/pull/22898) Roll Skia from 30217950419d to edb22ec49866 (3 revisions) (cla: yes, waiting for tree to go green)
[22899](https://github.com/flutter/engine/pull/22899) Roll Dart SDK from db7d75e2239c to baa92e08fee4 (4 revisions) (cla: yes, waiting for tree to go green)
[22900](https://github.com/flutter/engine/pull/22900) Add engine tests for Linux shell (cla: yes)
[22902](https://github.com/flutter/engine/pull/22902) Roll Fuchsia Linux SDK from q0Z9X9luW... to kZi1s5bIk... (cla: yes, waiting for tree to go green)
[22904](https://github.com/flutter/engine/pull/22904) Roll Fuchsia Mac SDK from bbMFXPW6S... to y_h5kQEmN... (cla: yes, waiting for tree to go green)
[22906](https://github.com/flutter/engine/pull/22906) Roll Skia from edb22ec49866 to 3c7298922f69 (14 revisions) (cla: yes, waiting for tree to go green)
[22907](https://github.com/flutter/engine/pull/22907) [scenario app] Update golden images for android (cla: yes)
[22908](https://github.com/flutter/engine/pull/22908) Roll Skia from 3c7298922f69 to 011a77357ec4 (3 revisions) (cla: yes, waiting for tree to go green)
[22910](https://github.com/flutter/engine/pull/22910) [web] Fix edge cases when force-breaking lines (cla: yes, platform-web)
[22911](https://github.com/flutter/engine/pull/22911) Roll Skia from 011a77357ec4 to bf282c05e58c (3 revisions) (cla: yes, waiting for tree to go green)
[22913](https://github.com/flutter/engine/pull/22913) Roll Skia from bf282c05e58c to 529b25929c85 (2 revisions) (cla: yes, waiting for tree to go green)
[22915](https://github.com/flutter/engine/pull/22915) Roll Skia from 529b25929c85 to f639a24c5041 (1 revision) (cla: yes, waiting for tree to go green)
[22916](https://github.com/flutter/engine/pull/22916) Move the WindowInsetsAnimation.Callback implementation to an inner class to avoid Android class loader warnings (cla: yes, platform-android, waiting for tree to go green)
[22917](https://github.com/flutter/engine/pull/22917) Stop potential lockup due to GHashTable being modified when cleared. (cla: yes)
[22918](https://github.com/flutter/engine/pull/22918) Roll Skia from f639a24c5041 to 554e7574e960 (1 revision) (cla: yes, waiting for tree to go green)
[22919](https://github.com/flutter/engine/pull/22919) Roll Fuchsia Mac SDK from y_h5kQEmN... to 8cOXjqyWN... (cla: yes, waiting for tree to go green)
[22920](https://github.com/flutter/engine/pull/22920) Roll Fuchsia Linux SDK from kZi1s5bIk... to hIxVxIVhE... (cla: yes, waiting for tree to go green)
[22922](https://github.com/flutter/engine/pull/22922) Roll Skia from 554e7574e960 to 03d69876ff0e (1 revision) (cla: yes, waiting for tree to go green)
[22923](https://github.com/flutter/engine/pull/22923) Roll Skia from 03d69876ff0e to 60a2ec03b662 (3 revisions) (cla: yes, waiting for tree to go green)
[22924](https://github.com/flutter/engine/pull/22924) Roll Skia from 60a2ec03b662 to ff18ff6b295c (2 revisions) (cla: yes, waiting for tree to go green)
[22925](https://github.com/flutter/engine/pull/22925) Use List.filled constructor instead of soon-to-be-deprecated List constructor. (cla: yes)
[22927](https://github.com/flutter/engine/pull/22927) Roll Skia from ff18ff6b295c to b87975c13381 (2 revisions) (cla: yes, waiting for tree to go green)
[22928](https://github.com/flutter/engine/pull/22928) Roll Dart SDK from baa92e08fee4 to d75741b19133 (7 revisions) (cla: yes, waiting for tree to go green)
[22930](https://github.com/flutter/engine/pull/22930) [flutter_releases] Flutter 1.22.5 engine cherry-pick PlatformViewsController: clear composition_order_ in the beginning of each frame (cla: yes, platform-android, platform-ios)
[22931](https://github.com/flutter/engine/pull/22931) [flutter_release] Flutter 1.22.5 engine cherry-pick (cla: yes, platform-android, platform-ios)
[22932](https://github.com/flutter/engine/pull/22932) Roll Skia from b87975c13381 to cdd6cced4520 (3 revisions) (cla: yes, waiting for tree to go green)
[22933](https://github.com/flutter/engine/pull/22933) Roll Fuchsia Mac SDK from 8cOXjqyWN... to 1LDC_Iu1_... (cla: yes, waiting for tree to go green)
[22934](https://github.com/flutter/engine/pull/22934) Roll Fuchsia Linux SDK from hIxVxIVhE... to 3EfPHtl7G... (cla: yes, waiting for tree to go green)
[22935](https://github.com/flutter/engine/pull/22935) Roll Skia from cdd6cced4520 to 99c944647fcc (4 revisions) (cla: yes, waiting for tree to go green)
[22936](https://github.com/flutter/engine/pull/22936) Implement SystemSound.play (cla: yes)
[22937](https://github.com/flutter/engine/pull/22937) CanvasKit fix embedded view clipping (cla: yes, platform-web, waiting for tree to go green)
[22938](https://github.com/flutter/engine/pull/22938) [flutter_releases] Flutter Stable Engine 1.22.5 Cherrypicks (cla: yes, platform-android, platform-ios)
[22939](https://github.com/flutter/engine/pull/22939) [web] Cache CSS font string instead of the style object (cla: yes, platform-web, waiting for tree to go green)
[22940](https://github.com/flutter/engine/pull/22940) Roll Skia from 99c944647fcc to 759ff5b38c23 (3 revisions) (cla: yes, waiting for tree to go green)
[22941](https://github.com/flutter/engine/pull/22941) [web] Default styles for rich text (cla: yes, platform-web)
[22942](https://github.com/flutter/engine/pull/22942) [web] Introduce flag to enable new rich text implementation (cla: yes, platform-web)
[22944](https://github.com/flutter/engine/pull/22944) Roll Dart SDK from d75741b19133 to a92baed5f8e2 (1 revision) (cla: yes, waiting for tree to go green)
[22945](https://github.com/flutter/engine/pull/22945) Fix platform view transforms in CanvasKit (cla: yes, waiting for tree to go green)
[22946](https://github.com/flutter/engine/pull/22946) [web] Fix drag failure when RMB pointer up event is not received (cla: yes)
[22947](https://github.com/flutter/engine/pull/22947) Replace g_object_weak_ref with g_object_add_weak_pointer (cla: yes)
[22948](https://github.com/flutter/engine/pull/22948) [web] Add complex rich text test cases and fix them (cla: yes, platform-web)
[22949](https://github.com/flutter/engine/pull/22949) Roll Skia from 759ff5b38c23 to 51ab694cbb86 (4 revisions) (cla: yes, waiting for tree to go green)
[22950](https://github.com/flutter/engine/pull/22950) [flutter_releases] Fix build error (cla: yes, platform-android, platform-ios)
[22951](https://github.com/flutter/engine/pull/22951) [canvaskit] improve image error handling and messaging (cla: yes, platform-web)
[22952](https://github.com/flutter/engine/pull/22952) Roll Skia from 51ab694cbb86 to 9a6cece5a830 (1 revision) (cla: yes, waiting for tree to go green)
[22953](https://github.com/flutter/engine/pull/22953) [web] For Firefox focusing on the DOM element after blur propagates (cla: yes)
[22956](https://github.com/flutter/engine/pull/22956) Roll Dart SDK from a92baed5f8e2 to 9fdb86dba562 (1 revision) (cla: yes, waiting for tree to go green)
[22957](https://github.com/flutter/engine/pull/22957) Roll Skia from 9a6cece5a830 to 5e744acfad58 (5 revisions) (cla: yes)
[22958](https://github.com/flutter/engine/pull/22958) Roll Fuchsia Mac SDK from 1LDC_Iu1_... to xL_mp7rvV... (cla: yes, waiting for tree to go green)
[22959](https://github.com/flutter/engine/pull/22959) Roll Dart SDK from 9fdb86dba562 to b440879831a8 (1 revision) (cla: yes, waiting for tree to go green)
[22960](https://github.com/flutter/engine/pull/22960) Roll Fuchsia Linux SDK from 3EfPHtl7G... to mz03TfHP9... (cla: yes, waiting for tree to go green)
[22961](https://github.com/flutter/engine/pull/22961) Roll Dart SDK from b440879831a8 to f1e6a33d1db5 (1 revision) (cla: yes, waiting for tree to go green)
[22963](https://github.com/flutter/engine/pull/22963) Roll Skia from 5e744acfad58 to 123501fd19a8 (8 revisions) (cla: yes, waiting for tree to go green)
[22964](https://github.com/flutter/engine/pull/22964) [web] Separate the height ruler from the other rulers (cla: yes, platform-web, waiting for tree to go green)
[22965](https://github.com/flutter/engine/pull/22965) Fix ios voiceover (for safari >13.4) (cla: yes)
[22966](https://github.com/flutter/engine/pull/22966) [canvaskit] reuse canvases when window resizes (cla: yes, platform-web)
[22968](https://github.com/flutter/engine/pull/22968) [web] update browser changing docs (cla: yes)
[22972](https://github.com/flutter/engine/pull/22972) Roll Fuchsia Mac SDK from xL_mp7rvV... to G_O-vV26O... (cla: yes, waiting for tree to go green)
[22973](https://github.com/flutter/engine/pull/22973) Roll Fuchsia Linux SDK from mz03TfHP9... to 0kx01Ik6Y... (cla: yes, waiting for tree to go green)
[22974](https://github.com/flutter/engine/pull/22974) [flutter_releases] Flutter Engine 1.22.5 Cherrypick revert (cla: yes, platform-android, platform-ios)
[22975](https://github.com/flutter/engine/pull/22975) Implemented FlutterEngineGroup and Spawn API. (cla: yes, platform-ios)
[22977](https://github.com/flutter/engine/pull/22977) [web] Do not reset 'cursor' in PersistedPlatformView. (cla: yes, platform-web, waiting for tree to go green)
[22978](https://github.com/flutter/engine/pull/22978) Roll Skia from 123501fd19a8 to ff7bfea4ab76 (23 revisions) (cla: yes, waiting for tree to go green)
[22979](https://github.com/flutter/engine/pull/22979) Load macOS dart bundle by URL fallback (cla: yes, platform-macos)
[22982](https://github.com/flutter/engine/pull/22982) Allow Tile mode for blur filter and add new decal TileMode (cla: yes, waiting for tree to go green)
[22983](https://github.com/flutter/engine/pull/22983) Roll Dart SDK from f1e6a33d1db5 to 8c085176125f (3 revisions) (cla: yes, waiting for tree to go green)
[22984](https://github.com/flutter/engine/pull/22984) Freiling warmup memory (cla: yes)
[22985](https://github.com/flutter/engine/pull/22985) Roll Skia from ff7bfea4ab76 to af11a00f7849 (1 revision) (cla: yes, waiting for tree to go green)
[22986](https://github.com/flutter/engine/pull/22986) Roll Skia from af11a00f7849 to 22f80a60b17f (2 revisions) (cla: yes, waiting for tree to go green)
[22989](https://github.com/flutter/engine/pull/22989) Roll Fuchsia Mac SDK from G_O-vV26O... to OUQEzH1oE... (cla: yes, waiting for tree to go green)
[22992](https://github.com/flutter/engine/pull/22992) Roll Dart SDK from 8c085176125f to e4c9b06267d3 (2 revisions) (cla: yes, waiting for tree to go green)
[22993](https://github.com/flutter/engine/pull/22993) Roll Fuchsia Linux SDK from 0kx01Ik6Y... to rnN_X2o75... (cla: yes, waiting for tree to go green)
[22997](https://github.com/flutter/engine/pull/22997) Load iOS dart bundle by URL fallback (cla: yes, platform-ios, waiting for tree to go green)
[22999](https://github.com/flutter/engine/pull/22999) [web] Fix regression in paragraph foreground style (cla: yes, platform-web)
[23000](https://github.com/flutter/engine/pull/23000) add ffi_struct_patch.dart to libraries.yaml (cla: yes)
[23005](https://github.com/flutter/engine/pull/23005) Roll Skia from 22f80a60b17f to 6b07e0eb497c (26 revisions) (cla: yes, waiting for tree to go green)
[23006](https://github.com/flutter/engine/pull/23006) Roll Dart SDK from e4c9b06267d3 to a4e6fe145bf7 (2 revisions) (cla: yes, waiting for tree to go green)
[23007](https://github.com/flutter/engine/pull/23007) Revert "Freiling warmup memory (#22984)" (cla: yes)
[23009](https://github.com/flutter/engine/pull/23009) warmup memory reland (cla: yes, waiting for tree to go green)
[23010](https://github.com/flutter/engine/pull/23010) Roll Fuchsia Linux SDK from rnN_X2o75... to ESzmO-yOF... (cla: yes, waiting for tree to go green)
[23012](https://github.com/flutter/engine/pull/23012) Started shutting down the sampler when it gets deleted (cla: yes)
[23013](https://github.com/flutter/engine/pull/23013) Stopped mocking the a flutter engine to make sure we delete the FlutterViewController. (cla: yes, platform-ios)
[23014](https://github.com/flutter/engine/pull/23014) Turned on malloc scribble and randomized the tests. (cla: yes, waiting for tree to go green)
[23018](https://github.com/flutter/engine/pull/23018) Roll Skia from 6b07e0eb497c to f7cce2b243b2 (6 revisions) (cla: yes, waiting for tree to go green)
[23019](https://github.com/flutter/engine/pull/23019) fix crash in FontCollection::init() when FontFamily is empty (cla: yes, waiting for tree to go green)
[23020](https://github.com/flutter/engine/pull/23020) Roll Fuchsia Linux SDK from ESzmO-yOF... to K4cPd0-Xd... (cla: yes, waiting for tree to go green)
[23021](https://github.com/flutter/engine/pull/23021) Roll Skia from f7cce2b243b2 to b0cb8372c1ef (3 revisions) (cla: yes, waiting for tree to go green)
[23023](https://github.com/flutter/engine/pull/23023) Roll Skia from b0cb8372c1ef to 5284e96599a8 (2 revisions) (cla: yes, waiting for tree to go green)
[23024](https://github.com/flutter/engine/pull/23024) Roll Dart SDK from a4e6fe145bf7 to c287db6bf232 (2 revisions) (cla: yes, waiting for tree to go green)
[23025](https://github.com/flutter/engine/pull/23025) Roll Fuchsia Mac SDK from OUQEzH1oE... to a9yuHfriB... (cla: yes, waiting for tree to go green)
[23026](https://github.com/flutter/engine/pull/23026) Roll Dart SDK from c287db6bf232 to 2553a84fe438 (1 revision) (cla: yes, waiting for tree to go green)
[23027](https://github.com/flutter/engine/pull/23027) Roll Skia from 5284e96599a8 to f7fdf1aa2911 (1 revision) (cla: yes, waiting for tree to go green)
[23029](https://github.com/flutter/engine/pull/23029) Roll Dart SDK from 2553a84fe438 to 95e1709c9e54 (1 revision) (cla: yes, waiting for tree to go green)
[23033](https://github.com/flutter/engine/pull/23033) Roll Fuchsia Linux SDK from K4cPd0-Xd... to BA2UmYXNr... (cla: yes, waiting for tree to go green)
[23035](https://github.com/flutter/engine/pull/23035) Use include for C/C++ headers in darwin/macos (cla: yes, waiting for tree to go green)
[23037](https://github.com/flutter/engine/pull/23037) Started tearing down the mock engine in tearDown in FlutterViewControllerTest (cla: yes, platform-ios)
[23039](https://github.com/flutter/engine/pull/23039) Roll Fuchsia Mac SDK from a9yuHfriB... to QbeeeTiub... (cla: yes, waiting for tree to go green)
[23041](https://github.com/flutter/engine/pull/23041) Roll buildroot to flutter/buildroot@64bf32094b19bfecc2515aedb7e130f7ba15d297 (cla: yes)
[23042](https://github.com/flutter/engine/pull/23042) Roll Skia from f7fdf1aa2911 to 346dd53ac087 (25 revisions) (cla: yes, waiting for tree to go green)
[23043](https://github.com/flutter/engine/pull/23043) [web] Align offset for lines of rich text (cla: yes, platform-web, waiting for tree to go green)
[23044](https://github.com/flutter/engine/pull/23044) Revert "Set SkPath::setIsVolatile based on whether the path survives at least two frames" (cla: yes)
[23045](https://github.com/flutter/engine/pull/23045) Roll Dart SDK from 95e1709c9e54 to 68d1c7504f7d (2 revisions) (cla: yes, waiting for tree to go green)
[23046](https://github.com/flutter/engine/pull/23046) Roll Skia from 346dd53ac087 to 1aa1f5fcbac6 (1 revision) (cla: yes, waiting for tree to go green)
[23047](https://github.com/flutter/engine/pull/23047) fuchsia: Fix incorrect scale (cla: yes, platform-fuchsia)
[23048](https://github.com/flutter/engine/pull/23048) Roll Fuchsia Linux SDK from BA2UmYXNr... to QniFAAjTT... (cla: yes, waiting for tree to go green)
[23049](https://github.com/flutter/engine/pull/23049) Roll Fuchsia Mac SDK from QbeeeTiub... to L7-xj4Yqz... (cla: yes, waiting for tree to go green)
[23054](https://github.com/flutter/engine/pull/23054) Revert "Load iOS dart bundle by URL fallback" (cla: yes, platform-ios, waiting for tree to go green)
[23055](https://github.com/flutter/engine/pull/23055) Roll Dart SDK from 68d1c7504f7d to f166571c7bc4 (1 revision) (cla: yes, waiting for tree to go green)
[23056](https://github.com/flutter/engine/pull/23056) Roll Dart SDK from 68d1c7504f7d to f166571c7bc4 (1 revision) (cla: yes, waiting for tree to go green)
[23058](https://github.com/flutter/engine/pull/23058) Roll Skia from 1aa1f5fcbac6 to 1d2b075ce060 (28 revisions) (cla: yes, waiting for tree to go green)
[23061](https://github.com/flutter/engine/pull/23061) [canvaskit] cache and reuse platform view overlays (cla: yes)
[23062](https://github.com/flutter/engine/pull/23062) Roll Skia from 1d2b075ce060 to 1c50643b3cef (1 revision) (cla: yes, waiting for tree to go green)
[23063](https://github.com/flutter/engine/pull/23063) Reland path volatility tracker (cla: yes)
[23064](https://github.com/flutter/engine/pull/23064) [web] Calculate height and baseline for rich text (cla: yes, platform-web)
[23065](https://github.com/flutter/engine/pull/23065) Roll Skia from 1c50643b3cef to f607dbbbe81f (1 revision) (cla: yes, waiting for tree to go green)
[23066](https://github.com/flutter/engine/pull/23066) Added golden test to make sure that spawn engines work. (cla: yes, platform-ios)
[23067](https://github.com/flutter/engine/pull/23067) bump fuchsia toolchain to clang-12 (cla: yes)
[23068](https://github.com/flutter/engine/pull/23068) Roll Skia from f607dbbbe81f to f124108e2325 (2 revisions) (cla: yes, waiting for tree to go green)
[23069](https://github.com/flutter/engine/pull/23069) Roll Dart SDK from f166571c7bc4 to 8233c4763a9c (1 revision) (cla: yes, waiting for tree to go green)
[23070](https://github.com/flutter/engine/pull/23070) Disable flaky/hanging split AOT test (cla: yes, waiting for tree to go green)
[23071](https://github.com/flutter/engine/pull/23071) Roll Skia from f124108e2325 to 4df3fea42692 (2 revisions) (cla: yes, waiting for tree to go green)
[23073](https://github.com/flutter/engine/pull/23073) Roll Skia from 4df3fea42692 to 0765022c1517 (1 revision) (cla: yes, waiting for tree to go green)
[23074](https://github.com/flutter/engine/pull/23074) Roll Dart SDK from 8233c4763a9c to e01119c6fd09 (1 revision) (cla: yes, waiting for tree to go green)
[23075](https://github.com/flutter/engine/pull/23075) Roll Fuchsia Mac SDK from L7-xj4Yqz... to n0XovQHCz... (cla: yes, waiting for tree to go green)
[23076](https://github.com/flutter/engine/pull/23076) Roll Fuchsia Linux SDK from QniFAAjTT... to 5Rxyho8VL... (cla: yes, waiting for tree to go green)
[23078](https://github.com/flutter/engine/pull/23078) Roll Dart SDK from e01119c6fd09 to 5cec31739703 (1 revision) (cla: yes, waiting for tree to go green)
[23079](https://github.com/flutter/engine/pull/23079) Roll Skia from 0765022c1517 to 4bdc12142a0e (1 revision) (cla: yes, waiting for tree to go green)
[23081](https://github.com/flutter/engine/pull/23081) Roll Skia from 4bdc12142a0e to 2bacaf973d79 (4 revisions) (cla: yes, waiting for tree to go green)
[23082](https://github.com/flutter/engine/pull/23082) [fuchsia] Remove fuchsia.netstack.Netstack (cla: yes, waiting for tree to go green)
[23083](https://github.com/flutter/engine/pull/23083) Roll Dart SDK from 5cec31739703 to d7266520ca18 (1 revision) (cla: yes, waiting for tree to go green)
[23084](https://github.com/flutter/engine/pull/23084) Roll Skia from 2bacaf973d79 to adc688922877 (6 revisions) (cla: yes, waiting for tree to go green)
[23085](https://github.com/flutter/engine/pull/23085) [flutter_releases] Flutter 1.25.0-8.1.pre engine cherrypicks (cla: yes)
[23086](https://github.com/flutter/engine/pull/23086) Roll Skia from adc688922877 to a298431a1370 (6 revisions) (cla: yes, waiting for tree to go green)
[23087](https://github.com/flutter/engine/pull/23087) Initial import of accessibility code from Chromium (cla: yes)
[23089](https://github.com/flutter/engine/pull/23089) Prevent recycling of canvas multiple times (cla: yes)
[23090](https://github.com/flutter/engine/pull/23090) [web] Switch web-render option default to auto (cla: yes)
[23092](https://github.com/flutter/engine/pull/23092) Roll Fuchsia Mac SDK from n0XovQHCz... to 716FtmoF4... (cla: yes, waiting for tree to go green)
[23093](https://github.com/flutter/engine/pull/23093) Roll Dart SDK from d7266520ca18 to 1297e4ae2140 (1 revision) (cla: yes, waiting for tree to go green)
[23094](https://github.com/flutter/engine/pull/23094) Roll Skia from a298431a1370 to f2876b0b9e4a (9 revisions) (cla: yes, waiting for tree to go green)
[23095](https://github.com/flutter/engine/pull/23095) Roll Fuchsia Linux SDK from 5Rxyho8VL... to Lj6L6i7vj... (cla: yes, waiting for tree to go green)
[23096](https://github.com/flutter/engine/pull/23096) [CanvasKit] Automatically fall back to Noto fonts (cla: yes)
[23097](https://github.com/flutter/engine/pull/23097) [web] Tests for rich paragraph DOM (cla: yes, platform-web)
[23098](https://github.com/flutter/engine/pull/23098) [web] Rich paragraph getBoxesForRange (cla: yes, platform-web)
[23099](https://github.com/flutter/engine/pull/23099) Roll Skia from f2876b0b9e4a to 2078cbe3d4d9 (1 revision) (cla: yes, waiting for tree to go green)
[23101](https://github.com/flutter/engine/pull/23101) Return null in Future<WebSocketChannel>.catchError handler (cla: yes, platform-web)
[23102](https://github.com/flutter/engine/pull/23102) removed variable-sized array (cla: yes)
[23103](https://github.com/flutter/engine/pull/23103) Roll Skia from 2078cbe3d4d9 to 15f51848df7f (6 revisions) (cla: yes, waiting for tree to go green)
[23104](https://github.com/flutter/engine/pull/23104) Roll Dart SDK from 1297e4ae2140 to 5969f5653830 (2 revisions) (cla: yes, waiting for tree to go green)
[23105](https://github.com/flutter/engine/pull/23105) Roll Fuchsia Mac SDK from 716FtmoF4... to acylwa3i4... (cla: yes, waiting for tree to go green)
[23106](https://github.com/flutter/engine/pull/23106) Roll Fuchsia Linux SDK from Lj6L6i7vj... to TIKHoiQyP... (cla: yes, waiting for tree to go green)
[23108](https://github.com/flutter/engine/pull/23108) Roll Skia from 15f51848df7f to 6e110c89ed50 (4 revisions) (cla: yes, waiting for tree to go green)
[23109](https://github.com/flutter/engine/pull/23109) Roll Skia from 6e110c89ed50 to f52a8112909c (5 revisions) (cla: yes, waiting for tree to go green)
[23110](https://github.com/flutter/engine/pull/23110) Apply local patch to chromium accessibility code (cla: yes, waiting for tree to go green)
[23111](https://github.com/flutter/engine/pull/23111) Correct button state on synthetic pointer events (cla: yes)
[23112](https://github.com/flutter/engine/pull/23112) Roll Skia from f52a8112909c to 632a23afa487 (10 revisions) (cla: yes, waiting for tree to go green)
[23114](https://github.com/flutter/engine/pull/23114) Roll Skia from 632a23afa487 to 6f31e27f1e29 (1 revision) (cla: yes, waiting for tree to go green)
[23115](https://github.com/flutter/engine/pull/23115) Fix recursive access to SkImage in image resurrector (cla: yes)
[23118](https://github.com/flutter/engine/pull/23118) Roll Skia from 6f31e27f1e29 to 85fa75616dfe (7 revisions) (cla: yes, waiting for tree to go green)
[23119](https://github.com/flutter/engine/pull/23119) Roll Skia from 85fa75616dfe to d6f2338ab194 (3 revisions) (cla: yes, waiting for tree to go green)
[23120](https://github.com/flutter/engine/pull/23120) Rename PointerState.isDown as per style guide (cla: yes)
[23122](https://github.com/flutter/engine/pull/23122) Roll Skia from d6f2338ab194 to 1d89532d5988 (1 revision) (cla: yes, waiting for tree to go green)
[23124](https://github.com/flutter/engine/pull/23124) Add missing sdk constriant in pubspec.yaml files. (cla: yes)
[23125](https://github.com/flutter/engine/pull/23125) Roll Fuchsia Mac SDK from acylwa3i4... to chLTYsKMR... (cla: yes, waiting for tree to go green)
[23126](https://github.com/flutter/engine/pull/23126) Roll Skia from 1d89532d5988 to 7839f66540b6 (1 revision) (cla: yes, waiting for tree to go green)
[23127](https://github.com/flutter/engine/pull/23127) Roll Fuchsia Linux SDK from TIKHoiQyP... to wu6yV-_BL... (cla: yes, waiting for tree to go green)
[23128](https://github.com/flutter/engine/pull/23128) [fuchsia] Add wrapper for zx_clock_get_monotonic. (cla: yes, platform-fuchsia)
[23129](https://github.com/flutter/engine/pull/23129) Roll Skia from 7839f66540b6 to 20f1b3462878 (1 revision) (cla: yes, waiting for tree to go green)
[23130](https://github.com/flutter/engine/pull/23130) AssetResolver updating in AssetManager for Dynamic features (cla: yes, platform-android, waiting for tree to go green)
[23131](https://github.com/flutter/engine/pull/23131) Fix engine in preparation for implementing https://github.com/dart-lang/language/issues/1274 (cla: yes)
[23132](https://github.com/flutter/engine/pull/23132) Roll Skia from 20f1b3462878 to 995f0366bd21 (2 revisions) (cla: yes, waiting for tree to go green)
[23133](https://github.com/flutter/engine/pull/23133) [web] Rich paragraph getPositionForOffset (cla: yes, platform-web)
[23135](https://github.com/flutter/engine/pull/23135) Roll Skia from 995f0366bd21 to b64da3907f76 (1 revision) (cla: yes, waiting for tree to go green)
[23136](https://github.com/flutter/engine/pull/23136) [web] Rich text painting on bitmap canvas (cla: yes, platform-web, waiting for tree to go green)
[23138](https://github.com/flutter/engine/pull/23138) Fix argument specifier and type for g_warning() (cla: yes, waiting for tree to go green)
[23142](https://github.com/flutter/engine/pull/23142) Roll Skia from b64da3907f76 to 81da68af2ecf (7 revisions) (cla: yes, waiting for tree to go green)
[23143](https://github.com/flutter/engine/pull/23143) Roll Fuchsia Mac SDK from chLTYsKMR... to RDUxjnng0... (cla: yes, waiting for tree to go green)
[23144](https://github.com/flutter/engine/pull/23144) Add --strict_null_safety_checks to the Dart flag allowlist (cla: yes)
[23145](https://github.com/flutter/engine/pull/23145) Roll Fuchsia Linux SDK from wu6yV-_BL... to _l04etgVd... (cla: yes, waiting for tree to go green)
[23150](https://github.com/flutter/engine/pull/23150) Make it easier to turn on Xcode symlinks (cla: yes, waiting for tree to go green)
[23151](https://github.com/flutter/engine/pull/23151) Force android_lint to run in unsound null safety mode (cla: yes)
[23152](https://github.com/flutter/engine/pull/23152) Roll Skia from 81da68af2ecf to 7b920446a8fc (14 revisions) (cla: yes, waiting for tree to go green)
[23153](https://github.com/flutter/engine/pull/23153) Update ios to use new YUVA texture SkImage factory (cla: yes, platform-ios)
[23154](https://github.com/flutter/engine/pull/23154) Fix macOS crash when modifier keys pressed. (cla: yes)
[23155](https://github.com/flutter/engine/pull/23155) Roll fuchsia toolchain (cla: yes)
[23158](https://github.com/flutter/engine/pull/23158) Update FlutterPlatformViewsTests (cla: yes, platform-ios, waiting for tree to go green)
[23160](https://github.com/flutter/engine/pull/23160) [web] Placeholders for rich paragraphs (cla: yes, platform-web)
[23161](https://github.com/flutter/engine/pull/23161) Revert "[web] Switch web-render option default to auto" (cla: yes)
[23162](https://github.com/flutter/engine/pull/23162) [web] Enable the new rich paragraph implementation (cla: yes, platform-web)
[23164](https://github.com/flutter/engine/pull/23164) Roll Skia from 7b920446a8fc to dfc880bd9ba0 (14 revisions) (cla: yes, waiting for tree to go green)
[23165](https://github.com/flutter/engine/pull/23165) Manual Roll Dart SDK from 5969f5653830 to b59de86059f3 (9 revisions) (cla: yes)
[23166](https://github.com/flutter/engine/pull/23166) Disable FlutterPluginAppLifeCycleDelegateTest testWillResignActive (cla: yes, platform-ios)
[23170](https://github.com/flutter/engine/pull/23170) Roll Fuchsia Linux SDK from _l04etgVd... to nkgnDjAl3... (cla: yes, waiting for tree to go green)
[23175](https://github.com/flutter/engine/pull/23175) Fix background crash when FlutterView going appear while app goes background (cla: yes, platform-ios, waiting for tree to go green)
[23177](https://github.com/flutter/engine/pull/23177) Roll Fuchsia Mac SDK from RDUxjnng0... to QDs-PyheO... (cla: yes, waiting for tree to go green)
[23179](https://github.com/flutter/engine/pull/23179) Roll Dart SDK from b59de86059f3 to 2a78a2978983 (1 revision) (cla: yes, waiting for tree to go green)
[23180](https://github.com/flutter/engine/pull/23180) Roll Skia from dfc880bd9ba0 to 5d3227096daa (8 revisions) (cla: yes, waiting for tree to go green)
[23181](https://github.com/flutter/engine/pull/23181) Roll Dart SDK from 2a78a2978983 to c91b639b4cb3 (1 revision) (cla: yes, waiting for tree to go green)
[23182](https://github.com/flutter/engine/pull/23182) Roll Skia from 5d3227096daa to 7bfdb1044916 (1 revision) (cla: yes, waiting for tree to go green)
[23187](https://github.com/flutter/engine/pull/23187) Re-merge Switch web-render option default to auto. Add documentation (cla: yes)
[23188](https://github.com/flutter/engine/pull/23188) Call JavaVM::AttachCurrentThread only once per thread (cla: yes, platform-android, waiting for tree to go green)
[23190](https://github.com/flutter/engine/pull/23190) Roll Fuchsia Linux SDK from nkgnDjAl3... to EAlB-FVPL... (cla: yes, waiting for tree to go green)
[23192](https://github.com/flutter/engine/pull/23192) Roll Fuchsia Mac SDK from QDs-PyheO... to zCiq3y-6p... (cla: yes, waiting for tree to go green)
[23195](https://github.com/flutter/engine/pull/23195) Roll Skia from 7bfdb1044916 to 80dc74b30b5a (2 revisions) (cla: yes, waiting for tree to go green)
[23196](https://github.com/flutter/engine/pull/23196) Roll Fuchsia Linux SDK from EAlB-FVPL... to Dc8mL2839... (cla: yes, waiting for tree to go green)
[23198](https://github.com/flutter/engine/pull/23198) Roll Skia from 80dc74b30b5a to e78f8cebca01 (1 revision) (cla: yes, waiting for tree to go green)
[23199](https://github.com/flutter/engine/pull/23199) Roll Skia from e78f8cebca01 to 2d44549a1f3a (1 revision) (cla: yes, waiting for tree to go green)
[23200](https://github.com/flutter/engine/pull/23200) Roll Fuchsia Mac SDK from zCiq3y-6p... to h_iq6T_cf... (cla: yes, waiting for tree to go green)
[23201](https://github.com/flutter/engine/pull/23201) Roll Fuchsia Linux SDK from Dc8mL2839... to byrJ9URZU... (cla: yes, waiting for tree to go green)
[23207](https://github.com/flutter/engine/pull/23207) Roll Fuchsia Linux SDK from byrJ9URZU... to RpLap5pIv... (cla: yes, waiting for tree to go green)
[23208](https://github.com/flutter/engine/pull/23208) Roll Fuchsia Mac SDK from h_iq6T_cf... to 5LKY3wsMO... (cla: yes, waiting for tree to go green)
[23209](https://github.com/flutter/engine/pull/23209) Roll Skia from 2d44549a1f3a to f4ad8c537982 (1 revision) (cla: yes, waiting for tree to go green)
[23210](https://github.com/flutter/engine/pull/23210) Roll Skia from f4ad8c537982 to 88883c4ca259 (2 revisions) (cla: yes, waiting for tree to go green)
[23211](https://github.com/flutter/engine/pull/23211) Roll Dart SDK from c91b639b4cb3 to 1f7dd915f40a (1 revision) (cla: yes, waiting for tree to go green)
[23212](https://github.com/flutter/engine/pull/23212) Roll Fuchsia Linux SDK from RpLap5pIv... to zN1Y7c3i4... (cla: yes, waiting for tree to go green)
[23213](https://github.com/flutter/engine/pull/23213) Roll Skia from 88883c4ca259 to 6aea07880248 (1 revision) (cla: yes, waiting for tree to go green)
[23216](https://github.com/flutter/engine/pull/23216) Roll Skia from 6aea07880248 to e42716032b4b (1 revision) (cla: yes, waiting for tree to go green)
[23218](https://github.com/flutter/engine/pull/23218) fork additional raw chromium a11y code (cla: yes)
[23220](https://github.com/flutter/engine/pull/23220) Revert "Reland path volatility tracker" (cla: yes)
[23221](https://github.com/flutter/engine/pull/23221) Load App.framework in macOS app (cla: yes)
[23222](https://github.com/flutter/engine/pull/23222) Roll Skia from e42716032b4b to c3622f43c189 (2 revisions) (cla: yes, waiting for tree to go green)
[23223](https://github.com/flutter/engine/pull/23223) Roll Fuchsia Mac SDK from 5LKY3wsMO... to WQ0J2Yoll... (cla: yes, waiting for tree to go green)
[23224](https://github.com/flutter/engine/pull/23224) Rename DynamicFeature->DeferredComponent and impl uninstall DeferredComponents (cla: yes, platform-android)
[23226](https://github.com/flutter/engine/pull/23226) Reland path volatility tracker, disabling it if deterministic rendering is requested (cla: yes)
[23227](https://github.com/flutter/engine/pull/23227) Roll Skia from c3622f43c189 to 960bd2dbaa6a (3 revisions) (cla: yes, waiting for tree to go green)
[23228](https://github.com/flutter/engine/pull/23228) Roll Dart SDK from 1f7dd915f40a to 0e52b2abe517 (2 revisions) (cla: yes, waiting for tree to go green)
[23230](https://github.com/flutter/engine/pull/23230) cache closures from hooks.dart (cla: yes)
[23231](https://github.com/flutter/engine/pull/23231) Roll Fuchsia Linux SDK from zN1Y7c3i4... to C00LDxUk0... (cla: yes, waiting for tree to go green)
[23232](https://github.com/flutter/engine/pull/23232) Roll Dart SDK from 0e52b2abe517 to 1604b1a3437f (1 revision) (cla: yes, waiting for tree to go green)
[23235](https://github.com/flutter/engine/pull/23235) Roll Dart SDK from 1604b1a3437f to 62b0361d470f (1 revision) (cla: yes, waiting for tree to go green)
[23236](https://github.com/flutter/engine/pull/23236) Roll Fuchsia Mac SDK from WQ0J2Yoll... to PzW6aMw3A... (cla: yes, waiting for tree to go green)
[23237](https://github.com/flutter/engine/pull/23237) Roll Skia from 960bd2dbaa6a to f02df4db6118 (3 revisions) (cla: yes, waiting for tree to go green)
[23239](https://github.com/flutter/engine/pull/23239) Revert "Reland path volatility tracker (#23063)" (#23220) (cla: yes)
[23240](https://github.com/flutter/engine/pull/23240) Roll Skia from f02df4db6118 to 47726a1cff59 (5 revisions) (cla: yes, waiting for tree to go green)
[23241](https://github.com/flutter/engine/pull/23241) Roll Fuchsia Linux SDK from C00LDxUk0... to KR8LcMqAc... (cla: yes, waiting for tree to go green)
[23243](https://github.com/flutter/engine/pull/23243) fuchsia: Shutdown Dart VM properly (cla: yes, platform-fuchsia)
[23245](https://github.com/flutter/engine/pull/23245) Roll Skia from 47726a1cff59 to f2ce4e91a2a5 (1 revision) (cla: yes, waiting for tree to go green)
[23246](https://github.com/flutter/engine/pull/23246) Revert "Re-merge Switch web-render option default to auto. Add documentation" (cla: yes)
[23250](https://github.com/flutter/engine/pull/23250) Roll Skia from f2ce4e91a2a5 to c5ff48648ada (6 revisions) (cla: yes, waiting for tree to go green)
[23251](https://github.com/flutter/engine/pull/23251) Roll Dart SDK from 62b0361d470f to 7d35f9bc72fb (1 revision) (cla: yes, waiting for tree to go green)
[23254](https://github.com/flutter/engine/pull/23254) Roll Skia from c5ff48648ada to 3624aba91f44 (10 revisions) (cla: yes, waiting for tree to go green)
[23255](https://github.com/flutter/engine/pull/23255) fixes android deeplink to push the path only (cla: yes, platform-android, waiting for tree to go green)
[23256](https://github.com/flutter/engine/pull/23256) fixes text area transitions both for mobile and desktop (cla: yes)
[23257](https://github.com/flutter/engine/pull/23257) Roll Fuchsia Mac SDK from PzW6aMw3A... to gVgXlVNti... (cla: yes, waiting for tree to go green)
[23258](https://github.com/flutter/engine/pull/23258) Roll Dart SDK from 7d35f9bc72fb to f5b451f0dc86 (1 revision) (cla: yes, waiting for tree to go green)
[23259](https://github.com/flutter/engine/pull/23259) Roll Skia from 3624aba91f44 to fa711c4c756a (1 revision) (cla: yes, waiting for tree to go green)
[23260](https://github.com/flutter/engine/pull/23260) Roll Dart SDK from f5b451f0dc86 to 6e1161e70a00 (1 revision) (cla: yes, waiting for tree to go green)
[23261](https://github.com/flutter/engine/pull/23261) Roll Fuchsia Linux SDK from KR8LcMqAc... to E4CJZ_QRf... (cla: yes, waiting for tree to go green)
[23262](https://github.com/flutter/engine/pull/23262) [fuchsia][input] Migrate Flutter to "input3" (cla: yes, platform-fuchsia, waiting for tree to go green)
[23263](https://github.com/flutter/engine/pull/23263) Roll Skia from fa711c4c756a to 4e0e8d4124f5 (1 revision) (cla: yes, waiting for tree to go green)
[23264](https://github.com/flutter/engine/pull/23264) Roll Fuchsia Mac SDK from gVgXlVNti... to IwRHzb2yJ... (cla: yes, waiting for tree to go green)
[23265](https://github.com/flutter/engine/pull/23265) Roll Skia from 4e0e8d4124f5 to 6bba3d8a5a23 (1 revision) (cla: yes, waiting for tree to go green)
[23268](https://github.com/flutter/engine/pull/23268) Roll Skia from 6bba3d8a5a23 to 839eef3e9a99 (8 revisions) (cla: yes, waiting for tree to go green)
[23269](https://github.com/flutter/engine/pull/23269) Roll Skia from 839eef3e9a99 to 20fad3206488 (5 revisions) (cla: yes, waiting for tree to go green)
[23270](https://github.com/flutter/engine/pull/23270) Roll Fuchsia Linux SDK from E4CJZ_QRf... to 08xLMgNKn... (cla: yes, waiting for tree to go green)
[23271](https://github.com/flutter/engine/pull/23271) Roll Skia from 20fad3206488 to 61f17c10d61d (3 revisions) (cla: yes, waiting for tree to go green)
[23272](https://github.com/flutter/engine/pull/23272) Roll Dart SDK from 6e1161e70a00 to f79fb10acca8 (1 revision) (cla: yes, waiting for tree to go green)
[23273](https://github.com/flutter/engine/pull/23273) Roll Skia from 61f17c10d61d to 0247e9ea1c73 (5 revisions) (cla: yes, waiting for tree to go green)
[23277](https://github.com/flutter/engine/pull/23277) Roll Fuchsia Mac SDK from IwRHzb2yJ... to 3SiIWhiUi... (cla: yes, waiting for tree to go green)
[23278](https://github.com/flutter/engine/pull/23278) Roll Skia from 0247e9ea1c73 to d12c91ba318b (1 revision) (cla: yes, waiting for tree to go green)
[23280](https://github.com/flutter/engine/pull/23280) Roll Skia from d12c91ba318b to 33079a7c5a98 (3 revisions) (cla: yes, waiting for tree to go green)
[23281](https://github.com/flutter/engine/pull/23281) Roll Dart SDK from f79fb10acca8 to 1c14d9bb3528 (2 revisions) (cla: yes, waiting for tree to go green)
[23282](https://github.com/flutter/engine/pull/23282) Roll Fuchsia Linux SDK from 08xLMgNKn... to 2Vw2BjQjZ... (cla: yes, waiting for tree to go green)
[23285](https://github.com/flutter/engine/pull/23285) Roll Fuchsia Mac SDK from 3SiIWhiUi... to 1X7xvxZM_... (cla: yes, waiting for tree to go green)
[23289](https://github.com/flutter/engine/pull/23289) Roll Fuchsia Linux SDK from 2Vw2BjQjZ... to umbXBk__x... (cla: yes, waiting for tree to go green)
[23293](https://github.com/flutter/engine/pull/23293) Roll Fuchsia Mac SDK from 1X7xvxZM_... to fFxQZY6fB... (cla: yes, waiting for tree to go green)
[23297](https://github.com/flutter/engine/pull/23297) Roll Fuchsia Mac SDK from fFxQZY6fB... to SFmThOFqb... (cla: yes, waiting for tree to go green)
[23301](https://github.com/flutter/engine/pull/23301) Roll Fuchsia Linux SDK from umbXBk__x... to br-O-oiDW... (cla: yes, waiting for tree to go green)
[23304](https://github.com/flutter/engine/pull/23304) Roll Fuchsia Mac SDK from SFmThOFqb... to 6vW4LheTp... (cla: yes, waiting for tree to go green)
[23305](https://github.com/flutter/engine/pull/23305) Roll Fuchsia Linux SDK from br-O-oiDW... to XqTqmKfJI... (cla: yes, waiting for tree to go green)
[23310](https://github.com/flutter/engine/pull/23310) Roll Skia from 33079a7c5a98 to 9a27566e0cbc (4 revisions) (cla: yes, waiting for tree to go green)
[23312](https://github.com/flutter/engine/pull/23312) Roll Skia from 9a27566e0cbc to f94348fdd528 (11 revisions) (cla: yes, waiting for tree to go green)
[23313](https://github.com/flutter/engine/pull/23313) [web] Reland - Switch web-render option default to auto (cla: yes)
[23315](https://github.com/flutter/engine/pull/23315) [web] Prevent recycling canvas twice due to paint queue (cla: yes)
[23316](https://github.com/flutter/engine/pull/23316) Roll Skia from f94348fdd528 to 16d86135b739 (5 revisions) (cla: yes, waiting for tree to go green)
[23319](https://github.com/flutter/engine/pull/23319) Roll Skia from 16d86135b739 to 52130b09093d (2 revisions) (cla: yes, waiting for tree to go green)
[23320](https://github.com/flutter/engine/pull/23320) Roll Skia from 52130b09093d to d1b593f446d3 (1 revision) (cla: yes, waiting for tree to go green)
[23321](https://github.com/flutter/engine/pull/23321) Revert "[web] Reland - Switch web-render option default to auto" (cla: yes)
[23324](https://github.com/flutter/engine/pull/23324) Roll Fuchsia Linux SDK from XqTqmKfJI... to 0g8KXafVZ... (cla: yes, waiting for tree to go green)
[23325](https://github.com/flutter/engine/pull/23325) Roll Fuchsia Mac SDK from 6vW4LheTp... to NO2OUA57b... (cla: yes, waiting for tree to go green)
[23326](https://github.com/flutter/engine/pull/23326) Roll Skia from d1b593f446d3 to c85bce8ea6c8 (1 revision) (cla: yes, waiting for tree to go green)
[23327](https://github.com/flutter/engine/pull/23327) Roll Skia from c85bce8ea6c8 to 964f0a028e67 (9 revisions) (cla: yes, waiting for tree to go green)
[23328](https://github.com/flutter/engine/pull/23328) Roll Skia from 964f0a028e67 to d9b9c83e8757 (2 revisions) (cla: yes, waiting for tree to go green)
[23329](https://github.com/flutter/engine/pull/23329) Roll Fuchsia Linux SDK from 0g8KXafVZ... to gj7bWTfxu... (cla: yes, waiting for tree to go green)
[23330](https://github.com/flutter/engine/pull/23330) Roll Skia from d9b9c83e8757 to fe4611c18e9d (2 revisions) (cla: yes, waiting for tree to go green)
[23332](https://github.com/flutter/engine/pull/23332) Roll Skia from fe4611c18e9d to 36129133f106 (1 revision) (cla: yes, waiting for tree to go green)
[23333](https://github.com/flutter/engine/pull/23333) Roll Skia from 36129133f106 to c56e2e5aa65d (3 revisions) (cla: yes, waiting for tree to go green)
[23334](https://github.com/flutter/engine/pull/23334) Roll Skia from c56e2e5aa65d to 791f8d8c3bd5 (1 revision) (cla: yes, waiting for tree to go green)
[23335](https://github.com/flutter/engine/pull/23335) Roll Skia from 791f8d8c3bd5 to f84dfd69861a (1 revision) (cla: yes, waiting for tree to go green)
[23336](https://github.com/flutter/engine/pull/23336) Add support for different simulator architectures (cla: yes)
[23337](https://github.com/flutter/engine/pull/23337) Roll Fuchsia Mac SDK from NO2OUA57b... to hIpDO_txN... (cla: yes, waiting for tree to go green)
[23339](https://github.com/flutter/engine/pull/23339) Roll Skia from f84dfd69861a to d150a58c04ed (1 revision) (cla: yes, waiting for tree to go green)
[23340](https://github.com/flutter/engine/pull/23340) Roll Skia from d150a58c04ed to d3a91db48d57 (3 revisions) (cla: yes, waiting for tree to go green)
[23341](https://github.com/flutter/engine/pull/23341) Roll Fuchsia Linux SDK from gj7bWTfxu... to GK7mTxGcs... (cla: yes, waiting for tree to go green)
[23344](https://github.com/flutter/engine/pull/23344) Roll Skia from d3a91db48d57 to 8f924ac0ce63 (1 revision) (cla: yes, waiting for tree to go green)
[23347](https://github.com/flutter/engine/pull/23347) Roll Skia from 8f924ac0ce63 to 4f23dec7427b (5 revisions) (cla: yes, waiting for tree to go green)
[23348](https://github.com/flutter/engine/pull/23348) Roll CanvasKit to 0.22 (cla: yes, platform-web)
[23350](https://github.com/flutter/engine/pull/23350) Switch to new virtuals on SkCanvas (cla: yes)
[23351](https://github.com/flutter/engine/pull/23351) Roll Skia from 4f23dec7427b to 6d4577bc5208 (5 revisions) (cla: yes, waiting for tree to go green)
[23353](https://github.com/flutter/engine/pull/23353) Roll Fuchsia Mac SDK from hIpDO_txN... to Sjhog2e8Z... (cla: yes, waiting for tree to go green)
[23354](https://github.com/flutter/engine/pull/23354) Roll Skia from 6d4577bc5208 to b39d076b6096 (1 revision) (cla: yes, waiting for tree to go green)
[23355](https://github.com/flutter/engine/pull/23355) Roll Fuchsia Linux SDK from GK7mTxGcs... to Sa7TryuTn... (cla: yes, waiting for tree to go green)
[23356](https://github.com/flutter/engine/pull/23356) Roll Skia from b39d076b6096 to 818fd6d35788 (7 revisions) (cla: yes, waiting for tree to go green)
[23357](https://github.com/flutter/engine/pull/23357) Revert "[CanvasKit] Automatically fall back to Noto fonts (#23096)" (cla: yes)
[23359](https://github.com/flutter/engine/pull/23359) Roll Skia from 818fd6d35788 to 0d07e14f1e28 (4 revisions) (cla: yes, waiting for tree to go green)
[23361](https://github.com/flutter/engine/pull/23361) [web] fixing text editing for autofill with semantics (cla: yes)
[23362](https://github.com/flutter/engine/pull/23362) Support Mice in iPadOS 13.4+ (cla: yes, platform-ios)
[23363](https://github.com/flutter/engine/pull/23363) Remove dead code for 3x3 matrices (cla: yes)
[23365](https://github.com/flutter/engine/pull/23365) Roll Fuchsia Mac SDK from Sjhog2e8Z... to w3l6o5YIn... (cla: yes, waiting for tree to go green)
[23367](https://github.com/flutter/engine/pull/23367) Roll Fuchsia Linux SDK from Sa7TryuTn... to 9zYti9vPP... (cla: yes, waiting for tree to go green)
[23378](https://github.com/flutter/engine/pull/23378) Roll Skia from 0d07e14f1e28 to af35386f2e28 (10 revisions) (cla: yes, waiting for tree to go green)
[23382](https://github.com/flutter/engine/pull/23382) Roll Fuchsia Mac SDK from w3l6o5YIn... to xAJyFB5RF... (cla: yes, waiting for tree to go green)
[23390](https://github.com/flutter/engine/pull/23390) Roll Fuchsia Linux SDK from 9zYti9vPP... to -LcFx-dyk... (cla: yes, waiting for tree to go green)
[23391](https://github.com/flutter/engine/pull/23391) Roll Fuchsia Mac SDK from xAJyFB5RF... to jVpF41b-V... (cla: yes, waiting for tree to go green)
[23398](https://github.com/flutter/engine/pull/23398) Roll Fuchsia Linux SDK from -LcFx-dyk... to PJX9mmc_C... (cla: yes, waiting for tree to go green)
[23400](https://github.com/flutter/engine/pull/23400) Roll Fuchsia Mac SDK from jVpF41b-V... to zKX_gO4KU... (cla: yes, waiting for tree to go green)
[23401](https://github.com/flutter/engine/pull/23401) Roll Skia from af35386f2e28 to 8898c4d02bbd (1 revision) (cla: yes, waiting for tree to go green)
[23402](https://github.com/flutter/engine/pull/23402) Roll Skia from 8898c4d02bbd to fc914f43cdee (1 revision) (cla: yes, waiting for tree to go green)
[23403](https://github.com/flutter/engine/pull/23403) Roll Fuchsia Linux SDK from PJX9mmc_C... to lxKr8i_TC... (cla: yes, waiting for tree to go green)
[23404](https://github.com/flutter/engine/pull/23404) Roll Fuchsia Mac SDK from zKX_gO4KU... to kPkJqgYZ-... (cla: yes, waiting for tree to go green)
[23405](https://github.com/flutter/engine/pull/23405) Roll Skia from fc914f43cdee to 2a92f13579fb (1 revision) (cla: yes, waiting for tree to go green)
[23406](https://github.com/flutter/engine/pull/23406) Roll Skia from 2a92f13579fb to d8ff313e4485 (2 revisions) (cla: yes, waiting for tree to go green)
[23407](https://github.com/flutter/engine/pull/23407) Roll Skia from d8ff313e4485 to eae5c1619083 (1 revision) (cla: yes, waiting for tree to go green)
[23411](https://github.com/flutter/engine/pull/23411) Roll Fuchsia Linux SDK from lxKr8i_TC... to nVvyfiqlp... (cla: yes, waiting for tree to go green)
[23413](https://github.com/flutter/engine/pull/23413) Roll Skia from eae5c1619083 to 04ccda6c28c4 (1 revision) (cla: yes, waiting for tree to go green)
[23415](https://github.com/flutter/engine/pull/23415) Roll Fuchsia Mac SDK from kPkJqgYZ-... to AqAeIeknz... (cla: yes, waiting for tree to go green)
[23416](https://github.com/flutter/engine/pull/23416) Roll Skia from 04ccda6c28c4 to 2207edd88cfe (1 revision) (cla: yes, waiting for tree to go green)
[23417](https://github.com/flutter/engine/pull/23417) Roll Skia from 2207edd88cfe to df49e6927b43 (2 revisions) (cla: yes, waiting for tree to go green)
[23419](https://github.com/flutter/engine/pull/23419) Roll Skia from df49e6927b43 to dc435fa60df6 (1 revision) (cla: yes, waiting for tree to go green)
[23421](https://github.com/flutter/engine/pull/23421) Roll Fuchsia Linux SDK from nVvyfiqlp... to 597LHqqTy... (cla: yes, waiting for tree to go green)
[23422](https://github.com/flutter/engine/pull/23422) Roll Skia from dc435fa60df6 to 1efa14d9f4f5 (2 revisions) (cla: yes, waiting for tree to go green)
[23424](https://github.com/flutter/engine/pull/23424) Roll Fuchsia Mac SDK from AqAeIeknz... to zMCnd-3cP... (cla: yes, waiting for tree to go green)
[23426](https://github.com/flutter/engine/pull/23426) Roll Skia from 1efa14d9f4f5 to 0bfbfe5d30c0 (4 revisions) (cla: yes, waiting for tree to go green)
[23427](https://github.com/flutter/engine/pull/23427) Roll Skia from 0bfbfe5d30c0 to 6356cb1904b8 (4 revisions) (cla: yes, waiting for tree to go green)
[23429](https://github.com/flutter/engine/pull/23429) Use syslog for logging on Fuchsia (cla: yes, platform-fuchsia)
[23430](https://github.com/flutter/engine/pull/23430) Add flt-renderer and flt-build-mode debug attributes to <body> (cla: yes, platform-web)
[23431](https://github.com/flutter/engine/pull/23431) Roll Skia from 6356cb1904b8 to 2833b08efbe6 (6 revisions) (cla: yes, waiting for tree to go green)
[23432](https://github.com/flutter/engine/pull/23432) [metal] [macos] Suffix for metal builds macos (cla: yes)
[23433](https://github.com/flutter/engine/pull/23433) [web] specify all defines used for html, ck, auto rendering modes (cla: yes)
[23434](https://github.com/flutter/engine/pull/23434) Roll Skia from 2833b08efbe6 to 736c992966b5 (4 revisions) (cla: yes, waiting for tree to go green)
[23435](https://github.com/flutter/engine/pull/23435) started sharing GPU contexts between spawned engines (cla: yes, platform-ios)
[23439](https://github.com/flutter/engine/pull/23439) Update the web profiler_test to wrap benchmark callbacks with allowInterop (cla: yes)
[23440](https://github.com/flutter/engine/pull/23440) add linux arm host builder (cla: yes, waiting for tree to go green)
[23441](https://github.com/flutter/engine/pull/23441) Roll Skia from 736c992966b5 to 854ee85736e3 (2 revisions) (cla: yes, waiting for tree to go green)
[23442](https://github.com/flutter/engine/pull/23442) Disable focused_text_field golden on Firefox (cla: yes)
[23444](https://github.com/flutter/engine/pull/23444) Roll Dart SDK from 1c14d9bb3528 to df54886d1295 (14 revisions) (cla: yes, waiting for tree to go green)
[23445](https://github.com/flutter/engine/pull/23445) Roll Fuchsia Linux SDK from 597LHqqTy... to 0R7_vIAML... (cla: yes, waiting for tree to go green)
[23446](https://github.com/flutter/engine/pull/23446) Roll Skia from 854ee85736e3 to 2ca39919583f (2 revisions) (cla: yes, waiting for tree to go green)
[23449](https://github.com/flutter/engine/pull/23449) Roll Fuchsia Mac SDK from zMCnd-3cP... to de_114mvQ... (cla: yes, waiting for tree to go green)
[23450](https://github.com/flutter/engine/pull/23450) Roll Dart SDK from df54886d1295 to 996a58122821 (1 revision) (cla: yes, waiting for tree to go green)
[23453](https://github.com/flutter/engine/pull/23453) Roll Skia from 2ca39919583f to 32d68537a88c (11 revisions) (cla: yes, waiting for tree to go green)
[23454](https://github.com/flutter/engine/pull/23454) [web] Reland - Switch web-render option default to auto (cla: yes)
[23455](https://github.com/flutter/engine/pull/23455) Roll Skia from 32d68537a88c to 417743f806d1 (4 revisions) (cla: yes, waiting for tree to go green)
[23456](https://github.com/flutter/engine/pull/23456) Revert "bump fuchsia toolchain to clang-12" (cla: yes)
[23457](https://github.com/flutter/engine/pull/23457) Fix SurfaceView usage when status bar is transparent (cla: yes, platform-android)
[23459](https://github.com/flutter/engine/pull/23459) Switch to directional shadows (cla: yes)
[23461](https://github.com/flutter/engine/pull/23461) Roll Fuchsia Linux SDK from 0R7_vIAML... to 5jKxFxRiQ... (cla: yes, waiting for tree to go green)
[23463](https://github.com/flutter/engine/pull/23463) Roll Dart SDK from 996a58122821 to 9542c7bc569a (3 revisions) (cla: yes, waiting for tree to go green)
[23464](https://github.com/flutter/engine/pull/23464) Roll Skia from 417743f806d1 to a7b7964a237a (19 revisions) (cla: yes, waiting for tree to go green)
[23470](https://github.com/flutter/engine/pull/23470) [web] Draw shadows for text in rich paragraphs (cla: yes, platform-web)
[23471](https://github.com/flutter/engine/pull/23471) update browser history switching (cla: yes, platform-web, waiting for tree to go green)
[23472](https://github.com/flutter/engine/pull/23472) Revert Dart roll (#23444) (cla: yes, waiting for tree to go green)
[23474](https://github.com/flutter/engine/pull/23474) Provide a runtime switch for selecting SkParagraph text layout (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23476](https://github.com/flutter/engine/pull/23476) Update virtual to take sampling (cla: yes, waiting for tree to go green)
[23479](https://github.com/flutter/engine/pull/23479) Roll Skia from a7b7964a237a to d64a3193cd49 (5 revisions) (cla: yes, waiting for tree to go green)
[23482](https://github.com/flutter/engine/pull/23482) Roll Fuchsia Mac SDK from de_114mvQ... to cLR0CUb-e... (cla: yes, waiting for tree to go green)
[23484](https://github.com/flutter/engine/pull/23484) Roll Fuchsia Linux SDK from 5jKxFxRiQ... to qedaMC5nT... (cla: yes, waiting for tree to go green)
[23486](https://github.com/flutter/engine/pull/23486) Roll Dart SDK from 1c14d9bb3528 to 6a6a854523fd (21 revisions) (cla: yes, waiting for tree to go green)
[23487](https://github.com/flutter/engine/pull/23487) Roll Skia from d64a3193cd49 to be0b3b7363a9 (3 revisions) (cla: yes, waiting for tree to go green)
[23488](https://github.com/flutter/engine/pull/23488) Switched engine to use buffer collection. (cla: yes)
[23489](https://github.com/flutter/engine/pull/23489) [tests] Normalize SkImage before comparison. (cla: yes)
[23491](https://github.com/flutter/engine/pull/23491) Implements accessibility bridge in common library (accessibility, affects: desktop, cla: yes, waiting for tree to go green)
[23493](https://github.com/flutter/engine/pull/23493) SDK constraints are now just generally required (cla: yes, waiting for tree to go green)
[23494](https://github.com/flutter/engine/pull/23494) Sync the pull request template with the flutter/flutter version (cla: yes)
[23495](https://github.com/flutter/engine/pull/23495) State Restoration for iOS (cla: yes, platform-ios, waiting for tree to go green)
[23499](https://github.com/flutter/engine/pull/23499) Adds a mechanism for announce events to be forwarded to a11y. (cla: yes, waiting for tree to go green)
[23503](https://github.com/flutter/engine/pull/23503) During image decoding, avoid using smart pointers for DartWrappables that cross thread-boundaries. (cla: yes, waiting for tree to go green)
[23504](https://github.com/flutter/engine/pull/23504) Make pending event handling more lenient to allow out of order responses (cla: yes)
[23506](https://github.com/flutter/engine/pull/23506) Revert "bump fuchsia toolchain to clang-12" (#23456) (cla: yes)
[23508](https://github.com/flutter/engine/pull/23508) Started sharing skia contexts on the io thread (cla: yes)
[23509](https://github.com/flutter/engine/pull/23509) Roll Fuchsia Mac SDK from cLR0CUb-e... to IGtSAREVb... (cla: yes, waiting for tree to go green)
[23511](https://github.com/flutter/engine/pull/23511) disable UnassignedIdsAreReused flaky test (cla: yes)
[23512](https://github.com/flutter/engine/pull/23512) Roll Fuchsia Linux SDK from qedaMC5nT... to R9qkTURF2... (cla: yes, waiting for tree to go green)
[23513](https://github.com/flutter/engine/pull/23513) Update outdated links (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23515](https://github.com/flutter/engine/pull/23515) [web] Fix tests in preparation for enabling new rich paragraph implementation (cla: yes, platform-web)
[23516](https://github.com/flutter/engine/pull/23516) Skip the FlEngineTest.SettingsPlugin test (cla: yes)
[23518](https://github.com/flutter/engine/pull/23518) fix ax unique id flake (cla: yes, waiting for tree to go green)
[23522](https://github.com/flutter/engine/pull/23522) ci: Print output in case of compile error (cla: yes)
[23523](https://github.com/flutter/engine/pull/23523) Fix double free in settings plugin tests (cla: yes)
[23524](https://github.com/flutter/engine/pull/23524) Implement delayed key event synthesis for Windows (cla: yes)
[23525](https://github.com/flutter/engine/pull/23525) Roll Skia from be0b3b7363a9 to c6e25754c4ad (22 revisions) (cla: yes, waiting for tree to go green)
[23527](https://github.com/flutter/engine/pull/23527) Manual roll of Dart 60175b98ac...6a6a854523 (cla: yes)
[23528](https://github.com/flutter/engine/pull/23528) Roll Skia from c6e25754c4ad to f4ea30580c91 (1 revision) (cla: yes, waiting for tree to go green)
[23529](https://github.com/flutter/engine/pull/23529) Manual roll of Dart d7624b6ec7b...60175b98ac3 (cla: yes)
[23531](https://github.com/flutter/engine/pull/23531) Roll Skia from f4ea30580c91 to cb3bcf88e382 (3 revisions) (cla: yes, waiting for tree to go green)
[23532](https://github.com/flutter/engine/pull/23532) Roll Skia from cb3bcf88e382 to d2f51b18065a (1 revision) (cla: yes, waiting for tree to go green)
[23533](https://github.com/flutter/engine/pull/23533) Roll Skia from d2f51b18065a to f5aed172c693 (1 revision) (cla: yes, waiting for tree to go green)
[23534](https://github.com/flutter/engine/pull/23534) Roll Fuchsia Mac SDK from IGtSAREVb... to 80NV-ZWKC... (cla: yes, waiting for tree to go green)
[23536](https://github.com/flutter/engine/pull/23536) Roll Skia from f5aed172c693 to 0355118f220e (1 revision) (cla: yes, waiting for tree to go green)
[23537](https://github.com/flutter/engine/pull/23537) Use Fractal rather than Improved noise in shader mask flow unit test (cla: yes)
[23539](https://github.com/flutter/engine/pull/23539) Started asserting that metal gpu contexts are shared (cla: yes, platform-ios)
[23540](https://github.com/flutter/engine/pull/23540) [metal] Disable image comparison for gradient_metal test (cla: yes)
[23541](https://github.com/flutter/engine/pull/23541) Roll Skia from 0355118f220e to 2a735ba1cb32 (7 revisions) (cla: yes, waiting for tree to go green)
[23542](https://github.com/flutter/engine/pull/23542) [canvaskit] push methods return layers with correct class names (cla: yes, platform-web)
[23543](https://github.com/flutter/engine/pull/23543) Roll Fuchsia Linux SDK from R9qkTURF2... to kYdpRwQ7N... (cla: yes, waiting for tree to go green)
[23544](https://github.com/flutter/engine/pull/23544) Roll Skia from 2a735ba1cb32 to 00e43df25bea (6 revisions) (cla: yes, waiting for tree to go green)
[23545](https://github.com/flutter/engine/pull/23545) Add a keep annotation to the ImeSyncDeferringInsetsCallback.AnimationCallback inner class (cla: yes, platform-android)
[23547](https://github.com/flutter/engine/pull/23547) Fix leak when parsing base64. (cla: yes)
[23548](https://github.com/flutter/engine/pull/23548) Roll Skia from 00e43df25bea to 047d5bb8d39c (2 revisions) (cla: yes, waiting for tree to go green)
[23549](https://github.com/flutter/engine/pull/23549) Plumbing refactor to allow the usage of Dart_CreateIsolateInGroup (cla: yes)
[23550](https://github.com/flutter/engine/pull/23550) [canvaskit] embedded views: apply inverse scale on the left (cla: yes)
[23551](https://github.com/flutter/engine/pull/23551) [web] Fix more tests that are specific to DomParagraph (cla: yes, platform-web, waiting for tree to go green)
[23553](https://github.com/flutter/engine/pull/23553) Roll Skia from 047d5bb8d39c to 6bf6963198aa (1 revision) (cla: yes, waiting for tree to go green)
[23555](https://github.com/flutter/engine/pull/23555) Roll Skia from 6bf6963198aa to 17ce8c5ec6f4 (2 revisions) (cla: yes, waiting for tree to go green)
[23556](https://github.com/flutter/engine/pull/23556) Roll Skia from 17ce8c5ec6f4 to ae562bd177d9 (1 revision) (cla: yes, waiting for tree to go green)
[23557](https://github.com/flutter/engine/pull/23557) Roll Skia from ae562bd177d9 to 5045de33e754 (2 revisions) (cla: yes, waiting for tree to go green)
[23558](https://github.com/flutter/engine/pull/23558) Roll Fuchsia Mac SDK from 80NV-ZWKC... to mDPWTwJns... (cla: yes, waiting for tree to go green)
[23560](https://github.com/flutter/engine/pull/23560) Roll Skia from 5045de33e754 to 8f282f5d9f30 (1 revision) (cla: yes, waiting for tree to go green)
[23561](https://github.com/flutter/engine/pull/23561) Android deeplink sends "path + query" instead of just path (cla: yes, platform-android)
[23562](https://github.com/flutter/engine/pull/23562) iOS deeplink sends "path + query" instead of just path (cla: yes, platform-ios, waiting for tree to go green)
[23564](https://github.com/flutter/engine/pull/23564) Roll Fuchsia Linux SDK from kYdpRwQ7N... to KAsjGNhH6... (cla: yes, waiting for tree to go green)
[23565](https://github.com/flutter/engine/pull/23565) Roll Fuchsia Mac SDK from mDPWTwJns... to dYtTUrjF2... (cla: yes, waiting for tree to go green)
[23570](https://github.com/flutter/engine/pull/23570) Roll Fuchsia Mac SDK from dYtTUrjF2... to Zvqkcgk0A... (cla: yes, waiting for tree to go green)
[23575](https://github.com/flutter/engine/pull/23575) Roll Skia from 8f282f5d9f30 to 2199cde1f52b (1 revision) (cla: yes, waiting for tree to go green)
[23578](https://github.com/flutter/engine/pull/23578) Roll Dart SDK from d7624b6ec7bb to e7983fd4adb9 (7 revisions) (cla: yes, waiting for tree to go green)
[23579](https://github.com/flutter/engine/pull/23579) Roll Skia from 2199cde1f52b to a7548393d370 (1 revision) (cla: yes, waiting for tree to go green)
[23580](https://github.com/flutter/engine/pull/23580) Roll Fuchsia Mac SDK from Zvqkcgk0A... to UxTIYduaG... (cla: yes, waiting for tree to go green)
[23582](https://github.com/flutter/engine/pull/23582) Roll Fuchsia Linux SDK from KAsjGNhH6... to lbQ4FeXvV... (cla: yes, waiting for tree to go green)
[23583](https://github.com/flutter/engine/pull/23583) Roll Skia from a7548393d370 to 97eede48be1e (5 revisions) (cla: yes, waiting for tree to go green)
[23586](https://github.com/flutter/engine/pull/23586) Roll Dart SDK from e7983fd4adb9 to 0145b9604d3c (1 revision) (cla: yes, waiting for tree to go green)
[23587](https://github.com/flutter/engine/pull/23587) Roll Skia from 97eede48be1e to 58a8ccc59190 (2 revisions) (cla: yes, waiting for tree to go green)
[23589](https://github.com/flutter/engine/pull/23589) Roll Skia from 58a8ccc59190 to eb54bb51b112 (6 revisions) (cla: yes, waiting for tree to go green)
[23590](https://github.com/flutter/engine/pull/23590) Roll Fuchsia Mac SDK from UxTIYduaG... to oll0Dgp9o... (cla: yes, waiting for tree to go green)
[23591](https://github.com/flutter/engine/pull/23591) Roll Fuchsia Linux SDK from lbQ4FeXvV... to UB6RsTbdU... (cla: yes, waiting for tree to go green)
[23592](https://github.com/flutter/engine/pull/23592) use the profile build of CanvasKit in --profile mode (cla: yes)
[23593](https://github.com/flutter/engine/pull/23593) Roll Skia from eb54bb51b112 to 0a145b77f708 (2 revisions) (cla: yes, waiting for tree to go green)
[23594](https://github.com/flutter/engine/pull/23594) Roll Dart SDK from 0145b9604d3c to 28ec4cc111cf (1 revision) (cla: yes, waiting for tree to go green)
[23595](https://github.com/flutter/engine/pull/23595) Roll Skia from 0a145b77f708 to 52a7eca13d45 (6 revisions) (cla: yes, waiting for tree to go green)
[23596](https://github.com/flutter/engine/pull/23596) [web] Apply font-family and other styles to the paragraph element (cla: yes, platform-web, waiting for tree to go green)
[23597](https://github.com/flutter/engine/pull/23597) [web] Convert Ctrl+mousewheel to pointerdata (cla: yes)
[23598](https://github.com/flutter/engine/pull/23598) Fix indexing error in Linux key event handling (cla: yes)
[23599](https://github.com/flutter/engine/pull/23599) Add support for rendering using Metal on macOS (cla: yes, platform-ios)
[23601](https://github.com/flutter/engine/pull/23601) [web] Fix semantic node order for webkit (cla: yes)
[23602](https://github.com/flutter/engine/pull/23602) Roll Skia from 52a7eca13d45 to 9a4904f4e0cf (8 revisions) (cla: yes, waiting for tree to go green)
[23603](https://github.com/flutter/engine/pull/23603) share font collections between spawn engines (cla: yes)
[23604](https://github.com/flutter/engine/pull/23604) Make android more lenient when it comes to out-of-order key event responses (cla: yes, platform-android)
[23605](https://github.com/flutter/engine/pull/23605) Roll Skia from 9a4904f4e0cf to aed808c7567e (2 revisions) (cla: yes, waiting for tree to go green)
[23606](https://github.com/flutter/engine/pull/23606) Roll Dart SDK from 28ec4cc111cf to 7fcbd388b620 (1 revision) (cla: yes, waiting for tree to go green)
[23607](https://github.com/flutter/engine/pull/23607) Roll wuffs to google/wuffs@c86add25f790360f0aca026c4f1c2c4e2d12408d (cla: yes)
[23608](https://github.com/flutter/engine/pull/23608) [dart-runner] Avoid calling Destroy on nullptr (cla: yes, waiting for tree to go green)
[23609](https://github.com/flutter/engine/pull/23609) Only remove weak pointers that are set. (cla: yes)
[23610](https://github.com/flutter/engine/pull/23610) Revert "Support Mice in iPadOS 13.4+" (cla: yes, platform-ios)
[23612](https://github.com/flutter/engine/pull/23612) Roll Skia from aed808c7567e to 7cf3addb1bd8 (1 revision) (cla: yes, waiting for tree to go green)
[23614](https://github.com/flutter/engine/pull/23614) Roll Skia from 7cf3addb1bd8 to 93c2d81f199a (1 revision) (cla: yes, waiting for tree to go green)
[23623](https://github.com/flutter/engine/pull/23623) Windows textures: Add placeholder flutter_texture_registrar.h (cla: yes, waiting for tree to go green)
[23626](https://github.com/flutter/engine/pull/23626) Link SkShaper/SkParagraph into the engine by default (cla: yes, waiting for tree to go green)
[23628](https://github.com/flutter/engine/pull/23628) Roll Dart SDK from 7fcbd388b620 to ef8bf7f0a667 (5 revisions) (cla: yes)
[23630](https://github.com/flutter/engine/pull/23630) [flutter_releases] Flutter 1.25.0-8.3.pre engine cherrypicks (cla: yes)
[23633](https://github.com/flutter/engine/pull/23633) Roll Fuchsia Linux SDK from UB6RsTbdU... to FfWbbB4r8... (cla: yes, waiting for tree to go green)
[23634](https://github.com/flutter/engine/pull/23634) implemented GetMainContext() for opengl (cla: yes, platform-ios)
[23635](https://github.com/flutter/engine/pull/23635) Roll Skia from 93c2d81f199a to 9fd75e96d712 (29 revisions) (cla: yes, waiting for tree to go green)
[23636](https://github.com/flutter/engine/pull/23636) Support Mice in iPadOS 13.4+ (cla: yes, platform-ios)
[23638](https://github.com/flutter/engine/pull/23638) [web] Fix text cutoff when rendering paragraphs on DomCanvas (cla: yes, platform-web, waiting for tree to go green)
[23639](https://github.com/flutter/engine/pull/23639) Roll Dart SDK from ef8bf7f0a667 to 636ff0ec97e0 (1 revision) (cla: yes, waiting for tree to go green)
[23640](https://github.com/flutter/engine/pull/23640) Fix slow scroll speed in Wayland. (cla: yes)
[23641](https://github.com/flutter/engine/pull/23641) Roll Fuchsia Mac SDK from oll0Dgp9o... to JSzm8D59u... (cla: yes, waiting for tree to go green)
[23642](https://github.com/flutter/engine/pull/23642) Roll Dart SDK from 636ff0ec97e0 to d3d7b77e8165 (1 revision) (cla: yes, waiting for tree to go green)
[23643](https://github.com/flutter/engine/pull/23643) Roll Skia from 9fd75e96d712 to 38ca513408d1 (1 revision) (cla: yes, waiting for tree to go green)
[23644](https://github.com/flutter/engine/pull/23644) Roll Skia from 38ca513408d1 to be2a8614c5d6 (2 revisions) (cla: yes, waiting for tree to go green)
[23645](https://github.com/flutter/engine/pull/23645) Roll Dart SDK from d3d7b77e8165 to 010633edc631 (1 revision) (cla: yes, waiting for tree to go green)
[23646](https://github.com/flutter/engine/pull/23646) Roll Fuchsia Linux SDK from FfWbbB4r8... to BUsKF6z4t... (cla: yes, waiting for tree to go green)
[23647](https://github.com/flutter/engine/pull/23647) Roll Dart SDK from 010633edc631 to 724d9e5e7d71 (1 revision) (cla: yes, waiting for tree to go green)
[23648](https://github.com/flutter/engine/pull/23648) Roll Skia from be2a8614c5d6 to 0d7de6bc9ac3 (1 revision) (cla: yes, waiting for tree to go green)
[23649](https://github.com/flutter/engine/pull/23649) Use non-deprecated SkImageFilter factory functions (cla: yes)
[23650](https://github.com/flutter/engine/pull/23650) Roll Fuchsia Mac SDK from JSzm8D59u... to BsUY1yjWh... (cla: yes, waiting for tree to go green)
[23651](https://github.com/flutter/engine/pull/23651) Revert "[web] Enable the new rich paragraph implementation" (cla: yes)
[23652](https://github.com/flutter/engine/pull/23652) Roll Skia from 0d7de6bc9ac3 to 92969f265686 (7 revisions) (cla: yes, waiting for tree to go green)
[23653](https://github.com/flutter/engine/pull/23653) [web] Fix layout exception when text is null (cla: yes, platform-web, waiting for tree to go green)
[23654](https://github.com/flutter/engine/pull/23654) Roll Skia from 92969f265686 to d8e9436a78bf (6 revisions) (cla: yes, waiting for tree to go green)
[23655](https://github.com/flutter/engine/pull/23655) Implement handling of framework-handled key events (cla: yes, waiting for tree to go green)
[23656](https://github.com/flutter/engine/pull/23656) Reland - bump fuchsia toolchain to clang 12 (cla: yes)
[23657](https://github.com/flutter/engine/pull/23657) Roll Skia from d8e9436a78bf to 0e4a29af9db2 (6 revisions) (cla: yes, waiting for tree to go green)
[23659](https://github.com/flutter/engine/pull/23659) [web] Reland: Enable the new rich paragraph implementation (cla: yes, platform-web, waiting for tree to go green)
[23662](https://github.com/flutter/engine/pull/23662) Add winuwp as one of the choices in `--target-os`. (cla: yes)
[23666](https://github.com/flutter/engine/pull/23666) Roll FreeType to 2.10.4 (cla: yes)
[23667](https://github.com/flutter/engine/pull/23667) SkParagraph: enable the ICU breaker cache (cla: yes, waiting for tree to go green)
[23668](https://github.com/flutter/engine/pull/23668) Roll Fuchsia Linux SDK from BUsKF6z4t... to a7ezEWPM5... (cla: yes, waiting for tree to go green)
[23669](https://github.com/flutter/engine/pull/23669) Remove unused fml::Message serializer (cla: yes, waiting for tree to go green)
[23670](https://github.com/flutter/engine/pull/23670) Roll Skia from 0e4a29af9db2 to af9b58e287b5 (10 revisions) (cla: yes, waiting for tree to go green)
[23671](https://github.com/flutter/engine/pull/23671) Roll Skia from af9b58e287b5 to f435ada424df (1 revision) (cla: yes, waiting for tree to go green)
[23672](https://github.com/flutter/engine/pull/23672) Roll Fuchsia Mac SDK from BsUY1yjWh... to BoBy7Eobf... (cla: yes, waiting for tree to go green)
[23675](https://github.com/flutter/engine/pull/23675) FlutterEngineGroup for Android (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23676](https://github.com/flutter/engine/pull/23676) Roll Fuchsia Linux SDK from a7ezEWPM5... to erwxDS3kf... (cla: yes, waiting for tree to go green)
[23680](https://github.com/flutter/engine/pull/23680) Roll Skia from f435ada424df to 8f78d5528438 (7 revisions) (cla: yes, waiting for tree to go green)
[23681](https://github.com/flutter/engine/pull/23681) Roll Dart SDK from 724d9e5e7d71 to 3629a798353d (1 revision) (cla: yes)
[23683](https://github.com/flutter/engine/pull/23683) [web] Fix letter spacing for rich paragraphs (cla: yes, platform-web)
[23685](https://github.com/flutter/engine/pull/23685) [canvaskit] fix addPlaceholder JS bindings; add paragraph test (cla: yes, platform-web, waiting for tree to go green)
[23687](https://github.com/flutter/engine/pull/23687) Revert "[web] Enable the new rich paragraph implementation" (cla: yes)
[23689](https://github.com/flutter/engine/pull/23689) Added missing export for the flutter engine group. (cla: yes, platform-ios)
[23691](https://github.com/flutter/engine/pull/23691) [web] Fix linear gradient tiling offset. (cla: yes, platform-web)
[23692](https://github.com/flutter/engine/pull/23692) Roll Skia from 8f78d5528438 to 890b2b406a60 (9 revisions) (cla: yes, waiting for tree to go green)
[23693](https://github.com/flutter/engine/pull/23693) Roll Fuchsia Mac SDK from BoBy7Eobf... to DVYrV15dq... (cla: yes, waiting for tree to go green)
[23694](https://github.com/flutter/engine/pull/23694) Ensure gen_snapshot for the target is built when needed (cla: yes, waiting for tree to go green)
[23696](https://github.com/flutter/engine/pull/23696) [web] Reland: Enable the new rich paragraph implementation (cla: yes, platform-web)
[23698](https://github.com/flutter/engine/pull/23698) Roll buildroot to 92a8d2eb7aad592068f808e39b8330fd2bce25e3, Clang to 12.0.0 (cla: yes)
[23699](https://github.com/flutter/engine/pull/23699) Roll Dart SDK from 3629a798353d to a461c2b3366d (1 revision) (cla: yes, waiting for tree to go green)
[23700](https://github.com/flutter/engine/pull/23700) Roll Skia from 890b2b406a60 to 3df6c20a050a (11 revisions) (cla: yes, waiting for tree to go green)
[23701](https://github.com/flutter/engine/pull/23701) [windows] Enable smooth resizing on windows (cla: yes)
[23703](https://github.com/flutter/engine/pull/23703) Roll Skia from 3df6c20a050a to 68b8bd5ba7f3 (3 revisions) (cla: yes, waiting for tree to go green)
[23704](https://github.com/flutter/engine/pull/23704) Populates fuchsia a11y toggled state. (cla: yes)
[23706](https://github.com/flutter/engine/pull/23706) Roll Fuchsia Linux SDK from erwxDS3kf... to y-4SPFGg7... (cla: yes, waiting for tree to go green)
[23707](https://github.com/flutter/engine/pull/23707) Roll Dart SDK from a461c2b3366d to 82cec4d65743 (2 revisions) (cla: yes, waiting for tree to go green)
[23708](https://github.com/flutter/engine/pull/23708) Roll Skia from 68b8bd5ba7f3 to 1895425ffc90 (2 revisions) (cla: yes, waiting for tree to go green)
[23709](https://github.com/flutter/engine/pull/23709) Roll Skia from 1895425ffc90 to 7f81cb6901ae (2 revisions) (cla: yes, waiting for tree to go green)
[23710](https://github.com/flutter/engine/pull/23710) Roll Fuchsia Mac SDK from DVYrV15dq... to 058reL2R_... (cla: yes, waiting for tree to go green)
[23711](https://github.com/flutter/engine/pull/23711) Roll Dart SDK from 82cec4d65743 to c262c3e0d9d2 (1 revision) (cla: yes, waiting for tree to go green)
[23712](https://github.com/flutter/engine/pull/23712) Roll Skia from 7f81cb6901ae to 70ea0d97c1c5 (1 revision) (cla: yes, waiting for tree to go green)
[23713](https://github.com/flutter/engine/pull/23713) Roll Dart SDK from c262c3e0d9d2 to 0554c17398ef (1 revision) (cla: yes, waiting for tree to go green)
[23714](https://github.com/flutter/engine/pull/23714) Roll Skia from 70ea0d97c1c5 to 4f4c064d5b74 (7 revisions) (cla: yes, waiting for tree to go green)
[23715](https://github.com/flutter/engine/pull/23715) Roll Fuchsia Linux SDK from y-4SPFGg7... to f6HozEhK-... (cla: yes, waiting for tree to go green)
[23717](https://github.com/flutter/engine/pull/23717) Skia can now build with 10.11 as the min deployment version (cla: yes)
[23720](https://github.com/flutter/engine/pull/23720) Roll Skia from 4f4c064d5b74 to 9f079f7c0d16 (11 revisions) (cla: yes, waiting for tree to go green)
[23721](https://github.com/flutter/engine/pull/23721) Roll Skia from 9f079f7c0d16 to bfd330d08195 (2 revisions) (cla: yes, waiting for tree to go green)
[23722](https://github.com/flutter/engine/pull/23722) Roll Fuchsia Mac SDK from 058reL2R_... to -f95YWvck... (cla: yes, waiting for tree to go green)
[23725](https://github.com/flutter/engine/pull/23725) Roll Skia from bfd330d08195 to d414e600b24b (5 revisions) (cla: yes, waiting for tree to go green)
[23726](https://github.com/flutter/engine/pull/23726) Removes deprecated WLAN API dependency. (cla: yes, waiting for tree to go green)
[23727](https://github.com/flutter/engine/pull/23727) [web] Add --watch flag to 'felt test' (cla: yes, platform-web)
[23728](https://github.com/flutter/engine/pull/23728) Automatically download Noto fonts as backup fonts in CanvasKit mode (cla: yes)
[23729](https://github.com/flutter/engine/pull/23729) Unconditionally enable some tracing on startup (cla: yes)
[23731](https://github.com/flutter/engine/pull/23731) [fuchsia] Add missing static binding check. (cla: yes, waiting for tree to go green)
[23732](https://github.com/flutter/engine/pull/23732) Roll Skia from d414e600b24b to 05e5446145a6 (4 revisions) (cla: yes, waiting for tree to go green)
[23733](https://github.com/flutter/engine/pull/23733) block thread merging with shared engines (cla: yes, waiting for tree to go green)
[23734](https://github.com/flutter/engine/pull/23734) Revert "Roll buildroot to 92a8d2eb7aad592068f808e39b8330fd2bce25e3, Clang to 12.0.0" (cla: yes)
[23735](https://github.com/flutter/engine/pull/23735) Roll Dart SDK from 0554c17398ef to 93a7e1189a8a (3 revisions) (cla: yes, waiting for tree to go green)
[23737](https://github.com/flutter/engine/pull/23737) Roll Fuchsia Linux SDK from f6HozEhK-... to 9jHAc8Xal... (cla: yes, waiting for tree to go green)
[23738](https://github.com/flutter/engine/pull/23738) Roll Dart SDK from 93a7e1189a8a to c962a50422d3 (2 revisions) (cla: yes, waiting for tree to go green)
[23740](https://github.com/flutter/engine/pull/23740) Roll Fuchsia Mac SDK from -f95YWvck... to WDEyMachh... (cla: yes, waiting for tree to go green)
[23742](https://github.com/flutter/engine/pull/23742) Roll buildroot to 7832e9ed954bd5b22d043ab49a67e93babd291e6, clang to 12.0.0 mark 2 (cla: yes)
[23744](https://github.com/flutter/engine/pull/23744) Roll Fuchsia Linux SDK from 9jHAc8Xal... to Slp6mtN7o... (cla: yes, waiting for tree to go green)
[23747](https://github.com/flutter/engine/pull/23747) Roll Dart SDK from c962a50422d3 to 3a72a508f5a0 (1 revision) (cla: yes, waiting for tree to go green)
[23748](https://github.com/flutter/engine/pull/23748) Roll Dart SDK from 3a72a508f5a0 to f0c507184d5d (1 revision) (cla: yes, waiting for tree to go green)
[23751](https://github.com/flutter/engine/pull/23751) Roll clang further, fix buggy test (cla: yes)
[23752](https://github.com/flutter/engine/pull/23752) Roll Fuchsia Mac SDK from WDEyMachh... to _UK6XxiMu... (cla: yes, waiting for tree to go green)
[23755](https://github.com/flutter/engine/pull/23755) Roll Fuchsia Linux SDK from Slp6mtN7o... to -tixwZamE... (cla: yes, waiting for tree to go green)
[23756](https://github.com/flutter/engine/pull/23756) Roll Fuchsia Mac SDK from _UK6XxiMu... to gifLPMkX1... (cla: yes, waiting for tree to go green)
[23758](https://github.com/flutter/engine/pull/23758) Roll Dart SDK from f0c507184d5d to 091e9f17809e (1 revision) (cla: yes, waiting for tree to go green)
[23759](https://github.com/flutter/engine/pull/23759) Roll Skia from 05e5446145a6 to 26a84431ff72 (2 revisions) (cla: yes, waiting for tree to go green)
[23762](https://github.com/flutter/engine/pull/23762) Roll Dart SDK from 091e9f17809e to c4214e6daaac (3 revisions) (cla: yes, waiting for tree to go green)
[23763](https://github.com/flutter/engine/pull/23763) Roll Fuchsia Mac SDK from gifLPMkX1... to pc_veLlry... (cla: yes, waiting for tree to go green)
[23764](https://github.com/flutter/engine/pull/23764) Roll Fuchsia Linux SDK from -tixwZamE... to fByXAJ76e... (cla: yes, waiting for tree to go green)
[23765](https://github.com/flutter/engine/pull/23765) Allow creation of symlinks for Goma via an environment variable. (cla: yes, waiting for tree to go green)
[23766](https://github.com/flutter/engine/pull/23766) Roll Skia from 26a84431ff72 to bde06cc511d2 (12 revisions) (cla: yes, waiting for tree to go green)
[23767](https://github.com/flutter/engine/pull/23767) Migrate to use the published metrics_center (cla: yes)
[23769](https://github.com/flutter/engine/pull/23769) [web] Fix shadow rendering using boxshadow due to webkit repaint area bug (cla: yes, waiting for tree to go green)
[23770](https://github.com/flutter/engine/pull/23770) Roll Dart SDK from c4214e6daaac to 4a6764bf28c2 (4 revisions) (cla: yes, waiting for tree to go green)
[23772](https://github.com/flutter/engine/pull/23772) Roll Skia from bde06cc511d2 to f3087d8297fe (7 revisions) (cla: yes, waiting for tree to go green)
[23773](https://github.com/flutter/engine/pull/23773) [web] Fix drawPoints api crash when strokeWidth is not specified. (cla: yes)
[23775](https://github.com/flutter/engine/pull/23775) skip flaky test (cla: yes, platform-ios)
[23778](https://github.com/flutter/engine/pull/23778) [web] Make null paint color consistent with mobile&desktop (cla: yes)
[23781](https://github.com/flutter/engine/pull/23781) Roll Skia from f3087d8297fe to e0fe62adaa3e (9 revisions) (cla: yes, waiting for tree to go green)
[23782](https://github.com/flutter/engine/pull/23782) Started using Dart_CreateInGroup when using spawn on a release build (cla: yes, waiting for tree to go green)
[23783](https://github.com/flutter/engine/pull/23783) Fix typo in embedder unit tests (cla: yes)
[23784](https://github.com/flutter/engine/pull/23784) Roll Skia from e0fe62adaa3e to 18aeb5731b51 (1 revision) (cla: yes, waiting for tree to go green)
[23785](https://github.com/flutter/engine/pull/23785) Fix JNI void vs object method call - Deferred Components (cla: yes, platform-android, waiting for tree to go green)
[23786](https://github.com/flutter/engine/pull/23786) Roll Skia from 18aeb5731b51 to 7aa7f039b9ee (1 revision) (cla: yes, waiting for tree to go green)
[23787](https://github.com/flutter/engine/pull/23787) Roll Fuchsia Mac SDK from pc_veLlry... to xYraItnQp... (cla: yes, waiting for tree to go green)
[23788](https://github.com/flutter/engine/pull/23788) Roll Fuchsia Linux SDK from fByXAJ76e... to vs54lOVoj... (cla: yes, waiting for tree to go green)
[23790](https://github.com/flutter/engine/pull/23790) Roll Skia from 7aa7f039b9ee to 6eb610f75cad (3 revisions) (cla: yes, waiting for tree to go green)
[23791](https://github.com/flutter/engine/pull/23791) Revert "Roll Dart SDK from c4214e6daaac to 4a6764bf28c2 (4 revisions)" (cla: yes)
[23795](https://github.com/flutter/engine/pull/23795) Notify Win32FlutterWindow of cursor updates (affects: desktop, affects: text input, cla: yes, platform-windows)
[23796](https://github.com/flutter/engine/pull/23796) Roll Dart SDK from c4214e6daaac to 0265477b0534 (5 revisions) (cla: yes, waiting for tree to go green)
[23798](https://github.com/flutter/engine/pull/23798) Share Android surface GrDirectContext (cla: yes, platform-android, platform-ios, waiting for tree to go green)
[23799](https://github.com/flutter/engine/pull/23799) Roll Skia from 6eb610f75cad to 489e55252ee3 (6 revisions) (cla: yes, waiting for tree to go green)
[23802](https://github.com/flutter/engine/pull/23802) Roll Skia from 489e55252ee3 to 81bfabeb18e6 (3 revisions) (cla: yes, waiting for tree to go green)
[23803](https://github.com/flutter/engine/pull/23803) [flutter_releases] Flutter Stable 1.22.6 Engine Cherrypicks (cla: yes)
[23804](https://github.com/flutter/engine/pull/23804) Roll Fuchsia Linux SDK from vs54lOVoj... to E4eFE0Bz6... (cla: yes, waiting for tree to go green)
[23805](https://github.com/flutter/engine/pull/23805) Roll Skia from 81bfabeb18e6 to cdeabcaf5705 (1 revision) (cla: yes, waiting for tree to go green)
[23806](https://github.com/flutter/engine/pull/23806) Roll Fuchsia Mac SDK from xYraItnQp... to MrtHftV0U... (cla: yes, waiting for tree to go green)
[23808](https://github.com/flutter/engine/pull/23808) add ffi_allocation_patch.dart to libraries.yaml (cla: yes, waiting for tree to go green)
[23810](https://github.com/flutter/engine/pull/23810) Split platforms for clang in DEPS to prepare for autoroller (cla: yes)
[23811](https://github.com/flutter/engine/pull/23811) Roll Dart SDK from 0265477b0534 to 970d74c42472 (1 revision) (cla: yes, waiting for tree to go green)
[23812](https://github.com/flutter/engine/pull/23812) Roll Skia from cdeabcaf5705 to dd069a9188cc (2 revisions) (cla: yes, waiting for tree to go green)
[23813](https://github.com/flutter/engine/pull/23813) Call Dart plugin registrant if available (cla: yes, waiting for tree to go green)
[23815](https://github.com/flutter/engine/pull/23815) [flutter_releases] Flutter Stable 1.22.6 Engine additional cherrypick (cla: yes, platform-android, platform-ios)
[23816](https://github.com/flutter/engine/pull/23816) Roll Skia from dd069a9188cc to 08f5311ae142 (5 revisions) (cla: yes, waiting for tree to go green)
[23818](https://github.com/flutter/engine/pull/23818) Roll Skia from 08f5311ae142 to 821a84558bd4 (1 revision) (cla: yes, waiting for tree to go green)
[23819](https://github.com/flutter/engine/pull/23819) Roll Dart SDK from 970d74c42472 to fd72dbb5b82b (1 revision) (cla: yes, waiting for tree to go green)
[23820](https://github.com/flutter/engine/pull/23820) Roll Dart SDK from 970d74c42472 to fd72dbb5b82b (1 revision) (cla: yes, waiting for tree to go green)
[23821](https://github.com/flutter/engine/pull/23821) Cherry pick 920a33a0fc3a1d9913d889a77593161e175f1863 (cla: yes)
[23822](https://github.com/flutter/engine/pull/23822) revert path volatility tracker (cla: yes, waiting for tree to go green)
[23823](https://github.com/flutter/engine/pull/23823) Fix typo in textureFrameAvailable on macOS (cla: yes)
[23824](https://github.com/flutter/engine/pull/23824) Pass the filename directly to JNI for loading deferred component. (cla: yes, platform-android)
[23825](https://github.com/flutter/engine/pull/23825) Roll Skia from 821a84558bd4 to 87a055b02027 (4 revisions) (cla: yes, waiting for tree to go green)
[23826](https://github.com/flutter/engine/pull/23826) Roll Fuchsia Linux SDK from E4eFE0Bz6... to UGavhI1zv... (cla: yes, waiting for tree to go green)
[23827](https://github.com/flutter/engine/pull/23827) Roll Fuchsia Mac SDK from MrtHftV0U... to 7nZajqutF... (cla: yes, waiting for tree to go green)
[23828](https://github.com/flutter/engine/pull/23828) Roll Dart SDK from fd72dbb5b82b to 5e24a66b1bb8 (1 revision) (cla: yes, waiting for tree to go green)
[23829](https://github.com/flutter/engine/pull/23829) Roll Skia from 87a055b02027 to e0d023562bd9 (1 revision) (cla: yes, waiting for tree to go green)
[23830](https://github.com/flutter/engine/pull/23830) [web] Fix shadows for arbitrary paths on PhysicalShape (cla: yes, platform-web)
[23831](https://github.com/flutter/engine/pull/23831) Roll Skia from e0d023562bd9 to 982127b7d57d (4 revisions) (cla: yes, waiting for tree to go green)
[23832](https://github.com/flutter/engine/pull/23832) Roll Fuchsia Linux Toolchain from git_revision:2c0536b76b35fa592ac7b4a0e4bb176eaf55af75 to IJxh_9dNS... (cla: yes, waiting for tree to go green)
[23834](https://github.com/flutter/engine/pull/23834) Roll Skia from 982127b7d57d to 6de1e52d0b12 (1 revision) (cla: yes, waiting for tree to go green)
[23836](https://github.com/flutter/engine/pull/23836) Roll Skia from 6de1e52d0b12 to 8a37fb2c605b (5 revisions) (cla: yes, waiting for tree to go green)
[23837](https://github.com/flutter/engine/pull/23837) Use references when iterating over SkParagraph text boxes (cla: yes, waiting for tree to go green)
[23838](https://github.com/flutter/engine/pull/23838) Roll Dart SDK from 5e24a66b1bb8 to 704928da5702 (2 revisions) (cla: yes, waiting for tree to go green)
[23839](https://github.com/flutter/engine/pull/23839) Roll Skia from 8a37fb2c605b to 37d16f135265 (4 revisions) (cla: yes, waiting for tree to go green)
[23840](https://github.com/flutter/engine/pull/23840) Reland vol tracker (cla: yes)
[23841](https://github.com/flutter/engine/pull/23841) Roll Skia from 37d16f135265 to e89d8ea20b62 (2 revisions) (cla: yes, waiting for tree to go green)
[23842](https://github.com/flutter/engine/pull/23842) use the toolchain in //build for fuchsia (cla: yes, waiting for tree to go green)
[23843](https://github.com/flutter/engine/pull/23843) Roll Skia from e89d8ea20b62 to c09761f57605 (1 revision) (cla: yes, waiting for tree to go green)
[23846](https://github.com/flutter/engine/pull/23846) Roll Dart SDK from 704928da5702 to 1db2d4d95562 (1 revision) (cla: yes, waiting for tree to go green)
[23848](https://github.com/flutter/engine/pull/23848) Roll Fuchsia Linux SDK from UGavhI1zv... to mODEe2CNk... (cla: yes, waiting for tree to go green)
[23849](https://github.com/flutter/engine/pull/23849) Search multiple paths when loading deferred component .so files. (cla: yes, platform-android)
[23850](https://github.com/flutter/engine/pull/23850) fix concurrent threads cannot set thread name on Android issue (cla: yes, waiting for tree to go green)
[23851](https://github.com/flutter/engine/pull/23851) Roll Skia from c09761f57605 to 450f8565c7f3 (5 revisions) (cla: yes, waiting for tree to go green)
[23853](https://github.com/flutter/engine/pull/23853) Add support for IME-based text input on Windows (affects: desktop, affects: text input, cla: yes, platform-windows)
[23855](https://github.com/flutter/engine/pull/23855) Roll Skia from 450f8565c7f3 to 372791761157 (1 revision) (cla: yes, waiting for tree to go green)
[23857](https://github.com/flutter/engine/pull/23857) Roll Fuchsia Mac SDK from 7nZajqutF... to tuJCioUf3... (cla: yes, waiting for tree to go green)
[23858](https://github.com/flutter/engine/pull/23858) Roll Skia from 372791761157 to ce75036b3eaf (4 revisions) (cla: yes, waiting for tree to go green)
[23859](https://github.com/flutter/engine/pull/23859) Revert "implemented GetMainContext() for opengl" (cla: yes, platform-ios, waiting for tree to go green)
[23860](https://github.com/flutter/engine/pull/23860) Roll Skia from ce75036b3eaf to cc6961b9ac5e (3 revisions) (cla: yes, waiting for tree to go green)
[23861](https://github.com/flutter/engine/pull/23861) Roll Dart SDK from 1db2d4d95562 to 82b4c77fb17f (2 revisions) (cla: yes, waiting for tree to go green)
[23862](https://github.com/flutter/engine/pull/23862) Remove workarounds now that type promotion accounts for local boolean variables. (cla: yes)
[23863](https://github.com/flutter/engine/pull/23863) [flutter_releases] Flutter 1.22.6 Engine Infra Cherrypick (cla: yes, platform-android, platform-ios)
[23864](https://github.com/flutter/engine/pull/23864) Roll Skia from cc6961b9ac5e to 6a272434c2b2 (3 revisions) (cla: yes, waiting for tree to go green)
[23865](https://github.com/flutter/engine/pull/23865) implemented GetMainContext() for opengl - reland (cla: yes, platform-ios)
[23867](https://github.com/flutter/engine/pull/23867) Roll Skia from 6a272434c2b2 to bfc9be0f773f (2 revisions) (cla: yes, waiting for tree to go green)
[23868](https://github.com/flutter/engine/pull/23868) Read loading unit mapping from AndroidManifest instead of strings (cla: yes, platform-android, waiting for tree to go green)
[23872](https://github.com/flutter/engine/pull/23872) Roll Skia from bfc9be0f773f to 3193ff271628 (5 revisions) (cla: yes, waiting for tree to go green)
[23873](https://github.com/flutter/engine/pull/23873) Roll Fuchsia Linux SDK from mODEe2CNk... to edqShE0QE... (cla: yes, waiting for tree to go green)
[23874](https://github.com/flutter/engine/pull/23874) Roll Dart SDK from 82b4c77fb17f to 748993c3997a (1 revision) (cla: yes, waiting for tree to go green)
[23875](https://github.com/flutter/engine/pull/23875) Roll Skia from 3193ff271628 to 2a4c0fbdca1a (3 revisions) (cla: yes, waiting for tree to go green)
[23876](https://github.com/flutter/engine/pull/23876) Roll Fuchsia Linux Toolchain from IJxh_9dNS... to 8LaTdqf7w... (cla: yes, waiting for tree to go green)
[23878](https://github.com/flutter/engine/pull/23878) Roll Skia from 2a4c0fbdca1a to 8a42b09c162e (9 revisions) (cla: yes, waiting for tree to go green)
[23881](https://github.com/flutter/engine/pull/23881) Roll Dart SDK from 748993c3997a to 2ddf810f71f6 (1 revision) (cla: yes, waiting for tree to go green)
[23882](https://github.com/flutter/engine/pull/23882) Roll Skia from 8a42b09c162e to 9702fc6f3852 (1 revision) (cla: yes, waiting for tree to go green)
[23883](https://github.com/flutter/engine/pull/23883) Roll Fuchsia Mac SDK from tuJCioUf3... to 9Lh_vPIXU... (cla: yes, waiting for tree to go green)
[23886](https://github.com/flutter/engine/pull/23886) Roll Fuchsia Linux SDK from edqShE0QE... to uMOnDLfvl... (cla: yes, waiting for tree to go green)
[23887](https://github.com/flutter/engine/pull/23887) Roll FreeType to 2.10.4 (#23666) (cla: yes)
[23888](https://github.com/flutter/engine/pull/23888) Roll Fuchsia Mac SDK from 9Lh_vPIXU... to PsYsfVNbW... (cla: yes, waiting for tree to go green)
[23890](https://github.com/flutter/engine/pull/23890) Roll Skia from 9702fc6f3852 to 07c5f52c947d (2 revisions) (cla: yes, waiting for tree to go green)
[23892](https://github.com/flutter/engine/pull/23892) Roll Skia from 07c5f52c947d to 8d29ab630996 (1 revision) (cla: yes, waiting for tree to go green)
[23893](https://github.com/flutter/engine/pull/23893) Roll Skia from 8d29ab630996 to d396cd50ff15 (1 revision) (cla: yes, waiting for tree to go green)
[23894](https://github.com/flutter/engine/pull/23894) Roll Fuchsia Linux SDK from uMOnDLfvl... to VYUnZ3Tbh... (cla: yes, waiting for tree to go green)
[23897](https://github.com/flutter/engine/pull/23897) Roll Fuchsia Mac SDK from PsYsfVNbW... to 6swTf93jz... (cla: yes, waiting for tree to go green)
[23898](https://github.com/flutter/engine/pull/23898) Roll Skia from d396cd50ff15 to 5bbf72757349 (2 revisions) (cla: yes, waiting for tree to go green)
[23900](https://github.com/flutter/engine/pull/23900) Roll Skia from 5bbf72757349 to 069e484cc3b9 (2 revisions) (cla: yes, waiting for tree to go green)
[23903](https://github.com/flutter/engine/pull/23903) Roll Fuchsia Linux SDK from VYUnZ3Tbh... to mrFdelzNr... (cla: yes, waiting for tree to go green)
[23904](https://github.com/flutter/engine/pull/23904) Roll Fuchsia Mac SDK from 6swTf93jz... to 7LGbVIHUD... (cla: yes, waiting for tree to go green)
[23905](https://github.com/flutter/engine/pull/23905) Rename TextInputManager to TextInputManagerWin32 (cla: yes)
[23907](https://github.com/flutter/engine/pull/23907) Roll Skia from 069e484cc3b9 to 607a382298b2 (1 revision) (cla: yes, waiting for tree to go green)
[23910](https://github.com/flutter/engine/pull/23910) Roll Skia from 607a382298b2 to fe8a4faa4bb2 (4 revisions) (cla: yes, waiting for tree to go green)
[23913](https://github.com/flutter/engine/pull/23913) Roll Fuchsia Linux SDK from mrFdelzNr... to GLRm7LJRm... (cla: yes, waiting for tree to go green)
[23915](https://github.com/flutter/engine/pull/23915) Use ToStringTransformer from dart frontend_server (cla: yes)
[23920](https://github.com/flutter/engine/pull/23920) Roll Skia from fe8a4faa4bb2 to bd91660b6e12 (4 revisions) (cla: yes, waiting for tree to go green)
[23922](https://github.com/flutter/engine/pull/23922) Roll Dart SDK from 2ddf810f71f6 to 70c7daa78288 (1 revision) (cla: yes, waiting for tree to go green)
[23924](https://github.com/flutter/engine/pull/23924) [macos] Support smooth resizing for Metal (cla: yes, waiting for tree to go green)
[23925](https://github.com/flutter/engine/pull/23925) Allow naming shared libraries in deferred component via AndroidManifest (cla: yes, platform-android)
[23928](https://github.com/flutter/engine/pull/23928) Adds Roboto as a global font fallback in CanvasKit (cla: yes, waiting for tree to go green)
[23929](https://github.com/flutter/engine/pull/23929) Roll Skia from bd91660b6e12 to fff4099358bd (9 revisions) (cla: yes, waiting for tree to go green)
[23930](https://github.com/flutter/engine/pull/23930) Roll Fuchsia Mac SDK from 7LGbVIHUD... to PGWwkVe7c... (cla: yes, waiting for tree to go green)
[23933](https://github.com/flutter/engine/pull/23933) rename flutter_export to flutter_darwin_export to prevent naming conf… (cla: yes, platform-ios)
[23935](https://github.com/flutter/engine/pull/23935) Roll Fuchsia Linux Toolchain from git_revision:7d48eff8ba172216fca3649a3c452de4c7c16c00 to 8LaTdqf7w... (cla: yes)
[23936](https://github.com/flutter/engine/pull/23936) Roll Fuchsia Mac Toolchain from git_revision:7d48eff8ba172216fca3649a3c452de4c7c16c00 to 139p8dSfW... (cla: yes, waiting for tree to go green)
[23937](https://github.com/flutter/engine/pull/23937) Roll Skia from fff4099358bd to 3f31f3027f69 (10 revisions) (cla: yes, waiting for tree to go green)
[23938](https://github.com/flutter/engine/pull/23938) Roll Dart SDK from 70c7daa78288 to f9e1d1ab4001 (1 revision) (cla: yes, waiting for tree to go green)
[23939](https://github.com/flutter/engine/pull/23939) Roll Skia from 3f31f3027f69 to 3419dda0588d (1 revision) (cla: yes, waiting for tree to go green)
[23940](https://github.com/flutter/engine/pull/23940) Roll Skia from 3419dda0588d to 76389b7d2444 (1 revision) (cla: yes, waiting for tree to go green)
[23943](https://github.com/flutter/engine/pull/23943) Roll Fuchsia Linux SDK from GLRm7LJRm... to DLfskqEUx... (cla: yes, waiting for tree to go green)
[23945](https://github.com/flutter/engine/pull/23945) Roll Skia from 76389b7d2444 to 02621c33b426 (3 revisions) (cla: yes, waiting for tree to go green)
[23946](https://github.com/flutter/engine/pull/23946) Roll Dart SDK from f9e1d1ab4001 to 2607b01bec99 (2 revisions) (cla: yes, waiting for tree to go green)
[23949](https://github.com/flutter/engine/pull/23949) Roll Skia from 02621c33b426 to bbc5288f2bb1 (4 revisions) (cla: yes, waiting for tree to go green)
[23953](https://github.com/flutter/engine/pull/23953) Roll Dart SDK from 2607b01bec99 to 38c2cddbe277 (2 revisions) (cla: yes, waiting for tree to go green)
[23954](https://github.com/flutter/engine/pull/23954) add ffi_allocation_patch.dart to libraries.yaml 2 (cla: yes)
[23956](https://github.com/flutter/engine/pull/23956) Roll Skia from bbc5288f2bb1 to 98c990eba005 (1 revision) (cla: yes, waiting for tree to go green)
[23957](https://github.com/flutter/engine/pull/23957) Roll Fuchsia Mac SDK from PGWwkVe7c... to FtwF654ce... (cla: yes, waiting for tree to go green)
[23958](https://github.com/flutter/engine/pull/23958) Roll Skia from 98c990eba005 to f661ec788b14 (3 revisions) (cla: yes, waiting for tree to go green)
[23959](https://github.com/flutter/engine/pull/23959) Roll Dart SDK from 38c2cddbe277 to 15dfe858c4a6 (1 revision) (cla: yes, waiting for tree to go green)
### Merged PRs in `flutter/plugins` from 2020-09-11T02:17:00.000Z to 2021-01-26T18:58:00.000Z
There were 253 pull requests.
[1721](https://github.com/flutter/plugins/pull/1721) [google_maps_flutter] Adds support for holes in polygon overlays to the Google Maps plugin (cla: yes, waiting for tree to go green)
[2489](https://github.com/flutter/plugins/pull/2489) [local_auth] Allow device authentication (pin/pattern/passcode) (cla: yes)
[2563](https://github.com/flutter/plugins/pull/2563) fix(video_player): buffering state events missing on Android & Web (fixes flutter/flutter#28494) (cla: yes)
[2818](https://github.com/flutter/plugins/pull/2818) [path_provider] Add Windows support (cla: yes)
[2883](https://github.com/flutter/plugins/pull/2883) [webview_flutter] Add new entrypoint that uses hybrid composition on Android (cla: yes)
[2911](https://github.com/flutter/plugins/pull/2911) [in_app_purchase] Removed maintaining own cache of transactions (cla: yes)
[2941](https://github.com/flutter/plugins/pull/2941) [google_maps_flutter] fix to properly place polyline at initial camera position in example app (cla: yes, waiting for tree to go green)
[2943](https://github.com/flutter/plugins/pull/2943) [google_sign_in_web] Ensure web plugin throws PlatformExceptions (cla: yes)
[2986](https://github.com/flutter/plugins/pull/2986) [integration_test] Recommend tests to be in `integration_test/`, fix example (cla: yes)
[2988](https://github.com/flutter/plugins/pull/2988) [shared_preferences] Add shared_preferences_windows (cla: yes)
[2991](https://github.com/flutter/plugins/pull/2991) [webview_flutter] [url_launcher] Handle Multiwindows in WebViews (cla: yes)
[2995](https://github.com/flutter/plugins/pull/2995) [file_selector_platform_interface] Add platform interface for new file_selector plugin (cla: yes)
[2998](https://github.com/flutter/plugins/pull/2998) [google_maps_flutter_web] Allow Markers with icon:null (cla: yes)
[3004](https://github.com/flutter/plugins/pull/3004) [share] MethodCallHandler.java uses unchecked or unsafe operations (cla: yes)
[3015](https://github.com/flutter/plugins/pull/3015) Add url_launcher_windows (cla: yes)
[3016](https://github.com/flutter/plugins/pull/3016) [in_app_purchase] Fix typo on `simulatesAskToBuyInSandBox` (cla: yes)
[3018](https://github.com/flutter/plugins/pull/3018) [camera] CameraPlugin.java uses or overrides a deprecated API (cla: yes)
[3019](https://github.com/flutter/plugins/pull/3019) [video_player] VideoPlayerPlugin.java uses or overrides a deprecated API (cla: yes)
[3020](https://github.com/flutter/plugins/pull/3020) [android_alarm_manager] Android Code Inspection and Clean up (cla: yes)
[3022](https://github.com/flutter/plugins/pull/3022) [in_app_purchase] fix version (cla: yes)
[3023](https://github.com/flutter/plugins/pull/3023) Fix formatting (cla: yes)
[3024](https://github.com/flutter/plugins/pull/3024) [url_launcher] Endorse Windows implementation (cla: yes)
[3026](https://github.com/flutter/plugins/pull/3026) badges for pub.dev scores (cla: yes)
[3028](https://github.com/flutter/plugins/pull/3028) [android_alarm_manager] version fix (cla: yes)
[3030](https://github.com/flutter/plugins/pull/3030) Remove no-op android folders (cla: yes)
[3032](https://github.com/flutter/plugins/pull/3032) [video_player_platform_interface] Playback speed (cla: yes)
[3034](https://github.com/flutter/plugins/pull/3034) [all] Update CODEOWNERS to properly request reviews (cla: yes)
[3036](https://github.com/flutter/plugins/pull/3036) [image_picker] changed ExifInterface to AndroidX version, including d… (cla: yes)
[3037](https://github.com/flutter/plugins/pull/3037) [image_picker] Updated docs getImage() about preference rear front not working on Android (cla: yes)
[3040](https://github.com/flutter/plugins/pull/3040) [url_launcher] Document why canLaunch can return false on Android API 30 (cla: yes)
[3042](https://github.com/flutter/plugins/pull/3042) Update android sdk version to 29 for all mobile plugins. (cla: yes)
[3043](https://github.com/flutter/plugins/pull/3043) [android_intent] Android Code Inspection and Clean up (cla: yes)
[3044](https://github.com/flutter/plugins/pull/3044) [image_picker] Updated README.md with new example (cla: yes)
[3046](https://github.com/flutter/plugins/pull/3046) Move files to match the directory conventions of `package:integration_test` (cla: yes)
[3049](https://github.com/flutter/plugins/pull/3049) [path_provider] Path provider windows updates (cla: yes)
[3050](https://github.com/flutter/plugins/pull/3050) [flutter_plugin_android_lifecycle] update to android 29 (cla: yes)
[3051](https://github.com/flutter/plugins/pull/3051) [connectivity] Android Code Inspection and Clean up (cla: yes)
[3052](https://github.com/flutter/plugins/pull/3052) [path_provider] Add missing pluginClass: none to path_provider_windows (cla: yes)
[3054](https://github.com/flutter/plugins/pull/3054) [Connectivity] Fix mistake in license headers (cla: yes)
[3055](https://github.com/flutter/plugins/pull/3055) [path_provider] Fix mistake in license headers (cla: yes)
[3056](https://github.com/flutter/plugins/pull/3056) [path_provider] Move Windows FFI behind a conditional import (cla: yes)
[3058](https://github.com/flutter/plugins/pull/3058) [shared_preferences] Add iOS stub to shared_preferences_windows (cla: yes)
[3059](https://github.com/flutter/plugins/pull/3059) [shared_preferences] Endorse Windows (cla: yes)
[3063](https://github.com/flutter/plugins/pull/3063) [integration_test] Test drivers should end with `_test.dart` (cla: yes)
[3064](https://github.com/flutter/plugins/pull/3064) Add linux directory to examples (cla: yes)
[3065](https://github.com/flutter/plugins/pull/3065) [path_provider] Update endorsed Windows version (cla: yes)
[3066](https://github.com/flutter/plugins/pull/3066) Revert "[webview_flutter] Add new entrypoint that uses hybrid composition on Android" (cla: yes)
[3067](https://github.com/flutter/plugins/pull/3067) [webview_flutter] Add new entrypoint that uses hybrid composition on Android (cla: yes)
[3068](https://github.com/flutter/plugins/pull/3068) [path_provider_windows] Add missing method to fake (cla: yes)
[3070](https://github.com/flutter/plugins/pull/3070) [path_provider_android] Move Path operations to background thread (cla: yes, waiting for test harness)
[3071](https://github.com/flutter/plugins/pull/3071) [url_launcher_web] Remove package:platform_detect (cla: yes)
[3072](https://github.com/flutter/plugins/pull/3072) Add deprecation suppression for plugins marked with -Werror (cla: yes)
[3073](https://github.com/flutter/plugins/pull/3073) [in_app_purchase] Update typo in example main.dart (cla: yes)
[3075](https://github.com/flutter/plugins/pull/3075) [url_launcher_web] Improve attribution of package:platform_detect (cla: yes)
[3080](https://github.com/flutter/plugins/pull/3080) [url_launcher_web] Move third_party under src. (cla: yes)
[3081](https://github.com/flutter/plugins/pull/3081) [video_player_web] Playback speed (cla: yes)
[3082](https://github.com/flutter/plugins/pull/3082) [video_player] Fix tests (cla: yes)
[3084](https://github.com/flutter/plugins/pull/3084) [video_player] Playback speed (cla: yes)
[3088](https://github.com/flutter/plugins/pull/3088) [plugin_platform_interface] Fix homepage in pubspec.yaml (cla: yes)
[3089](https://github.com/flutter/plugins/pull/3089) [connectivity_for_web] Fix homepage in pubspec.yaml (cla: yes)
[3091](https://github.com/flutter/plugins/pull/3091) [google_maps_flutter] Out of developers preview, bump to 1.0.0 (cla: yes)
[3093](https://github.com/flutter/plugins/pull/3093) [google_maps_flutter_web] Fix convert.dart issues (cla: yes)
[3097](https://github.com/flutter/plugins/pull/3097) [url_launcher] Improved documentation of the `headers` parameter. (cla: yes)
[3098](https://github.com/flutter/plugins/pull/3098) [image_picker] Update README.md (cla: yes, waiting for tree to go green)
[3100](https://github.com/flutter/plugins/pull/3100) [google_maps_flutter] Fix headline in the readme (cla: yes)
[3101](https://github.com/flutter/plugins/pull/3101) Remove `io.flutter.embedded_views_preview` from README (cla: yes)
[3106](https://github.com/flutter/plugins/pull/3106) [in_app_purchase] Fix finishing purchases upon payment dialog cancel… (cla: yes)
[3110](https://github.com/flutter/plugins/pull/3110) in_app_purchase: started supported null as a parameter for the simulatesAskToBuyInSandbox (cla: yes)
[3111](https://github.com/flutter/plugins/pull/3111) [Espresso] Android Code Inspection and Clean up (cla: yes)
[3112](https://github.com/flutter/plugins/pull/3112) [google_maps_flutter] Android Code Inspection and Clean up (cla: yes)
[3113](https://github.com/flutter/plugins/pull/3113) [multiple] Opt-out of null-safety (cla: yes)
[3114](https://github.com/flutter/plugins/pull/3114) [webview_flutter] add public documentation. (cla: yes)
[3115](https://github.com/flutter/plugins/pull/3115) [plugin_platform_interface] Migrate to null safety (cla: yes)
[3116](https://github.com/flutter/plugins/pull/3116) [integration_test] Add watchPerformance (cla: yes, waiting for test harness)
[3117](https://github.com/flutter/plugins/pull/3117) [webview_flutter] Android Code Inspection and Clean up (cla: yes)
[3119](https://github.com/flutter/plugins/pull/3119) [video_player] fix Timer Leak (cla: yes)
[3120](https://github.com/flutter/plugins/pull/3120) [in_app_purchase] Android Code Inspection and Clean up (cla: yes)
[3122](https://github.com/flutter/plugins/pull/3122) [video_player] Fix SSLProtocolException for low API version (cla: yes)
[3123](https://github.com/flutter/plugins/pull/3123) Fixes Playing video from asset on Android (cla: yes)
[3124](https://github.com/flutter/plugins/pull/3124) [camera] Camera fix android audio (cla: yes)
[3125](https://github.com/flutter/plugins/pull/3125) [url_launcher] Handling the ActivityNotFoundExeption. (cla: yes)
[3127](https://github.com/flutter/plugins/pull/3127) [camera] Add null check before starting preview (cla: yes)
[3129](https://github.com/flutter/plugins/pull/3129) [wifi_info_flutter] [wifi_info_flutter_platform_interface] Initial commit for `wifi_info_flutter` plugin and platform interface (cla: yes)
[3130](https://github.com/flutter/plugins/pull/3130) Fix links in package example readmes (cla: yes)
[3131](https://github.com/flutter/plugins/pull/3131) [image_picker] Update documentation to include information about support HEIC images. (cla: yes)
[3132](https://github.com/flutter/plugins/pull/3132) [url_launcher] suppress a `uses or overrides a deprecated API` warning in WebViewActivity (cla: yes)
[3134](https://github.com/flutter/plugins/pull/3134) [wifi_info_flutter_plugin_interface] implement wifi platform interface (cla: yes)
[3135](https://github.com/flutter/plugins/pull/3135) [google_maps_flutter_platform_interface] Adds support for holes in polygon overlays to the Google Maps plugin (cla: yes, waiting for tree to go green)
[3140](https://github.com/flutter/plugins/pull/3140) [file_selector] initial implementation (cla: yes)
[3141](https://github.com/flutter/plugins/pull/3141) [file_selector_web]: Add initial implementation (cla: yes, waiting for test harness)
[3142](https://github.com/flutter/plugins/pull/3142) [url_launcher] Url launcher platform interface null safety (cla: yes)
[3143](https://github.com/flutter/plugins/pull/3143) [wifi_info_flutter] Wifi plugin implementation (cla: yes)
[3144](https://github.com/flutter/plugins/pull/3144) [device_info_platform_interface][device_info] nnbd (cla: yes)
[3145](https://github.com/flutter/plugins/pull/3145) [in_app_purchase] Add example test target to Podfile, add OCMock dependency (cla: yes)
[3146](https://github.com/flutter/plugins/pull/3146) [path_provider] Log errors in the linux example (cla: yes)
[3148](https://github.com/flutter/plugins/pull/3148) [url_launcher] migrate url_launcher package to null safety (cla: yes)
[3149](https://github.com/flutter/plugins/pull/3149) Add windows directory to examples (cla: yes)
[3150](https://github.com/flutter/plugins/pull/3150) Configure analyzer for plugins that are migrated to nnbd (cla: yes)
[3152](https://github.com/flutter/plugins/pull/3152) [share] Replace deprecated Environment.getExternalStorageDirectory() call on Android. (cla: yes)
[3153](https://github.com/flutter/plugins/pull/3153) [google_sign_in] Fix merge mistake. (cla: yes)
[3154](https://github.com/flutter/plugins/pull/3154) Prepare url_launcher for the Link widget (cla: yes, feature)
[3155](https://github.com/flutter/plugins/pull/3155) [web] Implement Link for web (cla: yes, feature)
[3156](https://github.com/flutter/plugins/pull/3156) [google_maps_flutter_web] Fix InfoWindow snippets. (cla: yes)
[3157](https://github.com/flutter/plugins/pull/3157) Sync nnbd branch (cla: yes)
[3159](https://github.com/flutter/plugins/pull/3159) [video_player_platform_interface] Migrate to null safety (cla: yes)
[3163](https://github.com/flutter/plugins/pull/3163) [google_maps_flutter_web] Fix InfoWindows and getLatLng. (cla: yes, waiting for test harness)
[3164](https://github.com/flutter/plugins/pull/3164) [device_info][device_info_platform_interface] update to git deps (cla: yes)
[3165](https://github.com/flutter/plugins/pull/3165) [video_player] Migrate video player to null safety (cla: yes)
[3169](https://github.com/flutter/plugins/pull/3169) [webview_flutter] Fix example in readme (cla: yes)
[3173](https://github.com/flutter/plugins/pull/3173) [Connectivity] wifi removal (cla: yes)
[3174](https://github.com/flutter/plugins/pull/3174) Fix deprecation warning in ci failure (cla: yes)
[3175](https://github.com/flutter/plugins/pull/3175) [nnbd] Various fixes (cla: yes)
[3176](https://github.com/flutter/plugins/pull/3176) [connectivity][connectvity_platform_interface] migrate to nnbd (cla: yes)
[3177](https://github.com/flutter/plugins/pull/3177) Implement Link for native platforms (cla: yes, feature)
[3180](https://github.com/flutter/plugins/pull/3180) [camera] Added documentation about video not working correctly on Android emulators (cla: yes)
[3181](https://github.com/flutter/plugins/pull/3181) [camera] Changed the order of the setters for mediaRecorder in MediaRecorderBu… (cla: yes)
[3183](https://github.com/flutter/plugins/pull/3183) [connectivity] announce 1.0, deprecate wifi APIs (cla: yes)
[3184](https://github.com/flutter/plugins/pull/3184) [url_launcher_linux] Add missing #include (cla: yes)
[3188](https://github.com/flutter/plugins/pull/3188) [share] Fix bug on iPad where `origin` is null and enable XCUITests (cla: yes)
[3189](https://github.com/flutter/plugins/pull/3189) enable xctest in .cirrus.yml (cla: yes)
[3190](https://github.com/flutter/plugins/pull/3190) [wifi_info_flutter_platform_interface] Ready to publish (cla: yes)
[3191](https://github.com/flutter/plugins/pull/3191) [wifi_info_flutter] make it ready for initial 1.0.0 release (cla: yes)
[3192](https://github.com/flutter/plugins/pull/3192) [path_provider] Depend on guava-android instead of full guava library (cla: yes)
[3193](https://github.com/flutter/plugins/pull/3193) [Camera] Made CameraController.isDisposed publicly accessible. Added unit Tests for the new implementation. (cla: yes)
[3196](https://github.com/flutter/plugins/pull/3196) [url_launcher] Migrates Link to null safety (cla: yes)
[3197](https://github.com/flutter/plugins/pull/3197) [device_info_platform_interface] version fix (cla: yes)
[3198](https://github.com/flutter/plugins/pull/3198) Exclude generated_plugin_registrant.cc (cla: yes)
[3199](https://github.com/flutter/plugins/pull/3199) [connectivity][connectivity_platform_interface] update to git deps (cla: yes)
[3200](https://github.com/flutter/plugins/pull/3200) [android_alarm_manager] deprecated display1 (cla: yes)
[3204](https://github.com/flutter/plugins/pull/3204) [video_player] Upgrade ExoPlayer (cla: yes)
[3206](https://github.com/flutter/plugins/pull/3206) [google_maps_flutter] Clean up google_maps_flutter plugin (cla: yes)
[3207](https://github.com/flutter/plugins/pull/3207) [wifi_info_flutter] Method channel name fixed for android (cla: yes)
[3208](https://github.com/flutter/plugins/pull/3208) broaden the constraint on package:vm_service (cla: yes)
[3209](https://github.com/flutter/plugins/pull/3209) Remove unnecessary work around from test in prep for vm_service migration (cla: yes)
[3210](https://github.com/flutter/plugins/pull/3210) [share] Fix bug on iPad where `origin` is null and enable XCUITests in the repo (cla: yes)
[3212](https://github.com/flutter/plugins/pull/3212) [webview_flutter] iOS: Make `webViewWebContentProcessDidTerminate` invoke `onWebResourceError` (cla: yes)
[3213](https://github.com/flutter/plugins/pull/3213) [google_maps_flutter] Overhaul lifecycle management in GoogleMapsPlugin (cla: yes)
[3220](https://github.com/flutter/plugins/pull/3220) [in_app_purchase] Remove the custom analysis options, fix failing lints. (cla: yes)
[3221](https://github.com/flutter/plugins/pull/3221) [video_player][device_info] announce 1.0 (cla: yes)
[3224](https://github.com/flutter/plugins/pull/3224) [google_maps_flutter_web] show only single infoWindow (cla: yes)
[3227](https://github.com/flutter/plugins/pull/3227) [in_app_purchase] Bump version (cla: yes)
[3229](https://github.com/flutter/plugins/pull/3229) [camera] Add missing Dartdocs (cla: yes)
[3233](https://github.com/flutter/plugins/pull/3233) [video_player] Add toString() to Caption (cla: yes)
[3235](https://github.com/flutter/plugins/pull/3235) [connectivity] Fix IllegalArgumentException (cla: yes)
[3237](https://github.com/flutter/plugins/pull/3237) Update contribution guide for xcuitests (cla: yes)
[3238](https://github.com/flutter/plugins/pull/3238) [multiple] Remove custom analysis_options.yaml from web plugins. (cla: yes, waiting for test harness)
[3239](https://github.com/flutter/plugins/pull/3239) Remove unused `test` dependencies add missing environment constraints (cla: yes)
[3243](https://github.com/flutter/plugins/pull/3243) [google_sign_in] fix deprecated member use (cla: yes)
[3245](https://github.com/flutter/plugins/pull/3245) [video_player] Android: Dispose video players when app is closed (cla: yes)
[3249](https://github.com/flutter/plugins/pull/3249) [Path Provider] Migrate platform interface to nnbd (cla: yes)
[3253](https://github.com/flutter/plugins/pull/3253) [camera] Add `camera_platform_interface` package (cla: yes)
[3254](https://github.com/flutter/plugins/pull/3254) [image_picker] Set up XCUITests (cla: yes)
[3255](https://github.com/flutter/plugins/pull/3255) [local_auth] Migrate to null safety. (cla: yes)
[3258](https://github.com/flutter/plugins/pull/3258) [camera] Move camera to camera/camera (cla: yes)
[3259](https://github.com/flutter/plugins/pull/3259) [webview_flutter] update documentation to indicate gesture handling issues on iOS 13.4 and 13.5 (cla: yes)
[3260](https://github.com/flutter/plugins/pull/3260) [cross_file] An abstraction to allow working with files across multiple platforms. (cla: yes)
[3261](https://github.com/flutter/plugins/pull/3261) [file_selector] Allow empty type groups (cla: yes)
[3263](https://github.com/flutter/plugins/pull/3263) [google_maps_flutter_platform_interface] Add a `fromJson` constructor. (cla: yes)
[3269](https://github.com/flutter/plugins/pull/3269) [device_info_platform_interface] Remove default types and correct nullable types (cla: yes)
[3271](https://github.com/flutter/plugins/pull/3271) [wifi_info_flutter] Edit sample wifi_info_flutter plugin (cla: yes)
[3273](https://github.com/flutter/plugins/pull/3273) [google_maps_flutter_web] Render custom Marker icons. (cla: yes)
[3276](https://github.com/flutter/plugins/pull/3276) Fix outdated links across a number of markdown files (cla: yes, waiting for tree to go green)
[3279](https://github.com/flutter/plugins/pull/3279) Use testWidgets instead of test to fix failures not surfacing on CI (cla: yes)
[3280](https://github.com/flutter/plugins/pull/3280) Fix broken link (cla: yes)
[3286](https://github.com/flutter/plugins/pull/3286) [file_selector] Replace locally defined XFile type with cross_file package (cla: yes)
[3287](https://github.com/flutter/plugins/pull/3287) [in_app_purchase] Added serviceTimeout code (cla: yes, waiting for tree to go green)
[3288](https://github.com/flutter/plugins/pull/3288) [android_alarm_manager] fix AndroidManifest.xml for android lint issue "XML tag has empty body" (cla: yes)
[3295](https://github.com/flutter/plugins/pull/3295) bump integration test to 1.0.0 (cla: yes)
[3299](https://github.com/flutter/plugins/pull/3299) [camera] Support Android 30 (cla: yes)
[3302](https://github.com/flutter/plugins/pull/3302) [camera] Add implementations for `camera_platform_interface` package. (cla: yes, feature)
[3303](https://github.com/flutter/plugins/pull/3303) [connectivity] Clear networkCallback object as soon as stream is cancelled (cla: yes)
[3304](https://github.com/flutter/plugins/pull/3304) [ci][image_picker]enable xcode 12/iOS 14 for all tasks except lint (cla: yes, waiting for tree to go green)
[3308](https://github.com/flutter/plugins/pull/3308) [documentation] [url_launcher] fix for readme code sample (cla: yes)
[3309](https://github.com/flutter/plugins/pull/3309) Pass a Uri to package:http APIs (cla: yes, waiting for test harness)
[3311](https://github.com/flutter/plugins/pull/3311) [share] Migrate to null-safety (cla: yes)
[3312](https://github.com/flutter/plugins/pull/3312) [camera] Add zoom support to platform interface (cla: yes)
[3313](https://github.com/flutter/plugins/pull/3313) [camera] Expanded platform interface to support setting flash mode (cla: yes)
[3314](https://github.com/flutter/plugins/pull/3314) [camera] Flash functionality for Android and iOS (cla: yes)
[3315](https://github.com/flutter/plugins/pull/3315) [camera] Zoom functionality for Android and iOS (cla: yes)
[3316](https://github.com/flutter/plugins/pull/3316) [camera] Suppress unchecked cast warning in java test (cla: yes)
[3317](https://github.com/flutter/plugins/pull/3317) [image_picker] [integration_test] Fixes to make the tree green (cla: yes)
[3318](https://github.com/flutter/plugins/pull/3318) Exclude null-safe plugins from testing on stable (cla: yes)
[3319](https://github.com/flutter/plugins/pull/3319) Update analysis options for nnbd (cla: yes)
[3320](https://github.com/flutter/plugins/pull/3320) Update Flutter SDK constraint to match templates; plugins A-C (cla: yes)
[3321](https://github.com/flutter/plugins/pull/3321) Update Flutter SDK constraint to match templates; plugins D-G (cla: yes)
[3322](https://github.com/flutter/plugins/pull/3322) Update Flutter SDK constraint to match templates; plugins I-P (cla: yes)
[3323](https://github.com/flutter/plugins/pull/3323) Update Flutter SDK constraint to match templates; plugins Q-W (cla: yes)
[3324](https://github.com/flutter/plugins/pull/3324) Merge null-safety plugins (cla: yes)
[3326](https://github.com/flutter/plugins/pull/3326) [camera_platform_interface] Add torch definition to the FlashModes enum (cla: yes)
[3327](https://github.com/flutter/plugins/pull/3327) [webview_flutter] Migrate to nnbd (cla: yes)
[3328](https://github.com/flutter/plugins/pull/3328) [android_intent] Migrate to nnbd (cla: yes)
[3329](https://github.com/flutter/plugins/pull/3329) [google_sign_in] Migrate to nnbd (cla: yes)
[3334](https://github.com/flutter/plugins/pull/3334) [webview_flutter] Added 'allowsInlineMediaPlayback' property (cla: yes)
[3335](https://github.com/flutter/plugins/pull/3335) [camera] Ios support documentation (cla: yes)
[3336](https://github.com/flutter/plugins/pull/3336) [camera] Added closeCaptureSession() to stopVideoRecording in Java side (cla: yes)
[3337](https://github.com/flutter/plugins/pull/3337) [camera] Add implementation of didFinishProcessingPhoto callback (iOS) (cla: yes)
[3338](https://github.com/flutter/plugins/pull/3338) [camera] Add implementations for the torch flash mode. (cla: yes)
[3339](https://github.com/flutter/plugins/pull/3339) Remove custom null safety analysis_options files (cla: yes, waiting for tree to go green)
[3342](https://github.com/flutter/plugins/pull/3342) Fix test exclusion logic for nnbd plugins (cla: yes)
[3344](https://github.com/flutter/plugins/pull/3344) [camera] Fixed stale images in imageStream subscriptions (cla: yes)
[3345](https://github.com/flutter/plugins/pull/3345) [camera_platform_interface] Add platform interface methods for setting auto exposure. (cla: yes)
[3346](https://github.com/flutter/plugins/pull/3346) [camera] Add iOS and Android implementations for managing auto exposure. (cla: yes)
[3347](https://github.com/flutter/plugins/pull/3347) Upgrade CocoaPods in Cirrus (cla: yes)
[3348](https://github.com/flutter/plugins/pull/3348) [local_auth] Update README for Android Integration (cla: yes, waiting for tree to go green)
[3349](https://github.com/flutter/plugins/pull/3349) [image_picker] use LocalizedString to fix lint error. (cla: yes)
[3353](https://github.com/flutter/plugins/pull/3353) [image_picker] Do not copy a static field into another static field (cla: yes)
[3354](https://github.com/flutter/plugins/pull/3354) [url_launcher] forceSafariVC should be nullable to avoid breaking change (cla: yes)
[3359](https://github.com/flutter/plugins/pull/3359) [camera] Implemented ImageStream ImageFormat setting for Dart and Android (cla: yes)
[3361](https://github.com/flutter/plugins/pull/3361) [video_player] Fix video player test (cla: yes)
[3362](https://github.com/flutter/plugins/pull/3362) [camera] Fix API documentation of the `CameraController.takePicture` method (cla: yes)
[3363](https://github.com/flutter/plugins/pull/3363) [cross_file] Make sure saveTo returns a Future (cla: yes)
[3364](https://github.com/flutter/plugins/pull/3364) [camera_platform_interface] Added imageFormatGroup to initialize (cla: yes)
[3365](https://github.com/flutter/plugins/pull/3365) [camera] Added maxVideoDuration to startVideoRecording (cla: yes)
[3366](https://github.com/flutter/plugins/pull/3366) [battery] Migrate battery_plugin_interface to null safety (cla: yes)
[3367](https://github.com/flutter/plugins/pull/3367) [camera] Fix flash/torch not working on some Android devices. (cla: yes)
[3369](https://github.com/flutter/plugins/pull/3369) [camera_platform_interface] Add platform interface methods for setting auto focus. (cla: yes)
[3370](https://github.com/flutter/plugins/pull/3370) [camera] Add iOS and Android implementations for managing auto focus. (cla: yes)
[3375](https://github.com/flutter/plugins/pull/3375) [camera] Fix video recording exception on Android (cla: yes)
[3376](https://github.com/flutter/plugins/pull/3376) [camera] Update camera_platform_interface dependency to 1.2.0 (cla: yes, waiting for tree to go green)
[3377](https://github.com/flutter/plugins/pull/3377) [camera] Revert platform interface dependency to lower version (cla: yes, waiting for tree to go green)
[3380](https://github.com/flutter/plugins/pull/3380) [battery] Migrate battery to null safety (cla: yes)
[3383](https://github.com/flutter/plugins/pull/3383) [camera] disable auto focus when using front facing camera on Android (cla: yes)
[3389](https://github.com/flutter/plugins/pull/3389) [camera_platform_interface] Add platform interface methods for locking capture orientation. (cla: yes)
[3390](https://github.com/flutter/plugins/pull/3390) [camera] Implemented capture orientation locking. Fixed preview rotation issues. Fixed video and photo orientation upon save. (cla: yes, waiting for tree to go green)
[3395](https://github.com/flutter/plugins/pull/3395) Update obsolete button refs in plugin examples (cla: yes, waiting for tree to go green)
[3396](https://github.com/flutter/plugins/pull/3396) [camera] set useAutoFocus to true by default (cla: yes)
[3397](https://github.com/flutter/plugins/pull/3397) Sync the PR template to the new style (cla: yes, waiting for tree to go green)
[3399](https://github.com/flutter/plugins/pull/3399) [image_picker] fix version (cla: yes, waiting for tree to go green)
[3400](https://github.com/flutter/plugins/pull/3400) Ignore deprecated_member_use analysis lint (cla: yes, waiting for tree to go green)
[3406](https://github.com/flutter/plugins/pull/3406) [camera] Fix initialization error in camera example on iOS (cla: yes)
[3409](https://github.com/flutter/plugins/pull/3409) [video_player] Migrate deprecated api (cla: yes)
[3410](https://github.com/flutter/plugins/pull/3410) [path_provider] Migrate path_provider_windows to nullsafety (cla: yes, p: path_provider)
[3411](https://github.com/flutter/plugins/pull/3411) [camera] Fixes crash when taking a picture on iOS devices without flash (cla: yes)
[3412](https://github.com/flutter/plugins/pull/3412) [google_maps_flutter_web] Support for Holes in Polygons (cla: yes)
[3413](https://github.com/flutter/plugins/pull/3413) [camera] Copy zoom settings from preview to final capture builder on Android (cla: yes)
[3414](https://github.com/flutter/plugins/pull/3414) [camera] Fix picture capture causing a crash on some Huawei devices. (cla: yes)
[3416](https://github.com/flutter/plugins/pull/3416) [file_selector_web] Add dummy ios directory. (cla: yes)
[3418](https://github.com/flutter/plugins/pull/3418) [google_maps_flutter_platform_interface] add custom tile support (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3419](https://github.com/flutter/plugins/pull/3419) [camera] Fixes crash with using inner camera on some Android devices. (cla: yes, waiting for tree to go green)
[3422](https://github.com/flutter/plugins/pull/3422) [file_selector_platform_interface] Bump the cross_file version. (cla: yes)
[3432](https://github.com/flutter/plugins/pull/3432) [script] Update build_all_plugins_app to exclude some plugins in `master`. (cla: yes)
[3433](https://github.com/flutter/plugins/pull/3433) Add Labeler Github Action (cla: yes)
[3435](https://github.com/flutter/plugins/pull/3435) [camera] combine release messages and versions (cla: yes, waiting for tree to go green)
[3436](https://github.com/flutter/plugins/pull/3436) [google_sign_in, url_launcher] Document unendorsement of web. (cla: yes)
[3437](https://github.com/flutter/plugins/pull/3437) [plugin_platform_interface] Use Mockito nnbd (cla: yes, waiting for tree to go green)
[3440](https://github.com/flutter/plugins/pull/3440) [google_maps_flutter_web] Hole Direction in Polygons (cla: yes)
[3442](https://github.com/flutter/plugins/pull/3442) Windows nullsafety prep (cla: yes)
[3444](https://github.com/flutter/plugins/pull/3444) [camera] Ensure that channel.invokeMethod runs on the main thread (cla: yes, p: camera, waiting for tree to go green)
[3449](https://github.com/flutter/plugins/pull/3449) [google_maps_flutter_platform_interface] Fixes for custom tiles (cla: yes, p: google_maps_flutter, waiting for tree to go green)
[3459](https://github.com/flutter/plugins/pull/3459) Revert "[ci][image_picker]enable xcode 12/iOS 14 for all tasks except lint" (cla: yes, p: image_picker)
[3462](https://github.com/flutter/plugins/pull/3462) Support breaking http change (cla: yes, p: cross_file)
[3463](https://github.com/flutter/plugins/pull/3463) bump vmservice (cla: yes, p: integration_test)
[3465](https://github.com/flutter/plugins/pull/3465) [path_provider] drop uuid (cla: yes, p: path_provider)
| website/src/release/release-notes/release-notes-2.0.0.md/0 | {
"file_path": "website/src/release/release-notes/release-notes-2.0.0.md",
"repo_id": "website",
"token_count": 582799
} | 1,260 |
---
title: Flutter's build modes
description: Describes Flutter's build modes and when you should use debug, release, or profile mode.
---
The Flutter tooling supports three modes when compiling your app,
and a headless mode for testing.
You choose a compilation mode depending on where you are in
the development cycle. Are you debugging your code? Do you
need profiling information? Are you ready to deploy your app?
A quick summary for when to use which mode is as follows:
* Use [debug](#debug) mode during development,
when you want to use [hot reload][].
* Use [profile](#profile) mode when you want to analyze
performance.
* Use [release](#release) mode when you are ready to release
your app.
The rest of the page details these modes.
* To learn about headless testing, see the [Flutter wiki][].
* To learn how to detect the build mode, see the
[Check for Debug/Release Mode in Flutter Apps] blog post.
[Check for Debug/Release Mode in Flutter Apps]: https://retroportalstudio.medium.com/check-for-debug-release-mode-in-flutter-apps-d8d545f20da3
## Debug
In _debug mode_, the app is set up for debugging on the physical
device, emulator, or simulator.
Debug mode for mobile apps mean that:
* [Assertions][] are enabled.
* Service extensions are enabled.
* Compilation is optimized for fast development and run cycles
(but not for execution speed, binary size, or deployment).
* Debugging is enabled, and tools supporting source level debugging
(such as [DevTools][]) can connect to the process.
Debug mode for a web app means that:
* The build is _not_ minified and tree shaking has _not_ been
performed.
* The app is compiled with the [dartdevc][] compiler for
easier debugging.
By default, `flutter run` compiles to debug mode.
Your IDE supports this mode. Android Studio,
for example, provides a **Run > Debug...** menu option,
as well as a green bug icon overlaid with a small triangle
on the project page.
{{site.alert.note}}
* Hot reload works _only_ in debug mode.
* The emulator and simulator execute _only_ in debug mode.
* Application performance can be janky in debug mode.
Measure performance in [profile](#profile)
mode on an actual device.
{{site.alert.end}}
## Release
Use _release mode_ for deploying the app, when you want maximum
optimization and minimal footprint size. For mobile, release mode
(which is not supported on the simulator or emulator), means that:
* Assertions are disabled.
* Debugging information is stripped out.
* Debugging is disabled.
* Compilation is optimized for fast startup, fast execution,
and small package sizes.
* Service extensions are disabled.
Release mode for a web app means that:
* The build is minified and tree shaking has been performed.
* The app is compiled with the [dart2js][] compiler for
best performance.
The command `flutter run --release` compiles to release mode.
Your IDE supports this mode. Android Studio, for example,
provides a **Run > Run...** menu option, as well as a triangular
green run button icon on the project page.
You can compile to release mode for a specific target
with `flutter build <target>`. For a list of supported targets,
use `flutter help build`.
For more information, see the docs on releasing
[iOS][] and [Android][] apps.
## Profile
In _profile mode_, some debugging ability is maintained—enough
to profile your app's performance. Profile mode is disabled on
the emulator and simulator, because their behavior is not representative
of real performance. On mobile, profile mode is similar to release mode,
with the following differences:
* Some service extensions, such as the one that enables the performance
overlay, are enabled.
* Tracing is enabled, and tools supporting source-level debugging
(such as [DevTools][]) can connect to the process.
Profile mode for a web app means that:
* The build is _not_ minified but tree shaking has been performed.
* The app is compiled with the [dart2js][] compiler.
* DevTools can't connect to a Flutter web app running
in profile mode. Use Chrome DevTools to
[generate timeline events][] for a web app.
Your IDE supports this mode. Android Studio, for example,
provides a **Run > Profile...** menu option.
The command `flutter run --profile` compiles to profile mode.
{{site.alert.note}}
Use the [DevTools][] suite to profile your app's performance.
{{site.alert.end}}
For more information on the build modes, see
[Flutter's build modes][].
[Android]: /deployment/android
[Assertions]: {{site.dart-site}}/language/error-handling#assert
[dart2js]: {{site.dart-site}}/tools/dart2js
[dartdevc]: {{site.dart-site}}/tools/dartdevc
[DevTools]: /tools/devtools
[Flutter wiki]: {{site.repo.flutter}}/wiki/Flutter's-modes
[Flutter's build modes]: {{site.repo.flutter}}/wiki/Flutter%27s-modes
[generate timeline events]: {{site.developers}}/web/tools/chrome-devtools/evaluate-performance/performance-reference
[hot reload]: /tools/hot-reload
[iOS]: /deployment/ios
| website/src/testing/build-modes.md/0 | {
"file_path": "website/src/testing/build-modes.md",
"repo_id": "website",
"token_count": 1361
} | 1,261 |
---
title: Using the debugger
description: How to use DevTools' source-level debugger.
---
{{site.alert.note}}
DevTools hides the Debugger tab if the app was launched
from VS Code because VS Code has a built-in debugger.
{{site.alert.end}}
## Getting started
DevTools includes a full source-level debugger, supporting
breakpoints, stepping, and variable inspection.
{{site.alert.note}}
The debugger works with all Flutter and Dart applications.
If you are looking for a way to use GDB to remotely debug the
Flutter engine running within an Android app process,
check out [`flutter_gdb`][].
{{site.alert.end}}
[`flutter_gdb`]: {{site.repo.engine}}/blob/main/sky/tools/flutter_gdb
When you open the debugger tab, you should see the source for the main
entry-point for your app loaded in the debugger.
In order to browse around more of your application sources, click **Libraries**
(top right) or press <kbd>Ctrl</kbd> / <kbd>Cmd</kbd> + <kbd>P</kbd>.
This opens the libraries window and allows you
to search for other source files.
{:width="100%"}
## Setting breakpoints
To set a breakpoint, click the left margin (the line number ruler)
in the source area. Clicking once sets a breakpoint, which should
also show up in the **Breakpoints** area on the left. Clicking
again removes the breakpoint.
## The call stack and variable areas
When your application encounters a breakpoint, it pauses there,
and the DevTools debugger shows the paused execution location
in the source area. In addition, the `Call stack` and `Variables`
areas populate with the current call stack for the paused isolate,
and the local variables for the selected frame. Selecting other
frames in the `Call stack` area changes the contents of the variables.
Within the `Variables` area, you can inspect individual objects by
toggling them open to see their fields. Hovering over an object
in the `Variables` area calls `toString()` for that object and
displays the result.
## Stepping through source code
When paused, the three stepping buttons become active.
* Use **Step in** to step into a method invocation, stopping at
the first executable line in that invoked method.
* Use **Step over** to step over a method invocation;
this steps through source lines in the current method.
* Use **Step out** to step out of the current method,
without stopping at any intermediary lines.
In addition, the **Resume** button continues regular
execution of the application.
## Console output
Console output for the running app (stdout and stderr) is
displayed in the console, below the source code area.
You can also see the output in the [Logging view][].
## Breaking on exceptions
To adjust the stop-on-exceptions behavior, toggle the
**Ignore** dropdown at the top of the debugger view.
Breaking on unhandled excepts only pauses execution if the
breakpoint is considered uncaught by the application code.
Breaking on all exceptions causes the debugger to pause
whether or not the breakpoint was caught by application code.
## Known issues
When performing a hot restart for a Flutter application,
user breakpoints are cleared.
[Logging view]: /tools/devtools/logging
## Other resources
For more information on debugging and profiling, see the
[Debugging][] page.
[Debugging]: /testing/debugging
| website/src/tools/devtools/debugger.md/0 | {
"file_path": "website/src/tools/devtools/debugger.md",
"repo_id": "website",
"token_count": 885
} | 1,262 |
---
short-title: 2.14.0 release notes
description: Release notes for Dart and Flutter DevTools version 2.14.0.
toc: false
---
{% include_relative release-notes-2.14.0-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.14.0.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.14.0.md",
"repo_id": "website",
"token_count": 61
} | 1,263 |
---
short-title: 2.22.2 release notes
description: Release notes for Dart and Flutter DevTools version 2.22.2.
toc: false
---
{% include_relative release-notes-2.22.2-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.22.2.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.22.2.md",
"repo_id": "website",
"token_count": 61
} | 1,264 |
---
short-title: 2.28.3 release notes
description: Release notes for Dart and Flutter DevTools version 2.28.3.
toc: false
---
{% include_relative release-notes-2.28.3-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.28.3.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.28.3.md",
"repo_id": "website",
"token_count": 61
} | 1,265 |
---
short-title: 2.7.0 release notes
description: Release notes for Dart and Flutter DevTools version 2.7.0.
toc: false
---
{% include_relative release-notes-2.7.0-src.md %}
| website/src/tools/devtools/release-notes/release-notes-2.7.0.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.7.0.md",
"repo_id": "website",
"token_count": 61
} | 1,266 |
---
title: Terms of Service
description: The terms of service for the Flutter website.
---
The Flutter website (the "Website") is hosted by Google. By using and / or
visiting the Website, you consent to be bound by Google's general
[Terms of Service][] and [Privacy Policy][].
The "Flutter" name and the Flutter logo
<img src="/assets/images/branding/flutter/logo/square.svg" width="32px" alt="Flutter logo" class="align-baseline">
(the "Flutter Marks") are trademarks owned by Google and are not included
within the assets licensed under the Creative Commons Attribution 4.0
International License. Google grants you a non-transferable,
non-exclusive, royalty-free limited license to use the Flutter Marks
subject to your compliance with the [Flutter Brand Guidelines](/brand).
Except as set forth above, nothing herein grants or should be deemed
to grant to you any right, title or interest in or to the Flutter Marks.
As noted above, Google owns the Flutter trademarks, but we license them
so they can be used by the developer community to support the Flutter
SDK, including through training materials and other community content.
At the same time, it's important to make sure that people don't
use the marks in ways that could cause confusion or otherwise misuse
the marks, so we have prepared [brand guidelines](/brand) that describe the
allowed uses of the marks. Our goal in protecting the Flutter trademarks
is to benefit the entire community by ensuring that the marks are only used
in ways that are consistent with Google's mission to provide a free and open
source SDK.
[Terms of Service]: https://policies.google.com/terms
[Privacy Policy]: https://policies.google.com/privacy
| website/src/tos/index.md/0 | {
"file_path": "website/src/tos/index.md",
"repo_id": "website",
"token_count": 415
} | 1,267 |
---
layout: toc
title: Text
description: Content covering how to add and customize text in Flutter appw.
sitemap: false
---
| website/src/ui/design/text/index.md/0 | {
"file_path": "website/src/ui/design/text/index.md",
"repo_id": "website",
"token_count": 36
} | 1,268 |
---
title: Using slivers to achieve fancy scrolling
description: Where to find information on using slivers to implement fancy scrolling effects, like elastic scrolling, in Flutter.
toc: false
---
A sliver is a portion of a scrollable area that you
can define to behave in a special way.
You can use slivers to achieve custom scrolling effects,
such as elastic scrolling.
For a free, instructor-led video workshop that uses DartPad,
check out the following video about using slivers.
<iframe width="560" height="315" src="{{site.yt.embed}}/YY-_yrZdjGc" title="Learn how to build beautiful scrolling examples in Flutter" {{site.yt.set}}></iframe>
## Resources
For more information on implementing fancy scrolling effects
in Flutter, see the following resources:
<dl markdown="1">
<dt markdown="1"> **[Slivers, Demystified][]**
</dt>
<dd markdown="1">A free article on Medium that
explains how to implement custom scrolling
using the sliver classes.
</dd>
<dt markdown="1"> **[SliverAppBar][sliver-app-bar-video]**
</dt>
<dd markdown="1">A one-minute Widget-of-the-week
video that gives an overview of the
`SliverAppBar` widget.
<iframe width="560" height="315" src="{{site.yt.embed}}/R9C5KMJKluE" title="Learn about the SliverAppBar Widget" {{site.yt.set}}></iframe>
</dd>
<dt markdown="1"> **[SliverList and SliverGrid][]**
</dt>
<dd markdown="1">A one-minute Widget-of-the-week
video that gives an overview of the `SliverList`
and `SliverGrid` widgets.
<iframe width="560" height="315" src="{{site.yt.embed}}/ORiTTaVY6mM" title="Learn about the SliverList and SliverBar Widget" {{site.yt.set}}></iframe>
</dd>
<dt markdown="1"> **[Slivers explained - Making dynamic layouts][]**
</dt>
<dd markdown="1">A 50-minute episode of [The Boring Show][]
where Ian Hickson, Flutter's Tech Lead, and Filip Hracek
discuss the power of slivers.
<iframe width="560" height="315" src="{{site.yt.embed}}/Mz3kHQxBjGg" title="Watch the Boring Show to learn about slivers" {{site.yt.set}}></iframe>
</dd>
</dl>
## API docs
To learn more about the available sliver APIs,
check out these related API docs:
* [`CustomScrollView`][]
* [`SliverAppBar`][]
* [`SliverGrid`][]
* [`SliverList`][]
[`CustomScrollView`]: {{site.api}}/flutter/widgets/CustomScrollView-class.html
[sliver-app-bar-video]: {{site.yt.watch}}?v=R9C5KMJKluE
[`SliverAppBar`]: {{site.api}}/flutter/material/SliverAppBar-class.html
[`SliverGrid`]: {{site.api}}/flutter/widgets/SliverGrid-class.html
[SliverList and SliverGrid]: {{site.yt.watch}}?v=ORiTTaVY6mM
[`SliverList`]: {{site.api}}/flutter/widgets/SliverList-class.html
[Slivers, DeMystified]: {{site.flutter-medium}}/slivers-demystified-6ff68ab0296f
[Slivers explained - Making dynamic layouts]: {{site.yt.watch}}?v=Mz3kHQxBjGg
[The Boring Show]: {{site.yt.playlist}}PLOU2XLYxmsIK0r_D-zWcmJ1plIcDNnRkK
| website/src/ui/layout/scrolling/slivers.md/0 | {
"file_path": "website/src/ui/layout/scrolling/slivers.md",
"repo_id": "website",
"token_count": 1009
} | 1,269 |
---
title: Material 2 Components widgets
short-title: Material 2
description: >
A catalog of Flutter's widgets implementing the Material 2 design guidelines.
---
{% include docs/catalogpage.html category="Material 2 components" %}
| website/src/ui/widgets/material2.md/0 | {
"file_path": "website/src/ui/widgets/material2.md",
"repo_id": "website",
"token_count": 59
} | 1,270 |
// Copyright 2024 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:convert';
import 'dart:io';
import 'package:args/command_runner.dart';
final class VerifyFirebaseJsonCommand extends Command<int> {
@override
String get description => 'Verify the firebase.json file is valid and '
'meets the site standards.';
@override
String get name => 'verify-firebase-json';
@override
Future<int> run() async => _verifyFirebaseJson();
}
int _verifyFirebaseJson() {
final firebaseFile = File('firebase.json');
if (!firebaseFile.existsSync()) {
stderr.writeln(
'Cannot find the firebase.json file in the current directory.',
);
return 1;
}
try {
final firebaseConfigString = firebaseFile.readAsStringSync();
final firebaseConfig =
jsonDecode(firebaseConfigString) as Map<String, Object?>;
final hostingConfig = firebaseConfig['hosting'] as Map<String, Object?>?;
if (hostingConfig == null) {
stderr.writeln(
"Error: The firebase.json file is missing a top-level 'hosting' entry.",
);
return 1;
}
final redirects = hostingConfig['redirects'];
if (redirects == null) {
stdout.writeln(
'There are no redirects specified within the firebase.json file.',
);
return 0;
}
if (redirects is! List<Object?>) {
stderr.writeln(
"Error: The firebase.json file's 'redirect' entry is not a list.",
);
return 1;
}
if (redirects.isEmpty) {
return 0;
}
final sources = <String>{};
var duplicatesFound = 0;
for (final redirect in redirects) {
if (redirect is! Map<String, Object?>) {
stderr.writeln(
'Error: Each redirect must be a map containing '
"a 'source' or 'regex' field.",
);
return 1;
}
final source = redirect['source'] ?? redirect['regex'];
if (source == null) {
stderr.writeln(
'Error: The firebase.json file has a '
"redirect missing a 'source' or 'regex'.",
);
return 1;
}
if (source is! String) {
stderr.writeln(
'Error: The firebase.json redirect $redirect has a '
"'source' or 'regex' specified which is not a string.",
);
return 1;
}
if (source.isEmpty) {
stderr.writeln(
'Error: The firebase.json redirect $redirect has an '
"empty 'source' or 'regex'.",
);
return 1;
}
if (sources.contains(source)) {
stderr.writeln(
"Error: Multiple redirects share the '$source' source.",
);
duplicatesFound += 1;
}
sources.add(source);
final destination = redirect['destination'];
if (destination == null) {
stderr.writeln(
'Error: The firebase.json file has a '
"redirect missing a 'destination'.",
);
return 1;
}
if (destination is! String) {
stderr.writeln(
'Error: The firebase.json redirect $redirect has a '
"'destination' specified which is not a string.",
);
return 1;
}
if (destination.isEmpty) {
stderr.writeln(
'Error: The firebase.json redirect $redirect has '
"an empty 'destination'.",
);
return 1;
}
}
if (duplicatesFound > 0) {
stderr.writeln(
'Error: $duplicatesFound duplicate sources found '
'in the firebase.json redirects.',
);
return 1;
}
} catch (e) {
stderr.writeln(
'Error: Encountered an error when loading the firebase.json file:',
);
stderr.writeln(e);
return 1;
}
return 0;
}
| website/tool/flutter_site/lib/src/commands/verify_firebase_json.dart/0 | {
"file_path": "website/tool/flutter_site/lib/src/commands/verify_firebase_json.dart",
"repo_id": "website",
"token_count": 1665
} | 1,271 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/adaptive_app/step_07/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/adaptive_app/step_07/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 0 |
#include "Generated.xcconfig"
| codelabs/animated-responsive-layout/step_07/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/animated-responsive-layout/step_07/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 1 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/animated-responsive-layout/step_07/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/animated-responsive-layout/step_07/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 2 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/boring_to_beautiful/final/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/boring_to_beautiful/final/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 3 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/boring_to_beautiful/step_02/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/boring_to_beautiful/step_02/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 4 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/boring_to_beautiful/step_04/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/boring_to_beautiful/step_04/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 5 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/boring_to_beautiful/step_06/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/boring_to_beautiful/step_06/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 6 |
include: ../../analysis_options.yaml
| codelabs/brick_breaker/step_05/analysis_options.yaml/0 | {
"file_path": "codelabs/brick_breaker/step_05/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 7 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/brick_breaker/step_05/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/brick_breaker/step_05/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 8 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/brick_breaker/step_08/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/brick_breaker/step_08/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 9 |
import 'package:flutter/material.dart';
class ScoreCard extends StatelessWidget {
const ScoreCard({
super.key,
required this.score,
});
final ValueNotifier<int> score;
@override
Widget build(BuildContext context) {
return ValueListenableBuilder<int>(
valueListenable: score,
builder: (context, score, child) {
return Padding(
padding: const EdgeInsets.fromLTRB(12, 6, 12, 18),
child: Text(
'Score: $score'.toUpperCase(),
style: Theme.of(context).textTheme.titleLarge!,
),
);
},
);
}
}
| codelabs/brick_breaker/step_10/lib/src/widgets/score_card.dart/0 | {
"file_path": "codelabs/brick_breaker/step_10/lib/src/widgets/score_card.dart",
"repo_id": "codelabs",
"token_count": 258
} | 10 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/brick_breaker/step_10/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/brick_breaker/step_10/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 11 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/dart-patterns-and-records/step_05/android/gradle.properties/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_05/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 12 |
#include "Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_07_a/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_07_a/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 13 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_07_a/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_07_a/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 14 |
#import "GeneratedPluginRegistrant.h"
| codelabs/dart-patterns-and-records/step_07_b/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_07_b/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 15 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_08/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_08/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 16 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/dart-patterns-and-records/step_11_a/android/gradle.properties/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_11_a/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 17 |
#include "Generated.xcconfig"
| codelabs/deeplink_cookbook/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/deeplink_cookbook/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 18 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/deeplink_cookbook/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/deeplink_cookbook/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 19 |
/*
* Duktape public API for Duktape 2.7.0.
*
* See the API reference for documentation on call semantics. The exposed,
* supported API is between the "BEGIN PUBLIC API" and "END PUBLIC API"
* comments. Other parts of the header are Duktape internal and related to
* e.g. platform/compiler/feature detection.
*
* Git commit 03d4d728f8365021de6955c649e6dcd05dcca99f (03d4d72-dirty).
* Git branch HEAD.
*
* See Duktape AUTHORS.rst and LICENSE.txt for copyright and
* licensing information.
*/
/* LICENSE.txt */
/*
* ===============
* Duktape license
* ===============
*
* (http://opensource.org/licenses/MIT)
*
* Copyright (c) 2013-present by Duktape authors (see AUTHORS.rst)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
/* AUTHORS.rst */
/*
* ===============
* Duktape authors
* ===============
*
* Copyright
* =========
*
* Duktape copyrights are held by its authors. Each author has a copyright
* to their contribution, and agrees to irrevocably license the contribution
* under the Duktape ``LICENSE.txt``.
*
* Authors
* =======
*
* Please include an e-mail address, a link to your GitHub profile, or something
* similar to allow your contribution to be identified accurately.
*
* The following people have contributed code, website contents, or Wiki contents,
* and agreed to irrevocably license their contributions under the Duktape
* ``LICENSE.txt`` (in order of appearance):
*
* * Sami Vaarala <[email protected]>
* * Niki Dobrev
* * Andreas \u00d6man <[email protected]>
* * L\u00e1szl\u00f3 Lang\u00f3 <[email protected]>
* * Legimet <[email protected]>
* * Karl Skomski <[email protected]>
* * Bruce Pascoe <[email protected]>
* * Ren\u00e9 Hollander <[email protected]>
* * Julien Hamaide (https://github.com/crazyjul)
* * Sebastian G\u00f6tte (https://github.com/jaseg)
* * Tomasz Magulski (https://github.com/magul)
* * \D. Bohdan (https://github.com/dbohdan)
* * Ond\u0159ej Jirman (https://github.com/megous)
* * Sa\u00fal Ibarra Corretg\u00e9 <[email protected]>
* * Jeremy HU <[email protected]>
* * Ole Andr\u00e9 Vadla Ravn\u00e5s (https://github.com/oleavr)
* * Harold Brenes (https://github.com/harold-b)
* * Oliver Crow (https://github.com/ocrow)
* * Jakub Ch\u0142api\u0144ski (https://github.com/jchlapinski)
* * Brett Vickers (https://github.com/beevik)
* * Dominik Okwieka (https://github.com/okitec)
* * Remko Tron\u00e7on (https://el-tramo.be)
* * Romero Malaquias ([email protected])
* * Michael Drake <[email protected]>
* * Steven Don (https://github.com/shdon)
* * Simon Stone (https://github.com/sstone1)
* * \J. McC. (https://github.com/jmhmccr)
* * Jakub Nowakowski (https://github.com/jimvonmoon)
* * Tommy Nguyen (https://github.com/tn0502)
* * Fabrice Fontaine (https://github.com/ffontaine)
* * Christopher Hiller (https://github.com/boneskull)
* * Gonzalo Diethelm (https://github.com/gonzus)
* * Michal Kasperek (https://github.com/michalkas)
* * Andrew Janke (https://github.com/apjanke)
* * Steve Fan (https://github.com/stevefan1999)
* * Edward Betts (https://github.com/edwardbetts)
* * Ozhan Duz (https://github.com/webfolderio)
* * Akos Kiss (https://github.com/akosthekiss)
* * TheBrokenRail (https://github.com/TheBrokenRail)
* * Jesse Doyle (https://github.com/jessedoyle)
* * Gero Kuehn (https://github.com/dc6jgk)
* * James Swift (https://github.com/phraemer)
* * Luis de Bethencourt (https://github.com/luisbg)
* * Ian Whyman (https://github.com/v00d00)
* * Rick Sayre (https://github.com/whorfin)
* * Craig Leres (https://github.com/leres)
* * Maurici Abad (https://github.com/mauriciabad)
* * Nancy Li (https://github.com/NancyLi1013)
* * William Parks (https://github.com/WilliamParks)
* * Sam Hellawell (https://github.com/samhellawell)
* * Vladislavs Sokurenko (https://github.com/sokurenko)
*
* Other contributions
* ===================
*
* The following people have contributed something other than code (e.g. reported
* bugs, provided ideas, etc; roughly in order of appearance):
*
* * Greg Burns
* * Anthony Rabine
* * Carlos Costa
* * Aur\u00e9lien Bouilland
* * Preet Desai (Pris Matic)
* * judofyr (http://www.reddit.com/user/judofyr)
* * Jason Woofenden
* * Micha\u0142 Przyby\u015b
* * Anthony Howe
* * Conrad Pankoff
* * Jim Schimpf
* * Rajaran Gaunker (https://github.com/zimbabao)
* * Andreas \u00d6man
* * Doug Sanden
* * Josh Engebretson (https://github.com/JoshEngebretson)
* * Remo Eichenberger (https://github.com/remoe)
* * Mamod Mehyar (https://github.com/mamod)
* * David Demelier (https://github.com/markand)
* * Tim Caswell (https://github.com/creationix)
* * Mitchell Blank Jr (https://github.com/mitchblank)
* * https://github.com/yushli
* * Seo Sanghyeon (https://github.com/sanxiyn)
* * Han ChoongWoo (https://github.com/tunz)
* * Joshua Peek (https://github.com/josh)
* * Bruce E. Pascoe (https://github.com/fatcerberus)
* * https://github.com/Kelledin
* * https://github.com/sstruchtrup
* * Michael Drake (https://github.com/tlsa)
* * https://github.com/chris-y
* * Laurent Zubiaur (https://github.com/lzubiaur)
* * Neil Kolban (https://github.com/nkolban)
* * Wilhelm Wanecek (https://github.com/wanecek)
* * Andrew Janke (https://github.com/apjanke)
* * Unamer (https://github.com/unamer)
* * Karl Dahlke ([email protected])
*
* If you are accidentally missing from this list, send me an e-mail
* (``[email protected]``) and I'll fix the omission.
*/
#if !defined(DUKTAPE_H_INCLUDED)
#define DUKTAPE_H_INCLUDED
#define DUK_SINGLE_FILE
/*
* BEGIN PUBLIC API
*/
/*
* Version and Git commit identification
*/
/* Duktape version, (major * 10000) + (minor * 100) + patch. Allows C code
* to #if (DUK_VERSION >= NNN) against Duktape API version. The same value
* is also available to ECMAScript code in Duktape.version. Unofficial
* development snapshots have 99 for patch level (e.g. 0.10.99 would be a
* development version after 0.10.0 but before the next official release).
*/
#define DUK_VERSION 20700L
/* Git commit, describe, and branch for Duktape build. Useful for
* non-official snapshot builds so that application code can easily log
* which Duktape snapshot was used. Not available in the ECMAScript
* environment.
*/
#define DUK_GIT_COMMIT "03d4d728f8365021de6955c649e6dcd05dcca99f"
#define DUK_GIT_DESCRIBE "03d4d72-dirty"
#define DUK_GIT_BRANCH "HEAD"
/* External duk_config.h provides platform/compiler/OS dependent
* typedefs and macros, and DUK_USE_xxx config options so that
* the rest of Duktape doesn't need to do any feature detection.
* DUK_VERSION is defined before including so that configuration
* snippets can react to it.
*/
#include "duk_config.h"
/*
* Avoid C++ name mangling
*/
#if defined(__cplusplus)
extern "C" {
#endif
/*
* Some defines forwarded from feature detection
*/
#undef DUK_API_VARIADIC_MACROS
#if defined(DUK_USE_VARIADIC_MACROS)
#define DUK_API_VARIADIC_MACROS
#endif
#define DUK_API_NORETURN(decl) DUK_NORETURN(decl)
/*
* Public API specific typedefs
*
* Many types are wrapped by Duktape for portability to rare platforms
* where e.g. 'int' is a 16-bit type. See practical typing discussion
* in Duktape web documentation.
*/
struct duk_thread_state;
struct duk_memory_functions;
struct duk_function_list_entry;
struct duk_number_list_entry;
struct duk_time_components;
/* duk_context is now defined in duk_config.h because it may also be
* referenced there by prototypes.
*/
typedef struct duk_thread_state duk_thread_state;
typedef struct duk_memory_functions duk_memory_functions;
typedef struct duk_function_list_entry duk_function_list_entry;
typedef struct duk_number_list_entry duk_number_list_entry;
typedef struct duk_time_components duk_time_components;
typedef duk_ret_t (*duk_c_function)(duk_context *ctx);
typedef void *(*duk_alloc_function) (void *udata, duk_size_t size);
typedef void *(*duk_realloc_function) (void *udata, void *ptr, duk_size_t size);
typedef void (*duk_free_function) (void *udata, void *ptr);
typedef void (*duk_fatal_function) (void *udata, const char *msg);
typedef void (*duk_decode_char_function) (void *udata, duk_codepoint_t codepoint);
typedef duk_codepoint_t (*duk_map_char_function) (void *udata, duk_codepoint_t codepoint);
typedef duk_ret_t (*duk_safe_call_function) (duk_context *ctx, void *udata);
typedef duk_size_t (*duk_debug_read_function) (void *udata, char *buffer, duk_size_t length);
typedef duk_size_t (*duk_debug_write_function) (void *udata, const char *buffer, duk_size_t length);
typedef duk_size_t (*duk_debug_peek_function) (void *udata);
typedef void (*duk_debug_read_flush_function) (void *udata);
typedef void (*duk_debug_write_flush_function) (void *udata);
typedef duk_idx_t (*duk_debug_request_function) (duk_context *ctx, void *udata, duk_idx_t nvalues);
typedef void (*duk_debug_detached_function) (duk_context *ctx, void *udata);
struct duk_thread_state {
/* XXX: Enough space to hold internal suspend/resume structure.
* This is rather awkward and to be fixed when the internal
* structure is visible for the public API header.
*/
char data[128];
};
struct duk_memory_functions {
duk_alloc_function alloc_func;
duk_realloc_function realloc_func;
duk_free_function free_func;
void *udata;
};
struct duk_function_list_entry {
const char *key;
duk_c_function value;
duk_idx_t nargs;
};
struct duk_number_list_entry {
const char *key;
duk_double_t value;
};
struct duk_time_components {
duk_double_t year; /* year, e.g. 2016, ECMAScript year range */
duk_double_t month; /* month: 1-12 */
duk_double_t day; /* day: 1-31 */
duk_double_t hours; /* hour: 0-59 */
duk_double_t minutes; /* minute: 0-59 */
duk_double_t seconds; /* second: 0-59 (in POSIX time no leap second) */
duk_double_t milliseconds; /* may contain sub-millisecond fractions */
duk_double_t weekday; /* weekday: 0-6, 0=Sunday, 1=Monday, ..., 6=Saturday */
};
/*
* Constants
*/
/* Duktape debug protocol version used by this build. */
#define DUK_DEBUG_PROTOCOL_VERSION 2
/* Used to represent invalid index; if caller uses this without checking,
* this index will map to a non-existent stack entry. Also used in some
* API calls as a marker to denote "no value".
*/
#define DUK_INVALID_INDEX DUK_IDX_MIN
/* Indicates that a native function does not have a fixed number of args,
* and the argument stack should not be capped/extended at all.
*/
#define DUK_VARARGS ((duk_int_t) (-1))
/* Number of value stack entries (in addition to actual call arguments)
* guaranteed to be allocated on entry to a Duktape/C function.
*/
#define DUK_API_ENTRY_STACK 64U
/* Value types, used by e.g. duk_get_type() */
#define DUK_TYPE_MIN 0U
#define DUK_TYPE_NONE 0U /* no value, e.g. invalid index */
#define DUK_TYPE_UNDEFINED 1U /* ECMAScript undefined */
#define DUK_TYPE_NULL 2U /* ECMAScript null */
#define DUK_TYPE_BOOLEAN 3U /* ECMAScript boolean: 0 or 1 */
#define DUK_TYPE_NUMBER 4U /* ECMAScript number: double */
#define DUK_TYPE_STRING 5U /* ECMAScript string: CESU-8 / extended UTF-8 encoded */
#define DUK_TYPE_OBJECT 6U /* ECMAScript object: includes objects, arrays, functions, threads */
#define DUK_TYPE_BUFFER 7U /* fixed or dynamic, garbage collected byte buffer */
#define DUK_TYPE_POINTER 8U /* raw void pointer */
#define DUK_TYPE_LIGHTFUNC 9U /* lightweight function pointer */
#define DUK_TYPE_MAX 9U
/* Value mask types, used by e.g. duk_get_type_mask() */
#define DUK_TYPE_MASK_NONE (1U << DUK_TYPE_NONE)
#define DUK_TYPE_MASK_UNDEFINED (1U << DUK_TYPE_UNDEFINED)
#define DUK_TYPE_MASK_NULL (1U << DUK_TYPE_NULL)
#define DUK_TYPE_MASK_BOOLEAN (1U << DUK_TYPE_BOOLEAN)
#define DUK_TYPE_MASK_NUMBER (1U << DUK_TYPE_NUMBER)
#define DUK_TYPE_MASK_STRING (1U << DUK_TYPE_STRING)
#define DUK_TYPE_MASK_OBJECT (1U << DUK_TYPE_OBJECT)
#define DUK_TYPE_MASK_BUFFER (1U << DUK_TYPE_BUFFER)
#define DUK_TYPE_MASK_POINTER (1U << DUK_TYPE_POINTER)
#define DUK_TYPE_MASK_LIGHTFUNC (1U << DUK_TYPE_LIGHTFUNC)
#define DUK_TYPE_MASK_THROW (1U << 10) /* internal flag value: throw if mask doesn't match */
#define DUK_TYPE_MASK_PROMOTE (1U << 11) /* internal flag value: promote to object if mask matches */
/* Coercion hints */
#define DUK_HINT_NONE 0 /* prefer number, unless input is a Date, in which
* case prefer string (E5 Section 8.12.8)
*/
#define DUK_HINT_STRING 1 /* prefer string */
#define DUK_HINT_NUMBER 2 /* prefer number */
/* Enumeration flags for duk_enum() */
#define DUK_ENUM_INCLUDE_NONENUMERABLE (1U << 0) /* enumerate non-numerable properties in addition to enumerable */
#define DUK_ENUM_INCLUDE_HIDDEN (1U << 1) /* enumerate hidden symbols too (in Duktape 1.x called internal properties) */
#define DUK_ENUM_INCLUDE_SYMBOLS (1U << 2) /* enumerate symbols */
#define DUK_ENUM_EXCLUDE_STRINGS (1U << 3) /* exclude strings */
#define DUK_ENUM_OWN_PROPERTIES_ONLY (1U << 4) /* don't walk prototype chain, only check own properties */
#define DUK_ENUM_ARRAY_INDICES_ONLY (1U << 5) /* only enumerate array indices */
/* XXX: misleading name */
#define DUK_ENUM_SORT_ARRAY_INDICES (1U << 6) /* sort array indices (applied to full enumeration result, including inherited array indices); XXX: misleading name */
#define DUK_ENUM_NO_PROXY_BEHAVIOR (1U << 7) /* enumerate a proxy object itself without invoking proxy behavior */
/* Compilation flags for duk_compile() and duk_eval() */
/* DUK_COMPILE_xxx bits 0-2 are reserved for an internal 'nargs' argument.
*/
#define DUK_COMPILE_EVAL (1U << 3) /* compile eval code (instead of global code) */
#define DUK_COMPILE_FUNCTION (1U << 4) /* compile function code (instead of global code) */
#define DUK_COMPILE_STRICT (1U << 5) /* use strict (outer) context for global, eval, or function code */
#define DUK_COMPILE_SHEBANG (1U << 6) /* allow shebang ('#! ...') comment on first line of source */
#define DUK_COMPILE_SAFE (1U << 7) /* (internal) catch compilation errors */
#define DUK_COMPILE_NORESULT (1U << 8) /* (internal) omit eval result */
#define DUK_COMPILE_NOSOURCE (1U << 9) /* (internal) no source string on stack */
#define DUK_COMPILE_STRLEN (1U << 10) /* (internal) take strlen() of src_buffer (avoids double evaluation in macro) */
#define DUK_COMPILE_NOFILENAME (1U << 11) /* (internal) no filename on stack */
#define DUK_COMPILE_FUNCEXPR (1U << 12) /* (internal) source is a function expression (used for Function constructor) */
/* Flags for duk_def_prop() and its variants; base flags + a lot of convenience shorthands */
#define DUK_DEFPROP_WRITABLE (1U << 0) /* set writable (effective if DUK_DEFPROP_HAVE_WRITABLE set) */
#define DUK_DEFPROP_ENUMERABLE (1U << 1) /* set enumerable (effective if DUK_DEFPROP_HAVE_ENUMERABLE set) */
#define DUK_DEFPROP_CONFIGURABLE (1U << 2) /* set configurable (effective if DUK_DEFPROP_HAVE_CONFIGURABLE set) */
#define DUK_DEFPROP_HAVE_WRITABLE (1U << 3) /* set/clear writable */
#define DUK_DEFPROP_HAVE_ENUMERABLE (1U << 4) /* set/clear enumerable */
#define DUK_DEFPROP_HAVE_CONFIGURABLE (1U << 5) /* set/clear configurable */
#define DUK_DEFPROP_HAVE_VALUE (1U << 6) /* set value (given on value stack) */
#define DUK_DEFPROP_HAVE_GETTER (1U << 7) /* set getter (given on value stack) */
#define DUK_DEFPROP_HAVE_SETTER (1U << 8) /* set setter (given on value stack) */
#define DUK_DEFPROP_FORCE (1U << 9) /* force change if possible, may still fail for e.g. virtual properties */
#define DUK_DEFPROP_SET_WRITABLE (DUK_DEFPROP_HAVE_WRITABLE | DUK_DEFPROP_WRITABLE)
#define DUK_DEFPROP_CLEAR_WRITABLE DUK_DEFPROP_HAVE_WRITABLE
#define DUK_DEFPROP_SET_ENUMERABLE (DUK_DEFPROP_HAVE_ENUMERABLE | DUK_DEFPROP_ENUMERABLE)
#define DUK_DEFPROP_CLEAR_ENUMERABLE DUK_DEFPROP_HAVE_ENUMERABLE
#define DUK_DEFPROP_SET_CONFIGURABLE (DUK_DEFPROP_HAVE_CONFIGURABLE | DUK_DEFPROP_CONFIGURABLE)
#define DUK_DEFPROP_CLEAR_CONFIGURABLE DUK_DEFPROP_HAVE_CONFIGURABLE
#define DUK_DEFPROP_W DUK_DEFPROP_WRITABLE
#define DUK_DEFPROP_E DUK_DEFPROP_ENUMERABLE
#define DUK_DEFPROP_C DUK_DEFPROP_CONFIGURABLE
#define DUK_DEFPROP_WE (DUK_DEFPROP_WRITABLE | DUK_DEFPROP_ENUMERABLE)
#define DUK_DEFPROP_WC (DUK_DEFPROP_WRITABLE | DUK_DEFPROP_CONFIGURABLE)
#define DUK_DEFPROP_EC (DUK_DEFPROP_ENUMERABLE | DUK_DEFPROP_CONFIGURABLE)
#define DUK_DEFPROP_WEC (DUK_DEFPROP_WRITABLE | DUK_DEFPROP_ENUMERABLE | DUK_DEFPROP_CONFIGURABLE)
#define DUK_DEFPROP_HAVE_W DUK_DEFPROP_HAVE_WRITABLE
#define DUK_DEFPROP_HAVE_E DUK_DEFPROP_HAVE_ENUMERABLE
#define DUK_DEFPROP_HAVE_C DUK_DEFPROP_HAVE_CONFIGURABLE
#define DUK_DEFPROP_HAVE_WE (DUK_DEFPROP_HAVE_WRITABLE | DUK_DEFPROP_HAVE_ENUMERABLE)
#define DUK_DEFPROP_HAVE_WC (DUK_DEFPROP_HAVE_WRITABLE | DUK_DEFPROP_HAVE_CONFIGURABLE)
#define DUK_DEFPROP_HAVE_EC (DUK_DEFPROP_HAVE_ENUMERABLE | DUK_DEFPROP_HAVE_CONFIGURABLE)
#define DUK_DEFPROP_HAVE_WEC (DUK_DEFPROP_HAVE_WRITABLE | DUK_DEFPROP_HAVE_ENUMERABLE | DUK_DEFPROP_HAVE_CONFIGURABLE)
#define DUK_DEFPROP_SET_W DUK_DEFPROP_SET_WRITABLE
#define DUK_DEFPROP_SET_E DUK_DEFPROP_SET_ENUMERABLE
#define DUK_DEFPROP_SET_C DUK_DEFPROP_SET_CONFIGURABLE
#define DUK_DEFPROP_SET_WE (DUK_DEFPROP_SET_WRITABLE | DUK_DEFPROP_SET_ENUMERABLE)
#define DUK_DEFPROP_SET_WC (DUK_DEFPROP_SET_WRITABLE | DUK_DEFPROP_SET_CONFIGURABLE)
#define DUK_DEFPROP_SET_EC (DUK_DEFPROP_SET_ENUMERABLE | DUK_DEFPROP_SET_CONFIGURABLE)
#define DUK_DEFPROP_SET_WEC (DUK_DEFPROP_SET_WRITABLE | DUK_DEFPROP_SET_ENUMERABLE | DUK_DEFPROP_SET_CONFIGURABLE)
#define DUK_DEFPROP_CLEAR_W DUK_DEFPROP_CLEAR_WRITABLE
#define DUK_DEFPROP_CLEAR_E DUK_DEFPROP_CLEAR_ENUMERABLE
#define DUK_DEFPROP_CLEAR_C DUK_DEFPROP_CLEAR_CONFIGURABLE
#define DUK_DEFPROP_CLEAR_WE (DUK_DEFPROP_CLEAR_WRITABLE | DUK_DEFPROP_CLEAR_ENUMERABLE)
#define DUK_DEFPROP_CLEAR_WC (DUK_DEFPROP_CLEAR_WRITABLE | DUK_DEFPROP_CLEAR_CONFIGURABLE)
#define DUK_DEFPROP_CLEAR_EC (DUK_DEFPROP_CLEAR_ENUMERABLE | DUK_DEFPROP_CLEAR_CONFIGURABLE)
#define DUK_DEFPROP_CLEAR_WEC (DUK_DEFPROP_CLEAR_WRITABLE | DUK_DEFPROP_CLEAR_ENUMERABLE | DUK_DEFPROP_CLEAR_CONFIGURABLE)
#define DUK_DEFPROP_ATTR_W (DUK_DEFPROP_HAVE_WEC | DUK_DEFPROP_W)
#define DUK_DEFPROP_ATTR_E (DUK_DEFPROP_HAVE_WEC | DUK_DEFPROP_E)
#define DUK_DEFPROP_ATTR_C (DUK_DEFPROP_HAVE_WEC | DUK_DEFPROP_C)
#define DUK_DEFPROP_ATTR_WE (DUK_DEFPROP_HAVE_WEC | DUK_DEFPROP_WE)
#define DUK_DEFPROP_ATTR_WC (DUK_DEFPROP_HAVE_WEC | DUK_DEFPROP_WC)
#define DUK_DEFPROP_ATTR_EC (DUK_DEFPROP_HAVE_WEC | DUK_DEFPROP_EC)
#define DUK_DEFPROP_ATTR_WEC (DUK_DEFPROP_HAVE_WEC | DUK_DEFPROP_WEC)
/* Flags for duk_push_thread_raw() */
#define DUK_THREAD_NEW_GLOBAL_ENV (1U << 0) /* create a new global environment */
/* Flags for duk_gc() */
#define DUK_GC_COMPACT (1U << 0) /* compact heap objects */
/* Error codes (must be 8 bits at most, see duk_error.h) */
#define DUK_ERR_NONE 0 /* no error (e.g. from duk_get_error_code()) */
#define DUK_ERR_ERROR 1 /* Error */
#define DUK_ERR_EVAL_ERROR 2 /* EvalError */
#define DUK_ERR_RANGE_ERROR 3 /* RangeError */
#define DUK_ERR_REFERENCE_ERROR 4 /* ReferenceError */
#define DUK_ERR_SYNTAX_ERROR 5 /* SyntaxError */
#define DUK_ERR_TYPE_ERROR 6 /* TypeError */
#define DUK_ERR_URI_ERROR 7 /* URIError */
/* Return codes for C functions (shortcut for throwing an error) */
#define DUK_RET_ERROR (-DUK_ERR_ERROR)
#define DUK_RET_EVAL_ERROR (-DUK_ERR_EVAL_ERROR)
#define DUK_RET_RANGE_ERROR (-DUK_ERR_RANGE_ERROR)
#define DUK_RET_REFERENCE_ERROR (-DUK_ERR_REFERENCE_ERROR)
#define DUK_RET_SYNTAX_ERROR (-DUK_ERR_SYNTAX_ERROR)
#define DUK_RET_TYPE_ERROR (-DUK_ERR_TYPE_ERROR)
#define DUK_RET_URI_ERROR (-DUK_ERR_URI_ERROR)
/* Return codes for protected calls (duk_safe_call(), duk_pcall()) */
#define DUK_EXEC_SUCCESS 0
#define DUK_EXEC_ERROR 1
/* Debug levels for DUK_USE_DEBUG_WRITE(). */
#define DUK_LEVEL_DEBUG 0
#define DUK_LEVEL_DDEBUG 1
#define DUK_LEVEL_DDDEBUG 2
/*
* Macros to create Symbols as C statically constructed strings.
*
* Call e.g. as DUK_HIDDEN_SYMBOL("myProperty") <=> ("\xFF" "myProperty").
*
* Local symbols have a unique suffix, caller should take care to avoid
* conflicting with the Duktape internal representation by e.g. prepending
* a '!' character: DUK_LOCAL_SYMBOL("myLocal", "!123").
*
* Note that these can only be used for string constants, not dynamically
* created strings.
*
* You shouldn't normally use DUK_INTERNAL_SYMBOL() at all. It is reserved
* for Duktape internal symbols only. There are no versioning guarantees
* for internal symbols.
*/
#define DUK_HIDDEN_SYMBOL(x) ("\xFF" x)
#define DUK_GLOBAL_SYMBOL(x) ("\x80" x)
#define DUK_LOCAL_SYMBOL(x,uniq) ("\x81" x "\xff" uniq)
#define DUK_WELLKNOWN_SYMBOL(x) ("\x81" x "\xff")
#define DUK_INTERNAL_SYMBOL(x) ("\x82" x)
/*
* If no variadic macros, __FILE__ and __LINE__ are passed through globals
* which is ugly and not thread safe.
*/
#if !defined(DUK_API_VARIADIC_MACROS)
DUK_EXTERNAL_DECL const char *duk_api_global_filename;
DUK_EXTERNAL_DECL duk_int_t duk_api_global_line;
#endif
/*
* Context management
*/
DUK_EXTERNAL_DECL
duk_context *duk_create_heap(duk_alloc_function alloc_func,
duk_realloc_function realloc_func,
duk_free_function free_func,
void *heap_udata,
duk_fatal_function fatal_handler);
DUK_EXTERNAL_DECL void duk_destroy_heap(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_suspend(duk_context *ctx, duk_thread_state *state);
DUK_EXTERNAL_DECL void duk_resume(duk_context *ctx, const duk_thread_state *state);
#define duk_create_heap_default() \
duk_create_heap(NULL, NULL, NULL, NULL, NULL)
/*
* Memory management
*
* Raw functions have no side effects (cannot trigger GC).
*/
DUK_EXTERNAL_DECL void *duk_alloc_raw(duk_context *ctx, duk_size_t size);
DUK_EXTERNAL_DECL void duk_free_raw(duk_context *ctx, void *ptr);
DUK_EXTERNAL_DECL void *duk_realloc_raw(duk_context *ctx, void *ptr, duk_size_t size);
DUK_EXTERNAL_DECL void *duk_alloc(duk_context *ctx, duk_size_t size);
DUK_EXTERNAL_DECL void duk_free(duk_context *ctx, void *ptr);
DUK_EXTERNAL_DECL void *duk_realloc(duk_context *ctx, void *ptr, duk_size_t size);
DUK_EXTERNAL_DECL void duk_get_memory_functions(duk_context *ctx, duk_memory_functions *out_funcs);
DUK_EXTERNAL_DECL void duk_gc(duk_context *ctx, duk_uint_t flags);
/*
* Error handling
*/
DUK_API_NORETURN(DUK_EXTERNAL_DECL void duk_throw_raw(duk_context *ctx));
#define duk_throw(ctx) \
(duk_throw_raw((ctx)), (duk_ret_t) 0)
DUK_API_NORETURN(DUK_EXTERNAL_DECL void duk_fatal_raw(duk_context *ctx, const char *err_msg));
#define duk_fatal(ctx,err_msg) \
(duk_fatal_raw((ctx), (err_msg)), (duk_ret_t) 0)
DUK_API_NORETURN(DUK_EXTERNAL_DECL void duk_error_raw(duk_context *ctx, duk_errcode_t err_code, const char *filename, duk_int_t line, const char *fmt, ...));
#if defined(DUK_API_VARIADIC_MACROS)
#define duk_error(ctx,err_code,...) \
(duk_error_raw((ctx), (duk_errcode_t) (err_code), (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#define duk_generic_error(ctx,...) \
(duk_error_raw((ctx), (duk_errcode_t) DUK_ERR_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#define duk_eval_error(ctx,...) \
(duk_error_raw((ctx), (duk_errcode_t) DUK_ERR_EVAL_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#define duk_range_error(ctx,...) \
(duk_error_raw((ctx), (duk_errcode_t) DUK_ERR_RANGE_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#define duk_reference_error(ctx,...) \
(duk_error_raw((ctx), (duk_errcode_t) DUK_ERR_REFERENCE_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#define duk_syntax_error(ctx,...) \
(duk_error_raw((ctx), (duk_errcode_t) DUK_ERR_SYNTAX_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#define duk_type_error(ctx,...) \
(duk_error_raw((ctx), (duk_errcode_t) DUK_ERR_TYPE_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#define duk_uri_error(ctx,...) \
(duk_error_raw((ctx), (duk_errcode_t) DUK_ERR_URI_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__), (duk_ret_t) 0)
#else /* DUK_API_VARIADIC_MACROS */
/* For legacy compilers without variadic macros a macro hack is used to allow
* variable arguments. While the macro allows "return duk_error(...)", it
* will fail with e.g. "(void) duk_error(...)". The calls are noreturn but
* with a return value to allow the "return duk_error(...)" idiom. This may
* cause some compiler warnings, but without noreturn the generated code is
* often worse. The same approach as with variadic macros (using
* "(duk_error(...), 0)") won't work due to the macro hack structure.
*/
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_error_stash(duk_context *ctx, duk_errcode_t err_code, const char *fmt, ...));
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_generic_error_stash(duk_context *ctx, const char *fmt, ...));
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_eval_error_stash(duk_context *ctx, const char *fmt, ...));
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_range_error_stash(duk_context *ctx, const char *fmt, ...));
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_reference_error_stash(duk_context *ctx, const char *fmt, ...));
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_syntax_error_stash(duk_context *ctx, const char *fmt, ...));
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_type_error_stash(duk_context *ctx, const char *fmt, ...));
DUK_API_NORETURN(DUK_EXTERNAL_DECL duk_ret_t duk_uri_error_stash(duk_context *ctx, const char *fmt, ...));
#define duk_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_error_stash) /* last value is func pointer, arguments follow in parens */
#define duk_generic_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_generic_error_stash)
#define duk_eval_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_eval_error_stash)
#define duk_range_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_range_error_stash)
#define duk_reference_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_reference_error_stash)
#define duk_syntax_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_syntax_error_stash)
#define duk_type_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_type_error_stash)
#define duk_uri_error \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_uri_error_stash)
#endif /* DUK_API_VARIADIC_MACROS */
DUK_API_NORETURN(DUK_EXTERNAL_DECL void duk_error_va_raw(duk_context *ctx, duk_errcode_t err_code, const char *filename, duk_int_t line, const char *fmt, va_list ap));
#define duk_error_va(ctx,err_code,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) (err_code), (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
#define duk_generic_error_va(ctx,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) DUK_ERR_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
#define duk_eval_error_va(ctx,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) DUK_ERR_EVAL_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
#define duk_range_error_va(ctx,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) DUK_ERR_RANGE_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
#define duk_reference_error_va(ctx,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) DUK_ERR_REFERENCE_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
#define duk_syntax_error_va(ctx,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) DUK_ERR_SYNTAX_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
#define duk_type_error_va(ctx,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) DUK_ERR_TYPE_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
#define duk_uri_error_va(ctx,fmt,ap) \
(duk_error_va_raw((ctx), (duk_errcode_t) DUK_ERR_URI_ERROR, (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap)), (duk_ret_t) 0)
/*
* Other state related functions
*/
DUK_EXTERNAL_DECL duk_bool_t duk_is_strict_call(duk_context *ctx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_constructor_call(duk_context *ctx);
/*
* Stack management
*/
DUK_EXTERNAL_DECL duk_idx_t duk_normalize_index(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_idx_t duk_require_normalize_index(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_valid_index(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_require_valid_index(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_idx_t duk_get_top(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_set_top(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_idx_t duk_get_top_index(duk_context *ctx);
DUK_EXTERNAL_DECL duk_idx_t duk_require_top_index(duk_context *ctx);
/* Although extra/top could be an unsigned type here, using a signed type
* makes the API more robust to calling code calculation errors or corner
* cases (where caller might occasionally come up with negative values).
* Negative values are treated as zero, which is better than casting them
* to a large unsigned number. (This principle is used elsewhere in the
* API too.)
*/
DUK_EXTERNAL_DECL duk_bool_t duk_check_stack(duk_context *ctx, duk_idx_t extra);
DUK_EXTERNAL_DECL void duk_require_stack(duk_context *ctx, duk_idx_t extra);
DUK_EXTERNAL_DECL duk_bool_t duk_check_stack_top(duk_context *ctx, duk_idx_t top);
DUK_EXTERNAL_DECL void duk_require_stack_top(duk_context *ctx, duk_idx_t top);
/*
* Stack manipulation (other than push/pop)
*/
DUK_EXTERNAL_DECL void duk_swap(duk_context *ctx, duk_idx_t idx1, duk_idx_t idx2);
DUK_EXTERNAL_DECL void duk_swap_top(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_dup(duk_context *ctx, duk_idx_t from_idx);
DUK_EXTERNAL_DECL void duk_dup_top(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_insert(duk_context *ctx, duk_idx_t to_idx);
DUK_EXTERNAL_DECL void duk_pull(duk_context *ctx, duk_idx_t from_idx);
DUK_EXTERNAL_DECL void duk_replace(duk_context *ctx, duk_idx_t to_idx);
DUK_EXTERNAL_DECL void duk_copy(duk_context *ctx, duk_idx_t from_idx, duk_idx_t to_idx);
DUK_EXTERNAL_DECL void duk_remove(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_xcopymove_raw(duk_context *to_ctx, duk_context *from_ctx, duk_idx_t count, duk_bool_t is_copy);
#define duk_xmove_top(to_ctx,from_ctx,count) \
duk_xcopymove_raw((to_ctx), (from_ctx), (count), 0 /*is_copy*/)
#define duk_xcopy_top(to_ctx,from_ctx,count) \
duk_xcopymove_raw((to_ctx), (from_ctx), (count), 1 /*is_copy*/)
/*
* Push operations
*
* Push functions return the absolute (relative to bottom of frame)
* position of the pushed value for convenience.
*
* Note: duk_dup() is technically a push.
*/
DUK_EXTERNAL_DECL void duk_push_undefined(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_null(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_boolean(duk_context *ctx, duk_bool_t val);
DUK_EXTERNAL_DECL void duk_push_true(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_false(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_number(duk_context *ctx, duk_double_t val);
DUK_EXTERNAL_DECL void duk_push_nan(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_int(duk_context *ctx, duk_int_t val);
DUK_EXTERNAL_DECL void duk_push_uint(duk_context *ctx, duk_uint_t val);
DUK_EXTERNAL_DECL const char *duk_push_string(duk_context *ctx, const char *str);
DUK_EXTERNAL_DECL const char *duk_push_lstring(duk_context *ctx, const char *str, duk_size_t len);
DUK_EXTERNAL_DECL void duk_push_pointer(duk_context *ctx, void *p);
DUK_EXTERNAL_DECL const char *duk_push_sprintf(duk_context *ctx, const char *fmt, ...);
DUK_EXTERNAL_DECL const char *duk_push_vsprintf(duk_context *ctx, const char *fmt, va_list ap);
/* duk_push_literal() may evaluate its argument (a C string literal) more than
* once on purpose. When speed is preferred, sizeof() avoids an unnecessary
* strlen() at runtime. Sizeof("foo") == 4, so subtract 1. The argument
* must be non-NULL and should not contain internal NUL characters as the
* behavior will then depend on config options.
*/
#if defined(DUK_USE_PREFER_SIZE)
#define duk_push_literal(ctx,cstring) duk_push_string((ctx), (cstring))
#else
DUK_EXTERNAL_DECL const char *duk_push_literal_raw(duk_context *ctx, const char *str, duk_size_t len);
#define duk_push_literal(ctx,cstring) duk_push_literal_raw((ctx), (cstring), sizeof((cstring)) - 1U)
#endif
DUK_EXTERNAL_DECL void duk_push_this(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_new_target(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_current_function(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_current_thread(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_global_object(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_heap_stash(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_global_stash(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_push_thread_stash(duk_context *ctx, duk_context *target_ctx);
DUK_EXTERNAL_DECL duk_idx_t duk_push_object(duk_context *ctx);
DUK_EXTERNAL_DECL duk_idx_t duk_push_bare_object(duk_context *ctx);
DUK_EXTERNAL_DECL duk_idx_t duk_push_array(duk_context *ctx);
DUK_EXTERNAL_DECL duk_idx_t duk_push_bare_array(duk_context *ctx);
DUK_EXTERNAL_DECL duk_idx_t duk_push_c_function(duk_context *ctx, duk_c_function func, duk_idx_t nargs);
DUK_EXTERNAL_DECL duk_idx_t duk_push_c_lightfunc(duk_context *ctx, duk_c_function func, duk_idx_t nargs, duk_idx_t length, duk_int_t magic);
DUK_EXTERNAL_DECL duk_idx_t duk_push_thread_raw(duk_context *ctx, duk_uint_t flags);
DUK_EXTERNAL_DECL duk_idx_t duk_push_proxy(duk_context *ctx, duk_uint_t proxy_flags);
#define duk_push_thread(ctx) \
duk_push_thread_raw((ctx), 0 /*flags*/)
#define duk_push_thread_new_globalenv(ctx) \
duk_push_thread_raw((ctx), DUK_THREAD_NEW_GLOBAL_ENV /*flags*/)
DUK_EXTERNAL_DECL duk_idx_t duk_push_error_object_raw(duk_context *ctx, duk_errcode_t err_code, const char *filename, duk_int_t line, const char *fmt, ...);
#if defined(DUK_API_VARIADIC_MACROS)
#define duk_push_error_object(ctx,err_code,...) \
duk_push_error_object_raw((ctx), (err_code), (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), __VA_ARGS__)
#else
DUK_EXTERNAL_DECL duk_idx_t duk_push_error_object_stash(duk_context *ctx, duk_errcode_t err_code, const char *fmt, ...);
/* Note: parentheses are required so that the comma expression works in assignments. */
#define duk_push_error_object \
(duk_api_global_filename = (const char *) (DUK_FILE_MACRO), \
duk_api_global_line = (duk_int_t) (DUK_LINE_MACRO), \
duk_push_error_object_stash) /* last value is func pointer, arguments follow in parens */
#endif
DUK_EXTERNAL_DECL duk_idx_t duk_push_error_object_va_raw(duk_context *ctx, duk_errcode_t err_code, const char *filename, duk_int_t line, const char *fmt, va_list ap);
#define duk_push_error_object_va(ctx,err_code,fmt,ap) \
duk_push_error_object_va_raw((ctx), (err_code), (const char *) (DUK_FILE_MACRO), (duk_int_t) (DUK_LINE_MACRO), (fmt), (ap))
#define DUK_BUF_FLAG_DYNAMIC (1 << 0) /* internal flag: dynamic buffer */
#define DUK_BUF_FLAG_EXTERNAL (1 << 1) /* internal flag: external buffer */
#define DUK_BUF_FLAG_NOZERO (1 << 2) /* internal flag: don't zero allocated buffer */
DUK_EXTERNAL_DECL void *duk_push_buffer_raw(duk_context *ctx, duk_size_t size, duk_small_uint_t flags);
#define duk_push_buffer(ctx,size,dynamic) \
duk_push_buffer_raw((ctx), (size), (dynamic) ? DUK_BUF_FLAG_DYNAMIC : 0)
#define duk_push_fixed_buffer(ctx,size) \
duk_push_buffer_raw((ctx), (size), 0 /*flags*/)
#define duk_push_dynamic_buffer(ctx,size) \
duk_push_buffer_raw((ctx), (size), DUK_BUF_FLAG_DYNAMIC /*flags*/)
#define duk_push_external_buffer(ctx) \
((void) duk_push_buffer_raw((ctx), 0, DUK_BUF_FLAG_DYNAMIC | DUK_BUF_FLAG_EXTERNAL))
#define DUK_BUFOBJ_ARRAYBUFFER 0
#define DUK_BUFOBJ_NODEJS_BUFFER 1
#define DUK_BUFOBJ_DATAVIEW 2
#define DUK_BUFOBJ_INT8ARRAY 3
#define DUK_BUFOBJ_UINT8ARRAY 4
#define DUK_BUFOBJ_UINT8CLAMPEDARRAY 5
#define DUK_BUFOBJ_INT16ARRAY 6
#define DUK_BUFOBJ_UINT16ARRAY 7
#define DUK_BUFOBJ_INT32ARRAY 8
#define DUK_BUFOBJ_UINT32ARRAY 9
#define DUK_BUFOBJ_FLOAT32ARRAY 10
#define DUK_BUFOBJ_FLOAT64ARRAY 11
DUK_EXTERNAL_DECL void duk_push_buffer_object(duk_context *ctx, duk_idx_t idx_buffer, duk_size_t byte_offset, duk_size_t byte_length, duk_uint_t flags);
DUK_EXTERNAL_DECL duk_idx_t duk_push_heapptr(duk_context *ctx, void *ptr);
/*
* Pop operations
*/
DUK_EXTERNAL_DECL void duk_pop(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_pop_n(duk_context *ctx, duk_idx_t count);
DUK_EXTERNAL_DECL void duk_pop_2(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_pop_3(duk_context *ctx);
/*
* Type checks
*
* duk_is_none(), which would indicate whether index it outside of stack,
* is not needed; duk_is_valid_index() gives the same information.
*/
DUK_EXTERNAL_DECL duk_int_t duk_get_type(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_check_type(duk_context *ctx, duk_idx_t idx, duk_int_t type);
DUK_EXTERNAL_DECL duk_uint_t duk_get_type_mask(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_check_type_mask(duk_context *ctx, duk_idx_t idx, duk_uint_t mask);
DUK_EXTERNAL_DECL duk_bool_t duk_is_undefined(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_null(duk_context *ctx, duk_idx_t idx);
#define duk_is_null_or_undefined(ctx, idx) \
((duk_get_type_mask((ctx), (idx)) & (DUK_TYPE_MASK_NULL | DUK_TYPE_MASK_UNDEFINED)) ? 1 : 0)
DUK_EXTERNAL_DECL duk_bool_t duk_is_boolean(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_number(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_nan(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_string(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_object(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_buffer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_buffer_data(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_pointer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_lightfunc(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_symbol(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_array(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_function(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_c_function(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_ecmascript_function(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_bound_function(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_thread(duk_context *ctx, duk_idx_t idx);
#define duk_is_callable(ctx,idx) \
duk_is_function((ctx), (idx))
DUK_EXTERNAL_DECL duk_bool_t duk_is_constructable(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_dynamic_buffer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_fixed_buffer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_is_external_buffer(duk_context *ctx, duk_idx_t idx);
/* Buffers and lightfuncs are not considered primitive because they mimic
* objects and e.g. duk_to_primitive() will coerce them instead of returning
* them as is. Symbols are represented as strings internally.
*/
#define duk_is_primitive(ctx,idx) \
duk_check_type_mask((ctx), (idx), DUK_TYPE_MASK_UNDEFINED | \
DUK_TYPE_MASK_NULL | \
DUK_TYPE_MASK_BOOLEAN | \
DUK_TYPE_MASK_NUMBER | \
DUK_TYPE_MASK_STRING | \
DUK_TYPE_MASK_POINTER)
/* Symbols are object coercible, covered by DUK_TYPE_MASK_STRING. */
#define duk_is_object_coercible(ctx,idx) \
duk_check_type_mask((ctx), (idx), DUK_TYPE_MASK_BOOLEAN | \
DUK_TYPE_MASK_NUMBER | \
DUK_TYPE_MASK_STRING | \
DUK_TYPE_MASK_OBJECT | \
DUK_TYPE_MASK_BUFFER | \
DUK_TYPE_MASK_POINTER | \
DUK_TYPE_MASK_LIGHTFUNC)
DUK_EXTERNAL_DECL duk_errcode_t duk_get_error_code(duk_context *ctx, duk_idx_t idx);
#define duk_is_error(ctx,idx) \
(duk_get_error_code((ctx), (idx)) != 0)
#define duk_is_eval_error(ctx,idx) \
(duk_get_error_code((ctx), (idx)) == DUK_ERR_EVAL_ERROR)
#define duk_is_range_error(ctx,idx) \
(duk_get_error_code((ctx), (idx)) == DUK_ERR_RANGE_ERROR)
#define duk_is_reference_error(ctx,idx) \
(duk_get_error_code((ctx), (idx)) == DUK_ERR_REFERENCE_ERROR)
#define duk_is_syntax_error(ctx,idx) \
(duk_get_error_code((ctx), (idx)) == DUK_ERR_SYNTAX_ERROR)
#define duk_is_type_error(ctx,idx) \
(duk_get_error_code((ctx), (idx)) == DUK_ERR_TYPE_ERROR)
#define duk_is_uri_error(ctx,idx) \
(duk_get_error_code((ctx), (idx)) == DUK_ERR_URI_ERROR)
/*
* Get operations: no coercion, returns default value for invalid
* indices and invalid value types.
*
* duk_get_undefined() and duk_get_null() would be pointless and
* are not included.
*/
DUK_EXTERNAL_DECL duk_bool_t duk_get_boolean(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_double_t duk_get_number(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_int_t duk_get_int(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_uint_t duk_get_uint(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_get_string(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_get_lstring(duk_context *ctx, duk_idx_t idx, duk_size_t *out_len);
DUK_EXTERNAL_DECL void *duk_get_buffer(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size);
DUK_EXTERNAL_DECL void *duk_get_buffer_data(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size);
DUK_EXTERNAL_DECL void *duk_get_pointer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_c_function duk_get_c_function(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_context *duk_get_context(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void *duk_get_heapptr(duk_context *ctx, duk_idx_t idx);
/*
* Get-with-explicit default operations: like get operations but with an
* explicit default value.
*/
DUK_EXTERNAL_DECL duk_bool_t duk_get_boolean_default(duk_context *ctx, duk_idx_t idx, duk_bool_t def_value);
DUK_EXTERNAL_DECL duk_double_t duk_get_number_default(duk_context *ctx, duk_idx_t idx, duk_double_t def_value);
DUK_EXTERNAL_DECL duk_int_t duk_get_int_default(duk_context *ctx, duk_idx_t idx, duk_int_t def_value);
DUK_EXTERNAL_DECL duk_uint_t duk_get_uint_default(duk_context *ctx, duk_idx_t idx, duk_uint_t def_value);
DUK_EXTERNAL_DECL const char *duk_get_string_default(duk_context *ctx, duk_idx_t idx, const char *def_value);
DUK_EXTERNAL_DECL const char *duk_get_lstring_default(duk_context *ctx, duk_idx_t idx, duk_size_t *out_len, const char *def_ptr, duk_size_t def_len);
DUK_EXTERNAL_DECL void *duk_get_buffer_default(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size, void *def_ptr, duk_size_t def_len);
DUK_EXTERNAL_DECL void *duk_get_buffer_data_default(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size, void *def_ptr, duk_size_t def_len);
DUK_EXTERNAL_DECL void *duk_get_pointer_default(duk_context *ctx, duk_idx_t idx, void *def_value);
DUK_EXTERNAL_DECL duk_c_function duk_get_c_function_default(duk_context *ctx, duk_idx_t idx, duk_c_function def_value);
DUK_EXTERNAL_DECL duk_context *duk_get_context_default(duk_context *ctx, duk_idx_t idx, duk_context *def_value);
DUK_EXTERNAL_DECL void *duk_get_heapptr_default(duk_context *ctx, duk_idx_t idx, void *def_value);
/*
* Opt operations: like require operations but with an explicit default value
* when value is undefined or index is invalid, null and non-matching types
* cause a TypeError.
*/
DUK_EXTERNAL_DECL duk_bool_t duk_opt_boolean(duk_context *ctx, duk_idx_t idx, duk_bool_t def_value);
DUK_EXTERNAL_DECL duk_double_t duk_opt_number(duk_context *ctx, duk_idx_t idx, duk_double_t def_value);
DUK_EXTERNAL_DECL duk_int_t duk_opt_int(duk_context *ctx, duk_idx_t idx, duk_int_t def_value);
DUK_EXTERNAL_DECL duk_uint_t duk_opt_uint(duk_context *ctx, duk_idx_t idx, duk_uint_t def_value);
DUK_EXTERNAL_DECL const char *duk_opt_string(duk_context *ctx, duk_idx_t idx, const char *def_ptr);
DUK_EXTERNAL_DECL const char *duk_opt_lstring(duk_context *ctx, duk_idx_t idx, duk_size_t *out_len, const char *def_ptr, duk_size_t def_len);
DUK_EXTERNAL_DECL void *duk_opt_buffer(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size, void *def_ptr, duk_size_t def_size);
DUK_EXTERNAL_DECL void *duk_opt_buffer_data(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size, void *def_ptr, duk_size_t def_size);
DUK_EXTERNAL_DECL void *duk_opt_pointer(duk_context *ctx, duk_idx_t idx, void *def_value);
DUK_EXTERNAL_DECL duk_c_function duk_opt_c_function(duk_context *ctx, duk_idx_t idx, duk_c_function def_value);
DUK_EXTERNAL_DECL duk_context *duk_opt_context(duk_context *ctx, duk_idx_t idx, duk_context *def_value);
DUK_EXTERNAL_DECL void *duk_opt_heapptr(duk_context *ctx, duk_idx_t idx, void *def_value);
/*
* Require operations: no coercion, throw error if index or type
* is incorrect. No defaulting.
*/
#define duk_require_type_mask(ctx,idx,mask) \
((void) duk_check_type_mask((ctx), (idx), (mask) | DUK_TYPE_MASK_THROW))
DUK_EXTERNAL_DECL void duk_require_undefined(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_require_null(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_require_boolean(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_double_t duk_require_number(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_int_t duk_require_int(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_uint_t duk_require_uint(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_require_string(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_require_lstring(duk_context *ctx, duk_idx_t idx, duk_size_t *out_len);
DUK_EXTERNAL_DECL void duk_require_object(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void *duk_require_buffer(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size);
DUK_EXTERNAL_DECL void *duk_require_buffer_data(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size);
DUK_EXTERNAL_DECL void *duk_require_pointer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_c_function duk_require_c_function(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_context *duk_require_context(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_require_function(duk_context *ctx, duk_idx_t idx);
#define duk_require_callable(ctx,idx) \
duk_require_function((ctx), (idx))
DUK_EXTERNAL_DECL void duk_require_constructor_call(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_require_constructable(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void *duk_require_heapptr(duk_context *ctx, duk_idx_t idx);
/* Symbols are object coercible and covered by DUK_TYPE_MASK_STRING. */
#define duk_require_object_coercible(ctx,idx) \
((void) duk_check_type_mask((ctx), (idx), DUK_TYPE_MASK_BOOLEAN | \
DUK_TYPE_MASK_NUMBER | \
DUK_TYPE_MASK_STRING | \
DUK_TYPE_MASK_OBJECT | \
DUK_TYPE_MASK_BUFFER | \
DUK_TYPE_MASK_POINTER | \
DUK_TYPE_MASK_LIGHTFUNC | \
DUK_TYPE_MASK_THROW))
/*
* Coercion operations: in-place coercion, return coerced value where
* applicable. If index is invalid, throw error. Some coercions may
* throw an expected error (e.g. from a toString() or valueOf() call)
* or an internal error (e.g. from out of memory).
*/
DUK_EXTERNAL_DECL void duk_to_undefined(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_to_null(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_bool_t duk_to_boolean(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_double_t duk_to_number(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_int_t duk_to_int(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_uint_t duk_to_uint(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_int32_t duk_to_int32(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_uint32_t duk_to_uint32(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_uint16_t duk_to_uint16(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_to_string(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_to_lstring(duk_context *ctx, duk_idx_t idx, duk_size_t *out_len);
DUK_EXTERNAL_DECL void *duk_to_buffer_raw(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size, duk_uint_t flags);
DUK_EXTERNAL_DECL void *duk_to_pointer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_to_object(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_to_primitive(duk_context *ctx, duk_idx_t idx, duk_int_t hint);
#define DUK_BUF_MODE_FIXED 0 /* internal: request fixed buffer result */
#define DUK_BUF_MODE_DYNAMIC 1 /* internal: request dynamic buffer result */
#define DUK_BUF_MODE_DONTCARE 2 /* internal: don't care about fixed/dynamic nature */
#define duk_to_buffer(ctx,idx,out_size) \
duk_to_buffer_raw((ctx), (idx), (out_size), DUK_BUF_MODE_DONTCARE)
#define duk_to_fixed_buffer(ctx,idx,out_size) \
duk_to_buffer_raw((ctx), (idx), (out_size), DUK_BUF_MODE_FIXED)
#define duk_to_dynamic_buffer(ctx,idx,out_size) \
duk_to_buffer_raw((ctx), (idx), (out_size), DUK_BUF_MODE_DYNAMIC)
/* safe variants of a few coercion operations */
DUK_EXTERNAL_DECL const char *duk_safe_to_lstring(duk_context *ctx, duk_idx_t idx, duk_size_t *out_len);
DUK_EXTERNAL_DECL const char *duk_to_stacktrace(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_safe_to_stacktrace(duk_context *ctx, duk_idx_t idx);
#define duk_safe_to_string(ctx,idx) \
duk_safe_to_lstring((ctx), (idx), NULL)
/*
* Value length
*/
DUK_EXTERNAL_DECL duk_size_t duk_get_length(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_set_length(duk_context *ctx, duk_idx_t idx, duk_size_t len);
#if 0
/* duk_require_length()? */
/* duk_opt_length()? */
#endif
/*
* Misc conversion
*/
DUK_EXTERNAL_DECL const char *duk_base64_encode(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_base64_decode(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_hex_encode(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_hex_decode(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL const char *duk_json_encode(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_json_decode(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_cbor_encode(duk_context *ctx, duk_idx_t idx, duk_uint_t encode_flags);
DUK_EXTERNAL_DECL void duk_cbor_decode(duk_context *ctx, duk_idx_t idx, duk_uint_t decode_flags);
DUK_EXTERNAL_DECL const char *duk_buffer_to_string(duk_context *ctx, duk_idx_t idx);
/*
* Buffer
*/
DUK_EXTERNAL_DECL void *duk_resize_buffer(duk_context *ctx, duk_idx_t idx, duk_size_t new_size);
DUK_EXTERNAL_DECL void *duk_steal_buffer(duk_context *ctx, duk_idx_t idx, duk_size_t *out_size);
DUK_EXTERNAL_DECL void duk_config_buffer(duk_context *ctx, duk_idx_t idx, void *ptr, duk_size_t len);
/*
* Property access
*
* The basic function assumes key is on stack. The _(l)string variant takes
* a C string as a property name; the _literal variant takes a C literal.
* The _index variant takes an array index as a property name (e.g. 123 is
* equivalent to the key "123"). The _heapptr variant takes a raw, borrowed
* heap pointer.
*/
DUK_EXTERNAL_DECL duk_bool_t duk_get_prop(duk_context *ctx, duk_idx_t obj_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_get_prop_string(duk_context *ctx, duk_idx_t obj_idx, const char *key);
DUK_EXTERNAL_DECL duk_bool_t duk_get_prop_lstring(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#if defined(DUK_USE_PREFER_SIZE)
#define duk_get_prop_literal(ctx,obj_idx,key) duk_get_prop_string((ctx), (obj_idx), (key))
#else
DUK_EXTERNAL_DECL duk_bool_t duk_get_prop_literal_raw(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#define duk_get_prop_literal(ctx,obj_idx,key) duk_get_prop_literal_raw((ctx), (obj_idx), (key), sizeof((key)) - 1U)
#endif
DUK_EXTERNAL_DECL duk_bool_t duk_get_prop_index(duk_context *ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_get_prop_heapptr(duk_context *ctx, duk_idx_t obj_idx, void *ptr);
DUK_EXTERNAL_DECL duk_bool_t duk_put_prop(duk_context *ctx, duk_idx_t obj_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_put_prop_string(duk_context *ctx, duk_idx_t obj_idx, const char *key);
DUK_EXTERNAL_DECL duk_bool_t duk_put_prop_lstring(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#if defined(DUK_USE_PREFER_SIZE)
#define duk_put_prop_literal(ctx,obj_idx,key) duk_put_prop_string((ctx), (obj_idx), (key))
#else
DUK_EXTERNAL_DECL duk_bool_t duk_put_prop_literal_raw(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#define duk_put_prop_literal(ctx,obj_idx,key) duk_put_prop_literal_raw((ctx), (obj_idx), (key), sizeof((key)) - 1U)
#endif
DUK_EXTERNAL_DECL duk_bool_t duk_put_prop_index(duk_context *ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_put_prop_heapptr(duk_context *ctx, duk_idx_t obj_idx, void *ptr);
DUK_EXTERNAL_DECL duk_bool_t duk_del_prop(duk_context *ctx, duk_idx_t obj_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_del_prop_string(duk_context *ctx, duk_idx_t obj_idx, const char *key);
DUK_EXTERNAL_DECL duk_bool_t duk_del_prop_lstring(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#if defined(DUK_USE_PREFER_SIZE)
#define duk_del_prop_literal(ctx,obj_idx,key) duk_del_prop_string((ctx), (obj_idx), (key))
#else
DUK_EXTERNAL_DECL duk_bool_t duk_del_prop_literal_raw(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#define duk_del_prop_literal(ctx,obj_idx,key) duk_del_prop_literal_raw((ctx), (obj_idx), (key), sizeof((key)) - 1U)
#endif
DUK_EXTERNAL_DECL duk_bool_t duk_del_prop_index(duk_context *ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_del_prop_heapptr(duk_context *ctx, duk_idx_t obj_idx, void *ptr);
DUK_EXTERNAL_DECL duk_bool_t duk_has_prop(duk_context *ctx, duk_idx_t obj_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_has_prop_string(duk_context *ctx, duk_idx_t obj_idx, const char *key);
DUK_EXTERNAL_DECL duk_bool_t duk_has_prop_lstring(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#if defined(DUK_USE_PREFER_SIZE)
#define duk_has_prop_literal(ctx,obj_idx,key) duk_has_prop_string((ctx), (obj_idx), (key))
#else
DUK_EXTERNAL_DECL duk_bool_t duk_has_prop_literal_raw(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
#define duk_has_prop_literal(ctx,obj_idx,key) duk_has_prop_literal_raw((ctx), (obj_idx), (key), sizeof((key)) - 1U)
#endif
DUK_EXTERNAL_DECL duk_bool_t duk_has_prop_index(duk_context *ctx, duk_idx_t obj_idx, duk_uarridx_t arr_idx);
DUK_EXTERNAL_DECL duk_bool_t duk_has_prop_heapptr(duk_context *ctx, duk_idx_t obj_idx, void *ptr);
DUK_EXTERNAL_DECL void duk_get_prop_desc(duk_context *ctx, duk_idx_t obj_idx, duk_uint_t flags);
DUK_EXTERNAL_DECL void duk_def_prop(duk_context *ctx, duk_idx_t obj_idx, duk_uint_t flags);
DUK_EXTERNAL_DECL duk_bool_t duk_get_global_string(duk_context *ctx, const char *key);
DUK_EXTERNAL_DECL duk_bool_t duk_get_global_lstring(duk_context *ctx, const char *key, duk_size_t key_len);
#if defined(DUK_USE_PREFER_SIZE)
#define duk_get_global_literal(ctx,key) duk_get_global_string((ctx), (key))
#else
DUK_EXTERNAL_DECL duk_bool_t duk_get_global_literal_raw(duk_context *ctx, const char *key, duk_size_t key_len);
#define duk_get_global_literal(ctx,key) duk_get_global_literal_raw((ctx), (key), sizeof((key)) - 1U)
#endif
DUK_EXTERNAL_DECL duk_bool_t duk_get_global_heapptr(duk_context *ctx, void *ptr);
DUK_EXTERNAL_DECL duk_bool_t duk_put_global_string(duk_context *ctx, const char *key);
DUK_EXTERNAL_DECL duk_bool_t duk_put_global_lstring(duk_context *ctx, const char *key, duk_size_t key_len);
#if defined(DUK_USE_PREFER_SIZE)
#define duk_put_global_literal(ctx,key) duk_put_global_string((ctx), (key))
#else
DUK_EXTERNAL_DECL duk_bool_t duk_put_global_literal_raw(duk_context *ctx, const char *key, duk_size_t key_len);
#define duk_put_global_literal(ctx,key) duk_put_global_literal_raw((ctx), (key), sizeof((key)) - 1U)
#endif
DUK_EXTERNAL_DECL duk_bool_t duk_put_global_heapptr(duk_context *ctx, void *ptr);
/*
* Inspection
*/
DUK_EXTERNAL_DECL void duk_inspect_value(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_inspect_callstack_entry(duk_context *ctx, duk_int_t level);
/*
* Object prototype
*/
DUK_EXTERNAL_DECL void duk_get_prototype(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_set_prototype(duk_context *ctx, duk_idx_t idx);
/*
* Object finalizer
*/
DUK_EXTERNAL_DECL void duk_get_finalizer(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_set_finalizer(duk_context *ctx, duk_idx_t idx);
/*
* Global object
*/
DUK_EXTERNAL_DECL void duk_set_global_object(duk_context *ctx);
/*
* Duktape/C function magic value
*/
DUK_EXTERNAL_DECL duk_int_t duk_get_magic(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL void duk_set_magic(duk_context *ctx, duk_idx_t idx, duk_int_t magic);
DUK_EXTERNAL_DECL duk_int_t duk_get_current_magic(duk_context *ctx);
/*
* Module helpers: put multiple function or constant properties
*/
DUK_EXTERNAL_DECL void duk_put_function_list(duk_context *ctx, duk_idx_t obj_idx, const duk_function_list_entry *funcs);
DUK_EXTERNAL_DECL void duk_put_number_list(duk_context *ctx, duk_idx_t obj_idx, const duk_number_list_entry *numbers);
/*
* Object operations
*/
DUK_EXTERNAL_DECL void duk_compact(duk_context *ctx, duk_idx_t obj_idx);
DUK_EXTERNAL_DECL void duk_enum(duk_context *ctx, duk_idx_t obj_idx, duk_uint_t enum_flags);
DUK_EXTERNAL_DECL duk_bool_t duk_next(duk_context *ctx, duk_idx_t enum_idx, duk_bool_t get_value);
DUK_EXTERNAL_DECL void duk_seal(duk_context *ctx, duk_idx_t obj_idx);
DUK_EXTERNAL_DECL void duk_freeze(duk_context *ctx, duk_idx_t obj_idx);
/*
* String manipulation
*/
DUK_EXTERNAL_DECL void duk_concat(duk_context *ctx, duk_idx_t count);
DUK_EXTERNAL_DECL void duk_join(duk_context *ctx, duk_idx_t count);
DUK_EXTERNAL_DECL void duk_decode_string(duk_context *ctx, duk_idx_t idx, duk_decode_char_function callback, void *udata);
DUK_EXTERNAL_DECL void duk_map_string(duk_context *ctx, duk_idx_t idx, duk_map_char_function callback, void *udata);
DUK_EXTERNAL_DECL void duk_substring(duk_context *ctx, duk_idx_t idx, duk_size_t start_char_offset, duk_size_t end_char_offset);
DUK_EXTERNAL_DECL void duk_trim(duk_context *ctx, duk_idx_t idx);
DUK_EXTERNAL_DECL duk_codepoint_t duk_char_code_at(duk_context *ctx, duk_idx_t idx, duk_size_t char_offset);
/*
* ECMAScript operators
*/
DUK_EXTERNAL_DECL duk_bool_t duk_equals(duk_context *ctx, duk_idx_t idx1, duk_idx_t idx2);
DUK_EXTERNAL_DECL duk_bool_t duk_strict_equals(duk_context *ctx, duk_idx_t idx1, duk_idx_t idx2);
DUK_EXTERNAL_DECL duk_bool_t duk_samevalue(duk_context *ctx, duk_idx_t idx1, duk_idx_t idx2);
DUK_EXTERNAL_DECL duk_bool_t duk_instanceof(duk_context *ctx, duk_idx_t idx1, duk_idx_t idx2);
/*
* Random
*/
DUK_EXTERNAL_DECL duk_double_t duk_random(duk_context *ctx);
/*
* Function (method) calls
*/
DUK_EXTERNAL_DECL void duk_call(duk_context *ctx, duk_idx_t nargs);
DUK_EXTERNAL_DECL void duk_call_method(duk_context *ctx, duk_idx_t nargs);
DUK_EXTERNAL_DECL void duk_call_prop(duk_context *ctx, duk_idx_t obj_idx, duk_idx_t nargs);
DUK_EXTERNAL_DECL duk_int_t duk_pcall(duk_context *ctx, duk_idx_t nargs);
DUK_EXTERNAL_DECL duk_int_t duk_pcall_method(duk_context *ctx, duk_idx_t nargs);
DUK_EXTERNAL_DECL duk_int_t duk_pcall_prop(duk_context *ctx, duk_idx_t obj_idx, duk_idx_t nargs);
DUK_EXTERNAL_DECL void duk_new(duk_context *ctx, duk_idx_t nargs);
DUK_EXTERNAL_DECL duk_int_t duk_pnew(duk_context *ctx, duk_idx_t nargs);
DUK_EXTERNAL_DECL duk_int_t duk_safe_call(duk_context *ctx, duk_safe_call_function func, void *udata, duk_idx_t nargs, duk_idx_t nrets);
/*
* Thread management
*/
/* There are currently no native functions to yield/resume, due to the internal
* limitations on coroutine handling. These will be added later.
*/
/*
* Compilation and evaluation
*/
DUK_EXTERNAL_DECL duk_int_t duk_eval_raw(duk_context *ctx, const char *src_buffer, duk_size_t src_length, duk_uint_t flags);
DUK_EXTERNAL_DECL duk_int_t duk_compile_raw(duk_context *ctx, const char *src_buffer, duk_size_t src_length, duk_uint_t flags);
/* plain */
#define duk_eval(ctx) \
((void) duk_eval_raw((ctx), NULL, 0, 1 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOFILENAME))
#define duk_eval_noresult(ctx) \
((void) duk_eval_raw((ctx), NULL, 0, 1 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NORESULT | DUK_COMPILE_NOFILENAME))
#define duk_peval(ctx) \
(duk_eval_raw((ctx), NULL, 0, 1 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOFILENAME))
#define duk_peval_noresult(ctx) \
(duk_eval_raw((ctx), NULL, 0, 1 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NORESULT | DUK_COMPILE_NOFILENAME))
#define duk_compile(ctx,flags) \
((void) duk_compile_raw((ctx), NULL, 0, 2 /*args*/ | (flags)))
#define duk_pcompile(ctx,flags) \
(duk_compile_raw((ctx), NULL, 0, 2 /*args*/ | (flags) | DUK_COMPILE_SAFE))
/* string */
#define duk_eval_string(ctx,src) \
((void) duk_eval_raw((ctx), (src), 0, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NOFILENAME))
#define duk_eval_string_noresult(ctx,src) \
((void) duk_eval_raw((ctx), (src), 0, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NORESULT | DUK_COMPILE_NOFILENAME))
#define duk_peval_string(ctx,src) \
(duk_eval_raw((ctx), (src), 0, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NOFILENAME))
#define duk_peval_string_noresult(ctx,src) \
(duk_eval_raw((ctx), (src), 0, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NORESULT | DUK_COMPILE_NOFILENAME))
#define duk_compile_string(ctx,flags,src) \
((void) duk_compile_raw((ctx), (src), 0, 0 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NOFILENAME))
#define duk_compile_string_filename(ctx,flags,src) \
((void) duk_compile_raw((ctx), (src), 0, 1 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN))
#define duk_pcompile_string(ctx,flags,src) \
(duk_compile_raw((ctx), (src), 0, 0 /*args*/ | (flags) | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN | DUK_COMPILE_NOFILENAME))
#define duk_pcompile_string_filename(ctx,flags,src) \
(duk_compile_raw((ctx), (src), 0, 1 /*args*/ | (flags) | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_STRLEN))
/* lstring */
#define duk_eval_lstring(ctx,buf,len) \
((void) duk_eval_raw((ctx), buf, len, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_COMPILE_NOFILENAME))
#define duk_eval_lstring_noresult(ctx,buf,len) \
((void) duk_eval_raw((ctx), buf, len, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_COMPILE_NORESULT | DUK_COMPILE_NOFILENAME))
#define duk_peval_lstring(ctx,buf,len) \
(duk_eval_raw((ctx), buf, len, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_NOSOURCE | DUK_COMPILE_SAFE | DUK_COMPILE_NOFILENAME))
#define duk_peval_lstring_noresult(ctx,buf,len) \
(duk_eval_raw((ctx), buf, len, 0 /*args*/ | DUK_COMPILE_EVAL | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_NORESULT | DUK_COMPILE_NOFILENAME))
#define duk_compile_lstring(ctx,flags,buf,len) \
((void) duk_compile_raw((ctx), buf, len, 0 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE | DUK_COMPILE_NOFILENAME))
#define duk_compile_lstring_filename(ctx,flags,buf,len) \
((void) duk_compile_raw((ctx), buf, len, 1 /*args*/ | (flags) | DUK_COMPILE_NOSOURCE))
#define duk_pcompile_lstring(ctx,flags,buf,len) \
(duk_compile_raw((ctx), buf, len, 0 /*args*/ | (flags) | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE | DUK_COMPILE_NOFILENAME))
#define duk_pcompile_lstring_filename(ctx,flags,buf,len) \
(duk_compile_raw((ctx), buf, len, 1 /*args*/ | (flags) | DUK_COMPILE_SAFE | DUK_COMPILE_NOSOURCE))
/*
* Bytecode load/dump
*/
DUK_EXTERNAL_DECL void duk_dump_function(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_load_function(duk_context *ctx);
/*
* Debugging
*/
DUK_EXTERNAL_DECL void duk_push_context_dump(duk_context *ctx);
/*
* Debugger (debug protocol)
*/
DUK_EXTERNAL_DECL void duk_debugger_attach(duk_context *ctx,
duk_debug_read_function read_cb,
duk_debug_write_function write_cb,
duk_debug_peek_function peek_cb,
duk_debug_read_flush_function read_flush_cb,
duk_debug_write_flush_function write_flush_cb,
duk_debug_request_function request_cb,
duk_debug_detached_function detached_cb,
void *udata);
DUK_EXTERNAL_DECL void duk_debugger_detach(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_debugger_cooperate(duk_context *ctx);
DUK_EXTERNAL_DECL duk_bool_t duk_debugger_notify(duk_context *ctx, duk_idx_t nvalues);
DUK_EXTERNAL_DECL void duk_debugger_pause(duk_context *ctx);
/*
* Time handling
*/
DUK_EXTERNAL_DECL duk_double_t duk_get_now(duk_context *ctx);
DUK_EXTERNAL_DECL void duk_time_to_components(duk_context *ctx, duk_double_t timeval, duk_time_components *comp);
DUK_EXTERNAL_DECL duk_double_t duk_components_to_time(duk_context *ctx, duk_time_components *comp);
/*
* Date provider related constants
*
* NOTE: These are "semi public" - you should only use these if you write
* your own platform specific Date provider, see doc/datetime.rst.
*/
/* Millisecond count constants. */
#define DUK_DATE_MSEC_SECOND 1000L
#define DUK_DATE_MSEC_MINUTE (60L * 1000L)
#define DUK_DATE_MSEC_HOUR (60L * 60L * 1000L)
#define DUK_DATE_MSEC_DAY (24L * 60L * 60L * 1000L)
/* ECMAScript date range is 100 million days from Epoch:
* > 100e6 * 24 * 60 * 60 * 1000 // 100M days in millisecs
* 8640000000000000
* (= 8.64e15)
*/
#define DUK_DATE_MSEC_100M_DAYS (8.64e15)
#define DUK_DATE_MSEC_100M_DAYS_LEEWAY (8.64e15 + 24 * 3600e3)
/* ECMAScript year range:
* > new Date(100e6 * 24 * 3600e3).toISOString()
* '+275760-09-13T00:00:00.000Z'
* > new Date(-100e6 * 24 * 3600e3).toISOString()
* '-271821-04-20T00:00:00.000Z'
*/
#define DUK_DATE_MIN_ECMA_YEAR (-271821L)
#define DUK_DATE_MAX_ECMA_YEAR 275760L
/* Part indices for internal breakdowns. Part order from DUK_DATE_IDX_YEAR
* to DUK_DATE_IDX_MILLISECOND matches argument ordering of ECMAScript API
* calls (like Date constructor call). Some functions in duk_bi_date.c
* depend on the specific ordering, so change with care. 16 bits are not
* enough for all parts (year, specifically).
*
* Must be in-sync with genbuiltins.py.
*/
#define DUK_DATE_IDX_YEAR 0 /* year */
#define DUK_DATE_IDX_MONTH 1 /* month: 0 to 11 */
#define DUK_DATE_IDX_DAY 2 /* day within month: 0 to 30 */
#define DUK_DATE_IDX_HOUR 3
#define DUK_DATE_IDX_MINUTE 4
#define DUK_DATE_IDX_SECOND 5
#define DUK_DATE_IDX_MILLISECOND 6
#define DUK_DATE_IDX_WEEKDAY 7 /* weekday: 0 to 6, 0=sunday, 1=monday, etc */
#define DUK_DATE_IDX_NUM_PARTS 8
/* Internal API call flags, used for various functions in duk_bi_date.c.
* Certain flags are used by only certain functions, but since the flags
* don't overlap, a single flags value can be passed around to multiple
* functions.
*
* The unused top bits of the flags field are also used to pass values
* to helpers (duk__get_part_helper() and duk__set_part_helper()).
*
* Must be in-sync with genbuiltins.py.
*/
/* NOTE: when writing a Date provider you only need a few specific
* flags from here, the rest are internal. Avoid using anything you
* don't need.
*/
#define DUK_DATE_FLAG_NAN_TO_ZERO (1 << 0) /* timeval breakdown: internal time value NaN -> zero */
#define DUK_DATE_FLAG_NAN_TO_RANGE_ERROR (1 << 1) /* timeval breakdown: internal time value NaN -> RangeError (toISOString) */
#define DUK_DATE_FLAG_ONEBASED (1 << 2) /* timeval breakdown: convert month and day-of-month parts to one-based (default is zero-based) */
#define DUK_DATE_FLAG_EQUIVYEAR (1 << 3) /* timeval breakdown: replace year with equivalent year in the [1971,2037] range for DST calculations */
#define DUK_DATE_FLAG_LOCALTIME (1 << 4) /* convert time value to local time */
#define DUK_DATE_FLAG_SUB1900 (1 << 5) /* getter: subtract 1900 from year when getting year part */
#define DUK_DATE_FLAG_TOSTRING_DATE (1 << 6) /* include date part in string conversion result */
#define DUK_DATE_FLAG_TOSTRING_TIME (1 << 7) /* include time part in string conversion result */
#define DUK_DATE_FLAG_TOSTRING_LOCALE (1 << 8) /* use locale specific formatting if available */
#define DUK_DATE_FLAG_TIMESETTER (1 << 9) /* setter: call is a time setter (affects hour, min, sec, ms); otherwise date setter (affects year, month, day-in-month) */
#define DUK_DATE_FLAG_YEAR_FIXUP (1 << 10) /* setter: perform 2-digit year fixup (00...99 -> 1900...1999) */
#define DUK_DATE_FLAG_SEP_T (1 << 11) /* string conversion: use 'T' instead of ' ' as a separator */
#define DUK_DATE_FLAG_VALUE_SHIFT 12 /* additional values begin at bit 12 */
/*
* ROM pointer compression
*/
/* Support array for ROM pointer compression. Only declared when ROM
* pointer compression is active.
*/
#if defined(DUK_USE_ROM_OBJECTS) && defined(DUK_USE_HEAPPTR16)
DUK_EXTERNAL_DECL const void * const duk_rom_compressed_pointers[];
#endif
/*
* C++ name mangling
*/
#if defined(__cplusplus)
/* end 'extern "C"' wrapper */
}
#endif
/*
* END PUBLIC API
*/
#endif /* DUKTAPE_H_INCLUDED */
| codelabs/ffigen_codelab/step_05/src/duktape.h/0 | {
"file_path": "codelabs/ffigen_codelab/step_05/src/duktape.h",
"repo_id": "codelabs",
"token_count": 34278
} | 20 |
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'app.dart';
import 'firebase_options.dart';
// TODO(codelab user): Get API key
const clientId = 'YOUR_CLIENT_ID';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
runApp(const MyApp());
}
| codelabs/firebase-auth-flutterfire-ui/complete/lib/main.dart/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/complete/lib/main.dart",
"repo_id": "codelabs",
"token_count": 137
} | 21 |
{
"indexes": [],
"fieldOverrides": []
}
| codelabs/firebase-auth-flutterfire-ui/start/firestore.indexes.json/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/start/firestore.indexes.json",
"repo_id": "codelabs",
"token_count": 21
} | 22 |
{"kind":"identitytoolkit#DownloadAccountResponse","users":[]}
| codelabs/firebase-emulator-suite/complete/emulators_data/auth_export/accounts.json/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/emulators_data/auth_export/accounts.json",
"repo_id": "codelabs",
"token_count": 16
} | 23 |
class Entry {
final String date;
final String text;
final String title;
Entry({
required this.date,
required this.text,
required this.title,
});
}
| codelabs/firebase-emulator-suite/complete/lib/entry.dart/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/lib/entry.dart",
"repo_id": "codelabs",
"token_count": 58
} | 24 |
import 'dart:async';
import 'entry.dart';
class AppState {
AppState() {
_entriesStreamController = StreamController.broadcast(onListen: () {
_entriesStreamController.add([
Entry(
date: '10/09/2022',
text: lorem,
title: '[Example] My Journal Entry',
)
]);
});
}
// This will change to the type User from the Firebase Authentication package
// Changing it’s type now would cause the app to throw an error
Object? user;
late StreamController<List<Entry>> _entriesStreamController;
Stream<List<Entry>> get entries =>
_entriesStreamController.stream.asBroadcastStream();
Future<void> logIn(String email, String password) async {
print('TODO: AppState.login');
user = Object();
await _listenForEntries();
}
void writeEntryToFirebase(Entry entry) {
print('TODO: AppState.writeEntryToFirebase');
}
Future<void> _listenForEntries() async {
print('TODO: AppState._listenForEntries');
}
}
const lorem =
'''Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
''';
| codelabs/firebase-emulator-suite/start/lib/app_state.dart/0 | {
"file_path": "codelabs/firebase-emulator-suite/start/lib/app_state.dart",
"repo_id": "codelabs",
"token_count": 540
} | 25 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/firebase-get-to-know-flutter/step_02/android/gradle.properties/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_02/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 26 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-get-to-know-flutter/step_04/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_04/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 27 |
name: GitHub Desktop Client
steps:
- name: Rebuild window_to_front
steps:
- name: Remove generated code
rmdir: window_to_front
- name: Create window_to_front
flutter: create -t plugin --platforms=linux,macos,windows window_to_front
- name: Update dependencies
path: window_to_front
flutter: pub upgrade --major-versions
- name: Replace analysis_options.yaml
path: window_to_front/analysis_options.yaml
replace-contents: |
include: ../../analysis_options.yaml
- name: Remove example code
path: window_to_front
rmdir: example
- name: Remove the README.md
path: window_to_front
rm: README.md
- name: Remove test
path: window_to_front
rmdir: test
- name: Remove linux/test
path: window_to_front
rmdir: linux/test
- name: Remove windows/test
path: window_to_front
rmdir: windows/test
- name: Patch pubspec.yaml
path: window_to_front/pubspec.yaml
patch: |
--- b/github-client/window_to_front/pubspec.yaml
+++ a/github-client/window_to_front/pubspec.yaml
@@ -1,3 +1,17 @@
+# Copyright 2020 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
name: window_to_front
description: "A new Flutter plugin project."
version: 0.0.1
- name: Patch lib/window_to_front.dart
path: window_to_front/lib/window_to_front.dart
patch-u: |
--- b/github-client/window_to_front/lib/window_to_front.dart
+++ a/github-client/window_to_front/lib/window_to_front.dart
@@ -1,8 +1,21 @@
+// Copyright 2020 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
import 'window_to_front_platform_interface.dart';
class WindowToFront {
- Future<String?> getPlatformVersion() {
- return WindowToFrontPlatform.instance.getPlatformVersion();
+ static Future<void> activate() {
+ return WindowToFrontPlatform.instance.activate();
}
}
- name: Remove linux/window_to_front_plugin_private.h
rm: window_to_front/linux/window_to_front_plugin_private.h
- name: Patch linux/window_to_front_plugin.cc
path: window_to_front/linux/window_to_front_plugin.cc
patch-u: |
--- b/github-client/window_to_front/linux/window_to_front_plugin.cc
+++ a/github-client/window_to_front/linux/window_to_front_plugin.cc
@@ -1,19 +1,31 @@
+// Copyright 2020 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
#include "include/window_to_front/window_to_front_plugin.h"
#include <flutter_linux/flutter_linux.h>
#include <gtk/gtk.h>
#include <sys/utsname.h>
-#include <cstring>
-
-#include "window_to_front_plugin_private.h"
-
#define WINDOW_TO_FRONT_PLUGIN(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), window_to_front_plugin_get_type(), \
WindowToFrontPlugin))
struct _WindowToFrontPlugin {
GObject parent_instance;
+
+ FlPluginRegistrar* registrar;
};
G_DEFINE_TYPE(WindowToFrontPlugin, window_to_front_plugin, g_object_get_type())
@@ -26,8 +38,14 @@ static void window_to_front_plugin_handle_method_call(
const gchar* method = fl_method_call_get_name(method_call);
- if (strcmp(method, "getPlatformVersion") == 0) {
- response = get_platform_version();
+ if (strcmp(method, "activate") == 0) {
+ FlView* view = fl_plugin_registrar_get_view(self->registrar);
+ if (view != nullptr) {
+ GtkWindow* window = GTK_WINDOW(gtk_widget_get_toplevel(GTK_WIDGET(view)));
+ gtk_window_present(window);
+ }
+
+ response = FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
} else {
response = FL_METHOD_RESPONSE(fl_method_not_implemented_response_new());
}
@@ -35,14 +53,6 @@ static void window_to_front_plugin_handle_method_call(
fl_method_call_respond(method_call, response, nullptr);
}
-FlMethodResponse* get_platform_version() {
- struct utsname uname_data = {};
- uname(&uname_data);
- g_autofree gchar *version = g_strdup_printf("Linux %s", uname_data.version);
- g_autoptr(FlValue) result = fl_value_new_string(version);
- return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
-}
-
static void window_to_front_plugin_dispose(GObject* object) {
G_OBJECT_CLASS(window_to_front_plugin_parent_class)->dispose(object);
}
@@ -63,6 +73,8 @@ void window_to_front_plugin_register_with_registrar(FlPluginRegistrar* registrar
WindowToFrontPlugin* plugin = WINDOW_TO_FRONT_PLUGIN(
g_object_new(window_to_front_plugin_get_type(), nullptr));
+ plugin->registrar = FL_PLUGIN_REGISTRAR(g_object_ref(registrar));
+
g_autoptr(FlStandardMethodCodec) codec = fl_standard_method_codec_new();
g_autoptr(FlMethodChannel) channel =
fl_method_channel_new(fl_plugin_registrar_get_messenger(registrar),
- name: Patch macos/Classes/WindowToFrontPlugin.swift
path: window_to_front/macos/Classes/WindowToFrontPlugin.swift
patch-u: |
--- b/github-client/window_to_front/macos/Classes/WindowToFrontPlugin.swift
+++ a/github-client/window_to_front/macos/Classes/WindowToFrontPlugin.swift
@@ -1,3 +1,17 @@
+// Copyright 2020 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
import Cocoa
import FlutterMacOS
@@ -10,8 +24,9 @@ public class WindowToFrontPlugin: NSObject, FlutterPlugin {
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
switch call.method {
- case "getPlatformVersion":
- result("macOS " + ProcessInfo.processInfo.operatingSystemVersionString)
+ case "activate":
+ NSApplication.shared.activate(ignoringOtherApps: true)
+ result(nil)
default:
result(FlutterMethodNotImplemented)
}
- name: Patch windows/window_to_front_plugin.cpp
path: window_to_front/windows/window_to_front_plugin.cpp
patch-u: |
--- b/github-client/window_to_front/windows/window_to_front_plugin.cpp
+++ a/github-client/window_to_front/windows/window_to_front_plugin.cpp
@@ -1,17 +1,27 @@
+// Copyright 2020 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
#include "window_to_front_plugin.h"
// This must be included before many other Windows headers.
#include <windows.h>
-// For getPlatformVersion; remove unless needed for your plugin implementation.
-#include <VersionHelpers.h>
-
#include <flutter/method_channel.h>
#include <flutter/plugin_registrar_windows.h>
#include <flutter/standard_method_codec.h>
#include <memory>
-#include <sstream>
namespace window_to_front {
@@ -23,7 +33,7 @@ void WindowToFrontPlugin::RegisterWithRegistrar(
registrar->messenger(), "window_to_front",
&flutter::StandardMethodCodec::GetInstance());
- auto plugin = std::make_unique<WindowToFrontPlugin>();
+ auto plugin = std::make_unique<WindowToFrontPlugin>(registrar);
channel->SetMethodCallHandler(
[plugin_pointer = plugin.get()](const auto &call, auto result) {
@@ -33,24 +43,29 @@ void WindowToFrontPlugin::RegisterWithRegistrar(
registrar->AddPlugin(std::move(plugin));
}
-WindowToFrontPlugin::WindowToFrontPlugin() {}
+WindowToFrontPlugin::WindowToFrontPlugin(flutter::PluginRegistrarWindows *registrar)
+ : registrar_(registrar) {}
WindowToFrontPlugin::~WindowToFrontPlugin() {}
void WindowToFrontPlugin::HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result) {
- if (method_call.method_name().compare("getPlatformVersion") == 0) {
- std::ostringstream version_stream;
- version_stream << "Windows ";
- if (IsWindows10OrGreater()) {
- version_stream << "10+";
- } else if (IsWindows8OrGreater()) {
- version_stream << "8";
- } else if (IsWindows7OrGreater()) {
- version_stream << "7";
- }
- result->Success(flutter::EncodableValue(version_stream.str()));
+ if (method_call.method_name().compare("activate") == 0) {
+ // See https://stackoverflow.com/a/34414846/2142626 for an explanation of how
+ // this raises a window to the foreground.
+ HWND m_hWnd = registrar_->GetView()->GetNativeWindow();
+ HWND hCurWnd = ::GetForegroundWindow();
+ DWORD dwMyID = ::GetCurrentThreadId();
+ DWORD dwCurID = ::GetWindowThreadProcessId(hCurWnd, NULL);
+ ::AttachThreadInput(dwCurID, dwMyID, TRUE);
+ ::SetWindowPos(m_hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
+ ::SetWindowPos(m_hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE);
+ ::SetForegroundWindow(m_hWnd);
+ ::SetFocus(m_hWnd);
+ ::SetActiveWindow(m_hWnd);
+ ::AttachThreadInput(dwCurID, dwMyID, FALSE);
+ result->Success();
} else {
result->NotImplemented();
}
- name: Patch lib/window_to_front_method_channel.dart
path: window_to_front/lib/window_to_front_method_channel.dart
patch-u: |
--- b/github-client/window_to_front/lib/window_to_front_method_channel.dart
+++ a/github-client/window_to_front/lib/window_to_front_method_channel.dart
@@ -1,3 +1,17 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
@@ -10,8 +24,7 @@ class MethodChannelWindowToFront extends WindowToFrontPlatform {
final methodChannel = const MethodChannel('window_to_front');
@override
- Future<String?> getPlatformVersion() async {
- final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
- return version;
+ Future<void> activate() async {
+ return methodChannel.invokeMethod('activate');
}
}
- name: Patch lib/window_to_front_platform_interface.dart
path: window_to_front/lib/window_to_front_platform_interface.dart
patch-u: |
--- b/github-client/window_to_front/lib/window_to_front_platform_interface.dart
+++ a/github-client/window_to_front/lib/window_to_front_platform_interface.dart
@@ -1,3 +1,17 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
import 'package:plugin_platform_interface/plugin_platform_interface.dart';
import 'window_to_front_method_channel.dart';
@@ -23,7 +37,7 @@ abstract class WindowToFrontPlatform extends PlatformInterface {
_instance = instance;
}
- Future<String?> getPlatformVersion() {
- throw UnimplementedError('platformVersion() has not been implemented.');
+ Future<void> activate() {
+ throw UnimplementedError('activate() has not been implemented.');
}
}
- name: Patch windows/window_to_front_plugin.h
path: window_to_front/windows/window_to_front_plugin.h
patch-u: |
--- b/github-client/window_to_front/windows/window_to_front_plugin.h
+++ a/github-client/window_to_front/windows/window_to_front_plugin.h
@@ -1,3 +1,17 @@
+// Copyright 2022 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
#ifndef FLUTTER_PLUGIN_WINDOW_TO_FRONT_PLUGIN_H_
#define FLUTTER_PLUGIN_WINDOW_TO_FRONT_PLUGIN_H_
@@ -12,7 +26,7 @@ class WindowToFrontPlugin : public flutter::Plugin {
public:
static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar);
- WindowToFrontPlugin();
+ WindowToFrontPlugin(flutter::PluginRegistrarWindows *registrar);
virtual ~WindowToFrontPlugin();
@@ -24,6 +38,9 @@ class WindowToFrontPlugin : public flutter::Plugin {
void HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result);
+
+ // The registrar for this plugin, for accessing the window.
+ flutter::PluginRegistrarWindows *registrar_;
};
} // namespace window_to_front
- name: step_03
steps:
- name: Remove generated code
rmdir: step_03
- name: Create project
flutter: create github_client --platforms windows,macos,linux
- name: Update dependencies
path: github_client
flutter: pub upgrade --major-versions
- name: Configure analysis_options.yaml
path: github_client/analysis_options.yaml
replace-contents: |
include: ../../analysis_options.yaml
- name: Remove the README.md.
rm: github_client/README.md
- name: VSCode config
mkdir: github_client/.vscode
- name: Add launch.json
path: github_client/.vscode/launch.json
replace-contents: |
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "github_client",
"request": "launch",
"type": "dart"
}
]
}
- name: Patch lib/main.dart
path: github_client/lib/main.dart
patch-u: |
--- b/github-client/step_03/lib/main.dart
+++ a/github-client/step_03/lib/main.dart
@@ -1,3 +1,17 @@
+// Copyright 2020 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
import 'package:flutter/material.dart';
void main() {
- name: Patch test/widget_test.dart
path: github_client/test/widget_test.dart
patch-u: |
--- b/github-client/step_03/test/widget_test.dart
+++ a/github-client/step_03/test/widget_test.dart
@@ -11,7 +11,7 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:github_client/main.dart';
void main() {
- testWidgets('Counter increments smoke test', (WidgetTester tester) async {
+ testWidgets('Counter increments smoke test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
- name: Copy step_03
copydir:
from: github_client
to: step_03
- name: step_04
steps:
- name: Remove generated code
rmdir: step_04
- name: Add http oauth2 url_launcher
path: github_client
flutter: pub add http oauth2 url_launcher
- name: Replace lib/main.dart
path: github_client/lib/main.dart
replace-contents: |
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import 'package:flutter/material.dart';
import 'github_oauth_credentials.dart';
import 'src/github_login.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'GitHub Client',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
visualDensity: VisualDensity.adaptivePlatformDensity,
useMaterial3: true,
),
home: const MyHomePage(title: 'GitHub Client'),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
Widget build(BuildContext context) {
return GithubLoginWidget(
builder: (context, httpClient) {
return Scaffold(
appBar: AppBar(
title: Text(title),
elevation: 2,
),
body: const Center(
child: Text(
'You are logged in to GitHub!',
),
),
);
},
githubClientId: githubClientId,
githubClientSecret: githubClientSecret,
githubScopes: githubScopes,
);
}
}
- name: Create lib/github_oauth_credentials.dart
path: github_client/lib/github_oauth_credentials.dart
replace-contents: |
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// TODO(CodelabUser): Create an OAuth App
const githubClientId = 'YOUR_GITHUB_CLIENT_ID_HERE';
const githubClientSecret = 'YOUR_GITHUB_CLIENT_SECRET_HERE';
// OAuth scopes for repository and user information
const githubScopes = ['repo', 'read:org'];
- name: Make lib/src directory
path: github_client/lib
mkdir: src
- name: Create lib/src/github_login.dart
path: github_client/lib/src/github_login.dart
replace-contents: |
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:oauth2/oauth2.dart' as oauth2;
import 'package:url_launcher/url_launcher.dart';
final _authorizationEndpoint =
Uri.parse('https://github.com/login/oauth/authorize');
final _tokenEndpoint = Uri.parse('https://github.com/login/oauth/access_token');
class GithubLoginWidget extends StatefulWidget {
const GithubLoginWidget({
required this.builder,
required this.githubClientId,
required this.githubClientSecret,
required this.githubScopes,
super.key,
});
final AuthenticatedBuilder builder;
final String githubClientId;
final String githubClientSecret;
final List<String> githubScopes;
@override
State<GithubLoginWidget> createState() => _GithubLoginState();
}
typedef AuthenticatedBuilder = Widget Function(
BuildContext context, oauth2.Client client);
class _GithubLoginState extends State<GithubLoginWidget> {
HttpServer? _redirectServer;
oauth2.Client? _client;
@override
Widget build(BuildContext context) {
final client = _client;
if (client != null) {
return widget.builder(context, client);
}
return Scaffold(
appBar: AppBar(
title: const Text('Github Login'),
),
body: Center(
child: ElevatedButton(
onPressed: () async {
await _redirectServer?.close();
// Bind to an ephemeral port on localhost
_redirectServer = await HttpServer.bind('localhost', 0);
var authenticatedHttpClient = await _getOAuth2Client(
Uri.parse('http://localhost:${_redirectServer!.port}/auth'));
setState(() {
_client = authenticatedHttpClient;
});
},
child: const Text('Login to Github'),
),
),
);
}
Future<oauth2.Client> _getOAuth2Client(Uri redirectUrl) async {
if (widget.githubClientId.isEmpty || widget.githubClientSecret.isEmpty) {
throw const GithubLoginException(
'githubClientId and githubClientSecret must be not empty. '
'See `lib/github_oauth_credentials.dart` for more detail.');
}
var grant = oauth2.AuthorizationCodeGrant(
widget.githubClientId,
_authorizationEndpoint,
_tokenEndpoint,
secret: widget.githubClientSecret,
httpClient: _JsonAcceptingHttpClient(),
);
var authorizationUrl =
grant.getAuthorizationUrl(redirectUrl, scopes: widget.githubScopes);
await _redirect(authorizationUrl);
var responseQueryParameters = await _listen();
var client =
await grant.handleAuthorizationResponse(responseQueryParameters);
return client;
}
Future<void> _redirect(Uri authorizationUrl) async {
if (await canLaunchUrl(authorizationUrl)) {
await launchUrl(authorizationUrl);
} else {
throw GithubLoginException('Could not launch $authorizationUrl');
}
}
Future<Map<String, String>> _listen() async {
var request = await _redirectServer!.first;
var params = request.uri.queryParameters;
request.response.statusCode = 200;
request.response.headers.set('content-type', 'text/plain');
request.response.writeln('Authenticated! You can close this tab.');
await request.response.close();
await _redirectServer!.close();
_redirectServer = null;
return params;
}
}
class _JsonAcceptingHttpClient extends http.BaseClient {
final _httpClient = http.Client();
@override
Future<http.StreamedResponse> send(http.BaseRequest request) {
request.headers['Accept'] = 'application/json';
return _httpClient.send(request);
}
}
class GithubLoginException implements Exception {
const GithubLoginException(this.message);
final String message;
@override
String toString() => message;
}
- name: Patch macos/Runner/DebugProfile.entitlements
path: github_client/macos/Runner/DebugProfile.entitlements
patch: |
10a11,12
> <key>com.apple.security.network.client</key>
> <true/>
- name: Patch macos/Runner/Release.entitlements
path: github_client/macos/Runner/Release.entitlements
patch: |
6a7,10
> <key>com.apple.security.network.server</key>
> <true/>
> <key>com.apple.security.network.client</key>
> <true/>
- name: Replace test/widget_test.dart
path: github_client/test/widget_test.dart
replace-contents: |
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility in the flutter_test package. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter_test/flutter_test.dart';
import 'package:github_client/main.dart';
void main() {
testWidgets('Counter increments smoke test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0.
expect(find.text('Github Login'), findsOneWidget);
expect(find.text('Not this text'), findsNothing);
});
}
- name: Build macOS app
platforms: [ macos ]
path: github_client
flutter: build macos
- name: Build linux app
platforms: [ linux ]
path: github_client
flutter: build linux
- name: Build windows app
platforms: [ windows ]
path: github_client
flutter: build windows
- name: Copy step_04
copydir:
from: github_client
to: step_04
- name: step_05
steps:
- name: Remove generated code
rmdir: step_05
- name: Add dependencies
path: github_client
flutter: pub add github
- name: Patch lib/main.dart
path: github_client/lib/main.dart
patch-u: |
--- b/github-client/step_05/lib/main.dart
+++ a/github-client/step_05/lib/main.dart
@@ -13,6 +13,8 @@
// limitations under the License.
import 'package:flutter/material.dart';
+import 'package:github/github.dart';
+
import 'github_oauth_credentials.dart';
import 'src/github_login.dart';
@@ -45,16 +47,23 @@ class MyHomePage extends StatelessWidget {
Widget build(BuildContext context) {
return GithubLoginWidget(
builder: (context, httpClient) {
- return Scaffold(
- appBar: AppBar(
- title: Text(title),
- elevation: 2,
- ),
- body: const Center(
- child: Text(
- 'You are logged in to GitHub!',
- ),
- ),
+ return FutureBuilder<CurrentUser>(
+ future: viewerDetail(httpClient.credentials.accessToken),
+ builder: (context, snapshot) {
+ return Scaffold(
+ appBar: AppBar(
+ title: Text(title),
+ elevation: 2,
+ ),
+ body: Center(
+ child: Text(
+ snapshot.hasData
+ ? 'Hello ${snapshot.data!.login}!'
+ : 'Retrieving viewer login details...',
+ ),
+ ),
+ );
+ },
);
},
githubClientId: githubClientId,
@@ -63,3 +72,8 @@ class MyHomePage extends StatelessWidget {
);
}
}
+
+Future<CurrentUser> viewerDetail(String accessToken) async {
+ final gitHub = GitHub(auth: Authentication.withToken(accessToken));
+ return gitHub.users.getCurrentUser();
+}
- name: Copy step_05
copydir:
from: github_client
to: step_05
- name: step_06
steps:
- name: Remove generated code
rmdir: step_06
- name: Add dependencies
path: github_client
flutter: pub add --path ../window_to_front window_to_front
- name: Patch lib/main.dart
path: github_client/lib/main.dart
patch-u: |
--- b/github-client/step_06/lib/main.dart
+++ a/github-client/step_06/lib/main.dart
@@ -14,6 +14,7 @@
import 'package:flutter/material.dart';
import 'package:github/github.dart';
+import 'package:window_to_front/window_to_front.dart';
import 'github_oauth_credentials.dart';
import 'src/github_login.dart';
@@ -47,6 +48,7 @@ class MyHomePage extends StatelessWidget {
Widget build(BuildContext context) {
return GithubLoginWidget(
builder: (context, httpClient) {
+ WindowToFront.activate();
return FutureBuilder<CurrentUser>(
future: viewerDetail(httpClient.credentials.accessToken),
builder: (context, snapshot) {
- name: Build macOS app
platforms: [ macos ]
path: github_client
flutter: build macos
- name: Build linux app
platforms: [ linux ]
path: github_client
flutter: build linux
- name: Build windows app
platforms: [ windows ]
path: github_client
flutter: build windows
- name: Copy step_06
copydir:
from: github_client
to: step_06
- name: step_07
steps:
- name: Remove generated code
rmdir: step_07
- name: Add dependencies
path: github_client
flutter: pub add fluttericon
- name: Add lib/src/github_summary.dart
path: github_client/lib/src/github_summary.dart
replace-contents: |
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import 'package:flutter/material.dart';
import 'package:fluttericon/octicons_icons.dart';
import 'package:github/github.dart';
import 'package:url_launcher/url_launcher_string.dart';
class GitHubSummary extends StatefulWidget {
const GitHubSummary({required this.gitHub, super.key});
final GitHub gitHub;
@override
State<GitHubSummary> createState() => _GitHubSummaryState();
}
class _GitHubSummaryState extends State<GitHubSummary> {
int _selectedIndex = 0;
@override
Widget build(BuildContext context) {
return Row(
children: [
NavigationRail(
selectedIndex: _selectedIndex,
onDestinationSelected: (index) {
setState(() {
_selectedIndex = index;
});
},
labelType: NavigationRailLabelType.selected,
destinations: const [
NavigationRailDestination(
icon: Icon(Octicons.repo),
label: Text('Repositories'),
),
NavigationRailDestination(
icon: Icon(Octicons.issue_opened),
label: Text('Assigned Issues'),
),
NavigationRailDestination(
icon: Icon(Octicons.git_pull_request),
label: Text('Pull Requests'),
),
],
),
const VerticalDivider(thickness: 1, width: 1),
// This is the main content.
Expanded(
child: IndexedStack(
index: _selectedIndex,
children: [
RepositoriesList(gitHub: widget.gitHub),
AssignedIssuesList(gitHub: widget.gitHub),
PullRequestsList(gitHub: widget.gitHub),
],
),
),
],
);
}
}
class RepositoriesList extends StatefulWidget {
const RepositoriesList({required this.gitHub, super.key});
final GitHub gitHub;
@override
State<RepositoriesList> createState() => _RepositoriesListState();
}
class _RepositoriesListState extends State<RepositoriesList> {
@override
initState() {
super.initState();
_repositories = widget.gitHub.repositories.listRepositories().toList();
}
late Future<List<Repository>> _repositories;
@override
Widget build(BuildContext context) {
return FutureBuilder<List<Repository>>(
future: _repositories,
builder: (context, snapshot) {
if (snapshot.hasError) {
return Center(child: Text('${snapshot.error}'));
}
if (!snapshot.hasData) {
return const Center(child: CircularProgressIndicator());
}
var repositories = snapshot.data;
return ListView.builder(
primary: false,
itemBuilder: (context, index) {
var repository = repositories[index];
return ListTile(
title:
Text('${repository.owner?.login ?? ''}/${repository.name}'),
subtitle: Text(repository.description),
onTap: () => _launchUrl(this, repository.htmlUrl),
);
},
itemCount: repositories!.length,
);
},
);
}
}
class AssignedIssuesList extends StatefulWidget {
const AssignedIssuesList({required this.gitHub, super.key});
final GitHub gitHub;
@override
State<AssignedIssuesList> createState() => _AssignedIssuesListState();
}
class _AssignedIssuesListState extends State<AssignedIssuesList> {
@override
initState() {
super.initState();
_assignedIssues = widget.gitHub.issues.listByUser().toList();
}
late Future<List<Issue>> _assignedIssues;
@override
Widget build(BuildContext context) {
return FutureBuilder<List<Issue>>(
future: _assignedIssues,
builder: (context, snapshot) {
if (snapshot.hasError) {
return Center(child: Text('${snapshot.error}'));
}
if (!snapshot.hasData) {
return const Center(child: CircularProgressIndicator());
}
var assignedIssues = snapshot.data;
return ListView.builder(
primary: false,
itemBuilder: (context, index) {
var assignedIssue = assignedIssues[index];
return ListTile(
title: Text(assignedIssue.title),
subtitle: Text('${_nameWithOwner(assignedIssue)} '
'Issue #${assignedIssue.number} '
'opened by ${assignedIssue.user?.login ?? ''}'),
onTap: () => _launchUrl(this, assignedIssue.htmlUrl),
);
},
itemCount: assignedIssues!.length,
);
},
);
}
String _nameWithOwner(Issue assignedIssue) {
final endIndex = assignedIssue.url.lastIndexOf('/issues/');
return assignedIssue.url.substring(29, endIndex);
}
}
class PullRequestsList extends StatefulWidget {
const PullRequestsList({required this.gitHub, super.key});
final GitHub gitHub;
@override
State<PullRequestsList> createState() => _PullRequestsListState();
}
class _PullRequestsListState extends State<PullRequestsList> {
@override
initState() {
super.initState();
_pullRequests = widget.gitHub.pullRequests
.list(RepositorySlug('flutter', 'flutter'))
.toList();
}
late Future<List<PullRequest>> _pullRequests;
@override
Widget build(BuildContext context) {
return FutureBuilder<List<PullRequest>>(
future: _pullRequests,
builder: (context, snapshot) {
if (snapshot.hasError) {
return Center(child: Text('${snapshot.error}'));
}
if (!snapshot.hasData) {
return const Center(child: CircularProgressIndicator());
}
var pullRequests = snapshot.data;
return ListView.builder(
primary: false,
itemBuilder: (context, index) {
var pullRequest = pullRequests[index];
return ListTile(
title: Text(pullRequest.title ?? ''),
subtitle: Text('flutter/flutter '
'PR #${pullRequest.number} '
'opened by ${pullRequest.user?.login ?? ''} '
'(${pullRequest.state?.toLowerCase() ?? ''})'),
onTap: () => _launchUrl(this, pullRequest.htmlUrl ?? ''),
);
},
itemCount: pullRequests!.length,
);
},
);
}
}
Future<void> _launchUrl(State state, String url) async {
if (await canLaunchUrlString(url)) {
await launchUrlString(url);
} else {
if (state.mounted) {
return showDialog(
context: state.context,
builder: (context) => AlertDialog(
title: const Text('Navigation error'),
content: Text('Could not launch $url'),
actions: <Widget>[
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: const Text('Close'),
),
],
),
);
}
}
}
- name: Patch lib/main.dart
path: github_client/lib/main.dart
patch-u: |
--- b/github-client/step_07/lib/main.dart
+++ a/github-client/step_07/lib/main.dart
@@ -18,6 +18,7 @@ import 'package:window_to_front/window_to_front.dart';
import 'github_oauth_credentials.dart';
import 'src/github_login.dart';
+import 'src/github_summary.dart';
void main() {
runApp(const MyApp());
@@ -49,23 +50,14 @@ class MyHomePage extends StatelessWidget {
return GithubLoginWidget(
builder: (context, httpClient) {
WindowToFront.activate();
- return FutureBuilder<CurrentUser>(
- future: viewerDetail(httpClient.credentials.accessToken),
- builder: (context, snapshot) {
- return Scaffold(
- appBar: AppBar(
- title: Text(title),
- elevation: 2,
- ),
- body: Center(
- child: Text(
- snapshot.hasData
- ? 'Hello ${snapshot.data!.login}!'
- : 'Retrieving viewer login details...',
- ),
- ),
- );
- },
+ return Scaffold(
+ appBar: AppBar(
+ title: Text(title),
+ elevation: 2,
+ ),
+ body: GitHubSummary(
+ gitHub: _getGitHub(httpClient.credentials.accessToken),
+ ),
);
},
githubClientId: githubClientId,
@@ -75,7 +67,6 @@ class MyHomePage extends StatelessWidget {
}
}
-Future<CurrentUser> viewerDetail(String accessToken) async {
- final gitHub = GitHub(auth: Authentication.withToken(accessToken));
- return gitHub.users.getCurrentUser();
+GitHub _getGitHub(String accessToken) {
+ return GitHub(auth: Authentication.withToken(accessToken));
}
- name: flutter clean
path: github_client
flutter: clean
- name: Build macOS app
platforms: [ macos ]
path: github_client
flutter: build macos
- name: Build linux app
platforms: [ linux ]
path: github_client
flutter: build linux
- name: Build windows app
platforms: [ windows ]
path: github_client
flutter: build windows
- name: Copy step_07
copydir:
from: github_client
to: step_07
- name: Cleanup github_client
rmdir: github_client
| codelabs/github-client/codelab_rebuild.yaml/0 | {
"file_path": "codelabs/github-client/codelab_rebuild.yaml",
"repo_id": "codelabs",
"token_count": 25762
} | 28 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/github-client/step_03/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/github-client/step_03/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 29 |
include: ../../analysis_options.yaml
| codelabs/github-client/step_04/analysis_options.yaml/0 | {
"file_path": "codelabs/github-client/step_04/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 30 |
include: ../../analysis_options.yaml
| codelabs/github-client/step_05/analysis_options.yaml/0 | {
"file_path": "codelabs/github-client/step_05/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 31 |
include: ../../analysis_options.yaml
| codelabs/github-client/step_06/analysis_options.yaml/0 | {
"file_path": "codelabs/github-client/step_06/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 32 |
//
// Generated file. Do not edit.
//
import FlutterMacOS
import Foundation
import url_launcher_macos
import window_to_front
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
WindowToFrontPlugin.register(with: registry.registrar(forPlugin: "WindowToFrontPlugin"))
}
| codelabs/github-client/step_06/macos/Flutter/GeneratedPluginRegistrant.swift/0 | {
"file_path": "codelabs/github-client/step_06/macos/Flutter/GeneratedPluginRegistrant.swift",
"repo_id": "codelabs",
"token_count": 116
} | 33 |
include: ../../analysis_options.yaml
| codelabs/github-client/step_07/analysis_options.yaml/0 | {
"file_path": "codelabs/github-client/step_07/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 34 |
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef FLUTTER_PLUGIN_WINDOW_TO_FRONT_PLUGIN_H_
#define FLUTTER_PLUGIN_WINDOW_TO_FRONT_PLUGIN_H_
#include <flutter/method_channel.h>
#include <flutter/plugin_registrar_windows.h>
#include <memory>
namespace window_to_front {
class WindowToFrontPlugin : public flutter::Plugin {
public:
static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar);
WindowToFrontPlugin(flutter::PluginRegistrarWindows *registrar);
virtual ~WindowToFrontPlugin();
// Disallow copy and assign.
WindowToFrontPlugin(const WindowToFrontPlugin&) = delete;
WindowToFrontPlugin& operator=(const WindowToFrontPlugin&) = delete;
// Called when a method is called on this plugin's channel from Dart.
void HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result);
// The registrar for this plugin, for accessing the window.
flutter::PluginRegistrarWindows *registrar_;
};
} // namespace window_to_front
#endif // FLUTTER_PLUGIN_WINDOW_TO_FRONT_PLUGIN_H_
| codelabs/github-client/window_to_front/windows/window_to_front_plugin.h/0 | {
"file_path": "codelabs/github-client/window_to_front/windows/window_to_front_plugin.h",
"repo_id": "codelabs",
"token_count": 513
} | 35 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/google-maps-in-flutter/step_4/android/gradle.properties/0 | {
"file_path": "codelabs/google-maps-in-flutter/step_4/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 36 |
#include "Generated.xcconfig"
| codelabs/haiku_generator/step0/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step0/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 37 |
#include "Generated.xcconfig"
| codelabs/haiku_generator/step2/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step2/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 38 |
import WidgetKit
import SwiftUI
struct Provider: TimelineProvider {
func placeholder(in context: Context) -> NewsArticleEntry {
NewsArticleEntry(date: Date(), title: "Placholder Title", description: "Placholder description", filename: "No screenshot available", displaySize: context.displaySize)
}
func getSnapshot(in context: Context, completion: @escaping (NewsArticleEntry) -> ()) {
let entry: NewsArticleEntry
if context.isPreview{
entry = placeholder(in: context)
}
else{
let userDefaults = UserDefaults(suiteName: "<YOUR APP GROUP>")
let title = userDefaults?.string(forKey: "headline_title") ?? "No Title Set"
let description = userDefaults?.string(forKey: "headline_description") ?? "No Description Set"
// New: get fileName from key/value store
let filename = userDefaults?.string(forKey: "filename") ?? "No screenshot available"
print(filename)
entry = NewsArticleEntry(date: Date(), title: title, description: description, filename: filename, displaySize: context.displaySize)
}
completion(entry)
}
func getTimeline(in context: Context, completion: @escaping (Timeline<Entry>) -> ()) {
getSnapshot(in: context) { (entry) in
let timeline = Timeline(entries: [entry], policy: .atEnd)
completion(timeline)
}
}
}
struct NewsArticleEntry: TimelineEntry {
let date: Date
let title: String
let description:String
// New: add the filename and displaySize.
let filename: String
let displaySize: CGSize
}
struct NewsWidgetsEntryView : View {
var entry: Provider.Entry
init(entry: Provider.Entry){
self.entry = entry
CTFontManagerRegisterFontsForURL(bundle.appending(path: "/fonts/Chewy-Regular.ttf") as CFURL, CTFontManagerScope.process, nil)
}
var bundle: URL {
let bundle = Bundle.main
if bundle.bundleURL.pathExtension == "appex" {
// Peel off two directory levels - MY_APP.app/PlugIns/MY_APP_EXTENSION.appex
var url = bundle.bundleURL.deletingLastPathComponent().deletingLastPathComponent()
url.append(component: "Frameworks/App.framework/flutter_assets")
return url
}
return bundle.bundleURL
}
// New: create the ChartImage view
var ChartImage: some View {
if let uiImage = UIImage(contentsOfFile: entry.filename) {
let image = Image(uiImage: uiImage)
.resizable()
.frame(width: entry.displaySize.height*0.5, height: entry.displaySize.height*0.5, alignment: .center)
return AnyView(image)
}
print("The image file could not be loaded")
return AnyView(EmptyView())
}
var body: some View {
VStack {
Text(entry.title).font(Font.custom("Chewy", size: 13))
Text(entry.description).font(.system(size: 12)).padding(10)
// New: add the ChartImage to the NewsWidgetEntryView
ChartImage
}
}
}
struct NewsWidgets: Widget {
let kind: String = "NewsWidgets"
var body: some WidgetConfiguration {
StaticConfiguration(kind: kind, provider: Provider()) { entry in
NewsWidgetsEntryView(entry: entry)
}
.configurationDisplayName("My Widget")
.description("This is an example widget.")
}
}
| codelabs/homescreen_codelab/step_06/ios/NewsWidgets/NewsWidgets.swift/0 | {
"file_path": "codelabs/homescreen_codelab/step_06/ios/NewsWidgets/NewsWidgets.swift",
"repo_id": "codelabs",
"token_count": 1378
} | 39 |
import 'package:firebase_backend_dart/google_play_purchase_handler.dart';
import 'package:firebase_backend_dart/products.dart';
import 'package:test/test.dart';
import '../bin/server.dart';
void main() {
test('extractOrderId with subscription suffix', () {
final orderId = extractOrderId('googleplay_GPA.3391-7354-8735-85865..0');
expect(orderId, 'googleplay_GPA.3391-7354-8735-85865');
});
test('extractOrderId without subscription suffix', () {
final orderId = extractOrderId('googleplay_GPA.3391-7354-8735-85865');
expect(orderId, 'googleplay_GPA.3391-7354-8735-85865');
});
test('Parse Purchase data should fail', () {
expect(() => getPurchaseData('{}'), throwsFormatException);
});
test('Parse Purchase data should succeed', () {
final (
:userId,
:source,
productData: ProductData(:productId, :type),
:token,
) = getPurchaseData({
'userId': 'USER_ID',
'source': 'google_play',
'productId': 'dash_consumable_2k',
'verificationData': 'TOKEN',
});
expect(userId, 'USER_ID');
expect(source, 'google_play');
expect(productId, 'dash_consumable_2k');
expect(type, ProductType.nonSubscription);
expect(token, 'TOKEN');
});
}
| codelabs/in_app_purchases/complete/dart-backend/test/firebase_backend_dart_test.dart/0 | {
"file_path": "codelabs/in_app_purchases/complete/dart-backend/test/firebase_backend_dart_test.dart",
"repo_id": "codelabs",
"token_count": 489
} | 40 |
#include "Generated.xcconfig"
| codelabs/namer/step_03/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_03/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 41 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_03/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_03/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 42 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_04_a_widget/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_04_a_widget/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 43 |
#include "Generated.xcconfig"
| codelabs/namer/step_05_c_card_padding/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_c_card_padding/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 44 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_05_c_card_padding/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_c_card_padding/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 45 |
#import "GeneratedPluginRegistrant.h"
| codelabs/namer/step_05_d_theme/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/namer/step_05_d_theme/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 46 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_05_d_theme/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_d_theme/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 47 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/namer/step_06_c_add_like_button/android/gradle.properties/0 | {
"file_path": "codelabs/namer/step_06_c_add_like_button/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 48 |
#include "Generated.xcconfig"
| codelabs/namer/step_07_b_convert_to_stateful/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_b_convert_to_stateful/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 49 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_07_b_convert_to_stateful/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_b_convert_to_stateful/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 50 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_07_c_add_selectedindex/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_c_add_selectedindex/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 51 |
// Copyright 2023 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import '../assets.dart';
class TitleScreen extends StatelessWidget {
const TitleScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.black,
body: Center(
child: Stack(
children: [
/// Bg-Base
Image.asset(AssetPaths.titleBgBase),
/// Bg-Receive
Image.asset(AssetPaths.titleBgReceive),
/// Mg-Base
Image.asset(AssetPaths.titleMgBase),
/// Mg-Receive
Image.asset(AssetPaths.titleMgReceive),
/// Mg-Emit
Image.asset(AssetPaths.titleMgEmit),
/// Fg-Rocks
Image.asset(AssetPaths.titleFgBase),
/// Fg-Receive
Image.asset(AssetPaths.titleFgReceive),
/// Fg-Emit
Image.asset(AssetPaths.titleFgEmit),
],
),
),
);
}
}
class _LitImage extends StatelessWidget {
const _LitImage({
required this.color,
required this.imgSrc,
required this.lightAmt,
});
final Color color;
final String imgSrc;
final double lightAmt;
@override
Widget build(BuildContext context) {
final hsl = HSLColor.fromColor(color);
return Image.asset(
imgSrc,
color: hsl.withLightness(hsl.lightness * lightAmt).toColor(),
colorBlendMode: BlendMode.modulate,
);
}
}
| codelabs/next-gen-ui/step_02_b/lib/title_screen/title_screen.dart/0 | {
"file_path": "codelabs/next-gen-ui/step_02_b/lib/title_screen/title_screen.dart",
"repo_id": "codelabs",
"token_count": 735
} | 52 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_02_b/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_02_b/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 53 |
#import "GeneratedPluginRegistrant.h"
| codelabs/next-gen-ui/step_02_c/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/next-gen-ui/step_02_c/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 54 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_04_c/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_04_c/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 55 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/testing_codelab/step_05/android/gradle.properties/0 | {
"file_path": "codelabs/testing_codelab/step_05/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 56 |
include: ../../analysis_options.yaml
| codelabs/testing_codelab/step_08/analysis_options.yaml/0 | {
"file_path": "codelabs/testing_codelab/step_08/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 57 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/testing_codelab/step_08/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/testing_codelab/step_08/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 58 |
include: ../../../analysis_options.yaml
analyzer:
linter:
rules:
- use_super_parameters
| codelabs/tfagents-flutter/finished/frontend/analysis_options.yaml/0 | {
"file_path": "codelabs/tfagents-flutter/finished/frontend/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 38
} | 59 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/tfagents-flutter/step2/frontend/android/gradle.properties/0 | {
"file_path": "codelabs/tfagents-flutter/step2/frontend/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 60 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfrs-flutter/step0/frontend/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step0/frontend/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 61 |
#include "Generated.xcconfig"
| codelabs/tfrs-flutter/step2/frontend/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step2/frontend/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 62 |
#import "GeneratedPluginRegistrant.h"
| codelabs/tfrs-flutter/step4/frontend/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/tfrs-flutter/step4/frontend/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 63 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfrs-flutter/step4/frontend/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step4/frontend/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 64 |
import 'dart:async';
import 'dart:convert';
import 'dart:io' show Platform;
import 'package:fixnum/fixnum.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart' show rootBundle;
import 'package:grpc/grpc.dart';
import 'package:http/http.dart' as http;
import 'proto/generated/tensorflow/core/framework/tensor.pb.dart';
import 'proto/generated/tensorflow/core/framework/tensor_shape.pb.dart';
import 'proto/generated/tensorflow/core/framework/types.pbenum.dart';
import 'proto/generated/tensorflow_serving/apis/model.pb.dart';
import 'proto/generated/tensorflow_serving/apis/predict.pb.dart';
import 'proto/generated/tensorflow_serving/apis/prediction_service.pbgrpc.dart';
enum ConnectionModeType { grpc, rest }
const grpcPort = 8500;
const restPort = 8501;
const modelName = 'spam-detection';
const signatureName = 'serving_default';
const classificationThreshold = 0.8;
const vocabFile = 'assets/vocab.txt';
const maxSentenceLength = 20;
const String initialPrompt =
'Type some text and tap the button. The spam detection model will determine if the text is spam or not.';
void main() => runApp(const TFServingDemo());
class TFServingDemo extends StatefulWidget {
const TFServingDemo({super.key});
@override
State<TFServingDemo> createState() => _TFServingDemoState();
}
class _TFServingDemoState extends State<TFServingDemo> {
late Future<String> _futurePrediction;
final Map<String, int> _vocabMap = {};
final TextEditingController _inputSentenceController =
TextEditingController();
late List<int> _tokenIndices;
bool? usegRPC = true;
late String _server;
ConnectionModeType? _connectionMode = ConnectionModeType.grpc;
late PredictionServiceClient _stub;
@override
void initState() {
super.initState();
_futurePrediction = Future<String>.value(initialPrompt);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'TF Serving Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: Scaffold(
appBar: AppBar(
title: const Text('TF Serving Flutter Demo'),
),
body: Center(
child: Container(
padding: const EdgeInsets.fromLTRB(20, 30, 20, 20),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
TextField(
controller: _inputSentenceController,
decoration: const InputDecoration(
border: UnderlineInputBorder(),
hintText: 'Enter a sentence here'),
),
Column(
children: <Widget>[
ListTile(
title: const Text('gRPC'),
leading: Radio<ConnectionModeType>(
value: ConnectionModeType.grpc,
groupValue: _connectionMode,
onChanged: (value) {
setState(() {
_connectionMode = value;
});
},
),
),
ListTile(
title: const Text('REST'),
leading: Radio<ConnectionModeType>(
value: ConnectionModeType.rest,
groupValue: _connectionMode,
onChanged: (value) {
setState(() {
_connectionMode = value;
});
},
),
),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
FilledButton(
style: FilledButton.styleFrom(
textStyle: const TextStyle(fontSize: 18),
),
onPressed: () {
setState(() {
_futurePrediction = predict();
});
},
child: const Text('Classify')),
FilledButton(
style: FilledButton.styleFrom(
textStyle: const TextStyle(fontSize: 18),
),
onPressed: () {
setState(() {
_futurePrediction =
Future<String>.value(initialPrompt);
_inputSentenceController.clear();
});
},
child: const Text('Reset'))
]),
FutureBuilder<String>(
future: _futurePrediction,
builder: (context, snapshot) {
if (snapshot.hasData) {
return Text(snapshot.data!);
} else if (snapshot.hasError) {
return Text('${snapshot.error}');
}
// By default, show a loading spinner.
return const CircularProgressIndicator();
},
),
]),
),
),
),
);
}
Future<String> predict() async {
if (Platform.isAndroid) {
// For Android
_server = '10.0.2.2';
} else {
// For iOS emulator, desktop and web platforms
_server = '127.0.0.1';
}
if (_vocabMap.isEmpty) {
final vocabFileString = await rootBundle.loadString(vocabFile);
final lines = vocabFileString.split('\n');
for (final l in lines) {
if (l != '') {
var wordAndIndex = l.split(' ');
(_vocabMap)[wordAndIndex[0]] = int.parse(wordAndIndex[1]);
}
}
}
// Tokenize the input sentence.
final inputWords = _inputSentenceController.text
.toLowerCase()
.replaceAll(RegExp('[^a-z ]'), '')
.split(' ');
// Initialize with padding token
_tokenIndices = List.filled(maxSentenceLength, 0);
var i = 0;
for (final w in inputWords) {
if ((_vocabMap).containsKey(w)) {
_tokenIndices[i] = (_vocabMap)[w]!;
i++;
}
// Truncate the string if longer than maxSentenceLength.
if (i >= maxSentenceLength - 1) {
break;
}
}
if (_connectionMode == ConnectionModeType.rest) {
final response = await http.post(
Uri.parse('http://$_server:$restPort/v1/models/$modelName:predict'),
body: jsonEncode(<String, List<List<int>>>{
'instances': [_tokenIndices],
}),
);
if (response.statusCode == 200) {
Map<String, dynamic> result =
jsonDecode(response.body) as Map<String, dynamic>;
if ((result['predictions']![0][1] as double) >=
classificationThreshold) {
return 'This sentence is spam. Spam score is ${result['predictions']![0][1]}';
}
return 'This sentence is not spam. Spam score is ${result['predictions']![0][1]}';
} else {
throw Exception('Error response');
}
} else {
final channel = ClientChannel(_server,
port: grpcPort,
options:
const ChannelOptions(credentials: ChannelCredentials.insecure()));
_stub = PredictionServiceClient(channel,
options: CallOptions(timeout: const Duration(seconds: 10)));
ModelSpec modelSpec = ModelSpec(
name: 'spam-detection',
signatureName: 'serving_default',
);
TensorShapeProto_Dim batchDim = TensorShapeProto_Dim(size: Int64(1));
TensorShapeProto_Dim inputDim =
TensorShapeProto_Dim(size: Int64(maxSentenceLength));
TensorShapeProto inputTensorShape =
TensorShapeProto(dim: [batchDim, inputDim]);
TensorProto inputTensor = TensorProto(
dtype: DataType.DT_INT32,
tensorShape: inputTensorShape,
intVal: _tokenIndices);
// If you train your own model, make sure to update the input and output
// tensor names.
const inputTensorName = 'input_3';
const outputTensorName = 'dense_5';
PredictRequest request = PredictRequest(
modelSpec: modelSpec, inputs: {inputTensorName: inputTensor});
PredictResponse response = await _stub.predict(request);
if (response.outputs.containsKey(outputTensorName)) {
if (response.outputs[outputTensorName]!.floatVal[1] >
classificationThreshold) {
return 'This sentence is spam. Spam score is ${response.outputs[outputTensorName]!.floatVal[1]}';
} else {
return 'This sentence is not spam. Spam score is ${response.outputs[outputTensorName]!.floatVal[1]}';
}
} else {
throw Exception('Error response');
}
}
}
}
| codelabs/tfserving-flutter/codelab2/finished/lib/main.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/finished/lib/main.dart",
"repo_id": "codelabs",
"token_count": 4673
} | 65 |
#!/bin/bash
# This script generates the client stub for TF Serving
touch generated
rm -rf generated
mkdir generated
protoc -I./ ./tensorflow_serving/apis/input.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow_serving/apis/regression.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow_serving/apis/predict.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow_serving/apis/prediction_service.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow_serving/apis/get_model_metadata.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow_serving/apis/inference.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow_serving/apis/model.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow_serving/apis/classification.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/graph.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/tensor_shape.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/function.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/variable.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/types.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/full_type.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/versions.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/attr_value.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/op_def.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/node_def.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/tensor.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/framework/resource_handle.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/example/feature.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/example/example.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/protobuf/struct.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/protobuf/meta_graph.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/protobuf/saver.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/protobuf/trackable_object_graph.proto --dart_out=grpc:./generated
protoc -I./ ./tensorflow/core/protobuf/saved_object_graph.proto --dart_out=grpc:./generated
protoc -I./ ./google/protobuf/any.proto --dart_out=grpc:./generated
protoc -I./ ./google/protobuf/wrappers.proto --dart_out=grpc:./generated
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generate_grpc_stub_dart.sh/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generate_grpc_stub_dart.sh",
"repo_id": "codelabs",
"token_count": 956
} | 66 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/full_type.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:fixnum/fixnum.dart' as $fixnum;
import 'package:protobuf/protobuf.dart' as $pb;
import 'full_type.pbenum.dart';
export 'full_type.pbenum.dart';
enum FullTypeDef_Attr { s, i, notSet }
class FullTypeDef extends $pb.GeneratedMessage {
static const $core.Map<$core.int, FullTypeDef_Attr> _FullTypeDef_AttrByTag = {
3: FullTypeDef_Attr.s,
4: FullTypeDef_Attr.i,
0: FullTypeDef_Attr.notSet
};
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'FullTypeDef',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..oo(0, [3, 4])
..e<FullTypeId>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'typeId',
$pb.PbFieldType.OE,
defaultOrMaker: FullTypeId.TFT_UNSET,
valueOf: FullTypeId.valueOf,
enumValues: FullTypeId.values)
..pc<FullTypeDef>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'args',
$pb.PbFieldType.PM,
subBuilder: FullTypeDef.create)
..aOS(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 's')
..aInt64(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'i')
..hasRequiredFields = false;
FullTypeDef._() : super();
factory FullTypeDef({
FullTypeId? typeId,
$core.Iterable<FullTypeDef>? args,
$core.String? s,
$fixnum.Int64? i,
}) {
final _result = create();
if (typeId != null) {
_result.typeId = typeId;
}
if (args != null) {
_result.args.addAll(args);
}
if (s != null) {
_result.s = s;
}
if (i != null) {
_result.i = i;
}
return _result;
}
factory FullTypeDef.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory FullTypeDef.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
FullTypeDef clone() => FullTypeDef()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
FullTypeDef copyWith(void Function(FullTypeDef) updates) =>
super.copyWith((message) => updates(message as FullTypeDef))
as FullTypeDef; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static FullTypeDef create() => FullTypeDef._();
FullTypeDef createEmptyInstance() => create();
static $pb.PbList<FullTypeDef> createRepeated() => $pb.PbList<FullTypeDef>();
@$core.pragma('dart2js:noInline')
static FullTypeDef getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<FullTypeDef>(create);
static FullTypeDef? _defaultInstance;
FullTypeDef_Attr whichAttr() => _FullTypeDef_AttrByTag[$_whichOneof(0)]!;
void clearAttr() => clearField($_whichOneof(0));
@$pb.TagNumber(1)
FullTypeId get typeId => $_getN(0);
@$pb.TagNumber(1)
set typeId(FullTypeId v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasTypeId() => $_has(0);
@$pb.TagNumber(1)
void clearTypeId() => clearField(1);
@$pb.TagNumber(2)
$core.List<FullTypeDef> get args => $_getList(1);
@$pb.TagNumber(3)
$core.String get s => $_getSZ(2);
@$pb.TagNumber(3)
set s($core.String v) {
$_setString(2, v);
}
@$pb.TagNumber(3)
$core.bool hasS() => $_has(2);
@$pb.TagNumber(3)
void clearS() => clearField(3);
@$pb.TagNumber(4)
$fixnum.Int64 get i => $_getI64(3);
@$pb.TagNumber(4)
set i($fixnum.Int64 v) {
$_setInt64(3, v);
}
@$pb.TagNumber(4)
$core.bool hasI() => $_has(3);
@$pb.TagNumber(4)
void clearI() => clearField(4);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/full_type.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/full_type.pb.dart",
"repo_id": "codelabs",
"token_count": 2062
} | 67 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/resource_handle.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/resource_handle.pbenum.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/resource_handle.pbenum.dart",
"repo_id": "codelabs",
"token_count": 117
} | 68 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/versions.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields,deprecated_member_use_from_same_package
import 'dart:core' as $core;
import 'dart:convert' as $convert;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use versionDefDescriptor instead')
const VersionDef$json = const {
'1': 'VersionDef',
'2': const [
const {'1': 'producer', '3': 1, '4': 1, '5': 5, '10': 'producer'},
const {'1': 'min_consumer', '3': 2, '4': 1, '5': 5, '10': 'minConsumer'},
const {'1': 'bad_consumers', '3': 3, '4': 3, '5': 5, '10': 'badConsumers'},
],
};
/// Descriptor for `VersionDef`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List versionDefDescriptor = $convert.base64Decode(
'CgpWZXJzaW9uRGVmEhoKCHByb2R1Y2VyGAEgASgFUghwcm9kdWNlchIhCgxtaW5fY29uc3VtZXIYAiABKAVSC21pbkNvbnN1bWVyEiMKDWJhZF9jb25zdW1lcnMYAyADKAVSDGJhZENvbnN1bWVycw==');
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/versions.pbjson.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/versions.pbjson.dart",
"repo_id": "codelabs",
"token_count": 508
} | 69 |
///
// Generated code. Do not modify.
// source: tensorflow_serving/apis/classification.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'model.pb.dart' as $0;
import 'input.pb.dart' as $1;
class Class extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'Class',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'label')
..a<$core.double>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'score',
$pb.PbFieldType.OF)
..hasRequiredFields = false;
Class._() : super();
factory Class({
$core.String? label,
$core.double? score,
}) {
final _result = create();
if (label != null) {
_result.label = label;
}
if (score != null) {
_result.score = score;
}
return _result;
}
factory Class.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory Class.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
Class clone() => Class()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Class copyWith(void Function(Class) updates) =>
super.copyWith((message) => updates(message as Class))
as Class; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Class create() => Class._();
Class createEmptyInstance() => create();
static $pb.PbList<Class> createRepeated() => $pb.PbList<Class>();
@$core.pragma('dart2js:noInline')
static Class getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Class>(create);
static Class? _defaultInstance;
@$pb.TagNumber(1)
$core.String get label => $_getSZ(0);
@$pb.TagNumber(1)
set label($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasLabel() => $_has(0);
@$pb.TagNumber(1)
void clearLabel() => clearField(1);
@$pb.TagNumber(2)
$core.double get score => $_getN(1);
@$pb.TagNumber(2)
set score($core.double v) {
$_setFloat(1, v);
}
@$pb.TagNumber(2)
$core.bool hasScore() => $_has(1);
@$pb.TagNumber(2)
void clearScore() => clearField(2);
}
class Classifications extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'Classifications',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..pc<Class>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'classes',
$pb.PbFieldType.PM,
subBuilder: Class.create)
..hasRequiredFields = false;
Classifications._() : super();
factory Classifications({
$core.Iterable<Class>? classes,
}) {
final _result = create();
if (classes != null) {
_result.classes.addAll(classes);
}
return _result;
}
factory Classifications.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory Classifications.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
Classifications clone() => Classifications()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Classifications copyWith(void Function(Classifications) updates) =>
super.copyWith((message) => updates(message as Classifications))
as Classifications; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Classifications create() => Classifications._();
Classifications createEmptyInstance() => create();
static $pb.PbList<Classifications> createRepeated() =>
$pb.PbList<Classifications>();
@$core.pragma('dart2js:noInline')
static Classifications getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<Classifications>(create);
static Classifications? _defaultInstance;
@$pb.TagNumber(1)
$core.List<Class> get classes => $_getList(0);
}
class ClassificationResult extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'ClassificationResult',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..pc<Classifications>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'classifications',
$pb.PbFieldType.PM,
subBuilder: Classifications.create)
..hasRequiredFields = false;
ClassificationResult._() : super();
factory ClassificationResult({
$core.Iterable<Classifications>? classifications,
}) {
final _result = create();
if (classifications != null) {
_result.classifications.addAll(classifications);
}
return _result;
}
factory ClassificationResult.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory ClassificationResult.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClassificationResult clone() =>
ClassificationResult()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClassificationResult copyWith(void Function(ClassificationResult) updates) =>
super.copyWith((message) => updates(message as ClassificationResult))
as ClassificationResult; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClassificationResult create() => ClassificationResult._();
ClassificationResult createEmptyInstance() => create();
static $pb.PbList<ClassificationResult> createRepeated() =>
$pb.PbList<ClassificationResult>();
@$core.pragma('dart2js:noInline')
static ClassificationResult getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<ClassificationResult>(create);
static ClassificationResult? _defaultInstance;
@$pb.TagNumber(1)
$core.List<Classifications> get classifications => $_getList(0);
}
class ClassificationRequest extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'ClassificationRequest',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..aOM<$0.ModelSpec>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'modelSpec',
subBuilder: $0.ModelSpec.create)
..aOM<$1.Input>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'input',
subBuilder: $1.Input.create)
..hasRequiredFields = false;
ClassificationRequest._() : super();
factory ClassificationRequest({
$0.ModelSpec? modelSpec,
$1.Input? input,
}) {
final _result = create();
if (modelSpec != null) {
_result.modelSpec = modelSpec;
}
if (input != null) {
_result.input = input;
}
return _result;
}
factory ClassificationRequest.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory ClassificationRequest.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClassificationRequest clone() =>
ClassificationRequest()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClassificationRequest copyWith(
void Function(ClassificationRequest) updates) =>
super.copyWith((message) => updates(message as ClassificationRequest))
as ClassificationRequest; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClassificationRequest create() => ClassificationRequest._();
ClassificationRequest createEmptyInstance() => create();
static $pb.PbList<ClassificationRequest> createRepeated() =>
$pb.PbList<ClassificationRequest>();
@$core.pragma('dart2js:noInline')
static ClassificationRequest getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<ClassificationRequest>(create);
static ClassificationRequest? _defaultInstance;
@$pb.TagNumber(1)
$0.ModelSpec get modelSpec => $_getN(0);
@$pb.TagNumber(1)
set modelSpec($0.ModelSpec v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasModelSpec() => $_has(0);
@$pb.TagNumber(1)
void clearModelSpec() => clearField(1);
@$pb.TagNumber(1)
$0.ModelSpec ensureModelSpec() => $_ensure(0);
@$pb.TagNumber(2)
$1.Input get input => $_getN(1);
@$pb.TagNumber(2)
set input($1.Input v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasInput() => $_has(1);
@$pb.TagNumber(2)
void clearInput() => clearField(2);
@$pb.TagNumber(2)
$1.Input ensureInput() => $_ensure(1);
}
class ClassificationResponse extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'ClassificationResponse',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..aOM<ClassificationResult>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'result',
subBuilder: ClassificationResult.create)
..aOM<$0.ModelSpec>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'modelSpec',
subBuilder: $0.ModelSpec.create)
..hasRequiredFields = false;
ClassificationResponse._() : super();
factory ClassificationResponse({
ClassificationResult? result,
$0.ModelSpec? modelSpec,
}) {
final _result = create();
if (result != null) {
_result.result = result;
}
if (modelSpec != null) {
_result.modelSpec = modelSpec;
}
return _result;
}
factory ClassificationResponse.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory ClassificationResponse.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClassificationResponse clone() =>
ClassificationResponse()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClassificationResponse copyWith(
void Function(ClassificationResponse) updates) =>
super.copyWith((message) => updates(message as ClassificationResponse))
as ClassificationResponse; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClassificationResponse create() => ClassificationResponse._();
ClassificationResponse createEmptyInstance() => create();
static $pb.PbList<ClassificationResponse> createRepeated() =>
$pb.PbList<ClassificationResponse>();
@$core.pragma('dart2js:noInline')
static ClassificationResponse getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<ClassificationResponse>(create);
static ClassificationResponse? _defaultInstance;
@$pb.TagNumber(1)
ClassificationResult get result => $_getN(0);
@$pb.TagNumber(1)
set result(ClassificationResult v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasResult() => $_has(0);
@$pb.TagNumber(1)
void clearResult() => clearField(1);
@$pb.TagNumber(1)
ClassificationResult ensureResult() => $_ensure(0);
@$pb.TagNumber(2)
$0.ModelSpec get modelSpec => $_getN(1);
@$pb.TagNumber(2)
set modelSpec($0.ModelSpec v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasModelSpec() => $_has(1);
@$pb.TagNumber(2)
void clearModelSpec() => clearField(2);
@$pb.TagNumber(2)
$0.ModelSpec ensureModelSpec() => $_ensure(1);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/classification.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/classification.pb.dart",
"repo_id": "codelabs",
"token_count": 5779
} | 70 |
///
// Generated code. Do not modify.
// source: tensorflow_serving/apis/predict.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/predict.pbenum.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/predict.pbenum.dart",
"repo_id": "codelabs",
"token_count": 117
} | 71 |
syntax = "proto3";
package tensorflow;
import "tensorflow/core/framework/function.proto";
import "tensorflow/core/framework/node_def.proto";
import "tensorflow/core/framework/versions.proto";
option cc_enable_arenas = true;
option java_outer_classname = "GraphProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.framework";
option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/framework/graph_go_proto";
// Represents the graph of operations
message GraphDef {
repeated NodeDef node = 1;
// Compatibility versions of the graph. See core/public/version.h for version
// history. The GraphDef version is distinct from the TensorFlow version, and
// each release of TensorFlow will support a range of GraphDef versions.
VersionDef versions = 4;
// Deprecated single version field; use versions above instead. Since all
// GraphDef changes before "versions" was introduced were forward
// compatible, this field is entirely ignored.
int32 version = 3 [deprecated = true];
// "library" provides user-defined functions.
//
// Naming:
// * library.function.name are in a flat namespace.
// NOTE: We may need to change it to be hierarchical to support
// different orgs. E.g.,
// { "/google/nn", { ... }},
// { "/google/vision", { ... }}
// { "/org_foo/module_bar", { ... }}
// map<string, FunctionDefLib> named_lib;
// * If node[i].op is the name of one function in "library",
// node[i] is deemed as a function call. Otherwise, node[i].op
// must be a primitive operation supported by the runtime.
//
//
// Function call semantics:
//
// * The callee may start execution as soon as some of its inputs
// are ready. The caller may want to use Tuple() mechanism to
// ensure all inputs are ready in the same time.
//
// * The consumer of return values may start executing as soon as
// the return values the consumer depends on are ready. The
// consumer may want to use Tuple() mechanism to ensure the
// consumer does not start until all return values of the callee
// function are ready.
FunctionDefLibrary library = 2;
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/graph.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/graph.proto",
"repo_id": "codelabs",
"token_count": 679
} | 72 |
// This file contains messages for various machine learning inferences
// such as regression and classification.
//
// In many applications more than one type of inference is desired for a single
// input. For example, given meteorologic data an application may want to
// perform a classification to determine if we should expect rain, snow or sun
// and also perform a regression to predict the temperature.
// Sharing the single input data between two inference tasks can be accomplished
// using MultiInferenceRequest and MultiInferenceResponse.
syntax = "proto3";
option cc_enable_arenas = true;
import "tensorflow_serving/apis/classification.proto";
import "tensorflow_serving/apis/input.proto";
import "tensorflow_serving/apis/model.proto";
import "tensorflow_serving/apis/regression.proto";
package tensorflow.serving;
// Inference request such as classification, regression, etc...
message InferenceTask {
// Model Specification. If version is not specified, will use the latest
// (numerical) version.
// All ModelSpecs in a MultiInferenceRequest must access the same model name.
ModelSpec model_spec = 1;
// Signature's method_name. Should be one of the method names defined in
// third_party/tensorflow/python/saved_model/signature_constants.py.
// e.g. "tensorflow/serving/classify".
string method_name = 2;
}
// Inference result, matches the type of request or is an error.
message InferenceResult {
ModelSpec model_spec = 1;
oneof result {
ClassificationResult classification_result = 2;
RegressionResult regression_result = 3;
}
}
// Inference request containing one or more requests.
message MultiInferenceRequest {
// Inference tasks.
repeated InferenceTask tasks = 1;
// Input data.
Input input = 2;
}
// Inference request containing one or more responses.
message MultiInferenceResponse {
// List of results; one for each InferenceTask in the request, returned in the
// same order as the request.
repeated InferenceResult results = 1;
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow_serving/apis/inference.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow_serving/apis/inference.proto",
"repo_id": "codelabs",
"token_count": 541
} | 73 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfserving-flutter/codelab2/starter/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 74 |
// Copyright 2023 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:json_annotation/json_annotation.dart';
part 'client_secret.g.dart';
@JsonSerializable()
class ClientSecret {
final ClientSecretInstalled installed;
ClientSecret(this.installed);
factory ClientSecret.fromJson(Map<String, dynamic> json) =>
_$ClientSecretFromJson(json);
Map<String, dynamic> toJson() => _$ClientSecretToJson(this);
}
@JsonSerializable()
class ClientSecretInstalled {
@JsonKey(name: 'client_id')
final String clientId;
@JsonKey(name: 'project_id')
final String projectId;
@JsonKey(name: 'auth_uri')
final String authUri;
@JsonKey(name: 'token_uri')
final String tokenUri;
@JsonKey(name: 'auth_provider_x509_cert_url')
final String authProviderX509CertUrl;
@JsonKey(name: 'client_secret')
final String clientSecret;
@JsonKey(name: 'redirect_uris')
final List<String> redirectUris;
ClientSecretInstalled(
this.clientId,
this.projectId,
this.authUri,
this.tokenUri,
this.authProviderX509CertUrl,
this.clientSecret,
this.redirectUris);
factory ClientSecretInstalled.fromJson(Map<String, dynamic> json) =>
_$ClientSecretInstalledFromJson(json);
Map<String, dynamic> toJson() => _$ClientSecretInstalledToJson(this);
}
| codelabs/tooling/claat_export_images/lib/client_secret.dart/0 | {
"file_path": "codelabs/tooling/claat_export_images/lib/client_secret.dart",
"repo_id": "codelabs",
"token_count": 505
} | 75 |
# Codelab Rebuild tooling
This tool enables the automated rebuilding of the codelabs in this
repository via a `yaml` configuration file.
## Installing the `codelab_rebuild` tool
To make it easy to use this tool, you can install the tool in your
global pub executable cache by running the following command from this
project directory.
```console
$ dart pub global activate --source path .
```
## Usage
Running the tool requires a `codelab_rebuild.yaml` file. There are examples
of these configuration files in the codelabs in this repository. To run the
tool on the `adaptive_app` codelab, run the following commands:
```console
$ cd ../.. # go back to the root of the flutter/codelabs checkout
$ codelab_rebuild adaptive_app/codelab_rebuild.yaml
```
## Building a `codelab_rebuild.yaml` configuration
At the top level, the `codelab_rebuild.yaml` configuration file contains
two keys, `name` for the name of the script, and `steps` which is the collection
of steps required to rebuild the codelab.
Individual steps can have a variety of attributes, which control what the step
does. All steps must have a `name` which is output during the run. This is
primarily for debugging a script when things break.
Steps may have a `steps` for a list of sub steps, in which case it can't have
any other attributes. Steps within steps can go as deep as required.
For removing a file there is `rm`, removing a directory `rmdir`, creating a
directory there is `mkdir`, each of which takes as the value the path to the
file or directory to create or remove.
For modifying the content of files there are two approaches. For replacing the
contents of a file, there is `replace-contents` key which takes the new contents of
the file as the value. Note, if the file doesn't exist, `replace-contents` will \
create the file. To specify the file to be modified you must also set the
`path` key with the relative path to the file.
Alternatively there is the `patch` family of keys, which are fed to the `patch`
command to update the file nominated by the `path` key. After much trial and
error I have stabilised on using `patch-u` (unified diffs), generated with the
help of the `git diff` command.
For running `flutter` and `dart` commands there are appropriate keys. Use the
`path` key to nominate the working directory in which to run the `flutter` or
`dart` command.
There is a `platforms` key to restrict which platforms a step will be run on.
This is useful for specifying that specific `flutter` commands are only run
on platforms that support that form of executable. No point trying to build
an iOS Flutter app on MS Windows. | codelabs/tooling/codelab_rebuild/README.md/0 | {
"file_path": "codelabs/tooling/codelab_rebuild/README.md",
"repo_id": "codelabs",
"token_count": 710
} | 76 |
include: ../../analysis_options.yaml
| codelabs/webview_flutter/step_07/analysis_options.yaml/0 | {
"file_path": "codelabs/webview_flutter/step_07/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 77 |
package com.example.code_size_images
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}
| devtools/case_study/code_size/optimized/code_size_images/android/app/src/main/kotlin/com/example/code_size_images/MainActivity.kt/0 | {
"file_path": "devtools/case_study/code_size/optimized/code_size_images/android/app/src/main/kotlin/com/example/code_size_images/MainActivity.kt",
"repo_id": "devtools",
"token_count": 40
} | 78 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.