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 895d796

Browse filesBrowse files
authored
Merge pull request #36232 from fabpot/release-4.4.6
released v4.4.6
2 parents 7f5d017 + f43ceee commit 895d796
Copy full SHA for 895d796

File tree

2 files changed

+40
-2
lines changed
Filter options

2 files changed

+40
-2
lines changed

‎CHANGELOG-4.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.4.md
+38Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@ in 4.4 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.4.0...v4.4.1
99

10+
* 4.4.6 (2020-03-27)
11+
12+
* bug #36169 [HttpKernel] fix locking for PHP 7.4+ (nicolas-grekas)
13+
* bug #36175 [Security/Http] Remember me: allow to set the samesite cookie flag (dunglas)
14+
* bug #36173 [Http Foundation] Fix clear cookie samesite (guillbdx)
15+
* bug #36176 [Security] Check if firewall is stateless before checking for session/previous session (koenreiniers)
16+
* bug #36149 [Form] Support customized intl php.ini settings (jorrit)
17+
* bug #36172 [Debug] fix for PHP 7.3.16+/7.4.4+ (nicolas-grekas)
18+
* bug #36151 [Security] Fixed hardcoded value of SODIUM_CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE (lyrixx)
19+
* bug #36141 Prevent warning in proc_open() (BenMorel)
20+
* bug #36143 [FrameworkBundle] Fix Router Cache (guillbdx)
21+
* bug #36103 [DI] fix preloading script generation (nicolas-grekas)
22+
* bug #36118 [Security/Http] don't require the session to be started when tracking its id (nicolas-grekas)
23+
* bug #36108 [DI] Fix CheckTypeDeclarationPass (guillbdx)
24+
* bug #36121 [VarDumper] fix side-effect by not using mt_rand() (nicolas-grekas)
25+
* bug #36073 [PropertyAccess][DX] Improved errors when reading uninitialized properties (HeahDude)
26+
* bug #36063 [FrameworkBundle] start session on flashbag injection (William Arslett)
27+
* bug #36031 [Console] Fallback to default answers when unable to read input (ostrolucky)
28+
* bug #36083 [DI][Form] Fixed test suite (TimeType changes & unresolved merge conflict) (wouterj)
29+
* bug #36026 [Mime] Fix boundary header (guillbdx)
30+
* bug #36020 [Form] ignore microseconds submitted by Edge (xabbuh)
31+
* bug #36038 [HttpClient] disable debug log with curl 7.64.0 (nicolas-grekas)
32+
* bug #36041 fix import from config file using type: glob (Tobion)
33+
* bug #35987 [DoctrineBridge][DoctrineExtractor] Fix wrong guessed type for "json" type (fancyweb)
34+
* bug #35949 [DI] Fix container lint command when a synthetic service is used in an expression (HypeMC)
35+
* bug #36023 [HttpClient] fix requests to hosts that idn_to_ascii() cannot handle (nicolas-grekas)
36+
* bug #35938 [Form] Handle false as empty value on expanded choices (fancyweb)
37+
* bug #36030 [SecurityBundle] Minor fix in LDAP config tree builder (HeahDude)
38+
* bug #35993 Remove int return type from FlattenException::getCode (wucdbm)
39+
* bug #36004 [Yaml] fix dumping strings containing CRs (xabbuh)
40+
* bug #35982 [DI] Fix XmlFileLoader bad error message (przemyslaw-bogusz)
41+
* bug #35957 [DI] ignore extra tags added by autoconfiguration in PriorityTaggedServiceTrait (nicolas-grekas)
42+
* bug #35937 Revert "bug symfony#28179 [DomCrawler] Skip disabled fields processing in Form" (dmaicher)
43+
* bug #35928 [Routing] Prevent localized routes _locale default & requirement from being overridden (fancyweb)
44+
* bug #35912 [FrameworkBundle] register only existing transport factories (xabbuh)
45+
* bug #35899 [DomCrawler] prevent deprecation being triggered from assertion (xabbuh)
46+
* bug #35910 [SecurityBundle] Minor fixes in configuration tree builder (HeahDude)
47+
1048
* 4.4.5 (2020-02-29)
1149

1250
* bug #35781 [Form] NumberToLocalizedStringTransformer return int if scale = 0 (VincentLanglet)

‎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
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676

7777
private static $freshCache = [];
7878

79-
const VERSION = '4.4.6-DEV';
79+
const VERSION = '4.4.6';
8080
const VERSION_ID = 40406;
8181
const MAJOR_VERSION = 4;
8282
const MINOR_VERSION = 4;
8383
const RELEASE_VERSION = 6;
84-
const EXTRA_VERSION = 'DEV';
84+
const EXTRA_VERSION = '';
8585

8686
const END_OF_MAINTENANCE = '11/2022';
8787
const END_OF_LIFE = '11/2023';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.