Skip to content

v3.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Nov 17:06
· 3 commits to master since this release
40094fc

FEATURE

  • Add a useWorker option to streamListDiff. If set to true, the diff will be run in a worker for maximum performance. Only recommended for large lists (e.g. +100,000 items). true by default.
const diff = streamListDiff(hugeListA, hugeListB, "id", { chunksSize: 100_000,  useWorker: true });

pull request #31

BREAKING CHANGES

  • Enums standardization
    • OBJECT_STATUS becomes ObjectStatus
    • LIST_STATUS becomes ListStatus
    • GRANULARITY becomes Granularity

CHORE

  • Add a showWarnings option to streamListDiff
  • Allow enum and unions for ListStatus
  • Clean models
  • Fix client and server import subpaths
  • Convert Jest config to Typescript
  • Update dev dependencies
  • Update README.md