All Versions
74
Latest Version
Avg Release Cycle
74 days
Latest Release
90 days ago
Changelog History
Page 7
Changelog History
Page 7
-
v2.6.1 Changes
January 27, 2014๐ Fixed
- ๐ Fix bug where
uuid
console application could not find the Composer autoloader when installed in another project
- ๐ Fix bug where
-
v2.6.0 Changes
January 17, 2014โ Added
- Introduce
uuid
console application for generating and decoding UUIDs from CLI (run./bin/uuid
for details) - โ Add
Uuid::getInteger()
to retrieve aMoontoast\Math\BigNumber
representation of the 128-bit integer representing the UUID - โ Add
Uuid::getHex()
to retrieve the hexadecimal representation of the UUID - ๐ง Use
netstat
on Linux to capture the node for a version 1 UUID - ๐ฆ Require moontoast/math as part of the regular package requirements
- Introduce
-
v2.5.0 Changes
October 30, 2013โ Added
- Use
openssl_random_pseudo_bytes()
, if available, to generate random bytes
- Use
-
v2.4.0 Changes
July 29, 2013โ Added
- Return
null
fromUuid::getVersion()
if the UUID isn't an RFC 4122 variant - ๐ Support string UUIDs without dashes passed to
Uuid::fromString()
- Return
-
v2.3.0 Changes
July 16, 2013โ Added
- ๐ Support creation of UUIDs from bytes with
Uuid::fromBytes()
- ๐ Support creation of UUIDs from bytes with
-
v2.2.0 Changes
July 04, 2013โ Added
- โ Add
Doctrine\UuidType::requiresSQLCommentHint()
method
- โ Add
-
v2.1.2 Changes
July 03, 2013๐ Fixed
- ๐ Fix cases where the system node was coming back with uppercase hexadecimal digits; this ensures that case in the node is converted to lowercase
-
v2.1.1 Changes
April 29, 2013๐ Fixed
- ๐ Fix bug in
Uuid::isValid()
where the NIL UUID was not reported as valid
- ๐ Fix bug in
-
v2.1.0 Changes
April 15, 2013โ Added
- ๐ Allow checking the validity of a UUID through the
Uuid::isValid()
method
- ๐ Allow checking the validity of a UUID through the
-
v2.0.0 Changes
February 11, 2013โ Added
- ๐ Support UUID generation on 32-bit platforms
๐ Changed
- Mark
Uuid
classfinal
- Require moontoast/math on 64-bit platforms for
Uuid::getLeastSignificantBits()
andUuid::getMostSignificantBits()
; the integers returned by these methods are unsigned 64-bit integers and unsupported even on 64-bit builds of PHP - ๐ Move
UnsupportedOperationException
to theException
subnamespace