Skip to content

Version 2.0.1

Compare
Choose a tag to compare
@StringEpsilon StringEpsilon released this 18 Nov 17:56
· 9 commits to main since this release

2.0.1 (2024-11-18)

Bugfixes

  • Fixed validation error when deserializing a list of objects. The deserializer would check the wrong token for it's
    datatype and throw and exception like this:
    Can not deserialize array at position [x] to list: It has a non-integer key 'name' at element [y]
    GH #40
  • Related to the above: Some nested arrays or arrays with object values would never implicetly deserialize into a
    List<object> because the check if the array keys are consecutive integers was faulty.
  • Do not throw when a property or field is decorated with it's own name such as [PhpProperty["A"]] public int A;.