Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

protobuf-jackson-1.1.0

Compare
Choose a tag to compare
@chokoswitch chokoswitch released this 01 May 06:07
· 137 commits to master since this release
b91c726

Bug Fixes

  • MessageMarshaller contains methods to operate directly on JsonParser and JsonGenerator, similar to the normal ObjectMapper. This is primarily for registering protobuf marshalling into an ObjectMapper. Unlike ObjectMapper these methods were closing the input parser / generator, which breaks marshalling using ObjectMapper serialization. The methods have been changed to not close the input - this is being released as a minor release since all users should update to this version to fix the interaction with ObjectMapper. If your code created JsonParser or JsonGenerator and relied on the auto-closing, you may need to close manually now. Standard methods that operate on streams, arrays, and strings are unaffected. #543