google / cel-spec

Common Expression Language -- specification and binary representation
https://cel.dev
Apache License 2.0
2.59k stars 216 forks source link

Remove unknown proto2 enum values #363

Closed jcking closed 1 week ago

jcking commented 1 week ago

C++ protobuf rejects unknown enum values in proto2, as proto2 enums are supposed to be closed. I believe Go/Java protobuf incorrectly accept these at the moment. This only affects textproto parsing. This PR removes these incompatible tests.