From f49552468c92183e6f308414e292b914705c7ad1 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Wed, 8 Feb 2023 15:10:43 +0100 Subject: [PATCH] patrol: bump version to 0.10.10 (#903) --- packages/patrol/CHANGELOG.md | 5 +++++ packages/patrol/lib/src/binding.dart | 2 ++ packages/patrol/pubspec.yaml | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index a5bde4a47..71e59893b 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.10.10 + +- Fix crash `Instrumentation run failed due to Process crashed` on Android + (#902) + ## 0.10.9 - Improve error message when trying to use `NativeAutomator`, but it's not diff --git a/packages/patrol/lib/src/binding.dart b/packages/patrol/lib/src/binding.dart index b11e23bcd..3991b78d9 100644 --- a/packages/patrol/lib/src/binding.dart +++ b/packages/patrol/lib/src/binding.dart @@ -214,6 +214,8 @@ Thrown by PatrolBinding. textDirection: TextDirection.ltr, children: [ RepaintBoundary(child: rootWidget), + // Prevents crashes when Android activity is resumed + // See https://github.com/leancodepl/patrol/issues/901 ExcludeSemantics( child: Padding( padding: EdgeInsets.only( diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index 2748a8577..b82dc5d4c 100644 --- a/packages/patrol/pubspec.yaml +++ b/packages/patrol/pubspec.yaml @@ -2,7 +2,7 @@ name: patrol description: > Simple yet powerful Flutter-native UI testing framework eliminating limitations of flutter_test, integration_test, and flutter_driver. -version: 0.10.9 +version: 0.10.10 homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol issue_tracker: https://github.com/leancodepl/patrol/issues