diff --git a/ChangeLog b/ChangeLog index 0c5341f5fe926dde687d4e2b966de440629eda6d..233befabe1c058eead2f9d29221d6f7b954eeee9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,39 @@ +2017-06-20 d980f20 [RELEASE] Release of TYPO3 7.6.19 (TYPO3 Release Team) +2017-06-20 c35c325 #80681 [BUGFIX] Prevent uncaught exception in Import/Export controller (Nicole Cordes) +2017-06-20 b4af653 #81068 [BUGFIX] Select suitable distribution version in em (Christian Kuhn) +2017-06-17 1d98daf #81599 [BUGFIX] Remove possibly undefined constant from test bootstraps (Anja Leichsenring) +2017-06-14 e8f97da #80855 [BUGFIX] Remove manually set database row (Susanne Moog) +2017-06-12 20a9592 #81551 [BUGFIX] Prefix single digit dates with 0 instead of whitespace (Sascha Egerer) +2017-06-12 5df7e2c #79568 [BUGFIX] Wrong computed baseURL with FE editing RTE (Jigal van Hemert) +2017-06-08 88fd7df #80220 [BUGFIX] Return http_code for HEAD requests in GeneralUtility::getUrl (Nicole Cordes) +2017-06-07 18dec8f #81341 [BUGFIX] Detect upper limit of database server version (Markus Klein) +2017-06-06 3f57266 #81485 [BUGFIX] FormEngine: Show correct error message (render)Type is unknown (Markus Klein) +2017-06-06 665557e #81477 [TASK] Add sitemap to sysext:core/Documentation (Martin Bless) +2017-06-03 59b68d4 #81408 [BUGFIX] Hide empty descriptions in textmedia in page module (Jigal van Hemert) +2017-06-02 3c451b4 #81279 [BUGFIX] Avoid unnecessarily fetching file for processing (Helmut Hummel) +2017-05-29 473a183 #81366 [BUGFIX] Ensure correct URL generation with http_build_query() (Markus Klein) +2017-05-18 e2c8ffe #80749 [BUGFIX] DBAL: Assure all optional query array parameters are set (Dan Untenzu) +2017-05-18 389e79c #81244 [BUGFIX] Use EXEC_TIME for sys_log entry instead of time() (Helmut Hummel) +2017-05-17 32f18c8 #80934 [BUGFIX] HtmlArea: Use getAttribute() directly (Benni Mack) +2017-05-17 c150986 #81239 [TASK] Unit test fails with recent PHP releases (Christian Kuhn) +2017-05-17 4dc552d #77645 [BUGFIX] Unset current file in generic Content Object Renderer (Benjamin Serfhos) +2017-05-12 33bce7d #80672 [BUGFIX] Add UI blocker to prevent loading issues in FormEngine (Frank Naegler) +2017-05-12 96a266a #81205 [TASK] Throw explicit exception on missing link handler class (Mathias Brodala) +2017-05-11 54e2b69 #80358 [BUGFIX] DBAL: Ensure correct mysqli resource for admin_get_tables query (Nicole Cordes) +2017-05-11 63a3a08 #81119 [BUGFIX] Use renderType selectSingle for field t3_tables of sys_action (Georg Ringer) +2017-05-11 4c6ba8a #75436 [BUGFIX] Reload page tree after deleting pages (Gianluigi Martino) +2017-05-11 dbc5b07 #80385 [BUGFIX] INCLUDE_TYPOSCRIPT condition use correct ConditionMatcher (Andreas Allacher) +2017-05-11 5ac23cf #81097 [BUGFIX] Add missing SQL index for EM repository update (Claus Due) +2017-05-11 2648d87 #81057 [BUGFIX] Load PageTSconfig in localconf for LinkHandler (Benni Mack) +2017-05-04 bee2c43 #81093 [BUGFIX] Add `config.contentObjectExceptionHandler` to tsref.xml (Andreas Fernandez) +2017-05-02 1685e6e #80920 [TASK] Show copy and cut buttons in filelist options (Gianluigi Martino) +2017-04-27 ce160ba #80740 [BUGFIX] Do not prefix FAL file links with absRefPrefix (Helmut Hummel) +2017-04-26 2f82503 #80007 [TASK] Move CSV fixtures handling to FunctionalTestCase (Tymoteusz Motylewski) +2017-04-22 4aee437 #80951 [BUGFIX] Do not ask for current password if admin (Markus Klein) +2017-04-21 535958b #80947 [BUGFIX] Use real BE user for logging user setting changes (Markus Klein) +2017-04-18 505d1dc [TASK] Set TYPO3 version to 7.6.19-dev (TYPO3 Release Team) + + 2017-04-18 2d37504 [RELEASE] Release of TYPO3 7.6.18 (TYPO3 Release Team) 2017-04-18 03de833 [TASK] Set TYPO3 version to 7.6.18-dev (Oliver Hader) 2017-04-18 74f5bb4 [RELEASE] Release of TYPO3 7.6.17 (TYPO3 Release Team) diff --git a/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php b/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php index cd7d72a6afc710016c02f45d1a41ce9c6a1f2811..29cdb9c62256e9d2c82e31172fcd3b658f598148 100644 --- a/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php +++ b/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php @@ -85,7 +85,7 @@ class SystemEnvironmentBuilder protected static function defineBaseConstants() { // This version, branch and copyright - define('TYPO3_version', '7.6.19-dev'); + define('TYPO3_version', '7.6.19'); define('TYPO3_branch', '7.6'); define('TYPO3_copyright_year', '1998-2017');