diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index 803e9bf627..1f2a2de81d 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -7,6 +7,26 @@ in 3.4 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.4.0...v3.4.1 +* 3.4.18 (2018-11-03) + + * bug #28820 [DependencyInjection] Fix tags on multiple decorated service (Soner Sayakci) + * bug #29020 Fix ini_get() for boolean values (deguif) + * feature #28893 [TwigBundle] Fix usage of TwigBundle without FrameworkBundle (tgalopin) + * bug #28861 [DependencyInjection] Skip empty proxy code (olvlvl) + * bug #28801 Convert InsufficientAuthenticationException to HttpException with 401 status code (vincentchalamon) + * bug #28840 add missing double-quotes to extra_fields output message (danielkay) + * bug #28712 [Form] reverse transform RFC 3339 formatted dates (xabbuh) + * bug #28813 Fix for race condition in console output stream write (rudolfratusinski) + * bug #27772 [Console] Fixes multiselect choice question defaults in non-interactive mode (veewee) + * bug #28835 [FrameworkBundle] Setting missing default paths under BC layer (yceruto) + * bug #28760 [DI] fix dumping inline services again (nicolas-grekas) + * bug #28689 [Process] fix locking of pipe files on Windows (nicolas-grekas) + * bug #28704 [Form] fix multi-digit seconds fraction handling (xabbuh) + * bug #28793 [SecurityBundle] do not override custom access decision configs (xabbuh) + * bug #28783 [FrameworkBundle] add missing cache prefix seed attribute to XSD (xabbuh) + * bug #28072 [Security] Do not deauthenticate user when the first refreshed user has changed (gpekz) + * bug #28735 [FWBundle] Automatically enable PropertyInfo when using Flex (dunglas) + * 3.4.17 (2018-10-03) * bug #28604 [Finder] fixed root directory access for ftp/sftp wrapper (DerDu) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 2e9d751091..f0137c6842 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.18-DEV'; + const VERSION = '3.4.18'; const VERSION_ID = 30418; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; const RELEASE_VERSION = 18; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2020'; const END_OF_LIFE = '11/2021';