私が変更した場合は、protobufを使用してパッケージを変更すると既存のクライアントが破損しますか?
syntax = "proto3";
package a;
message HtmlStore{
string html = 1;
}
へ
syntax = "proto3";
package a.v0;
message HtmlStore{
string html = 1;
}
私がいるProtobufを返すPythonのAPIを持っています。 APIを使用している既存のクライアントがあります。特定の要素のプロトタイプの定義を変更したいのですが、それが既存のクライアントを壊すかどうかを知りたいのですが?