angel-dart-archive / framework

moved to angel-dart/angel/packages/framework
https://github.com/angel-dart/angel/tree/master/packages/framework
MIT License
48 stars 13 forks source link

Prepare for upcoming Dart SDK breaking change #237

Closed tvolkert closed 5 years ago

tvolkert commented 5 years ago

The SDK recently updated BytesBuilder.takeBytes() and BytesBuilder.toBytes() to return Uint8List rather than List<int>.

A similar change has updated File.openRead() to return Stream<Uint8List> and HttpClientResponse to implement Stream<Uint8List>.

This change makes the corresponding update in the angel framework.

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

tvolkert commented 5 years ago

ping @thosakwe

thosakwe commented 5 years ago

Thanks!