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
Fix: Correct pydantic version range (bytes fields are broken with pydantic<=2.8).
The ser_json_bytes, val_json_bytes we rely on isn't introduced till 2.9. In old versions B64 encoded bytes fields are getting ascii decoded. - Users will see different formats of bytes depending on pydantic version. - The api fails when you send back badly coded bytes (inline_blob, thought_signature). It's possible to fix it to mostly work with older versions, but definitely not trivial to get **identical** behavior. PiperOrigin-RevId: 825591037
0 commit comments