AnyCodable
AnyCodable copied to clipboard
Boolean encoding change in 0.6.3
Hello!
I've noticed that in 0.6.3, the encoding of boolean types has changed in certain circumstances. I've narrowed down the code causing me issues to this:
var options: AnyCodable {
return [
"key": true,
]
}
In < 0.6.3, this would result in the JSON data {"key": true}. In 0.6.3, it produces {"key": 1}.
ping @bddq relates to #65