Skip to content

Commit

Permalink
Merge pull request #2498 from leancodepl/prepare-patrol-to-release
Browse files Browse the repository at this point in the history
Prepare patrol and patrol_cli to releases
  • Loading branch information
pdenert authored Jan 17, 2025
2 parents a9dff47 + c296899 commit a2bc620
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
3 changes: 2 additions & 1 deletion docs/compatibility-table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ the table below to assess which version you should use.

| patrol_cli | patrol | Min Flutter Version |
| -------------- | -------------- | ------------------- |
| 3.4.1+ | 3.13.1+ | 3.24.0 |
| 3.5.0+ | 3.14.0+ | 3.24.0 |
| 3.4.1 | 3.13.1 - 3.13.2| 3.24.0 |
| 3.4.0 | 3.13.0 | 3.24.0 |
| 3.3.0 | 3.12.0 | 3.24.0 |
| 3.2.1 | 3.11.2 | 3.24.0 |
Expand Down
12 changes: 6 additions & 6 deletions packages/patrol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
## Unreleased
## 3.14.0

- Remove `exception` from `StepEntry`. When it was too long, it caused crash because of badly formed JSON.
- Remove `exception` from `StepEntry`. When it was too long, it caused crash because of badly formed JSON. (#2481)
- Bump `patrol_finders` and `patrol_log` versions.
- Bump compileSdk to 35.
- Bump gradle to 8.9.0.
- Make Patrol works with Java 21.
- Bump compileSdk to 35. (#2488)
- Bump Gradle to 8.9.0. (#2488)
- Make Patrol works with Java 21. (#2488)

## 3.13.2

- Bump `patrol_finders` and `patrol_log` - use version with patched enterText.
- Bump `patrol_finders` and `patrol_log` - use version with patched enterText. (#2468)

## 3.13.1

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: >
Powerful Flutter-native UI testing framework overcoming limitations of
existing Flutter testing tools. Ready for action!
version: 3.13.2
version: 3.14.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: ^2.6.0
patrol_log: ^0.2.2
patrol_finders: ^2.7.0
patrol_log: ^0.3.0
shelf: ^1.4.1
test_api: '^0.7.0'

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 = '3.4.1';
const version = '3.5.0';
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,10 @@ final _patrolVersionRange = [
),
VersionRange(
min: Version.parse('3.13.1'),
max: Version.parse('3.13.1'),
),
VersionRange(
min: Version.parse('3.14.0'),
),
];

Expand Down Expand Up @@ -273,5 +277,9 @@ final _patrolCliVersionRange = [
),
VersionRange(
min: Version.parse('3.4.1'),
max: Version.parse('3.4.1'),
),
VersionRange(
min: Version.parse('3.5.0'),
),
];

0 comments on commit a2bc620

Please sign in to comment.