Update module google.golang.org/protobuf to v1.28.1
Compare changes
Files
2+ 1
− 1
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
google.golang.org/protobuf | require | minor |
v1.27.1 -> v1.28.1
|
v1.28.1
This release contains protoc-gen-go binaries for arm64.
Notable changes since v1.28.0:
v1.28.0
The release provides a new unmarshal option for limiting the recursion depth when unmarshalling nested messages to prevent stack overflows. (UnmarshalOptions.RecursionLimit
).
New features:
Documentation improvements:
Updated supported versions:
The new UnmarshalOptions.RecursionLimit
limits the maximum recursion depth when unmarshalling messages. The limit is applied for nested messages. When messages are nested deeper than the specified limit the unmarshalling will fail. If unspecified, a default limit of 10,000 is applied.
In addition to the configurable limit for message nesting a non-configurable recursion limit for group nesting of 10,000 was introduced.
The default recursion limit of 10,000 introduced in the release is subject to change. We want to align this limit with implementations for other languages in the long term. C++ and Java use a limit of 100 which is also the target for the Go implementation.
This MR has been generated by Renovate Bot.