Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare patrol and patrol_cli to releases #2498

Merged
merged 4 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 3 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/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)
pdenert marked this conversation as resolved.
Show resolved Hide resolved

## 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'),
),
];
Loading