async-datastore-client
async-datastore-client copied to clipboard
A modern and feature-rich Asynchronous Java client for Google Cloud Datastore
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
How about working on a new major version of this lib that uses the grpc api instead? https://github.com/googleapis/googleapis/blob/master/google/datastore/v1/datastore.proto And we could target Java 11, use CF instead of LF etc.
Dates values are currently handled in the following fashion: ``` private static Timestamp toTimestamp(Date date) { final long millis = date.getTime(); return Timestamp .newBuilder() .setSeconds(millis / 1000) .setNanos((int) ((millis %...
Hi Team, there is an issue with current code version. I am trying to close datastore from an app context destroy and current close method is not working properly. The...
I've tried `true` but no luck. If someone knows how to create the dependency reduced pom and attach it to the shaded jar so we don't have to `` I'd...