Skip to content

Commit 47ee1d5

Browse files
Merge branch '3.3' into 3.4
* 3.3: (33 commits) Preserve HttpOnly value when deserializing a header [DX] [TwigBundle] Enhance the new exception page design Fix deprecated message [DI][Security] Prevent unwanted deprecation notices when using Expression Languages bumped Symfony version to 3.3.5 updated VERSION for 3.3.4 updated CHANGELOG for 3.3.4 [VarDumper] Reduce size of serialized Data objects bumped Symfony version to 3.2.12 updated VERSION for 3.2.11 updated CHANGELOG for 3.2.11 fixed bad merge Fix indent of methods [Cache] Handle APCu failures gracefully [DoctrineBridge] Use normalizedIds for resetting entity manager services [FrameworkBundle] Do not remove files from assets dir [FrameworkBundle] 3.3: Don't get() private services from debug:router bumped Symfony version to 3.3.4 updated VERSION for 3.3.3 updated CHANGELOG for 3.3.3 ...
2 parents 7ac2570 + 71c6f99 commit 47ee1d5

File tree

30 files changed

+499
-154
lines changed

30 files changed

+499
-154
lines changed

CHANGELOG-3.2.md

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

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

CHANGELOG-3.3.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,80 @@ in 3.3 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.3.0...v3.3.1
99

