When updating the .proto file, make sure to update and commit the updated Go implementation. The reason for this is to make it trivial to include the protocol definitions without having to do a pre-build step in Go.
Make sure you have
protoc
installed. On Debian this can be installed viaapt-get install protobuf-compiler
.Install
protoc-gen-go
by runninggo get -u github.com/golang/protobuf/protoc-gen-go
.Run
task proto:protogen
to update the .pb.go file(s).