This is a bugfix release, no new features since 1.2.0 were added.
Changelog
Compared to the latest release 1.2.0, the following bugfixes were added.
Bugfixes
This is a complete list of the merged pull requests, including the fixed bugs.
Ditto JSON is not OSGi compatible due to missing imports
The OSGi bundle ditto-json was not compatible to be run in OSGi environments as imports of 3rd party libraries
were used which were not defined in the Import-Package of the bundle.
The 3rd party libraries (jackson-core and jackson-dataformat-cbor) were declared on “provided” scope previously
which made problems in the OSGi environment.
Instead, the bugfix splitted up the CBOR serialization into a separate module ditto-json-cbor in order to prevent the
jackson dependencies to be required at all in ditto-json (and as a result also in the ditto-client).