Skip to content

v0.3.0

Choose a tag to compare

@srikrsna-buf srikrsna-buf released this 14 Feb 15:52
· 19 commits to main since this release
1efdd6e

What's Changed

馃毃 Breaking Changes 馃毃

  • #10 Introduces a way to manage HTTP/2 connections. To support this, the context option of createHttpClient in package:connectrpc/http2.dart was removed. It is now accepted by the transport provided by the transport option:
- createHttpClient(context: context);
+ createHttpClient(
+   transport: Http2ClientTransport(
+     context: context,
+   ),
+ );

Full Changelog: v0.2.1...v0.3.0