After updating from v0.6.0 to v0.6.1, we are facing issues like the following:
TypeError: Cannot assign to read only property 'OtherProperty' of object '#<Object>'
The issue occurs when doing something like this:
const parser = new Parser();
const data = await parser.parseStringPromise(fileXml);
data.SomeProperty.OtherProperty = ["some"]; // Error happens here
Is it intended that all properties are now readonly (/is this the result of the recent CVE fixes)?
I am wondering because when looking at the diff from v0.6.0 to v0.6.1, here it seems that properties should still be defined writable.