Skip to content

Releases: MichaelMarner/dart-redux-remote-devtools

2.0.0

27 Jul 06:23
Compare
Choose a tag to compare

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

22 Jul 01:46
Compare
Choose a tag to compare

This release includes no functional changes. The release is purely to get the latest documentation to pub.dev

1.0.0

02 Jan 00:02
b7622b1
Compare
Choose a tag to compare

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

22 Oct 22:15
Compare
Choose a tag to compare

Updates dependency to latest socketcluster_client

0.0.9

11 Jul 21:14
Compare
Choose a tag to compare

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

08 Jul 22:25
Compare
Choose a tag to compare

This is a backwards compatible change to deal with future changes to the Dart API. Thanks @tvolkert for fixing these issues.

This release incorporates #15 and #14

0.0.7

11 Jan 01:56
Compare
Choose a tag to compare
  • Add support for receiving remote actions from the Devtools UI. Big thanks to @kadza for helping work through this feature

0.0.6

02 Jan 03:54
Compare
Choose a tag to compare
  • Correctly handle the START response message

0.0.5

02 Jan 03:57
Compare
Choose a tag to compare
  • Send current state to devtools on connect