New in Symfony 5.3: UID Improvements

The UID Component was introduced in Symfony 5.1 as an experimental feature to help you generate and work with UIDs (universally unique identifiers) such as UUIDs and ULIDs. In Symfony 5.3 this component is no longer considered experimental and we added some new features to it.

New Ways to Generate UIDs¶

        Contributed by 
        Thomas Calvet 
        in #39507
        and #39850.

Creating UID values is easy thanks to methods like Uuid::v1(), Uuid::v4(), new Ulid(), etc. In Symfony 5.3 we’ve added new methods so you can create UID objects from several string representations of UIDs: 1 2 3 4 5 6 7 8 9$uuid = Uuid::fromBinary("\xd9\xe7\xa1\x84\x5d\x5b\x11\xea\xa6\x2a\x34\x99\x71\x00\x62\xd0"); $uuid = Uuid::fromBase32('6SWYGR8QAV27NACAHMK5RG0RPG'); $uuid = Uuid::fromBase58('TuetYWNHhmuSQ3xPoVLv9M'); $uuid = Uuid::fromRfc4122('d9e7a184-5d5b-11ea-a62a-3499710062d0');

$ulid = Ulid::fromBinary("\x01\x71\x06\x9d\x59\x3d\x97\xd3\x8b\x3e\x23\xd0\x6d\xe5\xb3\x08"); $ulid = Ulid::fromBase32('01E439TP9XJZ9RPFH3T1PYBCR8'); $ulid = Ulid::fromBase58('1BKocMc5BnrVcuq2ti4Eqm'); $ulid = Ulid::fromRfc4122('0171069d-593d-97d3-8b3e-23d06de5b308');

In addition, we’ve added several services such as ulid.factory and uuid.factory (and their corresponding autowiring aliases UlidFactory, UuidFactory, etc.) so you can customize the creation of UIDs. The defaults of the generated UIDs are now configured semantically: 1 2 3 4# config/packages/framework.yaml framework: uid: default_uuid_version: 4

Finally, we added UlidGenerator and UuidGenerator classes so you can use them as Doctrine ID generators, to use UIDs as the value of your primary keys in Doctrine entities.

UID Form Types¶

        Contributed by 
        Gemorroj 
        in #39863.

The integration with the Form component was one of the last missing features of the UIDs. That’s why in Symfony 5.3 we’ve added the UuidType and UlidType form types so you can work with UID values in your forms. These form types render a <input type="text"> field with the string representation of the given UID object and transform it back to a UID object when submitting the form.

Serializing UIDs¶

        Contributed by 
        Thomas Calvet 
        in #39675.

The Serializer component includes a UidNormalizer to transform objects of type Symfony\Component\Uid\AbstractUid into strings. In Symfony 5.3 we’ve improved it to support different string formats. You can now pass the UidNormalizer::NORMALIZATION_FORMAT_KEY context option to the serializer and set it to the desired format (e.g. UidNormalizer::NORMALIZATION_FORMAT_RFC_4122, etc.)

Generate and Inspect UIDs in the Console¶

        Contributed by 
        Thomas Calvet 
        in #39883.

The UID component now includes some console commands to help you generate and inspect the details of UUID/ULID values. For example: 1 2 3 4 5 6$ php bin/console uuid:generate --random-based $ php bin/console ulid:generate --count=2 --format=rfc4122

run them with the --help option to check all their options:

$ php bin/console uuid:generate --help $ php bin/console ulid:generate --help

1 2 3 4 5 6 7 8 9 10$ php bin/console ulid:inspect 01F2TTCSYK1PDRH73Z41BN1C4X


Label Value


Canonical (Base 32) 01F2TTCSYK1PDRH73Z41BN1C4X Base 58 1BYGm16jS4kX3VYCysKKq6 RFC 4122 0178b5a6-67d3-0d9b-889c-7f205750b09d


Timestamp 2021-04-09 08:01:24.947


                Sponsor the Symfony project.

http://feedproxy.google.com/~r/symfony/blog/~3/2VmBv_iYqHE/new-in-symfony-5-3-uid-improvements

Created 4y | May 4, 2021, 8:20:12 AM


Login to add comment

Other posts in this group

SymfonyLive Paris 2025 : Rôles & permissions : développez une marque blanche avec du Feature Flipping

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.

Al

Jan 23, 2025, 4:50:03 PM | Symfony
SymfonyLive Berlin 2025: So you think you know PHPUnit

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.

First, a big thank you to

Jan 22, 2025, 8:20:10 AM | Symfony
SymfonyLive Paris 2025 : Passkeys pour une authentification fluide et sécurisée

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.

To

Jan 21, 2025, 11:30:10 AM | Symfony
Join us for SymfonyDay Chicago – March 17, 2025!

Mark your calendars for March 17, 2025 because SymfonyDay Chicago 2025 promises to be a one-of-a-kind event that you won’t want to miss! This full day is dedicated to celebrating the incredible contri

Jan 20, 2025, 7:20:03 PM | Symfony
A Week of Symfony #942 (13-19 January 2025)

This week, Symfony celebrated the SymfonyOnline January 2025 conference. In addition, it announced the new Symfony UX Core Team. Lastly, the upcoming Symfony 7.3 version simplified the configuration o

Jan 19, 2025, 8:30:08 AM | Symfony
Announcing the Symfony UX Core Team

The Symfony UX initiative was announced in December 2020. It was introduced to enhance the developer experience by integrating JavaScript tools and libraries more seamlessly with Symfony applications,

Jan 13, 2025, 3:40:04 PM | Symfony
A Week of Symfony #941 (6-12 January 2025)

This week, Symfony development activity was very intense. The upcoming Symfony 7.3 version added a Slug constraint, introduced support for union types in OptionsResolver, enabled using HTTP/3 with the

Jan 12, 2025, 9:30:12 AM | Symfony