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 * SpriteGenerator now supports high density sprites
37 It is now possible to create high density sprites.
39 -------------------------------------------------------------------------------
41 -------------------------------------------------------------------------------
43 * Logging API PSR-3 compliance
45 The logger of the Logging API now complies with the PSR-3 standard of the
46 PHP Framework Interop Group: http://www.php-fig.org/psr/3/
48 -------------------------------------------------------------------------------
50 -------------------------------------------------------------------------------
52 * Categorization API improvements
54 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::makeCategorizable() can now
55 be used multiple times on the same table to add more than one category field.
56 The options array (the fourth parameter) now can contain a 'label' to set a
57 custom label for each category field.
59 -------------------------------------------------------------------------------
61 -------------------------------------------------------------------------------
63 * Minor API change in \TYPO3\CMS\Frontend\ContentObjectRenderer->getTreeList()
65 getTreeList() got some cleanup and slightly changed its return result. Former
66 versions sometimes returned a trailing comma which is not the case anymore.
69 getTreeList(42, 4) // get pids for pageId 42, 4 levels deep
70 result: '0, 22, 11, 4,'
74 result: '0, 22, 11, 4'
76 -------------------------------------------------------------------------------
77 Administration / Customization
78 -------------------------------------------------------------------------------
80 * Content-length Header is now enabled by default
82 The TypoScript setting config.enableContentLengthHeader has a new default
83 value and is now enabled by default.
85 -------------------------------------------------------------------------------
87 -------------------------------------------------------------------------------
89 * Recursive object validation
91 Validation of object structures in extbase is now done recursively. If a tree
92 of objects is created by the new property mapper, not only the top level object
93 is validated, but all objects.
95 * Allow empty validation
97 In order to make a property required you now need to add the NotEmptyValidator
98 to your property. The return value of validators is now optional.
100 -------------------------------------------------------------------------------
102 -------------------------------------------------------------------------------
104 * Image view helper does not render title tag by default
106 In previous versions of fluid the image view helper always rendered the
107 title attribute. If not set, the value of the required alt attribute was set as
109 This fallback was removed with version 6.2. If not specifically set, title
110 is not rendered anymore.
114 <f:image src="{file}" alt="Alt-Attribute" />
116 <img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" />
118 <img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" title="Alt-Attribute" />