Joshua Humphries
Joshua Humphries
@stapelberg, it seemed like the conversation was suggesting that people that want to use Editions should migrate to the newer version of protoc-gen-go, over in [`google.golang.org/protobuf`](https://pkg.go.dev/google.golang.org/protobuf/cmd/protoc-gen-go).
We've gotten a lot of feedback that folks would like to see that functionality in this core package and are taking it under consideration. In the meantime, there is a...
In addition to preserving unrecognized logical types, it would also be nice to preserve unrecognized properties. Currently, if a custom property has name that matches a defined field for some...
> My suggestion for a simple solution is that the logicalType properties are kept by removing it from the list of schemaReserved properties. Or do you have other alternatives? FWIW,...
Actually, it looks like "uuid" logical type for fixed[16] **is** in the spec, but it's not yet implemented by this module: https://avro.apache.org/docs/1.12.0/specification/#uuid
@nrwiersma, "UUID" is currently only supported in this repo for **string** types. But the [spec](https://avro.apache.org/docs/1.12.0/specification/#uuid) also states that it can be used with fixed[16].
@mjones713, "InvokeRPC" is the entire RPC duration. So it includes the time to both upload all of the request bytes and download all of the response bytes. If we were...
I am pretty sure the problem is that you are mixing builders with already-built descriptors. When you do `builder.FromMessage(jmd)`, you get a message builder that references already-built file descriptors for...
I implemented something like that in the buf CLI code: https://github.com/bufbuild/buf/blob/v1.32.0/private/bufpkg/bufimage/bufimageutil/bufimageutil.go#L177 In particular, your sample code doesn't handle custom options, Any messages, or source code info. That link above basically...
Note that link is for informational purposes only. You might fork that code and adapt it to your needs. It is not usable as is -- if you write a...