Results 5 issues of Sangyong Choi

## Motivation validation of grpc requests is inconvenient ```kotlin class HelloRequestGrpcService : HelloServiceGrpcKt.HelloServiceCoroutineImplBase() { override suspend fun hello(request: HelloRequest): HelloResponse { if(request.message != "valid request") { throw StatusRuntimeException… } return...

Type: API Change

Hi, i'm grpc user. I feel uncomfortable when request validation. request validation code ```kotlin class HelloRequestGrpcService : HelloServiceGrpcKt.HelloServiceCoroutineImplBase() { override suspend fun hello(request: HelloRequest): HelloResponse { if(request.message != “valid request”)...

enhancement

Hi, i am grpc-kotlin user. current, A StatusException whether it is a StatusException or a StatusRuntimeException. I think exception is StatusRuntimeException when StatusRuntimeException occurred. if this intended, you can close...

Hi, i am spring-data-mongo user. I had some inconvenience when registered converters. Is currently manually register converters. ```kotlin @Bean fun mongoCustomConversions(): MongoCustomConversions { val converters = applicationContext.getBeansOfType(Converter::class.java).values .stream().collect(Collectors.toList()) return MongoCustomConversions(converters)...

status: waiting-for-triage
status: feedback-provided

Hi, i am spring data mongo user. I experienced bug when using spring data mongo with kotlin value class. [You can see it in this repository.](https://github.com/sangyongchoi/value-class-error-demo) Classes with "Kotlin value...

status: waiting-for-triage