You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since then, both the Buf build system and Connect RPCs have successfully added support for it, suggesting that people could start migrating their Protobuf files.
The protoc-gen-go-aip code generator is currently incompatible with Editions and will return an error each time it is run against it:
plugin "go-aip" does not support feature "supports editions" which is required by "testdata.proto"
As far as I've been able to tell, protoc-gen-go-aip is agnostic of Editions, and adding support for it could be straightforward:
Last year the Protobuf compiler v0.27 was released, and with it came Protobuf Editions. It introduces a new feature flag system aimed at unifying
proto2
andproto3
functionality and semantics.Since then, both the Buf build system and Connect RPCs have successfully added support for it, suggesting that people could start migrating their Protobuf files.
The
protoc-gen-go-aip
code generator is currently incompatible with Editions and will return an error each time it is run against it:As far as I've been able to tell,
protoc-gen-go-aip
is agnostic of Editions, and adding support for it could be straightforward:This change would also add support for
proto3
optional fields, which I believe theprotoc-gen-go-aip
code generator is also agnostic of.The text was updated successfully, but these errors were encountered: