8000 Merge pull request #31577 from fabpot/release-4.3.0-BETA2 · symfony/symfony@b7366a2 · GitHub
[go: up one dir, main page]

Skip to content

Commit b7366a2

Browse files
authored
Merge pull request #31577 from fabpot/release-4.3.0-BETA2
released v4.3.0-BETA2
2 parents 274ff66 + de65819 commit b7366a2

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

CHANGELOG-4.3.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,51 @@ in 4.3 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.3.0...v4.3.1
99

10+
* 4.3.0-BETA2 (2019-05-22)
11+
12+
* bug #31569 [HttpClient] Only use CURLMOPT_MAX_HOST_CONNECTIONS & CURL_VERSION_HTTP2 if defined (GawainLynch)
13+
* bug #31566 [Security] fixed a fatal error when upgrading from 4.2 (fabpot)
14+
* bug #31219 [HttpClient] Allow arrays as query parameters (sleepyboy)
15+
* bug #31482 [Messenger][DoctrineBridge] Throws UnrecoverableMessageHandlingException when passed invalid entity manager name (Koc)
16+
* feature #31471 [Messenger] Add "non sendable" stamps (weaverryan)
17+
* bug #31545 [Messenger] Fix redis Connection::get() should be non blocking by default (chalasr)
18+
* bug #31537 [Workflow] use method marking store (noniagriconomie)
19+
* bug #31551 [ProxyManager] isProxyCandidate() does not take into account interfaces (andrerom)
20+
* bug #31542 [HttpClient] add missing argument check (nicolas-grekas)
21+
* bug #31544 [Messenger] Fix undefined index on read timeout (chalasr)
22+
* bug #31335 [Doctrine] Respect parent class contract in ContainerAwareEventManager (Koc)
23+
* bug #31421 [Routing][AnnotationClassLoader] fix utf-8 encoding in default route name (przemyslaw-bogusz)
24+
* bug #31493 [EventDispatcher] Removed "callable" type hint from WrappedListener constructor (wskorodecki)
25+
* bug #31502 [WebProfilerBundle][Form] The form data collector return serialized data (Simperfit)
26+
* bug #31510 Use the current working dir as default first arg in 'link' binary (lyrixx)
27+
* bug #31524 [HttpFoundation] prevent deprecation when filesize matches error code (xabbuh)
28+
* bug #31535 [Debug] Wrap call to require_once in a try/catch (lyrixx)
29+
* feature #31030 [Serializer] Deprecate calling createChildContext without the format parameter (dbu)
30+
* bug #31459 Fix the interface incompatibility of EventDispatchers (keulinho)
31+
* bug #31463 [DI] default to service id - *not* FQCN - when building tagged locators (nicolas-grekas)
32+
* feature #31294 [Form] Add intl/choice_translation_locale option to TimezoneType (ro0NL)
33+
* feature #31452 [FrameworkBundle] Add cache configuration for PropertyInfo (alanpoulain)
34+
* feature #31486 [Doctrine][PropertyInfo] Detect if the ID is writeable (dunglas)
35+
* bug #31481 [Validator] Autovalidation: skip readonly props (dunglas)
36+
* bug #31480 Update dependencies in the main component (DavidPrevot)
37+
* bug #31477 [PropertyAccess] Add missing property to PropertyAccessor (vudaltsov)
38+
* bug #31479 [Cache] fix saving unrelated keys in recursive callback calls (nicolas-grekas)
39+
* bug #30930 [FrameworkBundle] Fixed issue when a parameter contains a '' (lyrixx)
40+
* bug #31438 [Serializer] Fix denormalization of object with variadic constructor typed argument (ajgarlag)
41+
* bug #31445 [Messenger] Making cache rebuild correctly when message subscribers change (weaverryan)
42+
* bug #31442 [Validator] Fix finding translator parent definition in compiler pass (deguif)
43+
* bug #31475 [HttpFoundation] Allow set 'None' on samesite cookie flag (markitosgv)
44+
* feature #31454 [Messenger] remove send_and_handle which can be achieved with SyncTransport (Tobion)
45+
* bug #31425 [Messenger] On failure retry, make message appear received from original sender (weaverryan)
46+
* bug #31472 [Messenger] Fix routable message bus default bus (weaverryan)
47+
* bug #31465 [Serializer] Fix BC break: DEPTH_KEY_PATTERN must be public (dunglas)
48+
* bug #31458 [TwigBundle] Fix Mailer integration in Twig (fabpot)
49+
* bug #31456 Remove deprecated usage of some Twig features (fabpot)
50+
* bug #31207 [Routing] Fixed unexpected 404 NoConfigurationException (yceruto)
51+
* bug #31261 [Console] Commands with an alias should not be recognized as ambiguous when using register (Simperfit)
52+
* bug #31371 [DI] Removes number of elements information in debug mode (jschaedl)
53+
* bug #31418 [FrameworkBundle] clarify the possible class/interface of the cache (xabbuh)
54+
1055
* 4.3.0-BETA1 (2019-05-09)
1156

1257
* feature #31249 [Translator] Set sources when extracting strings from php files (Stadly)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373
private $requestStackSize = 0;
7474
private $resetServices = false;
7575

76-
const VERSION = '4.3.0-DEV';
76+
const VERSION = '4.3.0-BETA2';
7777
const VERSION_ID = 40300;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 3;
8080
const RELEASE_VERSION = 0;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = 'BETA2';
8282

8383
const END_OF_MAINTENANCE = '01/2020';
8484
const END_OF_LIFE = '07/2020';

0 commit comments

Comments
 (0)
0