Releases: connectrpc/connect-dart
Releases · connectrpc/connect-dart
v1.0.0
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
What's Changed
- Add credentials as a configurable option for web client by @chandraaditya in #28
New Contributors
- @chandraaditya made their first contribution in #28
Full Changelog: v0.4.1...v0.5.0
v0.4.1
What's Changed
- Remove content-length when using web clients by @benridley in #20
New Contributors
- @benridley made their first contribution in #20
Full Changelog: v0.4.0...v0.4.1
v0.4.0
What's Changed
- Update protobuf version constraint by @srikrsna-buf in #17
Full Changelog: v0.3.0...v0.4.0
v0.3.0
What's Changed
- Add
User-Agent
header by @srikrsna-buf in #8
🚨 Breaking Changes 🚨
- #10 Introduces a way to manage HTTP/2 connections. To support this, the
context
option ofcreateHttpClient
inpackage:connectrpc/http2.dart
was removed. It is now accepted by the transport provided by thetransport
option:
- createHttpClient(context: context);
+ createHttpClient(
+ transport: Http2ClientTransport(
+ context: context,
+ ),
+ );
Full Changelog: v0.2.1...v0.3.0
v0.2.1
What's Changed
- Fix connectrpc version in example @srikrsna-buf in #6
Full Changelog: v0.2.0...v0.2.1
v0.2.0
What's Changed
- Implement compression by @srikrsna-buf in #1
- Close idle connections in http2 client by @srikrsna-buf in #4
New Contributors
- @srikrsna-buf made their first contribution in #1
Full Changelog: v0.1.0...v0.2.0
v0.1.0
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