MichaelMarner / dart-redux-remote-devtools

Remote Devtools for Dart & Flutter
https://pub.dartlang.org/packages/redux_remote_devtools
MIT License
53 stars 10 forks source link

Prepare for upcoming change to HttpRequest and HttpClientResponse #14

Closed tvolkert closed 5 years ago

tvolkert commented 5 years ago

An upcoming change to the Dart SDK will change HttpRequest and HttpClientResponse from implementing Stream<List<int>> to implementing Stream<Uint8List>.

This forwards-compatible change prepares for that SDK breaking change by casting the Stream to List<int> before transforming it.

https://github.com/dart-lang/sdk/issues/36900

MichaelMarner commented 5 years ago

Hi Todd, thanks for the contribution and for going into so much detail finding other projects that would be affected by the Dart API change (https://github.com/dart-lang/sdk/issues/36900).

I'm not sure what happened with Travis, because the build and tests all passed. Happy to merge.