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 * Removed PHP constant PATH_t3lib
29 ===============================================================================
30 Changes and Improvements
31 ===============================================================================
33 * Moved ExtJS- & JavaScript files from t3lib to typo3
35 -------------------------------------------------------------------------------
37 -------------------------------------------------------------------------------
39 * SpriteGenerator now supports high density sprites
41 It is now possible to create high density sprites.
43 * New default value for cookieHttpOnly setting
45 The session cookies "fe_typo_user" and "be_typo_user" now have set the
46 HttpOnly attribute by default. This will make it harder to steal the cookie by
49 -------------------------------------------------------------------------------
51 -------------------------------------------------------------------------------
53 * Logging API PSR-3 compliance
55 The logger of the Logging API now complies with the PSR-3 standard of the
56 PHP Framework Interop Group: http://www.php-fig.org/psr/3/
58 -------------------------------------------------------------------------------
60 -------------------------------------------------------------------------------
62 * Categorization API improvements
64 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::makeCategorizable() can now
65 be used multiple times on the same table to add more than one category field.
66 The options array (the fourth parameter) now can contain a 'label' to set a
67 custom label for each category field.
69 -------------------------------------------------------------------------------
71 -------------------------------------------------------------------------------
73 * Minor API change in \TYPO3\CMS\Frontend\ContentObjectRenderer->getTreeList()
75 getTreeList() got some cleanup and slightly changed its return result. Former
76 versions sometimes returned a trailing comma which is not the case anymore.
79 getTreeList(42, 4) // get pids for pageId 42, 4 levels deep
80 result: '0, 22, 11, 4,'
84 result: '0, 22, 11, 4'
86 -------------------------------------------------------------------------------
87 Administration / Customization
88 -------------------------------------------------------------------------------
90 * Content-length Header is now enabled by default
92 The TypoScript setting config.enableContentLengthHeader has a new default
93 value and is now enabled by default.
95 -------------------------------------------------------------------------------
97 -------------------------------------------------------------------------------
99 * Recursive object validation
101 Validation of object structures in extbase is now done recursively. If a tree
102 of objects is created by the new property mapper, not only the top level object
103 is validated, but all objects.
105 * Allow empty validation
107 In order to make a property required you now need to add the NotEmptyValidator
108 to your property. The return value of validators is now optional.
110 -------------------------------------------------------------------------------
112 -------------------------------------------------------------------------------
114 * Image view helper does not render title tag by default
116 In previous versions of fluid the image view helper always rendered the
117 title attribute. If not set, the value of the required alt attribute was set as
119 This fallback was removed with version 6.2. If not specifically set, title
120 is not rendered anymore.
124 <f:image src="{file}" alt="Alt-Attribute" />
126 <img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" />
128 <img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" title="Alt-Attribute" />