Releases: cobwebch/svconnector_csv
Releases · cobwebch/svconnector_csv
4.1.0
Verify compatibility with PHP 8.2
4.0.1
This minor release verifies compatibility with TYPO3 12 LTS and updates the example code in the documentation about instantiating a service.
4.0.0
This release adds support for TYPO3 12 and PHP 8.1, while dropping support for TYPO3 10.
It implements the new way of registering Connector Services introduced with "svconnector" version 5.0.0.
3.0.0
Introduce compatibility with TYPO3 11, drop support for TYPO3 8 and 9. Also add support for PHP 8.
2.4.1
Fix bug with skip_rows parameter and header row.
2.4.0
Compatibility with TYPO3 10 LTS
Fixed bug when trying to delete temporary files
2.3.0
Compatibility with TYPO3 7 is removed, compatibility with TYPO3 9 is added.
Fixes a bug with the handling of line breaks inside CSV fields.
2.2.1
Minor update to the documentation, to clear things up about using absolute file paths.
2.2.0
Usage of the new \Cobweb\Svconnector\Utility\FileUtility
class from the base extension makes it possible to use all of the following syntaxes to point to a file:
- absolute file path:
/var/foo/web/fileadmin/import/bar.csv
- file path relative to the TYPO3 root:
fileadmin/import/foo.csv
- file path using "EXT:":
EXT:foo/Resources/Private/Data/bar.csv
- fully qualified URL, e.g.
http://www.example.com/foo.csv
- FAL reference with storage ID and file identifier:
FAL:2:/foo.csv
- custom syntax:
MYKEY:whatever_you_want
(see the svconnector manual)
2.1.0
Verified compatibility with TYPO3 v8.