8000 Merge pull request #24915 from fabpot/release-2.8.29 · symfony/symfony@341df0d · GitHub
[go: up one dir, main page]

Skip to content

Commit 341df0d

Browse files
authored
Merge pull request #24915 from fabpot/release-2.8.29
released v2.8.29
2 parents e6087d6 + 9f5adf0 commit 341df0d

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ in 2.8 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/v2.8.0...v2.8.1
99

10+
* 2.8.29 (2017-11-10)
11+
12+
* bug #24888 [FrameworkBundle] Specifically inject the debug dispatcher in the collector (ogizanagi)
13+
* bug #24909 [Intl] Update ICU data to 60.1 (jakzal)
14+
* bug #24906 [Bridge/ProxyManager] Remove direct reference to value holder property (nicolas-grekas)
15+
* bug #24900 [Validator] Fix Costa Rica IBAN format (Bozhidar Hristov)
16+
* bug #24904 [Validator] Add Belarus IBAN format (Bozhidar Hristov)
17+
* bug #24531 [HttpFoundation] Fix forward-compat of NativeSessionStorage with PHP 7.2 (sroze)
18+
* bug #24665 Fix dump panel hidden when closing a dump (julienfalque)
19+
* bug #24814 [Intl] Make intl-data tests pass and save language aliases again (jakzal)
20+
* bug #24764 [HttpFoundation] add Early Hints to Reponse to fix test (Simperfit)
21+
* bug #24605 [FrameworkBundle] Do not load property_access.xml if the component isn't installed (ogizanagi)
22+
* bug #24606 [HttpFoundation] Fix FileBag issue with associative arrays (enumag)
23+
* bug #24660 Escape trailing \ in QuestionHelper autocompletion (kamazee)
24+
* bug #24644 [Security] Fixed auth provider authenticate() cannot return void (glye)
25+
* bug #24642 [Routing] Fix resource miss (dunglas)
26+
* bug #24608 Adding the Form default theme files to be warmed up in Twig's cache (weaverryan)
27+
* bug #24626 streamed response should return $this (DQNEO)
28+
* bug #24589 Username and password in basic auth are allowed to contain '.' (Richard Quadling)
29+
* bug #24566 Fixed unsetting from loosely equal keys OrderedHashMap (maryo)
30+
* bug #24570 [Debug] Fix same vendor detection in class loader (Jean-Beru)
31+
* bug #24563 [Serializer] ObjectNormalizer: throw if PropertyAccess isn't installed (dunglas)
32+
* bug #24571 [PropertyInfo] Add support for the iterable type (dunglas)
33+
* bug #24579 pdo session fix (mxp100)
34+
* bug #24536 [Security] Reject remember-me token if UserCheckerInterface::checkPostAuth() fails (kbond)
35+
* bug #24519 [Validator] [Twig] added magic method __isset() to File Constraint class (loru88)
36+
* bug #24532 [DI] Fix possible incorrect php-code when dumped strings contains newlines (Strate)
37+
* bug #24502 [HttpFoundation] never match invalid IP addresses (xabbuh)
38+
* bug #24460 [Form] fix parsing invalid floating point numbers (xabbuh)
39+
* bug #24490 [HttpFoundation] Combine Cache-Control headers (c960657)
40+
* bug #23711 Fix support for PHP 7.2 (Simperfit, nicolas-grekas)
41+
* bug #24494 [HttpFoundation] Add missing session.lazy_write config option (nicolas-grekas)
42+
* bug #24434 [Form] Use for=ID on radio/checkbox label. (Nyholm)
43+
* bug #24455 [Console] Escape command usage (sroze)
44+
1045
* 2.8.28 (2017-10-05)
1146

1247
* bug #24448 [Session] fix MongoDb session handler to gc all expired sessions (Tobion)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '2.8.29-DEV';
62+
const VERSION = '2.8.29';
6363
const VERSION_ID = 20829;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 29;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';
7070
const END_OF_LIFE = '11/2019';

0 commit comments

Comments
 (0)
0