Releases: Fabiopf02/ofx-data-extractor
Releases · Fabiopf02/ofx-data-extractor
v1.4.0
v1.3.5
Fix type import in build
Full Changelog: v1.3.4...v1.3.5
v1.3.4
Breaking Changes
- Remove
fromFilePath
by @Fabiopf02 in #18
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
Fix: package build
Full Changelog: v1.3.2...v1.3.3
v1.3.2
What's Changed
- Create CONTRIBUTING.md by @Fabiopf02 in #12
- Update issue templates by @Fabiopf02 in #13
- fix: check the existence of credit card data before converting to object by @Fabiopf02 in #15
- test: remove snapshots by @Fabiopf02 in #16
Full Changelog: v1.3.1...v1.3.2
Release 1.3.0
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
chore: release v1.0.8
Release v1.0.7
chore: release v1.0.7