Changelog History
-
v1.4.3 Changes
January 08, 2016 -
v1.4.2 Changes
August 03, 2014 -
v1.4.1 Changes
July 23, 2014 -
v1.4.0 Changes
July 20, 2014🚀 This release introduces the
CollectionSnapshot
, which can make a snapshot of collection type elements. It also extends the tested code coverage to 100%, and does not abruptly normalize everything in theAbstractSnapshot
's normalizer. -
v1.3.2 Changes
June 10, 2014🚀 This release adds a new
ChangeInterface
, just to allow to implement this interface and maybe regroup similar user classes together -
v1.3.1 Changes
June 10, 2014The repo (and thus the composer package) was transferred to a new repo. So this is a really minor update.
-
v1.3.0 Changes
June 02, 20140️⃣ In this version, the possibility to use a whole different
Set
class than the default provided is now available.🚚 For this, a
SetInterface
was introduced, and as on the meaning of theSet
object there was no sense whatsoever to extend theAbstractChange
object, this filiation was removed.🗄 The possible BC Break (located on the
Set
constructor) was avoided, even if passing values other thannull, null
(which are the defaults) is deprecated and strongly discouraged. -
v1.2.5 Changes
May 31, 2014 -
v1.2.4 Changes
January 13, 2014🚀 The bug #6 was fixed in this release, and the changeset computer was also a bit simplified.
-
v1.2.3 Changes
November 25, 2013🚀 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 aRemoval
instead of an expectedModification
,Addition
or unchanged value.This is due to the php's
isset
operator which considers thatnull
does not set a value.