Skip to content

Latest commit

 

History

History
78 lines (61 loc) · 4.36 KB

CHANGELOG.md

File metadata and controls

78 lines (61 loc) · 4.36 KB

Change Log

1.3.0

Changes

  • 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

New Contributors

  • @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

1.2.1

Changes

  • 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

New Contributors

  • @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

1.2.0

Changes

  • 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

New Contributors

  • @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

1.1.0

Features

  • Removed grpc-kotlin-stub-lite (#234)
    • The grpc-kotlin-stub library no longer depends on grpc-protobuf or protobuf-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 use grpc-kotlin-stub.
    • grpc-kotlin-stub now exports the javax.annotation:javax.annotation-api dependency, so you can drop it from your project's explicitly listed dependencies.
  • Added support for proto3 optional fields (#218)
  • Added SERVICE_NAME constant (#236)

Fixes

  • Updated to latest grpc version for ARM compatibility (#244)
  • Improved examples organization (#183)