Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/documentation/compatibility-table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 2 additions & 0 deletions packages/patrol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/patrol/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion packages/patrol_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion packages/patrol_cli/lib/src/base/constants.dart
Original file line number Diff line number Diff line change
@@ -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';
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,13 @@ class VersionCompatibility {
final versionCompatibilityList =
<VersionCompatibility>[
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(
Expand Down
4 changes: 2 additions & 2 deletions packages/patrol_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading