Fixes
- Fix incorrect CRD generation and overflow caused of proto fileds of type
google.protobuf.UInt64Value
. Previously fields of this type had an incorrect schema as well as led to overflows which led to them failing being unmarshalled, which is now resolved by changing the type togoogle.protobuf.UInt32Value
, which is backward-forward compatible. Ref. https://protobuf.dev/programming-guides/proto2/#updating point 5. Affected protos include gateway specshttpGateway.options.caching.maxPayloadSize
andhttpGateway.options.connectionLimit.maxActiveConnections
(#8568)