From d3f0ec7f376fdfd78fdf1bf6d233a6118a114b97 Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Thu, 28 Jan 2021 13:19:14 +0100 Subject: [PATCH] Release 2.9.0 (#437) --- CHANGELOG.md | 17 ++++++++++++----- pubspec.yaml | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3228f3c..2bc117fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,18 @@ -## 2.9.0-dev +## 2.9.0 -* Added support for compression/decompression, which can be configured through - `ChannelOptions` constructor's `codecRegistry` parameter or adding the - `grpc-accept-encoding` to `metadata` parameter of `CallOptions` on the client +* Added support for compression/decompression, which can be configured through + `ChannelOptions` constructor's `codecRegistry` parameter or adding the + `grpc-accept-encoding` to `metadata` parameter of `CallOptions` on the client side and `codecRegistry` parameter to `Server` on the server side. - Outgoing rpc can be compressed using the `compression` parameter on the + Outgoing rpc can be compressed using the `compression` parameter on the `CallOptions`. +* Fix issue [#206](https://github.com/grpc/grpc-dart/issues/206). Prevent an + exception to be thrown when a web connection stream is closed. +* Add XHR raw response to the GrpcError for a better debugging + ([PR #423](https://github.com/grpc/grpc-dart/pulls/423)). + +Note: this is the last release supporting SDK < 2.12. Next release will +be nullsafe and thus require SDK >= 2.12. ## 2.8.0 diff --git a/pubspec.yaml b/pubspec.yaml index dfae6cf6..bf47634d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: grpc description: Dart implementation of gRPC, a high performance, open-source universal RPC framework. -version: 2.9.0-dev +version: 2.9.0 homepage: https://github.com/dart-lang/grpc-dart