Releases: ddeboer/data-import
Releases · ddeboer/data-import
0.20.0
0.19.1
0.19.0
Main changes:
- d4b7246 Fix additional empty worksheet in excel creation (Fabio Daniele)
- ce5004f Fix bug which doesn't delete the row after iteratorion (Markus Bachmann)
- 2870f94 ExcelWriter: Optimize code at writeItem() (Igor Mukhin)
- 9a8fef6 ExcelWriter: Added option to prepend header row with column names (Igor Mukhin)
- d27a581 CsvWriter: Added option to prepend header row with column names (Igor Mukhin)
- 5726169 Add BatchWriter (Baachi)
- b7a2484 Workflow implements LoggerAwareInterface and Trait (Sági-Kazár Márk)
- 7b79829 Removes fluent interface from writer methods (Sági-Kazár Márk)
- 7c263de Adds tests for iterator readers (Sági-Kazár Márk)
- 89ab731 Adds IteratorReaders (Sági-Kazár Márk)
- f028439 Replaces SplObjectStore with array in Steps (Sági-Kazár Márk)
- efe2891 Adds WriterTemplate trait instead of AbstractWriter (Sági-Kazár Márk)
- 6f28633 Adds editorconfig (Sági-Kazár Márk)
- 3dc53a3 Some in-code improvements: use sprintf, PHP 5.4 array notation (Sági-Kazár Márk)
- 2599f48 Docblock improvements, removing inconsistency (Sági-Kazár Márk)
- a07d322 Merge pull request #177 from igormukhingmailcom/pcntl (David de Boer)
- 56aabc7 Proper reaction for SIGTERM and SIGINT (Igor Mukhin)
- b0122a5 Switch to PSR-4 (David de Boer)
- 9751e1d Introduce steps (Markus Bachmann)
- 10e2409 DoctrineWrite fix for issue #194 (Justus Krapp)
- 45069d8 Merge pull request #193 from ip512/master (David de Boer)
- a01d235 Add version 2.4 requirement for doctrine (Gregory Pelletier)
- 2292ef2 Change EntityManager to EntityManagerInterface (Gregory Pelletier)
- 1e14c81 Added DateTimeToStringValueConverter and its test. Updated README. Added phpunit to composer.json (Mateusz Zalewski)
0.18.0
- 853a396 Add support for utf8 support to CsvWriter
- 853a396 Add
$readOnly
parameter to ExcelReader - 20e44dd + 57c19a2 + 455c239 Improve the extendibility from the
DoctrineWriter
- 94e5cb8 add DateTime threshold filter
- afd71ba add ConsoleTableWriter
- c579cf4 Fix truncate for postgresql
- 03768b1 Explicit columns in PDOWriter
- 489f02c Adds SeekableIterator to ExcelReader
- c96f66e + 54f1ded Remove Countable interface from ReaderInterface
0.17.0
0.16.1
- 72d4f93 Merge pull request #96 from gries/item_converter_breaks_mappings_fix (David de Boer)
- 87283d9 Merge pull request #101 from boekkooi/patch-1 (Markus Bachmann)
- 2acf9f3 Fixed a bug that caused a php-error "undefined offset" when adding a item-converter and later on adding multiple mappings. (crosse)
- 813cebd Added Maximum Nested test if xdebug is installed. (Warnar Boekkooi)
- a8401b3 CSVReader::current() avoid recursion (Warnar Boekkooi)
0.16.0
- Merge pull request #93 from AydinHassan/workflow-result (David de Boer)
- Return Result Object from Workflow process() to ease post-processing (Aydin Hassan)
- Merge pull request #98 from AydinHassan/console-redraw (David de Boer)
- Merge pull request #90 from bburnichon/ticket_86_stream_writer (Markus Bachmann)
- Make code more portable by using binary format by default (Benoît Burnichon)
- Remove EOL as currently unused. (Benoît Burnichon)
- Provide option for setting redraw frequency. Also fix some non-declared class vars. (Aydin Hassan)
- Merge pull request #95 from gries/nested_item_converter_fixed (Markus Bachmann)
- Nested itemconverter for recursive arrays including documentation and tests. Fixes #77 #94 (crosse)
- Update CsvWriter readme. (Benoît Burnichon)
- Merge pull request #88 from bburnichon/ticket_87_writer_fluent_interface (David de Boer)
- Change CsvWriter to extends AbstractStreamWriter (Benoît Burnichon)
- Merge branch 'ticket_87_writer_fluent_interface' into ticket_86_stream_writer (Benoît Burnichon)
- Fixup test detected by scrutinizer. (Benoît Burnichon)
- Split method closeStreamOnFinish into setter/getter (Benoît Burnichon)
- Add author (Benoît Burnichon)
- Add StreamMergeWriter, some documentation and tweak AbstractStreamWriter (Benoît Burnichon)
- Add An Abstract StreamWriter (Benoît Burnichon)
- Properly implement fluent interface in all writers. (Benoît Burnichon)
0.15.1
- Improve Excel reader performance and compatibility
- Merge pull request #85 from elektrostress/master
- [FIX FOR: MappingItemConverter skips null fields #84](Fix converters not being applied to null value)
0.15.0
- 9ccc60b Merge pull request #80 from ddeboer/csv-delimiter
- 272dff0 Change default CSV delimiter to comma (fix #79)
- bbdeb78 Merge pull request #78 from WeareJH/one-to-many-reader
- cd14a56 OneToMany Reader - For Merging 2 readers
- 82697ee Merge pull request #73 from WeareJH/symfony-progressbar-helper
- 33d485a Use Symfony 2.5 ProgressBar Helper + allow option to set verbosity
0.14.0
- Limit symfony/console version at 2.4
- Fix converters not being applied to null values
- Switch to SVG for build status tag
- Merge pull request #71 from warmans/feature/pdo-writer
- Merge pull request #74 from WeareJH/date-formatter-filter
- Add Optional second paramater to DateTimeValueConverter to format output
- Added PdoWriter, Added writer exception to stop PDO exceptions leaking, updated readme, added PdoWriter tests