###master (next release)
###v0.23.1
- Fixed parsing of JSON files with duplicate object keys
###v0.23.0
Likely to cause new Flow errors:
- When you refine a
mixedvariable withtypeof myVar === 'object', we used to refine the type ofmyVartonull | Object. Now it is refined tonull | {[key: string]: mixed}. This meansmyVar.prophas the typemixedrather thanany.