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 a87f0ff

Browse filesBrowse files
authored
Merge pull request #34741 from fabpot/release-4.3.9
released v4.3.9
2 parents 54e2ad7 + 7ac4f90 commit a87f0ff
Copy full SHA for a87f0ff

File tree

2 files changed

+42
-2
lines changed
Filter options

2 files changed

+42
-2
lines changed

‎CHANGELOG-4.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.3.md
+40Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ 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.9 (2019-12-01)
11+
12+
* bug #34649 more robust initialization from request (dbu)
13+
* bug #34671 [Security] Fix clearing remember-me cookie after deauthentication (chalasr)
14+
* bug #34711 Fix the translation commands when a template contains a syntax error (fabpot)
15+
* bug #34560 [Config][ReflectionClassResource] Handle parameters with undefined constant as their default values (fancyweb)
16+
* bug #34695 [Config] don't break on virtual stack frames in ClassExistenceResource (nicolas-grekas)
17+
* bug #34716 [DependencyInjection] fix dumping number-like string parameters (xabbuh)
18+
* bug #34558 [Console] Fix autocomplete multibyte input support (fancyweb)
19+
* bug #34130 [Console] Fix commands description with numeric namespaces (fancyweb)
20+
* bug #34677 [EventDispatcher] Better error reporting when arguments to dispatch() are swapped (rimas-kudelis)
21+
* bug #33573 [TwigBridge] Add row_attr to all form themes (fancyweb)
22+
* bug #34019 [Serializer] CsvEncoder::NO_HEADERS_KEY ignored when used in constructor (Dario Savella)
23+
* bug #34083 [Form] Keep preferred_choices order for choice groups (vilius-g)
24+
* bug #34091 [Debug] work around failing chdir() on Darwin (mary2501)
25+
* bug #34305 [PhpUnitBridge] Read configuration CLI directive (ro0NL)
26+
* bug #34490 [Serializer] Fix MetadataAwareNameConverter usage with string group (antograssiot)
27+
* bug #34632 [Console] Fix trying to access array offset on value of type int (Tavafi)
28+
* bug #34669 [HttpClient] turn exception into log when the request has no content-type (nicolas-grekas)
29+
* bug #34636 [VarDumper] notice on potential undefined index (sylvainmetayer)
30+
* bug #34668 [Cache] Make sure we get the correct number of values from redis::mget() (thePanz)
31+
* bug #34569 [Workflow] Apply the same logic of precedence between the apply() and the buildTransitionBlockerList() method (lyrixx)
32+
* bug #34533 [Monolog Bridge] Fixed accessing static property as non static. (Sander-Toonen)
33+
* bug #34546 [Serializer] Add DateTimeZoneNormalizer into Dependency Injection (jewome62)
34+
* bug #34547 [Messenger] Error when specified default bus is not among the configured (vudaltsov)
35+
* bug #34551 [Security] SwitchUser is broken when the User Provider always returns a valid user (tucksaun)
36+
* bug #34385 Avoid empty "If-Modified-Since" header in validation request (mpdude)
37+
* bug #34458 [Validator] ConstraintValidatorTestCase: add missing return value to mocked validate method calls (ogizanagi)
38+
* bug #34451 [DependencyInjection] Fix dumping multiple deprecated aliases (shyim)
39+
* bug #34448 [Form] allow button names to start with uppercase letter (xabbuh)
40+
* bug #34419 [Cache] Disable igbinary on PHP >= 7.4 (nicolas-grekas)
41+
* bug #34366 [HttpFoundation] Allow redirecting to URLs that contain a semicolon (JayBizzle)
42+
* bug #34397 [FrameworkBundle] Remove project dir from Translator cache vary scanned directories (fancyweb)
43+
* bug #34408 [Cache] catch exceptions when using PDO directly (xabbuh)
44+
* bug #34410 [HttpFoundation] Fix MySQL column type definition. (jbroutier)
45+
* bug #34398 [Config] fix id-generation for GlobResource (nicolas-grekas)
46+
* bug #34396 [Finder] Allow ssh2 stream wrapper for sftp (damienalexandre)
47+
* bug #34383 [DI] Use reproducible entropy to generate env placeholders (nicolas-grekas)
48+
* bug #34381 [WebProfilerBundle] Require symfony/twig-bundle (fancyweb)
49+
1050
* 4.3.8 (2019-11-13)
1151

1252
* bug #34344 [Console] Constant STDOUT might be undefined (nicolas-grekas)

‎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.9-DEV';
76+
const VERSION = '4.3.9';
7777
const VERSION_ID = 40309;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 3;
8080
const RELEASE_VERSION = 9;
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.