Skip to content

8.1.0-alpha-001

Pre-release
Pre-release

Choose a tag to compare

@64J0 64J0 released this 25 Oct 14:42
· 10 commits to master since this release
6e74ccf

Breaking changes

  • Remove [<AllowNullLiteral>] attribute from Json.ISerializer and Xml.ISerializer - Credits @64J0
    • With the release of .NET 9 we have nullable reference types.
    • When this feature is enabled (<Nullable>enable</Nullable>), our users started running into problems that boils down to Json.ISerializer having the AllowNullLiteral attribute.
    • Due to it, we decided to remove this attribute from both the Json.ISerializer and the Xml.ISerializer.
      • New automated tests were added to assert that the serializers are still working properly.
      • We also updated some sample projects to use this feature.

Other updates