The Uid component provides an object-oriented API to generate and represent UIDs such as UUID and ULID. In Symfony 6.2 we're adding some features to it.
MaxUuid and MaxUlid
Contributed by
Nicolas Grekas
in #47515.
In Symfony 6.2 we're introducing two new classes called MaxUlid
and MaxUuid
which represent the highest possible value of both UUID and ULID. You can use
those objects to get the max values string representation, to compare them to
other UID objects, etc.
If you are curious, these are the maximum values possible:
Max UUID: 'FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF'
Max ULID: '7ZZZZZZZZZZZZZZZZZZZZZZZZZ'
Time-based Uid Interface
Contributed by
Barney Hanlon
in #47507.
Some UIDs include a date/time as part of their value. In Symfony 6.2 we're introducing the following interface so you can get this date/time value more easily:
interface TimeBasedUidInterface
{
public function getDateTime(): \DateTimeImmutable;
}
The interface is only implemented by the UID types/versions that include a date/time,
which are: Ulid
, UuidV1
, and UuidV6
.
Uid Conversion to Hexadecimal Values
Contributed by
Aurimas Niekis
in #45945.
UIDs include lots of methods to convert their value into different formats
(toBase32()
, toBase58()
, toRfc4122()
, etc.) In Symfony 6.2 we're
introducing a new toHex()
method which returns the binary value as an
hexadecimal string:
use Symfony\Component\Uid\Uuid;
$uuid = Uuid::v4()
// e.g. (string) $uuid = 'd6b3345b-2905-4048-a83c-b5988e765d98'
$hex = $uuid->toHex();
// $hex = '0xd6b3345b29054048a83cb5988e765d98'
The hexadecimal string returned by toHex()
is ready to use in other parts of
your application, such as storing or querying UIDs in binary format in the database.
UuidV7 and UuidV8 Support
Contributed by
Nicolas Grekas
in #47525.
The UUID specification continues adding new formats to generate values suited for different scenarios. They recently added UUID Version 7 and UUID Version 8 formats and Symfony 6.2 adds support for them:
use Symfony\Component\Uid\Uuid;
$uuid = Uuid::v7();
// e.g. (string) $uuid = '017f22e2-79b0-7cc3-98c4-dc0c0c07398f'
$uuid = Uuid::v8();
// e.g. (string) $uuid = '216fff40-98d9-81e3-a5e2-0800200c9a66'
Conceptually, UUID v7 is very similar to ULID: they're monotonic, sortable, unguessable, and embed a ms-unix-timestamp.
<hr style="margin-bottom: 5px" />
<div style="font-size: 90%">
<a href="https://symfony.com/sponsor">Sponsor</a> the Symfony project.
</div>
Accedi per aggiungere un commento
Altri post in questo gruppo
We were absolutely thrilled to gather with the incredible Symfony community for the first time in Vienna, Austria, from December 5th to 6th, surrounded by the warm and festive atmosphere of the
SymfonyLive Paris 2025, conference in French language only, will take place from March 27 to 28! The schedule is currently being revealed as we go along. More details are available here.
💻
Symfony has been active on X, Mastodon, and Bluesky for some time, but until recently, not all platforms received equal attention. Since Twitter (now X) was our first social network, all blog posts we
SymfonyLive Berlin 2025, conference held in English, will take place from April 1 to 4! The schedule is being revealed gradually. More details are available here.
As we are now unveiling th
Affected versions
Twig versions >=3.16.0,<3.19.0 are affected by this security issue.
The issue has been fixed in Twig 3.19.0.
Description
When using the null coalesce operator (??), output esc
Symfony 6.4.18 has just been released. Here is the list of the most important changes since 6.4.17:
bug #58889 [Serializer] Handle default context in Serializer (@Valmonzo)
bug #59631 [HttpClient
Symfony 7.1.11 has just been released. Here is the list of the most important changes since 7.1.10:
bug #58889 [Serializer] Handle default context in Serializer (@Valmonzo)
bug #59631 [HttpClient