Edward McFarlane
Edward McFarlane
Adding fields is not a breaking change and part of the benefits. Maybe you could explain what you are hoping to achieve or what issues you are having?
@andremarianiello checkout https://github.com/bufbuild/larking for dynamic protobuf support.
It's usually assumed to use and build the libraries go would be required locally. Install can be done with: ``` go install connectrpc.com/connect/cmd/protoc-gen-connect-go@latest ``` As an alternative you can use...
@chkohner proto messages require a pointer receiver to implement `proto.Message` required by marshalling funcs: https://pkg.go.dev/google.golang.org/protobuf/encoding/protojson#Marshal
Plus one, any solutions?
@StevenACoffman http3 support is tested using the github.com/quic-go/quic-go package in the [conformance tests](https://github.com/connectrpc/conformance/blob/c8345b95a3643f5eb40a848bb7e527b381d3403a/internal/app/referenceserver/server.go#L357). Support for http3 in the std libs net/http library is ongoing, see this [issue](https://github.com/golang/go/issues/32204)
Cannot reproduce this issue with `buf generate` on v1.36.0,`--path` commands correctly restrict the tree of files included. Issues only occur for breaking and lint commands.
A fix for this issue was included in #3095 will go out in the next release.
## Meeting notes Met to discuss the above proposal today. Attendees: @mattrobenolt, @akshayjshah, @jhump, @emcfarlane ### Summary All in agreement on the need to streamline integration of observability in connect-go....
Started the proof of concept for the third party package approach ([WIP branch here](https://github.com/connectrpc/connect-go/compare/main...emcfarlane:connect-go:ed/obspkg)). ### Changes needed Signature for the observability is updated to handle connect client interceptors. They don't...