Fast Csv Versions Save

CSV parser and formatter for node

v4.1.6

3 years ago

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

3 years ago

4.1.5 (2020-05-15)

Bug Fixes

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

v4.1.4

3 years ago

4.1.4 (2020-05-15)

Bug Fixes

  • Fix lerna:version command (6da1eb3)

v4.0.1

4 years ago
  • [FIXED] package.json homepage links
  • [ADDED] version npm script

v4.0.0

4 years ago
  • 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

4 years ago
  • 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

4 years ago
  • [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

4 years ago
  • [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

4 years ago
  • Upgraded dependencies
  • Reformatted code with prettier
  • [FIXED] Entire lodash is imported, bloating dependencies #281

v3.4.0

4 years ago
  • [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