Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v4.3.0-BETA2 #31577

Merged
merged 2 commits into from May 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
45 changes: 45 additions & 0 deletions CHANGELOG-4.3.md
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -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';
Expand Down