Robbert van Ginkel

Results 28 comments of Robbert van Ginkel

We currently treat `buf.gen.yaml` as all or nothing in terms of running all defined codegenerators, similar to how templates are defined and work with remote generation on the BSR. If...

Lets be sure to include a rename of the `OrganizationUser` message to `OrganizationMember`, as `OrganizationService` has `{Add,Update,Remove}Member` methods. Similarly change `ListOrganizationUsers` to `ListOrganizationMembers` when it moves to the organization service.

Can confirm with this minimal reproduction: ``` // cat int32/test.proto syntax = "proto3"; message Foooo { int32 foo = 1; } // int64/test.proto syntax = "proto3"; message Foooo { int64...

Not really, I'm not very familiar with grpc-go's connection. Reading up on this thread and https://github.com/grpc/grpc-go/issues/3444 it does seem like there is no way to set authority for a single...

While commits are indeed immutable on the BSR, the repository in which they exist can be deleted. It looks like cosmos-sdk has a dependency on `buf.build/googleapis/googleapis`, which was recently deleted...

Tags cannot be deleted today, https://github.com/bufbuild/buf/issues/765 tracks some work related to changing that but I have nothing concrete to share there yet.

We have human readable documentation for these files at: - https://docs.buf.build/configuration/v1/buf-yaml - https://docs.buf.build/configuration/v1/buf-lock - https://docs.buf.build/configuration/v1/buf-gen-yaml - https://docs.buf.build/configuration/v1/buf-work-yaml I don't believe we publish any machine readable schema's for that today. What...

You're correct that buf should deal with ranges better, I believe this limitation is currently documented on https://docs.buf.build/breaking/rules#reserved_message_no_delete > Note that moving from reserved 3 to 6; to reserved 2...

Regarding point 2, `buf.gen.yaml`'s intention is to be input agnostic and the current stance is that we will not support inputs in the generate config file (see also https://github.com/bufbuild/buf/issues/510). Similarly...

That pretty much sums it up. To add some clarifications on our situation: the repository we use the `go.mod` file in is an internal monolithic repository with a collection of...