Why ServiceStack.Text doesn't default dates to iso8601? Why ServiceStack.Text doesn't default dates to iso8601? json json

Why ServiceStack.Text doesn't default dates to iso8601?


ServiceStack followed the .NET DataContractSerializer defaults, not JSON.NET. We are reluctant to make breaking changes like this, especially when there's an easy way to configure it otherwise with:

JsConfig.DateHandler = DateHandler.ISO8601;