From 5942fc48e94e5cd6029657d70459c56c4d4c450a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 22 May 2019 11:37:08 +0200 Subject: [PATCH 1/2] updated CHANGELOG for 4.3.0-BETA2 --- CHANGELOG-4.3.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/CHANGELOG-4.3.md b/CHANGELOG-4.3.md index a045a58269..26e086b34e 100644 --- a/CHANGELOG-4.3.md +++ b/CHANGELOG-4.3.md @@ -7,6 +7,51 @@ in 4.3 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/v4.3.0...v4.3.1 +* 4.3.0-BETA2 (2019-05-22) + + * bug #31569 [HttpClient] Only use CURLMOPT_MAX_HOST_CONNECTIONS & CURL_VERSION_HTTP2 if defined (GawainLynch) + * bug #31566 [Security] fixed a fatal error when upgrading from 4.2 (fabpot) + * bug #31219 [HttpClient] Allow arrays as query parameters (sleepyboy) + * bug #31482 [Messenger][DoctrineBridge] Throws UnrecoverableMessageHandlingException when passed invalid entity manager name (Koc) + * feature #31471 [Messenger] Add "non sendable" stamps (weaverryan) + * bug #31545 [Messenger] Fix redis Connection::get() should be non blocking by default (chalasr) + * bug #31537 [Workflow] use method marking store (noniagriconomie) + * bug #31551 [ProxyManager] isProxyCandidate() does not take into account interfaces (andrerom) + * bug #31542 [HttpClient] add missing argument check (nicolas-grekas) + * bug #31544 [Messenger] Fix undefined index on read timeout (chalasr) + * bug #31335 [Doctrine] Respect parent class contract in ContainerAwareEventManager (Koc) + * bug #31421 [Routing][AnnotationClassLoader] fix utf-8 encoding in default route name (przemyslaw-bogusz) + * bug #31493 [EventDispatcher] Removed "callable" type hint from WrappedListener constructor (wskorodecki) + * bug #31502 [WebProfilerBundle][Form] The form data collector return serialized data (Simperfit) + * bug #31510 Use the current working dir as default first arg in 'link' binary (lyrixx) + * bug #31524 [HttpFoundation] prevent deprecation when filesize matches error code (xabbuh) + * bug #31535 [Debug] Wrap call to require_once in a try/catch (lyrixx) + * feature #31030 [Serializer] Deprecate calling createChildContext without the format parameter (dbu) + * bug #31459 Fix the interface incompatibility of EventDispatchers (keulinho) + * bug #31463 [DI] default to service id - *not* FQCN - when building tagged locators (nicolas-grekas) + * feature #31294 [Form] Add intl/choice_translation_locale option to TimezoneType (ro0NL) + * feature #31452 [FrameworkBundle] Add cache configuration for PropertyInfo (alanpoulain) + * feature #31486 [Doctrine][PropertyInfo] Detect if the ID is writeable (dunglas) + * bug #31481 [Validator] Autovalidation: skip readonly props (dunglas) + * bug #31480 Update dependencies in the main component (DavidPrevot) + * bug #31477 [PropertyAccess] Add missing property to PropertyAccessor (vudaltsov) + * bug #31479 [Cache] fix saving unrelated keys in recursive callback calls (nicolas-grekas) + * bug #30930 [FrameworkBundle] Fixed issue when a parameter contains a '' (lyrixx) + * bug #31438 [Serializer] Fix denormalization of object with variadic constructor typed argument (ajgarlag) + * bug #31445 [Messenger] Making cache rebuild correctly when message subscribers change (weaverryan) + * bug #31442 [Validator] Fix finding translator parent definition in compiler pass (deguif) + * bug #31475 [HttpFoundation] Allow set 'None' on samesite cookie flag (markitosgv) + * feature #31454 [Messenger] remove send_and_handle which can be achieved with SyncTransport (Tobion) + * bug #31425 [Messenger] On failure retry, make message appear received from original sender (weaverryan) + * bug #31472 [Messenger] Fix routable message bus default bus (weaverryan) + * bug #31465 [Serializer] Fix BC break: DEPTH_KEY_PATTERN must be public (dunglas) + * bug #31458 [TwigBundle] Fix Mailer integration in Twig (fabpot) + * bug #31456 Remove deprecated usage of some Twig features (fabpot) + * bug #31207 [Routing] Fixed unexpected 404 NoConfigurationException (yceruto) + * bug #31261 [Console] Commands with an alias should not be recognized as ambiguous when using register (Simperfit) + * bug #31371 [DI] Removes number of elements information in debug mode (jschaedl) + * bug #31418 [FrameworkBundle] clarify the possible class/interface of the cache (xabbuh) + * 4.3.0-BETA1 (2019-05-09) * feature #31249 [Translator] Set sources when extracting strings from php files (Stadly) From de658193998ceff0e6e7eb44bb8ccbfb9af87f64 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 22 May 2019 11:37:23 +0200 Subject: [PATCH 2/2] updated VERSION for 4.3.0-BETA2 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 0dcdc717d9..379d0b32c4 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '4.3.0-DEV'; + const VERSION = '4.3.0-BETA2'; const VERSION_ID = 40300; const MAJOR_VERSION = 4; const MINOR_VERSION = 3; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = 'BETA2'; const END_OF_MAINTENANCE = '01/2020'; const END_OF_LIFE = '07/2020';