diff --git a/ChangeLog b/ChangeLog index 3abbb4ef..c0a91c56 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ * Ensure compatibility with TYPO3 v9, resolves #62 * Ensure spinner icon is available, resolves #80 * Fix wrong check for 0-ish values, resolves #74 + * Release version 4.1.0 2019-01-03 Francois Suter (Cobweb) diff --git a/Documentation/Index.rst b/Documentation/Index.rst index 933677c9..bd1f08c6 100644 --- a/Documentation/Index.rst +++ b/Documentation/Index.rst @@ -22,7 +22,7 @@ External Import data import, fetch data, services :Copyright: - 2007-2018 + 2007-2019 :Author: François Suter (Cobweb) diff --git a/Documentation/Installation/Index.rst b/Documentation/Installation/Index.rst index d730732c..134d4e84 100644 --- a/Documentation/Installation/Index.rst +++ b/Documentation/Installation/Index.rst @@ -14,8 +14,7 @@ connect to. Automating the imports requires system extension "scheduler" or setting up cron jobs calling the command-line controller. -TYPO3 CMS 7 or above is required. The command-line controller is only -available as of TYPO3 CMS 8. +TYPO3 CMS 8 or above is required. .. _installation-compatibility: @@ -87,38 +86,38 @@ As an example, usage of such properties should be changed from: .. code-block:: php - $GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = array( - 0 => array( + $GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = [ + 0 => [ 'field' => 'start_date', 'trim' => true - 'userFunc' => array( + 'userFunc' => [ 'class' => \Cobweb\ExternalImport\Task\DateTimeTransformation::class, 'method' => 'parseDate' - ) - ) - ); + ] + ] + ]; to: .. code-block:: php - $GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = array( - 0 => array( + $GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = [ + 0 => [ 'field' => 'start_date', - 'transformations => array( - 10 => array( + 'transformations => [ + 10 => [ 'trim' => true - ), - 20 => array( - 'userFunc' => array( + ], + 20 => [ + 'userFunc' => [ 'class' => \Cobweb\ExternalImport\Task\DateTimeTransformation::class, 'method' => 'parseDate' - ) - ) - ) - ) - ); + ] + ] + ] + ] + ]; If you want to preserve "old-style" order, the transformation properties were called in the diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index a7b6fc30..a308d921 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -1,8 +1,8 @@ [general] -copyright = 2007-2018 +copyright = 2007-2019 project = External Import -release = 4.0.2 -version = 4.0 +release = 4.1.0 +version = 4.1 [notify] about_new_build = typo3@cobweb.ch diff --git a/composer.json b/composer.json index b78138a7..382e9499 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "Cobweb\\ExternalImport\\": "Classes/" } }, - "version": "4.0.2", + "version": "4.1.0", "require": { "typo3/cms-core": ">=8.7.0,<10.0", "cobweb/svconnector": ">=3.3.0" diff --git a/ext_emconf.php b/ext_emconf.php index 15e90308..39898763 100755 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -21,7 +21,7 @@ 'createDirs' => '', 'clearCacheOnLoad' => 0, 'author_company' => '', - 'version' => '4.0.2', + 'version' => '4.1.0', 'constraints' => [ 'depends' =>