Symfony 4.4.22 has just been released. Here is a list of the most important changes:
bug #40993 [Security] [Security/Core] fix checking for bcrypt (@nicolas-grekas) bug #40923 [Yaml] expose references detected in inline notation structures (@xabbuh) bug #40964 [HttpFoundation] Fixes for PHP 8.1 deprecations (@jrmajor) bug #40514 [Yaml] Allow tabs as separators between tokens (@bertramakers) bug #40882 [Cache] phpredis: Added full TLS support for RedisCluster (@jackthomasatl)
Symfony 5.2.7 has just been released. Here is a list of the most important changes:
bug #41008 [Security] Do not try to rehash null-passwords (@tjveldhuizen) bug #40993 [Security] [Security/Core] fix checking for bcrypt (@nicolas-grekas) bug #40923 [Yaml] expose references detected in inline notation structures (@xabbuh) bug #40964 [HttpFoundation] Fixes for PHP 8.1 deprecations (@jrmajor) bug #40919 [Mailer] use correct spelling when accessing the SMTP php.ini value (@xabbu
Symfony 5.3.0-BETA2 has just been released. Here is a list of the most important changes:
feature #41002 [FrameworkBundle][HttpKernel] Move IDE file link formats from FrameworkExtension to FileLinkFormatter (@MatTheCat) bug #41014 [Routing] allow extending Route attribute (@robmro27) feature #39913 [OptionsResolver] Add prototype definition support for nested options (@yceruto) bug #41008 [Security] Do not try to rehash null-passwords (@tjveldhuizen) bug #41013 [Console] Remove
Contributed by Kévin Dunglas in #40799.
The recommended way of processing Symfony forms is to use a single action for both rendering the form and handling the form submit. This is how it looks in practice: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21// src/Controller/ConferenceController.php // ...
[Route('/{id}/edit', name: 'conference_edit', method
Contributed by Robin Chalas in #39802.
Hashing passwords is the process of applying a cryptographic hash function to transform the original plain text password into a different non-guessable value which is infeasible to invert. For historical reasons, Symfony uses the term “password encoding” when it should really refer to “password hashing”. This has caused some confusion for people
Estamos encantados de organizar la primera conferencia oficial de Symfony en español 100% online, SymfonyLive Online Spanish Edition 2021, la próxima semana el 7 de mayo. Si todavía no conoces el programa de la conferencia, ¡descubre las charlas seleccionadas y los fantásticos ponentes que van a compartir su experiencia con Symfony durante la conferencia!
Además de la conferencia, organizamos unos talleres los días anteriores, en inglés, los días 5 y 6 de mayo. Una oportunidad única para aprend
Contributed by Kevin Bond in #40449.
Tailwind CSS is the most popular utility-first CSS framework. Its unique (and odd-looking at first) philosophy is making it a resounding success and it’s reshaping the way many applications manage their CSS. Symfony includes ready-to-use themes to make your forms match the look and feel of other popular frameworks such as Bootstrap and Foundation. T
Contributed by Greg Anderson and Jérémy Derussé in #39642.
In some console commands it’s common to define two related options with opposite behaviors. For example, the default options applied to all Symfony commands include the --ansi and --no-ansi options: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17// ... use Symfony\Component\Console\
Recientemente anunciamos la primera y segunda partes del programa de la conferencia SymfonyLive Online Spanish Edition 2021 que se organizará el 7 de mayo. También anunciamos todos los ponentes seleccionados para presentarte todas las novedades de Symfony y su ecosistema en la primera conferencia oficial de Symfony en español 100% online. Las keynotes que ya anunciamos serán en inglés con subtítulos en español. El replay completo de la conferencia estará disponible en cuanto termine la conferenc
Symfony 5.3 will be released in May 2021. This is the first article of the series that shows the most important new features introduced by this Symfony version.
Contributed by
Tobias Nyholm
in #40600.
Symfony applications can use YAML, XML and/or PHP as their configuration format. Each of them has its advantages and its drawbacks, so we intend to keep supporting the three of them equ