10+
* 3.3.4 (2017-07-05)
11+
12+
* bug #23413 [VarDumper] Reduce size of serialized Data objects (nicolas-grekas)
13+
* bug #23385 [DoctrineBridge] Fix resetting entity managers with case sensitive id (chalasr)
14+
* bug #23390 [Cache] Handle APCu failures gracefully (nicolas-grekas)
15+
* bug #23371 [FrameworkBundle] 3.3: Don't get() private services from debug:router (ogizanagi)
16+
* bug #23378 [FrameworkBundle] Do not remove files from assets dir (1ed)
17+
18+
* 3.3.3 (2017-07-04)
19+
20+
* bug #23366 [FrameworkBundle] Don't get() private services from debug:router (chalasr)
21+
* bug #23239 [FrameworkBundle] call setContainer() for autowired controllers (xabbuh)
22+
* bug #23351 [Dotenv] parse concatenated variable values (xabbuh)
23+
* bug #23341 [DoctrineBridge][Security][Validator] do not validate empty values (xabbuh)
24+
* bug #23274 Display a better error design when the toolbar cannot be displayed (yceruto)
25+
* bug #23342 [Dotenv] parse escaped quotes in unquoted env var values (xabbuh)
26+
* bug #23291 [Security] Fix Firewall ExceptionListener priority (chalasr)
27+
* bug #23296 [WebProfilerBundle] Fix css trick used for offsetting html anchor from fixed header (ogizanagi)
28+
* bug #23333 [PropertyAccess] Fix TypeError discard (dunglas)
29+
* bug #23326 [Cache] fix cleanup of expired items for PdoAdapter (dmaicher)
30+
* bug #23345 [Console] fix description of INF default values (xabbuh)
31+
* bug #23328 [FrameworkBundle] Display a proper warning on cache:clear without the --no-warmup option (ogizanagi)
32+
* bug #23299 [Workflow] Added more events to the announce function (Nyholm)
33+
* bug #23279 Don't call count on non countable object (pierredup)
34+
* bug #23283 [TwigBundle] add back exception check (xabbuh)
35+
* bug #23268 Show exception is checked twice in ExceptionController of twig (gmponos)
36+
* bug #23266 Display a better error message when the toolbar cannot be displayed (javiereguiluz)
37+
* bug #23271 [FrameworkBundle] allow SSI fragments configuration in XML files (xabbuh)
38+
* bug #23254 [Form][TwigBridge] render hidden _method field in form_rest() (xabbuh)
39+
* bug #23250 [Translation] return fallback locales whenever possible (xabbuh)
40+
* bug #23237 [Cache] Fix Predis client cluster with pipeline (flolivaud)
41+
* bug #23240 [Console] Fix catching exception type in QuestionHelper (voronkovich)
42+
* bug #23218 [DI] Dedup tags when using instanceof/autoconfigure (ogizanagi)
43+
* bug #23231 Improved the exception page when there is no message (javiereguiluz)
44+
* bug #23229 [WebProfilerBundle] Eliminate line wrap on count column (routing) (e-moe)
45+
* bug #22732 [Security] fix switch user _exit without having current token (dmaicher)
46+
* bug #23226 [Validator] replace hardcoded service id (xabbuh)
47+
* bug #22730 [FrameworkBundle] Sessions: configurable "use_strict_mode" option for NativeSessionStorage (MacDada)
48+
* bug #23195 [FrameworkBundle] [Command] Clean bundle directory, fixes #23177 (NicolasPion)
49+
* bug #23213 Fixed composer resources between web/cli (iltar)
50+
* bug #23160 [WebProfilerBundle] Fix the icon for the Cache panel (javiereguiluz)
51+
* bug #23052 [TwigBundle] Add Content-Type header for exception response (rchoquet)
52+
* bug #23173 [WebServerBundle] Fix router script option BC (1ed)
53+
* bug #23199 Reset redirectCount when throwing exception (hvanoch)
54+
* bug #23180 [FrameworkBundle] Expose the AbstractController's container to its subclasses (BPScott)
55+
* bug #23186 [TwigBundle] Move template.xml loading to a compiler pass (ogizanagi)
56+
* bug #23130 Keep s-maxage when expiry and validation are used in combination (mpdude)
57+
* bug #23129 Fix two edge cases in ResponseCacheStrategy (mpdude)
58+
* feature #22636 [Routing] Expose request in route conditions, if needed and possible (ro0NL)
59+
* bug #22636 [Routing] Expose request in route conditions, if needed and possible (ro0NL)
60+
* bug #22943 [SecurityBundle] Move cache of the firewall context into the request parameters (GromNaN)
61+
* bug #23088 [FrameworkBundle] Dont set pre-defined esi/ssi services (ro0NL)
62+
* bug #23057 [Translation][FrameworkBundle] Fix resource loading order inconsistency reported in #23034 (mpdude)
63+
* bug #23092 [Filesystem] added workaround in Filesystem::rename for PHP bug (VolCh)
64+
* bug #23074 [HttpFoundation] add back support for legacy constant values (xabbuh)
65+
* bug #23128 [HttpFoundation] fix for Support for new 7.1 session options (vincentaubert)
66+
* bug #23176 [VarDumper] fixes (nicolas-grekas)
67+
* bug #23100 [PropertyAccess] Do not silence TypeErrors from client code. (tsufeki)
68+
* bug #23156 [PropertyAccess] Fix Usage with anonymous classes (mablae)
69+
* bug #23168 [Config] Fix ** GlobResource on Windows (nicolas-grekas)
70+
* bug #23171 [Yaml] Fix linting yaml with constants as keys (chalasr)
71+
* bug #23121 [Routing] Revert the change in [#b42018] with respect to Routing/Route.php (Dan Wilga)
72+
* bug #23141 [DI] Fix keys resolution in ResolveParameterPlaceHoldersPass (nicolas-grekas)
73+
* bug #23145 Fix the conditional definition of the SymfonyTestsListener (stof)
74+
* bug #23091 [Cache] ApcuAdapter::isSupported() should return true when apc.enable_cli=Off (nicolas-grekas)
75+
* bug #22953 #22839 - changed debug toolbar dump section to relative and use full window width (mkurzeja)
76+
* bug #23086 [FrameworkBundle] Fix perf issue in CacheClearCommand::warmup() (nicolas-grekas)
77+
* bug #23090 [SecurityBundle] Made 2 service aliases private (nicolas-grekas)
78+
* bug #23108 [Yaml] Remove line number in deprecation notices (nicolas-grekas)
79+
* bug #23098 Cache ipCheck (2.7) (gonzalovilaseca)
80+
* bug #23082 [MonologBridge] Do not silence errors in ServerLogHandler::formatRecord (lyrixx)
81+
* bug #23007 [HttpKernel][Debug] Fix missing trace on deprecations collected during bootstrapping & silenced errors (ogizanagi)
82+
* bug #23069 [SecurityBundle] Show unique Inherited roles in profile panel (yceruto)
83+
1084
* 3.3.2 (2017-06-06)
1185

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

0 commit comments

Comments
 (0)