mirror of https://github.com/grpc/grpc-dart.git
Version bump (#118)
This commit is contained in:
parent
1051232d17
commit
97e47bd3e7
32
CHANGELOG.md
32
CHANGELOG.md
|
|
@ -1,71 +1,75 @@
|
||||||
## 0.6.3 - 2018-07-25
|
## 0.6.4
|
||||||
|
|
||||||
|
* Update dependencies to be compatible with Dart 2.
|
||||||
|
|
||||||
|
## 0.6.3
|
||||||
|
|
||||||
* Make fields of `StatusCode` const rather than final.
|
* Make fields of `StatusCode` const rather than final.
|
||||||
|
|
||||||
## 0.6.2 - 2018-07-19
|
## 0.6.2
|
||||||
|
|
||||||
* Allow for non-ascii header values.
|
* Allow for non-ascii header values.
|
||||||
|
|
||||||
## 0.6.1 - 2018-07-13
|
## 0.6.1
|
||||||
|
|
||||||
* More fixes to update to Dart 2 core library APIs.
|
* More fixes to update to Dart 2 core library APIs.
|
||||||
|
|
||||||
## 0.6.0+1 - 2018-07-13
|
## 0.6.0+1
|
||||||
|
|
||||||
* Updated implementation to use new Dart 2 APIs using
|
* Updated implementation to use new Dart 2 APIs using
|
||||||
[dart2_fix](https://github.com/dart-lang/dart2_fix).
|
[dart2_fix](https://github.com/dart-lang/dart2_fix).
|
||||||
|
|
||||||
## 0.6.0 - 2018-07-12
|
## 0.6.0
|
||||||
|
|
||||||
* Dart SDK upper constraint raised to declare compatability with Dart 2.0 stable.
|
* Dart SDK upper constraint raised to declare compatability with Dart 2.0 stable.
|
||||||
|
|
||||||
## 0.5.0 - 2018-07-10
|
## 0.5.0
|
||||||
|
|
||||||
* Breaking change: The package now exclusively supports Dart 2.
|
* Breaking change: The package now exclusively supports Dart 2.
|
||||||
* Fixed tests to pass in Dart 2.
|
* Fixed tests to pass in Dart 2.
|
||||||
* Added support for Interceptors ([issue #79](https://github.com/grpc/grpc-dart/issues/79)); thanks to [@mogol](https://github.com/mogol) for contributing!
|
* Added support for Interceptors ([issue #79](https://github.com/grpc/grpc-dart/issues/79)); thanks to [@mogol](https://github.com/mogol) for contributing!
|
||||||
|
|
||||||
## 0.4.1 - 2018-04-04
|
## 0.4.1
|
||||||
|
|
||||||
* Fixes for supporting Dart 2.
|
* Fixes for supporting Dart 2.
|
||||||
|
|
||||||
## 0.4.0 - 2018-03-16
|
## 0.4.0
|
||||||
|
|
||||||
* Moved TLS credentials for server into a separate class.
|
* Moved TLS credentials for server into a separate class.
|
||||||
* Added support for specifying the address for the server, and support for
|
* Added support for specifying the address for the server, and support for
|
||||||
serving on an ephemeral port.
|
serving on an ephemeral port.
|
||||||
|
|
||||||
## 0.3.1 - 2018-02-27
|
## 0.3.1
|
||||||
|
|
||||||
* Split out TLS credentials to a separate class.
|
* Split out TLS credentials to a separate class.
|
||||||
|
|
||||||
## 0.3.0 - 2018-02-05
|
## 0.3.0
|
||||||
|
|
||||||
* Added authentication metadata providers, optimized for use with Google Cloud.
|
* Added authentication metadata providers, optimized for use with Google Cloud.
|
||||||
* Added service URI to metadata provider API, needed for Json Web Token generation.
|
* Added service URI to metadata provider API, needed for Json Web Token generation.
|
||||||
* Added authenticated cloud-to-prod interoperability tests.
|
* Added authenticated cloud-to-prod interoperability tests.
|
||||||
* Refactored connection logic to throw initial connection errors early.
|
* Refactored connection logic to throw initial connection errors early.
|
||||||
|
|
||||||
## 0.2.1 - 2018-01-18
|
## 0.2.1
|
||||||
|
|
||||||
* Updated generated code in examples using latest protoc compiler plugin.
|
* Updated generated code in examples using latest protoc compiler plugin.
|
||||||
* Dart 2.0 fixes.
|
* Dart 2.0 fixes.
|
||||||
* Changed license to Apache 2.0.
|
* Changed license to Apache 2.0.
|
||||||
|
|
||||||
## 0.2.0 - 2017-12-15
|
## 0.2.0
|
||||||
|
|
||||||
* Implemented support for per-RPC metadata providers. This can be used for
|
* Implemented support for per-RPC metadata providers. This can be used for
|
||||||
authentication providers which may need to obtain or refresh a token before
|
authentication providers which may need to obtain or refresh a token before
|
||||||
the RPC is sent.
|
the RPC is sent.
|
||||||
|
|
||||||
## 0.1.0 - 2017-10-12
|
## 0.1.0
|
||||||
|
|
||||||
* Core gRPC functionality is implemented and passes
|
* Core gRPC functionality is implemented and passes
|
||||||
[gRPC compliance tests](https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md).
|
[gRPC compliance tests](https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md).
|
||||||
|
|
||||||
The API is shaping up, but may still change as more advanced features are implemented.
|
The API is shaping up, but may still change as more advanced features are implemented.
|
||||||
|
|
||||||
## 0.0.1 - 2017-07-05
|
## 0.0.1
|
||||||
|
|
||||||
* Initial version.
|
* Initial version.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: grpc
|
name: grpc
|
||||||
description: Dart implementation of gRPC.
|
description: Dart implementation of gRPC.
|
||||||
version: 0.6.3
|
version: 0.6.4
|
||||||
author: Dart Team <misc@dartlang.org>
|
author: Dart Team <misc@dartlang.org>
|
||||||
homepage: https://github.com/dart-lang/grpc-dart
|
homepage: https://github.com/dart-lang/grpc-dart
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ dependencies:
|
||||||
http2: ^0.1.7
|
http2: ^0.1.7
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
mockito: ^3.0.0-beta+1
|
mockito: ^3.0.0
|
||||||
test: ^1.2.0
|
test: ^1.3.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue