Skip to content

Commit bc4a603

Browse files
authored
Merge pull request #23368 from fabpot/release-3.2.10
released v3.2.10
2 parents 04baf86 + af3fcc1 commit bc4a603

File tree

2 files changed

+54
-2
lines changed

2 files changed

+54
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,58 @@ in 3.2 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/v3.2.0...v3.2.1
99

10+
* 3.2.10 (2017-07-04)
11+
12+
* bug #23366 [FrameworkBundle] Don't get() private services from debug:router (chalasr)
13+
* bug #23341 [DoctrineBridge][Security][Validator] do not validate empty values (xabbuh)
14+
* bug #23274 Display a better error design when the toolbar cannot be displayed (yceruto)
15+
* bug #23296 [WebProfilerBundle] Fix css trick used for offsetting html anchor from fixed header (ogizanagi)
16+
* bug #23333 [PropertyAccess] Fix TypeError discard (dunglas)
17+
* bug #23326 [Cache] fix cleanup of expired items for PdoAdapter (dmaicher)
18+
* bug #23345 [Console] fix description of INF default values (xabbuh)
19+
* bug #23299 [Workflow] Added more events to the announce function (Nyholm)
20+
* bug #23279 Don't call count on non countable object (pierredup)
21+
* bug #23283 [TwigBundle] add back exception check (xabbuh)
22+
* bug #23268 Show exception is checked twice in ExceptionController of twig (gmponos)
23+
* bug #23266 Display a better error message when the toolbar cannot be displayed (javiereguiluz)
24+
* bug #23271 [FrameworkBundle] allow SSI fragments configuration in XML files (xabbuh)
25+
* bug #23254 [Form][TwigBridge] render hidden _method field in form_rest() (xabbuh)
26+
* bug #23250 [Translation] return fallback locales whenever possible (xabbuh)
27+
* bug #23240 [Console] Fix catching exception type in QuestionHelper (voronkovich)
28+
* bug #23229 [WebProfilerBundle] Eliminate line wrap on count column (routing) (e-moe)
29+
* bug #22732 [Security] fix switch user _exit without having current token (dmaicher)
30+
* bug #22730 [FrameworkBundle] Sessions: configurable "use_strict_mode" option for NativeSessionStorage (MacDada)
31+
* bug #23195 [FrameworkBundle] [Command] Clean bundle directory, fixes #23177 (NicolasPion)
32+
* bug #23052 [TwigBundle] Add Content-Type header for exception response (rchoquet)
33+
* bug #23199 Reset redirectCount when throwing exception (hvanoch)
34+
* bug #23186 [TwigBundle] Move template.xml loading to a compiler pass (ogizanagi)
35+
* bug #23130 Keep s-maxage when expiry and validation are used in combination (mpdude)
36+
* bug #23129 Fix two edge cases in ResponseCacheStrategy (mpdude)
37+
* feature #22636 [Routing] Expose request in route conditions, if needed and possible (ro0NL)
38+
* bug #22636 [Routing] Expose request in route conditions, if needed and possible (ro0NL)
39+
* bug #22943 [SecurityBundle] Move cache of the firewall context into the request parameters (GromNaN)
40+
* bug #23057 [Translation][FrameworkBundle] Fix resource loading order inconsistency reported in #23034 (mpdude)
41+
* bug #23092 [Filesystem] added workaround in Filesystem::rename for PHP bug (VolCh)
42+
* bug #23128 [HttpFoundation] fix for Support for new 7.1 session options (vincentaubert)
43+
* bug #23176 [VarDumper] fixes (nicolas-grekas)
44+
* bug #23100 [PropertyAccess] Do not silence TypeErrors from client code. (tsufeki)
45+
* bug #23156 [PropertyAccess] Fix Usage with anonymous classes (mablae)
46+
* bug #23091 [Cache] ApcuAdapter::isSupported() should return true when apc.enable_cli=Off (nicolas-grekas)
47+
* bug #22953 #22839 - changed debug toolbar dump section to relative and use full window width (mkurzeja)
48+
* bug #23086 [FrameworkBundle] Fix perf issue in CacheClearCommand::warmup() (nicolas-grekas)
49+
* bug #23098 Cache ipCheck (2.7) (gonzalovilaseca)
50+
* bug #23069 [SecurityBundle] Show unique Inherited roles in profile panel (yceruto)
51+
* bug #23073 [TwigBridge] Fix namespaced classes (ogizanagi)
52+
* bug #23063 [Cache] Fix extensibility of TagAwareAdapter::TAGS_PREFIX (wucdbm)
53+
* bug #22936 [Form] Mix attr option between guessed options and user options (yceruto)
54+
* bug #22976 [DependencyInjection] Use more clear message when unused environment variables detected (voronkovich)
55+
* bug #23045 [Cache] fix Redis scheme detection (xabbuh)
56+
* bug #22988 [PropertyInfo][DoctrineBridge] The bigint Doctrine's type must be converted to string (dunglas)
57+
* bug #23014 Fix optional cache warmers are always instantiated whereas they should be lazy-loaded (romainneutron)
58+
* bug #23024 [EventDispatcher] Fix ContainerAwareEventDispatcher::hasListeners(null) (nicolas-grekas)
59+
* bug #22996 [Form] Fix \IntlDateFormatter timezone parameter usage to bypass PHP bug #66323 (romainneutron)
60+
* bug #22994 Harden the debugging of Twig filters and functions (stof)
61+
1062
* 3.2.9 (2017-05-29)
1163

1264
* bug #22847 [Console] ChoiceQuestion must have choices (ro0NL)

src/Symfony/Component/HttpKernel/Kernel.php

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

61-
const VERSION = '3.2.10-DEV';
61+
const VERSION = '3.2.10';
6262
const VERSION_ID = 30210;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 10;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '07/2017';
6969
const END_OF_LIFE = '01/2018';

0 commit comments

Comments
 (0)