Christopher Wilcox

Results 42 comments of Christopher Wilcox

Taking some notes: ### Web Version For 30 seconds, send pings on loop. Once 20 pings have occurred, shift old pings out, keeping the latest 20. Always toss out the...

What work remains to close this issue?

Update v7.0 of protobufjs is staged but not relased. https://github.com/protobufjs/protobuf.js/pull/1519

I think we are going to decide to not warn, but just remove this functionality as stated in #760.

Warning is less breaking to users than deprecation, and customers that use ints only will not experience the degraded experience. This warning is a smaller step and directs users to...

Going to block on this happening for a bit. Warning may be enough and is in PR, tracked by 759.

I am rewording this as the approach has moved from removal to changing the default behavior. By default we shouldn't unwrap these. Int and Double , as of the pr...

Note: Other language clients have similar behavior. ``` from google.cloud import datastore client = datastore.Client() kind = "test" id = "test_id" key = client.key(kind, id) entity = datastore.entity.Entity(key) entity['field'] =...

I think the root of the problem is, at query filter creation time, the client has no knowledge of the type of the field being filtered. the type needs to...