1 This document is a part of the TYPO3 project. TYPO3 is an open source web
2 content management system released under the GNU GPL. TYPO3 is copyright
3 (c) 1999-2012 by Kasper Skaarhoj.
5 This document contains information about TYPO3 version 6.2 has been released
6 on MONTH-NAME XXth 2013.
8 An up-to-date version of this document also containing links to further in
9 depth information can be found here:
11 http://wiki.typo3.org/TYPO3_6.2
13 ===============================================================================
15 ===============================================================================
17 -------------------------------------------------------------------------------
19 -------------------------------------------------------------------------------
21 * Raised minimum PHP version requirement to 5.3.7
23 -------------------------------------------------------------------------------
24 Deprecated and removed components
25 -------------------------------------------------------------------------------
27 ===============================================================================
28 Changes and Improvements
29 ===============================================================================
31 -------------------------------------------------------------------------------
33 -------------------------------------------------------------------------------
35 -------------------------------------------------------------------------------
37 -------------------------------------------------------------------------------
39 * Logging API PSR-3 compliance
41 The logger of the Logging API now complies with the PSR-3 standard of the
42 PHP Framework Interop Group: http://www.php-fig.org/psr/3/
44 -------------------------------------------------------------------------------
46 -------------------------------------------------------------------------------
48 -------------------------------------------------------------------------------
50 -------------------------------------------------------------------------------
52 * Minor API change in \TYPO3\CMS\Frontend\ContentObjectRenderer->getTreeList()
54 getTreeList() got some cleanup and slightly changed its return result. Former
55 versions sometimes returned a trailing comma which is not the case anymore.
58 getTreeList(42, 4) // get pids for pageId 42, 4 levels deep
59 result: '0, 22, 11, 4,'
63 result: '0, 22, 11, 4'
65 -------------------------------------------------------------------------------
66 Administration / Customization
67 -------------------------------------------------------------------------------
69 -------------------------------------------------------------------------------
71 -------------------------------------------------------------------------------
73 * Recursive object validation
75 Validation of object structures in extbase is now done recursively. If a tree
76 of objects is created by the new property mapper, not only the top level object
77 is validated, but all objects.
79 * Allow empty validation
81 In order to make a property required you now need to add the NotEmptyValidator
82 to your property. The return value of validators is now optional.
84 -------------------------------------------------------------------------------
86 -------------------------------------------------------------------------------
88 * Image view helper does not render title tag by default
90 In previous versions of fluid the image view helper always rendered the
91 title attribute. If not set, the value of the required alt attribute was set as
93 This fallback was removed with version 6.2. If not specifically set, title
94 is not rendered anymore.
98 <f:image src="{file}" alt="Alt-Attribute" />
100 <img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" />
102 <img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" title="Alt-Attribute" />