LoganSquare v1.1.0 Release Notes

    • ➕ Added support for only parsing or only serializing certain fields using the @JsonIgnore annotation's new ignorePolicy parameter.
    • 0️⃣ Potentially breaking change: Added support for optionally serializing null fields in an object using the serializeNullObjects parameter in the @JsonObject. The default is false (null fields will not be serialized). LoganSquare 1.0.x always serialized these, so if you're expecting them to be serialized, set this to true for your @JsonObjects.
    • 0️⃣ Potentially breaking change: Added support for optionally serializing null elements in a collection or array using the serializeNullCollectionElements parameter in the @JsonObject. The default is false (null fields will not be serialized). LoganSquare 1.0.x always serialized these, so if you're expecting them to be serialized, set this to true for your @JsonObjects.