- Pin Bazel version by @Kernald in grpc#322
- Use proper Maven targets rather than legacy compat ones by @Kernald in grpc#321
- bump versions by @jamesward in grpc#325
- add server examples - fixes #317 by @jamesward in grpc#319
- bump versions by @jamesward in grpc#329
- send headers when failure is null by @sangyongchoi in grpc#335
- Upgrade coroutines version to 1.6.1. by @lowasser in grpc#327
- @Kernald made their first contribution in grpc#322
- @sangyongchoi made their first contribution in grpc#335
Full Changelog: https://github.com/grpc/grpc-kotlin/compare/v1.2.1...v1.3.0
- ServerCalls: cancel only the request's Job by @goj in grpc#303
- Update README.md by @Tails128 in grpc#304
- Load rules_kotlin rules from jvm.bzl by @fmeum in grpc#300
- Depend on tools in the exec configuration by @fmeum in grpc#301
- Remove hardcoded references to @bazel by @aragos in grpc#305
- Compose UI by @jamesward in grpc#296
- add an integration test by @jamesward in grpc#310
- Add kotlinx-coroutines-core-jvm dependency by @bu3 in grpc#311
- @goj made their first contribution in grpc#303
- @Tails128 made their first contribution in grpc#304
- @fmeum made their first contribution in grpc#300
- @bu3 made their first contribution in grpc#311
Full Changelog: https://github.com/grpc/grpc-kotlin/compare/v1.2.0...v1.2.1
- Restore metadata support to generated clients by @lowasser in grpc#268
- fixed application name in client by @Arashi5 in grpc#284
- Mark deprecated service methods with
@Deprecated
. by @lowasser in grpc#264 - Open context val in order to allow overriding by @bjoernmayer in grpc#287
- Defer writing headers until the first message stanza is sent by @rwbergstrom in grpc#275
- Support StatusException in CoroutineContextServerInterceptor. by @hovinen in grpc#249
- Cleanup by @jamesward in grpc#293
- kotlin protos by @jamesward in grpc#266
- @Arashi5 made their first contribution in grpc#284
- @bjoernmayer made their first contribution in grpc#287
- @rwbergstrom made their first contribution in grpc#275
- @hovinen made their first contribution in grpc#249
Full Changelog: https://github.com/grpc/grpc-kotlin/compare/v1.1.0...v1.2.0
- Removed
grpc-kotlin-stub-lite
(#234)- The
grpc-kotlin-stub
library no longer depends ongrpc-protobuf
orprotobuf-java-util
(#234), so your project will need to include protobuf dependencies itself. For examples, see: examples/stub/build.gradle.kts, examples/stub-lite/build.gradle.kts, or examples/stub-android/build.gradle.kts - The
grpc-kotlin-stub-lite
library no longer exists, instead usegrpc-kotlin-stub
. grpc-kotlin-stub
now exports thejavax.annotation:javax.annotation-api
dependency, so you can drop it from your project's explicitly listed dependencies.
- The
- Added support for proto3 optional fields (#218)
- Added
SERVICE_NAME
constant (#236)
- Updated to latest grpc version for ARM compatibility (#244)
- Improved examples organization (#183)