diff --git a/CHANGELOG.md b/CHANGELOG.md index eaf5c304..d8f3b838 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.12.0 +- **Breaking** `Offstage` support. By default `Offstage` widgets are not found by `spot()`. Use `spotOffstage().spot()` to find them. `spotAllWidgets()` returns onstage and offstage widgets. Use `.overrideWidgetPresence(WidgetPresence.offstage)` to modify a `WidgetSelector` to search for `offstage`, `onstage` or `combined` #45 +- New: `act.enterText(spot(), 'Hello World!')` allows to enter text into a `EditableText` #51 +- Negating parents is not yet supported (`spot().withParent(spot().atMost(0))`). It now throws to prevent unexpected behavior. #50 +- `act.tap(spot())` now pumps automatically after the tap #52 + ## 0.11.0 - Add support for Flutter 3.20 diff --git a/pubspec.yaml b/pubspec.yaml index 9022e568..efa19187 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: spot description: Chainable powerful widget selector API, screenshots and assertions for awesome widget tests. -version: 0.11.0 +version: 0.12.0 repository: https://github.com/passsy/spot issue_tracker: https://github.com/passsy/spot/issues