Skip to content

Releases: C2FO/fast-csv

v4.1.6

15 May 21:05
Compare
Choose a tag to compare

4.1.6 (2020-05-15)

Bug Fixes

  • deps: update dependency @docusaurus/core to v2.0.0-alpha.54 (24a0473)
  • parse: Handle escaped escape properly #340 (78d9b16)

v4.1.5

15 May 19:52
Compare
Choose a tag to compare

4.1.5 (2020-05-15)

Bug Fixes

  • Fix for #345 remove revert to old tsconfig.build (aa4488f)

v4.1.4

15 May 03:01
Compare
Choose a tag to compare

4.1.4 (2020-05-15)

Bug Fixes

  • Fix lerna:version command (6da1eb3)

v4.0.1

26 Dec 22:20
Compare
Choose a tag to compare
  • [FIXED] package.json homepage links
  • [ADDED] version npm script

v4.0.0

26 Dec 22:10
Compare
Choose a tag to compare
  • Migrated from mocha to jest
  • Moved to lerna.
    • Split parse and format packages
  • Added running examples and checking output as part of the tests
  • Updated docs for new directory layout
  • Added typescript examples
  • Added generics type support to format and parse streams
  • [ADDED] Docs around using strictColumnHandling to emit errors when there are more columns than headers [#195]

v4.0.0-alpha.0

26 Dec 21:54
Compare
Choose a tag to compare
v4.0.0-alpha.0 Pre-release
Pre-release
  • Migrated from mocha to jest
  • Moved to lerna.
    • Split parse and format packages
  • Added running examples and checking output as part of the tests
  • Updated docs for new directory layout
  • Added typescript examples
  • Added generics type support to format and parse streams
  • [ADDED] Docs around using strictColumnHandling to emit errors when there are more columns than headers [#195]

v3.7.0

21 Dec 05:23
84ca8e2
Compare
Choose a tag to compare
  • [ADDED] Ability to Transform Header #287
  • [ADDED] Example require and import to README #301
  • [ADDED] Added new formatting option alwaysWriteHeaders to always write headers even if no rows are provided #300
  • [ADDED] Appending to csv example and docs #272
  • [FIXED] Issue with duplicate headers causing dataloss, duplicate headers will can an error to be emitted. #276
  • [FIXED] Issue where an error thrown while processing rows causes stream continue to parse, causing duplicate writes or swallowed exceptions.

v3.6.0

17 Dec 00:37
e0d945b
Compare
Choose a tag to compare
  • [ADDED] maxRows option to limit the number of rows parsed. #275 #277 - @cbrittingham
  • [ADDED] skipRows to allow skipping parsed rows see parsing.md
  • [ADDED] skipLines to allow skipping entire lines of a csv parsing.md #267
  • Exported formatting and parsing types.
  • Removed .npmignore in favor of package.json files

v3.5.0

14 Dec 22:44
b0d60ac
Compare
Choose a tag to compare
  • Upgraded dependencies
  • Reformatted code with prettier
  • [FIXED] Entire lodash is imported, bloating dependencies #281

v3.4.0

30 Jul 04:02
3deb16b
Compare
Choose a tag to compare
  • [FIXED] formatter.js: Disabling quote doesn't work #97
    • Changed to allow the quote option to be provided as a boolean so when set to false all quoting is ignored.
  • [ADDED] writeBOM option when formatting a csv #180
  • Added tests for #102