Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4368848

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

File tree

2 files changed

+11
-2
lines changed
Filter options

2 files changed

+11
-2
lines changed

‎CHANGELOG-4.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.3.md
+9Lines changed: 9 additions & 0 deletions
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

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.