Skip to content

Latest commit

 

History

History
295 lines (137 loc) · 8.03 KB

CHANGELOG.md

File metadata and controls

295 lines (137 loc) · 8.03 KB

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.8.0 (2020-04-20)

Breaking Changes

  • All default exports have been removed, all publicly available interfaces or classes are now available from @flatfile/adapter (no deep-imports), with the exception being FlatfileImporter itself being exported from the default.

An example of these new imports and usage:

import FlatfileImporter, { // <-- still found at the default export level
  FieldHookCallback, // <-- everything else public is now available via destructuring from @flatfile/adapter
  ISettings,
  CustomerObject,
  LoadOptionsObject,
  IVirtualFieldOptions,
  IInteractionEvent,
  IBeforeFetchRequest,
  IBeforeFetchResponse,
  StepHookCallback,
  RecordObject,
  IDataHookResponse,
  ScalarDictionary,
  Nullable,
  IPrimitive,
  IValidationResponse,
  IDictionary,
  FlatfileResults
} from '@flatfile/adapter';
  • FlatfileResult is now found from the root of import { FlatfileResult } from '@flatfile/adapter';
    • Previously it was grabbed via default import from a deep-import import FlatfileResults from '@flatfile/adapter/build/main/results';

2.1.4 (2020-11-03)

2.1.3 (2020-11-03)

Bug Fixes

  • adapter: only polyfill document if exists (06b4ab7)

0.2.11 (2020-06-17)

Bug Fixes

  • imports: release 0.2.10 (a601586)

0.2.9 (2020-02-04)

0.2.8 (2020-02-04)

0.2.7 (2020-01-29)

0.2.6 (2020-01-20)

0.2.5 (2020-01-17)

0.2.4 (2020-01-07)

0.2.2 (2019-10-24)

0.2.0 (2019-10-24)

Features

  • add custom validator callbacks (6ee8ef9)

0.1.16 (2019-06-09)

0.1.15 (2019-06-09)

0.1.14 (2019-05-19)

0.1.13 (2019-05-19)

0.1.12 (2018-07-11)

0.1.11 (2018-07-11)

0.1.10 (2018-07-11)

0.1.9 (2018-04-24)

0.1.8 (2018-04-24)

0.1.7 (2018-04-24)

0.1.6 (2018-04-24)

0.1.5 (2018-04-24)

0.1.4 (2018-04-24)

0.1.3 (2018-04-24)

0.1.2 (2018-04-24)

0.1.1 (2018-04-24)

0.1.0 (2018-04-24)

0.0.7 (2018-03-27)

0.0.6 (2018-01-03)

0.0.5 (2018-01-03)

0.0.4 (2018-01-03)

0.0.3 (2018-01-03)

0.0.2 (2018-01-03)

1.4.1 (2017-06-27)

1.4.0 (2017-03-02)

Features

  • gh-pages: add package script for publishing docs to gh-pages (1dfe830), closes #14
  • publish: add one-step publish process (7b9b857), closes #15

1.3.0 (2017-03-01)

Bug Fixes

  • hash.js: correctly pre-build hash.js for the browser (1fe0b10)
  • watch: exclude build/**/*.spec.js from ava to avoid double execution (e365656)

Features

  • browser: add browser build, tests, and sample sha256 library method (01f67d1)
  • watch: use concurrently for the watch task (7fa64b8), closes #11

1.2.2 (2017-02-17)

Bug Fixes

  • tsconfig: set rootDir option when outDir option is used (3577caa), closes #9

1.2.1 (2017-02-14)

1.2.0 (2017-02-14)

Features

  • github: add sample GitHub issue template, PR template, and contributing guidelines (9c95249)
  • watch: add unified watch task with multiview (973966e)

1.1.1 (2017-02-13)

1.1.0 (2017-02-13)

Features

  • examples: improve browser usage example (c8199e7)
  • starter: add changelogs and examples (5f18048)