Skip to content

Release v4.4.4 #35540

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG-4.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ in 4.4 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.4.0...v4.4.1

* 4.4.4 (2020-01-31)

* bug #35530 [HttpClient] Fix regex bearer (noniagriconomie)
* bug #35532 [Validator] fix access to uninitialized property when getting value (greedyivan)
* bug #35486 [Translator] Default value for 'sort' option in translation:update should be 'asc' (versgui)
* bug #35305 [HttpKernel] Fix stale-if-error behavior, add tests (mpdude)
* bug #34808 [PhpUnitBridge] Properly handle phpunit arguments for configuration file (biozshock)
* bug #35517 [Intl] Provide more locale translations (ro0NL)
* bug #35518 [Mailer] Fix STARTTLS support for Postmark and Mandrill (fabpot)
* bug #35480 [Messenger] Check for all serialization exceptions during message dec… (Patrick Berenschot)
* bug #35502 [Messenger] Fix bug when using single route with XML config (Nyholm)
* bug #35438 [SecurityBundle] fix ldap_bind service arguments (Ioni14)
* bug #35429 [DI] CheckTypeDeclarationsPass now checks if value is type of parameter type (pfazzi)
* bug #35464 [ErrorHandler] Add debug argument to decide whether debug page is shown or not (yceruto)
* bug #35423 Fixes a runtime error when accessing the cache panel (DamienHarper)
* bug #35428 [Cache] fix checking for igbinary availability (nicolas-grekas)
* bug #35424 [HttpKernel] Check if lock can be released (sjadema)

* 4.4.3 (2020-01-21)

* bug #35364 [Yaml] Throw on unquoted exclamation mark (fancyweb)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl

private static $freshCache = [];

const VERSION = '4.4.4-DEV';
const VERSION = '4.4.4';
const VERSION_ID = 40404;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 4;
const RELEASE_VERSION = 4;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '11/2022';
const END_OF_LIFE = '11/2023';
Expand Down