Skip to content

Commit

Permalink
Merge pull request #22284 from fabpot/release-2.8.19
Browse files Browse the repository at this point in the history
released v2.8.19
  • Loading branch information
fabpot committed Apr 5, 2017
2 parents 200b45e + 19ccd43 commit da35163
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG-2.8.md
Expand Up @@ -7,6 +7,46 @@ in 2.8 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/v2.8.0...v2.8.1

* 2.8.19 (2017-04-05)

* bug #22265 Allow Upper Case property names (insekticid)
* bug #22258 [DI] Autowiring and factories are incompatible with each others (nicolas-grekas)
* bug #22254 [DI] Don't use auto-registered services to populate type-candidates (nicolas-grekas)
* bug #22229 [ExpressionLanguage] Provide the expression in syntax errors (k0pernikus, stof)
* bug #22251 [PropertyInfo] Support nullable array or collection (4rthem)
* bug #22240 [DI] Fix fatal error at ContainerBuilder::compile() if config is not installed (chalasr)
* bug #22140 [Form] Improve the exceptions when trying to get the data in a PRE_SET_DATA listener and the data has not already been set (fancyweb)
* bug #22217 [Console] Fix table cell styling (ro0NL)
* bug #22194 [Console] CommandTester: disable color support detection (julienfalque)
* bug #22188 [Console] Revised exception rendering (ro0NL)
* bug #22154 [WebProfilerBundle] Normalize whitespace in exceptions passed in headers (curry684)
* bug #22142 [Console] Escape exception messages in renderException (chalasr)
* bug #22172 Fix port usage in server:status command (alcaeus)
* bug #22164 [Bridge\Doctrine] Fix change breaking doctrine-bundle test suite (nicolas-grekas)
* bug #22133 [Filesystem] normalize paths before making them relative (xabbuh)
* bug #22138 [HttpFoundation][bugfix] $bags should always be initialized (MacDada)
* bug #21810 #21809 [SecurityBundle] bugfix: if security provider's name contains upper cases then container didn't compile (Antanas Arvasevicius)
* bug #22123 [WebProfilerBundle] Fix for CSS attribute at Profiler Translation Page (e-moe)
* bug #19778 [Security] Fixed roles serialization on token from user object (eko)
* bug #22036 Set Date header in Response constructor already (mpdude)
* bug #22022 [Validator] fix URL validator to detect non supported chars according to RFC 3986 (e-moe)
* bug #21849 [HttpFoundation] Fix missing handling of for/host/proto info from "Forwarded" header (nicolas-grekas)
* bug #21968 Fixed pathinfo calculation for requests starting with a question mark. (syzygymsu)
* bug #22027 Revert "bug #21841 [Console] Do not squash input changes made from console.command event (chalasr)" (chalasr)
* bug #21846 [HttpFoundation] Fix Request::getHost() when having several hosts in X_FORWARDED_HOST (nicolas-grekas)
* bug #21208 [Validator] Add object handling of invalid constraints in Composite (SenseException)
* bug #22044 [Serializer] [XML] Ignore Process Instruction (jordscream)
* bug #22079 [HttpKernel] Fixed bug with purging of HTTPS URLs (ausi)
* bug #21523 #20411 fix Yaml parsing for very long quoted strings (RichardBradley)
* bug #22001 [Doctrine Bridge] fix priority for doctrine event listeners (dmaicher)
* bug #21981 [Console] Use proper line endings in BufferedOutput (julienfalque)
* bug #21976 [VarDumper] Add missing isset() checks in some casters (nicolas-grekas)
* bug #21957 [Form] Choice type int values (BC Fix) (mcfedr)
* bug #21923 [travis] Test with hhvm 3.18 (nicolas-grekas)
* bug #21823 dumpFile(), preserve existing file permissions (chs2)
* bug #21865 [Security] context listener: hardening user provider handling (xabbuh)
* bug #21883 [HttpKernel] fix Kernel name when stored in a directory starting with a number (fabpot)

* 2.8.18 (2017-03-06)

* bug #21841 [Console] Do not squash input changes made from console.command event (chalasr)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;

const VERSION = '2.8.19-DEV';
const VERSION = '2.8.19';
const VERSION_ID = 20819;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 8;
const RELEASE_VERSION = 19;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '11/2018';
const END_OF_LIFE = '11/2019';
Expand Down

0 comments on commit da35163

Please sign in to comment.