Skip to content

Releases: Fabiopf02/ofx-data-extractor

v1.4.0

19 May 21:35
Compare
Choose a tag to compare

Feat

  • Convert headers from xml

Fixes

  • [#20 ] Parsing is failing when element <BANKMSGSRSV1> is missing

Full Changelog: v1.3.5...v1.4.0

v1.3.5

02 May 20:13
Compare
Choose a tag to compare

Fix type import in build

Full Changelog: v1.3.4...v1.3.5

v1.3.4

14 Feb 15:52
Compare
Choose a tag to compare

Breaking Changes

the method to read the file by path has been removed to keep only the functions to read the contents of the file, instead of being linked to a specific environment to read the file (in this case 'fs' which only works on nodejs)

Guide to migrating

import { Ofx } from 'ofx-data-extractor'
import fs from 'fs'

// before
const ofx = await Ofx.fromFilePath('/path/to/file')

// after
const file = fs.readFileSync('/path/to/file') // you can use nodejs 'path' to specify the path to the file
const ofx = Ofx.fromBuffer(file)
...

Full Changelog: v1.3.3...v1.3.4

v1.3.3

31 Jan 21:03
Compare
Choose a tag to compare

Fix: package build

Full Changelog: v1.3.2...v1.3.3

v1.3.2

23 Jan 16:03
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.1...v1.3.2

Release 1.3.0

10 Nov 19:46
Compare
Choose a tag to compare

Add support for CREDITCARDMSGSRSV1 (#5)
Fix backslash escaping (#10)

What's Changed

  • refactor(core): refactoring the extraction's internal functions by @Fabiopf02 in #7
  • style: Fix lint issues in the code by @Fabiopf02 in #8

Full Changelog: v1.2.4...v1.3.0

Release v1.0.8

25 Apr 14:30
Compare
Choose a tag to compare
chore: release v1.0.8

Release v1.0.7

25 Apr 14:20
Compare
Choose a tag to compare
chore: release v1.0.7