8000 Merge pull request #23367 from fabpot/release-2.8.23 · symfony/symfony@bca31e4 · GitHub
[go: up one dir, main page]

Skip to content

Commit bca31e4

Browse files
authored
Merge pull request #23367 from fabpot/release-2.8.23
released v2.8.23
2 parents 26c5fc0 + f9b4223 commit bca31e4

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ 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.23 (2017-07-04)
11+
12+
* bug #23341 [DoctrineBridge][Security][Validator] do not validate empty values (xabbuh)
13+
* bug #23274 Display a better error design when the toolbar cannot be displayed (yceruto)
14+
* bug #23333 [PropertyAccess] Fix TypeError discard (dunglas)
15+
* bug #23345 [Console] fix description of INF default values (xabbuh)
16+
* bug #23279 Don't call count on non countable object (pierredup)
17+
* bug #23283 [TwigBundle] add back exception check (xabbuh)
18+
* bug #23268 Show exception is checked twice in ExceptionController of twig (gmponos)
19+
* bug #23266 Display a better error message when the toolbar cannot be displayed (javiereguiluz)
20+
* bug #23271 [FrameworkBundle] allow SSI fragments configuration in XML files (xabbuh)
21+
* bug #23254 [Form][TwigBridge] render hidden _method field in form_rest() (xabbuh)
22+
* bug #23250 [Translation] return fallback locales whenever possible (xabbuh)
23+
* bug #23240 [Console] Fix catching exception type in QuestionHelper (voronkovich)
24+
* bug #23229 [WebProfilerBundle] Eliminate line wrap on count column (routing) (e-moe)
25+
* bug #22732 [Security] fix switch user _exit without having current token (dmaicher)
26+
* bug #22730 [FrameworkBundle] Sessions: configurable "use_strict_mode" option for NativeSessionStorage (MacDada)
27+
* bug #23195 [FrameworkBundle] [Command] Clean bundle directory, fixes #23177 (NicolasPion)
28+
* bug #23052 [TwigBundle] Add Content-Type header for exception response (rchoquet)
29+
* bug #23199 Reset redirectCount when throwing exception (hvanoch)
30+
* bug #23186 [TwigBundle] Move template.xml loading to a compiler pass (ogizanagi)
31+
* bug #23130 Keep s-maxage when expiry and validation are used in combination (mpdude)
32+
* bug #23129 Fix two edge cases in ResponseCacheStrategy (mpdude)
33+
* feature #22636 [Routing] Expose request in route conditions, if needed and possible (ro0NL)
34+
* bug #22636 [Routing] Expose request in route conditions, if needed and possible (ro0NL)
35+
* bug #23057 [Translation][FrameworkBundle] Fix resource loading order inconsistency reported in #23034 (mpdude)
36+
* bug #23092 [Filesystem] added workaround in Filesystem::rename for PHP bug (VolCh)
37+
* bug #23128 [HttpFoundation] fix for Support for new 7.1 session options (vincentaubert)
38+
* bug #23176 [VarDumper] fixes (nicolas-grekas)
39+
* bug #22953 #22839 - changed debug toolbar dump section to relative and use full window width (mkurzeja)
40+
* bug #23086 [FrameworkBundle] Fix perf issue in CacheClearCommand::warmup() (nicolas-grekas)
41+
* bug #23098 Cache ipCheck (2.7) (gonzalovilaseca)
42+
* bug #23069 [SecurityBundle] Show unique Inherited roles in profile panel (yceruto)
43+
1044
* 2.8.22 (2017-06-07)
1145

1246
* bug #23073 [TwigBridge] Fix namespaced classes (ogizanagi)

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.23-DEV';
62+
const VERSION = '2.8.23';
6363
const VERSION_ID = 20823;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 23;
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