We tried updating from ServiceStack 3.5.5.0 to 3.9.9.0 today and noticed a change in the way dates are serialized in json. This is unchanged in both cases:
ServiceStack.Text.JsConfig.DateHandler = ServiceStack.Text.JsonDateHandler.ISO8601;
"DateCreated":"\/Date(2012-09-19T03:27:14.0000000)\/"
"DateCreated":"2012-09-19T03:27:14.0000000"
Is there a way to revert to the format from 3.5.5.0 to avoid breaking some existing clients? We haven't publicly launched the API yet so if we do introduce a breaking change, now would be the time. Is this new format simpler to work with in JS or other languages and staying unchanged in the foreseeable future in ServiceStack as the ISO8601 format?
Thanks!