- Fix NPE at ObjectMapper#copy with MessagePackFactory when ExtensionTypeCustomDeserializers isn't set #471
- Suppress a warning in ValueFactory #457
- Add MessagePacker#clear() method to clear position #459
- Support ObjectMapper#copy with MessagePackFactory #454
- Use jackson-databind 2.8.11.1 for security vulnerability #467
- (internal) Remove "-target:jvm-1.7" from scalacOptions #456
- (internal) Replace sbt
test-only
command withtestOnly
#445 - (internal) Use JavaConverters instead of JavaConversions in unit tests #446
- Add MessageUnpacker.tryUnpackNil() for peeking whether the next value is nil or not.
- Add MessageBufferPacker.getBufferSize().
- Improved MessageUnpacker.readPayload performance #436
- Fixed a bug that ChannelBufferInput#next blocks until the buffer is filled. #428
- (internal) Upgraded to sbt-1.0.4 for better Java9 support
- (internal) Dropped Java7 tests on TravisCI, but msgpack-java is still built for Java7 (1.7) target
- Fix ambiguous overload in Java 9 #415
- Make MessagePackParser accept a string as a byte array field #420
- Support MessagePackGenerator#writeNumber(String) #422
- Fix warnings in build.sbt #402
- Add ExtensionTypeCustomDeserializers and MessagePackFactory#setExtTypeCustomDesers #408
- Avoid a CharsetEncoder bug of Android 4.x at MessagePacker#packString #409
- Fixed NPE when write(add)Payload are used at the beginning #392
- Fixed a bug of unpackString #387 at the buffer boundary
- Add DirectByteBuffer support
- Add Flushable interface to MessagePacker
- Fix Unexpected UTF-8 encoder state
- Make MessageUnpacker.hasNext extensible
- Added skipValue(n)
- [msgpack-jackson] Ignoring uknown propertiers when deserializing msgpack data in array format
- Fixed a problem when reading malformed UTF-8 characters in packString. This problem happens only if you are using an older version of Java (e.g., Java 6 or 7)
- Support complex-type keys in msgpack-jackson
- Fixed a bug that causes IndexOutOfBoundsException when reading a variable length code at the buffer boundary.
- Add PackerConfig.withStr8FormatSupport (default: true) for backward compatibility with earier versions of msgpack v0.6, which doesn't have STR8 type.
- msgpack-jackson now supports
@JsonFormat(shape=JsonFormat.Shape.ARRAY)
to serialize POJOs in an array format. See also https://github.com/msgpack/msgpack-java/tree/develop/msgpack-jackson#serialization-format - Small performance optimization of packString when the String size is larger than 512 bytes.
- Embed bundle parameters for OSGi
- Fix a bug (#348), which wrongly overwrites the buffer before reading numeric data at the buffer boundary
- Add some missing asXXX methods in Value
- ValueFactory.MapBuilder now preserves the original element order (by using LinkedHashMap)
- Fix ExtensionType property
- MessagePack.Packer/UnpackerConfig are now immuable and configurable with withXXX methods.
- Add bufferSize configuration parameter
- Allow setting null to ArrayBufferInput for advanced applications that require dedicated memory management.
- Fix MessageBufferPacker.toXXX to properly flush the output
- Modify ValueFactory methods to produce a copy of the input data. To omit the copy, use
omitCopy
flag. - Improve the performance of MessagePackParser by unpacking data without using org.msgpack.value.Value.
- Split MessagePack.Config into MessagePack.Packer/UnpackerConfig
- Changed MessageBuffer API
- It allows releasing the previously allocated buffers upon MessageBufferInput.next() call.
- MessageBufferOutput now can read data from external byte arrays
- MessagePacker supports addPayload(byte[]) to feed the data from an external data source
- This saves the cost of copying large data to the internal message buffer
- Performance improvement of packString
- Add MessageBufferPacker for efficiently generating byte array(s) of message packed data
- Fix ImmutableLongValueImpl#asShort #287
- Support non-string key in jackson-dataformat-msgpack
- Update the version of jackson-databind to 2.6.3
- Several bug fixes
- Add a prototype of Value implementation
- Apply strict coding style
- Several bug fixes
- Fix #217 when reading from SockectInputStream
- Support Extension type (defined in MessagePack) in msgpack-jackson
- Support BigDecimal type (defined in Jackson) in msgpack-jackson
- Fix MessageUnpacker#unpackString #215, #216
- Google App Engine (GAE) support
- Add MessagePacker.getTotalWrittenBytes()
- Fix skipValue #185
- Supporting some java6 platform and Android