LoganSquare v1.0.3 Release Notes

    • ➕ Added support for naming policies, which alleviate the need to add name parameters to all of your @JsonField annotations if your API follows a certain naming scheme.
    • 📜 Added support for different field detection policies. The default policy is ANNOTATIONS_ONLY, which tells LoganSquare to only parse and serialize fields that have been annotated as @JsonFields. Other options are NONPRIVATE_FIELDS and NONPRIVATE_FIELDS_AND_ACCESSORS, which tell LoganSquare to use all non-private fields and all non-private fields and accessors, respectively, even if they aren't annotated as a @JsonField. Fields can be excluded using @JsonIgnore.
    • Squashed some bugs.