Skip to content

Releases: cobwebch/svconnector_csv

5.0.0

08 Dec 17:14
Compare
Choose a tag to compare

This release adds compatibility with TYPO3 13, while dropping support for TYPO3 11. It also adds support for PHP 8.4, and removes it for PHP 7.4 and 8.0.

It also contains the following features:

  • all hooks have been deprecated and replaced by events
  • connector parameters are now passed when fetching the service from the registry
  • it is possible to choose the method for fetching data (default is still "GET") and to pass any number of headers

The documentation was also cleaned up and restructured.

4.1.0

07 Aug 10:11
Compare
Choose a tag to compare

Verify compatibility with PHP 8.2

4.0.1

02 May 20:11
Compare
Choose a tag to compare

This minor release verifies compatibility with TYPO3 12 LTS and updates the example code in the documentation about instantiating a service.

4.0.0

27 Dec 20:13
Compare
Choose a tag to compare

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

05 Oct 20:42
Compare
Choose a tag to compare

Introduce compatibility with TYPO3 11, drop support for TYPO3 8 and 9. Also add support for PHP 8.

2.4.1

02 Feb 18:41
Compare
Choose a tag to compare

Fix bug with skip_rows parameter and header row.

2.4.0

07 May 20:24
Compare
Choose a tag to compare

Compatibility with TYPO3 10 LTS
Fixed bug when trying to delete temporary files

2.3.0

28 Dec 21:17
Compare
Choose a tag to compare

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

18 Jul 11:25
Compare
Choose a tag to compare

Minor update to the documentation, to clear things up about using absolute file paths.

2.2.0

23 Jan 19:57
Compare
Choose a tag to compare

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)