Skip to content

Commit 4368848

Browse files
authored
Merge pull request symfony#35539 from fabpot/release-4.3.11
released v4.3.11
2 parents 6514fa3 + 26557c0 commit 4368848

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG-4.3.md

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ 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.11 (2020-01-31)
11+
12+
* bug #35530 [HttpClient] Fix regex bearer (noniagriconomie)
13+
* bug #35532 [Validator] fix access to uninitialized property when getting value (greedyivan)
14+
* bug #35305 [HttpKernel] Fix stale-if-error behavior, add tests (mpdude)
15+
* bug #34808 [PhpUnitBridge] Properly handle phpunit arguments for configuration file (biozshock)
16+
* bug #35480 [Messenger] Check for all serialization exceptions during message dec… (Patrick Berenschot)
17+
* bug #35428 [Cache] fix checking for igbinary availability (nicolas-grekas)
18+
1019
* 4.3.10 (2020-01-21)
1120

1221
* bug #35364 [Yaml] Throw on unquoted exclamation mark (fancyweb)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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.11-DEV';
76+
const VERSION = '4.3.11';
7777
const VERSION_ID = 40311;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 3;
8080
const RELEASE_VERSION = 11;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

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

0 commit comments

Comments
 (0)