Skip to content

Releases: C2FO/fast-csv

v0.6.0

13 Mar 14:38
Compare
Choose a tag to compare
  • Removed try catch from emit to allow bubbling up of errors to process, if one is thrown #93
    • This also fixed issue #92 where a loop was entered when this.emit("error") was called.
  • Added new tests

v0.5.7

03 Mar 19:18
Compare
Choose a tag to compare

v0.5.6

22 Feb 21:58
Compare
Choose a tag to compare
  • Fixed issue where parser_stream was emitting end early #87
    • Changed to not emit end during flush
    • Changed catch errors on emit and emit as "error" event
  • Added support for node v0.12

v0.5.5

28 Jan 03:22
Compare
Choose a tag to compare
  • Fixed issues with ordering of headers when specifying headers in a write stream #77
  • Fixed issue where headers were not being written if no data was supplied to write stream.

v0.5.4

08 Nov 06:46
Compare
Choose a tag to compare
  • Fixed issues with error handling and not registering an error handler on stream #68
  • Added support for ignoring quoting while parsing #75

v0.5.3

21 Oct 04:00
Compare
Choose a tag to compare
  • Fixed issues with v0.11 stream implementation #73
  • Fixed issues with pause/resume and data events in v0.10 #69
  • Fixed the double invoking of done callback when parsing files #68
  • Fixed issue with docs #72
  • Refactored tests

v0.5.2

05 Sep 18:06
Compare
Choose a tag to compare
  • Fixed issue with writeToString and writeToPath examples #64
  • Fixed issue with creating a csv without headers #63

v0.5.1

28 Aug 04:30
Compare
Choose a tag to compare
  • Fixed issue where line data was not being passed between transforms in the parser_stream

v0.5.0

27 Aug 23:39
Compare
Choose a tag to compare
  • Added support for async transforms #24
  • Added support for async validation
  • Added support for new data format
[
    [["header", "value1"], ["header2", "value2"]],
    [["header", "value2"], ["header2", "value2"]]
]
  • Added support for forcing the quoting columns and headers
    • quoteColumns - Can be a boolean, object or array to specify how quoting should be done (see README)
    • quoteHeaders - Can be a boolean, object or array to specify how quoting should be done (see README)
  • More tests
  • Code refactor and clean up

v0.4.4

18 Aug 13:46
Compare
Choose a tag to compare
  • Added support for comments #56