Hi,
I would like to know if the Python files that are generated from Protobuf files are backward compatibility within the same major version, for examples:
I have a Python file that belongs to a specific service that was generated by the 3.0.0 version of the protoc compiler, then this file is used in another environment by a client of the service that uses the 3.6.0 version, my two questions here are:
- The python file will be importable by the client that uses the newer version?
- If yes, the data produced by the client will be consumable by the service that uses the older version?
Cheers,