diff --git a/docs/documentation/compatibility-table.mdx b/docs/documentation/compatibility-table.mdx index dc3a4cc17..0b43ff1eb 100644 --- a/docs/documentation/compatibility-table.mdx +++ b/docs/documentation/compatibility-table.mdx @@ -13,7 +13,8 @@ This table shows the compatible versions between patrol_cli and patrol packages. | patrol_cli version | patrol version | Minimum Flutter version | |-------------------|----------------|------------------------| -| 4.3.0+ | 4.5.0+ | 3.32.0 | +| 4.4.0+ | 4.6.0+ | 3.32.0 | +| 4.3.0 - 4.3.1 | 4.5.0 | 3.32.0 | | 4.2.0 | 4.2.0 - 4.4.0 | 3.32.0 | | 4.0.2 - 4.1.0 | 4.1.0 - 4.1.1 | 3.32.0 | | 4.0.0 - 4.0.1 | 4.0.0 - 4.0.1 | 3.32.0 | diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index c344cc1d3..3c85801d6 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,5 +1,7 @@ ## 4.6.0 +- Bump `patrol_log` to `^0.9.0`. +- Bump `patrol_finders` to `^3.4.0`. - Add `allowPermission` method to `AndroidAutomator`. ## 4.5.0 diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index 8498bd4a5..dc38bee4c 100644 --- a/packages/patrol/pubspec.yaml +++ b/packages/patrol/pubspec.yaml @@ -2,7 +2,7 @@ name: patrol description: > A powerful, multiplatform E2E UI testing framework for Flutter apps that overcomes the limitations of integration_test by handling native interactions. -version: 4.5.0 +version: 4.6.0 homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol/tree/master/packages/patrol issue_tracker: https://github.com/leancodepl/patrol/issues @@ -26,8 +26,8 @@ dependencies: http: '^1.1.0' json_annotation: ^4.8.1 meta: ^1.10.0 - patrol_finders: ^3.1.0 - patrol_log: ^0.8.0 + patrol_finders: ^3.4.0 + patrol_log: ^0.9.0 shelf: ^1.4.1 test_api: '^0.7.0' web: ^1.0.0 diff --git a/packages/patrol_cli/CHANGELOG.md b/packages/patrol_cli/CHANGELOG.md index a2d8027bc..8cc49b182 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,5 +1,6 @@ -## Unreleased +## 4.4.0 +- Bump `patrol_log` to `^0.9.0`. - Add `--app-name` flag to override `app_name` from pubspec.yaml. (#2557) - Fix `patrol test --coverage` crashing with `PathNotFoundException` in Pub workspaces by resolving `.dart_tool/package_config.json` from the workspace root. (#2844) - Add `--coverage-workspace` flag to include every package declared under the workspace root's `workspace:` key in the coverage report. diff --git a/packages/patrol_cli/lib/src/base/constants.dart b/packages/patrol_cli/lib/src/base/constants.dart index 914b5af89..9bcb7bed0 100644 --- a/packages/patrol_cli/lib/src/base/constants.dart +++ b/packages/patrol_cli/lib/src/base/constants.dart @@ -1,3 +1,3 @@ /// Version of Patrol CLI. Must be kept in sync with pubspec.yaml. /// If you update this, make sure that compatibility-table.mdx is updated (if needed) -const version = '4.3.1'; +const version = '4.4.0'; diff --git a/packages/patrol_cli/lib/src/compatibility_checker/version_compatibility.dart b/packages/patrol_cli/lib/src/compatibility_checker/version_compatibility.dart index 25f29be02..99876f08c 100644 --- a/packages/patrol_cli/lib/src/compatibility_checker/version_compatibility.dart +++ b/packages/patrol_cli/lib/src/compatibility_checker/version_compatibility.dart @@ -89,8 +89,13 @@ class VersionCompatibility { final versionCompatibilityList = [ VersionCompatibility.fromRangeString( - patrolCliVersion: '4.3.0+', - patrolVersion: '4.5.0+', + patrolCliVersion: '4.4.0+', + patrolVersion: '4.6.0+', + minFlutterVersion: '3.32.0', + ), + VersionCompatibility.fromRangeString( + patrolCliVersion: '4.3.0 - 4.3.1', + patrolVersion: '4.5.0', minFlutterVersion: '3.32.0', ), VersionCompatibility.fromRangeString( diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index fc8588533..6e231af90 100644 --- a/packages/patrol_cli/pubspec.yaml +++ b/packages/patrol_cli/pubspec.yaml @@ -1,7 +1,7 @@ name: patrol_cli description: > Command-line tool for Patrol, a powerful Flutter-native UI testing framework. -version: 4.3.1 # Must be kept in sync with constants.dart +version: 4.4.0 # Must be kept in sync with constants.dart homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol/tree/master/packages/patrol_cli issue_tracker: https://github.com/leancodepl/patrol/issues?q=is%3Aopen+is%3Aissue+label%3A%22package%3A+patrol_cli%22 @@ -31,7 +31,7 @@ dependencies: meta: ^1.10.0 package_config: ^2.1.1 path: ^1.8.3 - patrol_log: ^0.8.0 + patrol_log: ^0.9.0 platform: ^3.1.3 process: ^5.0.1 pub_updater: ^0.5.0