v0.3.0
What's Changed
- Add
User-Agentheader by @srikrsna-buf in #8
馃毃 Breaking Changes 馃毃
- #10 Introduces a way to manage HTTP/2 connections. To support this, the
contextoption ofcreateHttpClientinpackage:connectrpc/http2.dartwas removed. It is now accepted by the transport provided by thetransportoption:
- createHttpClient(context: context);
+ createHttpClient(
+ transport: Http2ClientTransport(
+ context: context,
+ ),
+ );Full Changelog: v0.2.1...v0.3.0