Skip to content

Commit

Permalink
Revert "Fixed isWaiting with Iterables."
Browse files Browse the repository at this point in the history
This reverts commit 5cbeffb.
  • Loading branch information
marcglasberg committed Sep 5, 2024
1 parent 5cbeffb commit ade366a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
10 changes: 3 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,16 @@ the <a href="https://github.com/marcglasberg/SameAppDifferentTech/blob/main/Mobi
Async Redux App Example GitHub Repo</a> for a full-fledged example app showcasing the fundamentals
and best practices._

# 23.2.1
# 23.2.0-dev.1

* Fixed `isWaiting()` when an Iterable is used.

# 23.2.0
* You can provide a `CloudSync` object to the store constructor. It's similar to the `Persistor`,
but can be used to synchronize the state of the application with the server.

* You can now use the `UnlimitedRetryCheckInternet` to check if there is internet when you run some
action that needs it. If there is no internet, the action will abort silently and then retried
unlimited times, until there is internet. It will also retry if there is internet but the action
failed.

* You can provide a `CloudSync` object to the store constructor. It's similar to the `Persistor`,
but can be used to synchronize the state of the application with the server.

# 23.1.1

* New: Async Redux website at https://asyncredux.com
Expand Down
1 change: 1 addition & 0 deletions lib/src/store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,7 @@ class Store<St> {
});
}
}
return false;
}
// 4) If something different was passed, it's an error. We show the error after the
// async gap, so we don't interrupt the code. But we return false (not waiting).
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: async_redux
description: The modern version of Redux. State management that's simple to learn and easy to use; Powerful enough to handle complex applications with millions of users; Testable.
version: 23.2.1
version: 23.2.0-dev.1
# author: Marcelo Glasberg <[email protected]>
homepage: https://github.com/marcglasberg/async_redux
topics:
Expand Down

0 comments on commit ade366a

Please sign in to comment.