Bug fixes on the Set
This release fixes a bug on the null
value handling.
If the new value was null
, even if it was unchanged, modified or added, it was always considered as a Removal
instead of an expected Modification
, Addition
or unchanged value.
This is due to the php's isset
operator which considers that null
does not set a value.