New in Symfony 6.1: Misc. Improvements

Symfony 6.1 has just been released. During the past weeks we've published lots of articles about the most important Symfony 6.1 features. In this article, the last one in the Symfony 6.1 series, we showcase some minor but interesting features introduced by Symfony 6.1.

Configure the Deprecation Messages to Ignore

        Contributed by Mondrake
         in #45226.

If your application has some deprecations that you can't fix yet for some reasons, you can tell Symfony to ignore them. First, create a text file where each line is a deprecation to ignore defined as a regular expression:

    # tests/baseline-ignore.txt

%The "PHPUnit\Framework\TestCase::addWarning()" method is considered internal%

Then, you can run the following command to use that file and ignore those deprecations:

    $ SYMFONY_DEPRECATIONS_HELPER='ignoreFile=./tests/baseline-ignore.txt' ./vendor/bin/simple-phpunit

Allow to Exclude Services from Tagged Iterators and Locators

        Contributed by Ruud Kamphuis
         in #44774.

When working with the Delegation pattern or the Chain-of-responsibility pattern it's common that the service that gets a list of services implementing a certain interface, to also implement that interface itself. For example, in Symfony, the ChainCacheClearer class implements CacheClearerInterface and calls a list of services implementing CacheClearerInterface. In those cases you cannot use autowiring because the main service would receive it itself in the list of services implementing the interface. In Symfony 6.1 we've improved TaggedIterator and TaggedLocator to allow you exclude some services via the new exclude option:

    final class DelegatingErrorTracker implements ErrorTracker

{ public function __construct(

[TaggedIterator(ErrorTracker::class, exclude: self::class)]

    private iterable $trackers
) {}

public function trackError(string $error): void
{
    // ...
}

}

Use Route Parameters in Route Conditions

        Contributed by HypeMC
         in #46042.

Symfony provides a powerful feature to define route conditions as expressions. In Symfony 6.1 we've improved it so you can use the matched route parameters in the expression that is evaluated to decide if the route matches or not. Use the new params variable and pass the name of the route parameter that you want to get:

    class FooController

{

[Route('/foo/{id}', requirements: ['id' => '\d+'], condition: "params['id'] < 100")]

public function index(int $id): Response
{
    // ...
}

}

Support Canners in Object Normalizer

        Contributed by Rokas Mikalkėnas
         in #45282.

Currently, the Serializer component can normalize properties with methods that start with get, set, has, is, add or remove (e.g. getUser(), isPublished(), addCategory(), etc.) In Symfony 6.1, the Serializer will also be able to normalize "canner methods", which are those that start with the can prefix (e.g. canPublish(), canApprove(), etc.)

Detailed Checks for Collection Items Uniqueness

        Contributed by Wojciech Kania
         in #42403.

When combining the Unique constraint with the Collection constraint, all the properties of the collection elements are checked to be unique. In Symfony 6.1 we've improved the Unique constraint to allow defining which collection fields should be checked for uniqueness. The following example validates that each translation of the same resource must be in a different language:

    use Symfony\Component\Validator\Constraints as Assert;

[Assert\Count(min: 1)]

[Assert\Unique(fields: ['language'])]

[Assert\Collection(fields: [

'language' => [
    new Assert\NotBlank,
    new Assert\Length(min: 2, max: 2),
    new Assert\Language,
],
'title' => [
    new Assert\NotBlank,
    new Assert\Length(max; 255),
],
'description' => [
    new Assert\NotBlank,
    new Assert\Length(max: 255),
],

])] public array $translations = [];

A Command to Invalidate Cache Tags

        Contributed by Kevin Bond
         in #44692.

Using cache tags is a way to group different cache items based on arbitrary criteria so you can later invalidate those items more efficiently. In Symfony 6.1 we've added a new cache:pool:invalidate-tags command so you can invalidate those cache tags directly in the command line:

    # invalidate `tag1` and `tag2` from all pools

$ php bin/console cache:pool:invalidate-tags tag1 tag2

invalidate tag1 and tag2 only from a specific pool

$ php bin/console cache:pool:invalidate-tags tag1 tag2 --pool=cache.app

                Sponsor the Symfony project.

https://symfony.com/blog/new-in-symfony-6-1-misc-improvements?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Vytvorené 3y | 27. 5. 2022, 9:20:09


Ak chcete pridať komentár, prihláste sa

Ostatné príspevky v tejto skupine

Case study: A Long-Term Powerhouse Behind Vente-unique.com's E-Commerce Success (Zero Churn, All Wins!)

Vente-unique.com, a leading European online retailer of furniture and home decor, operates in 11 countries, powered by a team of 400 professionals and serving more than 3 million customers. From 15 ye

2. 7. 2025, 9:10:03 | Symfony
A Week of Symfony #965 (June 23–29, 2025)

This week, Symfony 6.4.23, 7.2.8 and 7.3.1 maintenance versions were released. Meanwhile, the upcoming Symfony 7.4 version continued adding new features such as better controller helpers, more precisi

29. 6. 2025, 9:10:15 | Symfony
Symfony 6.4.23 released

Symfony 6.4.23 has just been released. Read the Symfony upgrade guide to learn more about upgrading Symfony and use the SymfonyInsight upgrade reports to detect the code you will need to change in you

28. 6. 2025, 9:50:15 | Symfony
Symfony 7.2.8 released

Symfony 7.2.8 has just been released. Read the Symfony upgrade guide to learn more about upgrading Symfony and use the SymfonyInsight upgrade reports to detect the code you will need to change in your

28. 6. 2025, 9:50:15 | Symfony
Symfony 7.3.1 released

Symfony 7.3.1 has just been released. Read the Symfony upgrade guide to learn more about upgrading Symfony and use the SymfonyInsight upgrade reports to detect the code you will need to change in your

28. 6. 2025, 9:50:14 | Symfony
A Week of Symfony #964 (June 16–22, 2025)

This week, development activity was intense, with many bug fixes in the maintained branches, numerous deprecation removals in the 8.0 branch, and new features added to the 7.4 branch, including tighte

22. 6. 2025, 8:10:05 | Symfony
SymfonyOnline June 2025: Speakers, Stats & Replays!

Thank you for joining us at SymfonyOnline June 2025!

What a great edition of SymfonyOnline we’ve just wrapped up! 🎉

We were thrilled to welcome 300 participants from 35 different countries—a

18. 6. 2025, 8:50:17 | Symfony