Releases: MichaelMarner/dart-redux-remote-devtools
2.0.0
Replaces the abstract classes StateEncoder
, ActionEncoder
, and ActionDecoder
with function typedefs.
This is inline with the Dart styleguide, which advocates using function typedefs instead of single method abstract classes.
This will only affect you if you are using custom encoders/decoders. No changes if you are using remote devtools as-is.
Before:
class MyActionEncoder extends ActionEncoder {
String encode(dynamic action) {
// custom encoding logic here...
}
}
After:
ActionEncoder MyActionEncoder = (dynamic action) {
// custom encoding logic here
}
Again, for most people this will require no changes to code.
1.0.3
This release includes no functional changes. The release is purely to get the latest documentation to pub.dev
1.0.0
1.0.0 sounds like a big update but really this is to signify a switch to semantic versioning. Really this release loosens the dependency restriction on Redux
so remote devtools can be use with Redux 4
v0.0.10
Updates dependency to latest socketcluster_client
0.0.9
Includes PR #16
Resolves an issue where the connect function returned when the underlying http connection was established, instead of after the connect handshake completed. This was causing the first few actions to be missing from devtools. Thanks to @dennis-tra for fixing this.
0.0.8
0.0.7
0.0.6
- Correctly handle the START response message
0.0.5
- Send current state to devtools on connect