Skip to content

Releases: connectrpc/connect-dart

v1.0.0

01 Jul 22:05
02e8415
Compare
Choose a tag to compare

What's Changed

This is connect-dart's first stable release! 🎉 It doesn't contain any user-facing changes.

We follow semantic versioning carefully, and won't make breaking changes in the 1.x series of releases.

Full Changelog: v0.5.0...v1.0.0

v0.5.0

01 Jul 19:59
eadfcd3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.1...v0.5.0

v0.4.1

28 May 17:24
0c2887d
Compare
Choose a tag to compare

What's Changed

  • Remove content-length when using web clients by @benridley in #20

New Contributors

Full Changelog: v0.4.0...v0.4.1

v0.4.0

09 May 12:01
bfb073a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.0...v0.4.0

v0.3.0

14 Feb 15:52
1efdd6e
Compare
Choose a tag to compare

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

v0.2.1

01 Feb 09:14
74dd680
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.2.1

v0.2.0

30 Jan 15:37
68fbc09
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.0...v0.2.0

v0.1.0

19 Dec 17:50
Compare
Choose a tag to compare

What's Changed

This is the first public release of connect-dart, a lightweight Dart library for idiomatic Connect & gRPC RPCs. See connectrpc.com for details and documentation.

Full Changelog: https://github.com/connectrpc/connect-dart/commits/v0.1.0