diff --git a/.changeset/few-countries-tell.md b/.changeset/few-countries-tell.md deleted file mode 100644 index 000663734..000000000 --- a/.changeset/few-countries-tell.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'@flatfile/plugin-delimiter-extractor': minor -'@flatfile/plugin-json-extractor': minor -'@flatfile/plugin-xlsx-extractor': minor -'@flatfile/plugin-psv-extractor': minor -'@flatfile/plugin-tsv-extractor': minor -'@flatfile/plugin-xml-extractor': minor -'@flatfile/plugin-record-hook': minor -'@flatfile/util-file-buffer': minor -'@flatfile/plugin-autocast': minor -'@flatfile/util-extractor': minor -'@flatfile/util-common': minor ---- - -Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching diff --git a/plugins/autocast/CHANGELOG.md b/plugins/autocast/CHANGELOG.md index 284c90b10..ea67a2d2c 100644 --- a/plugins/autocast/CHANGELOG.md +++ b/plugins/autocast/CHANGELOG.md @@ -1,5 +1,17 @@ # @flatfile/plugin-autocast +## 0.3.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/plugin-record-hook@1.1.0 + - @flatfile/util-common@0.2.0 + ## 0.2.2 ### Patch Changes diff --git a/plugins/autocast/package.json b/plugins/autocast/package.json index b53ff04c7..236559fd8 100644 --- a/plugins/autocast/package.json +++ b/plugins/autocast/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-autocast", - "version": "0.2.2", + "version": "0.3.0", "description": "A plugin for automatically casting values in Flatfile.", "registryMetadata": { "category": "transform" @@ -29,7 +29,7 @@ "dependencies": { "@flatfile/api": "^1.4.9", "@flatfile/listener": "^0.3.10", - "@flatfile/plugin-record-hook": "^1.0.4", - "@flatfile/util-common": "^0.1.1" + "@flatfile/plugin-record-hook": "^1.1.0", + "@flatfile/util-common": "^0.2.0" } } diff --git a/plugins/delimiter-extractor/CHANGELOG.md b/plugins/delimiter-extractor/CHANGELOG.md index 1645e0d38..4bc1743ca 100644 --- a/plugins/delimiter-extractor/CHANGELOG.md +++ b/plugins/delimiter-extractor/CHANGELOG.md @@ -1,5 +1,16 @@ # @flatfile/plugin-delimiter-extractor +## 0.6.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-extractor@0.4.0 + ## 0.5.0 ### Minor Changes diff --git a/plugins/delimiter-extractor/package.json b/plugins/delimiter-extractor/package.json index bbb68d7ce..12c88c790 100644 --- a/plugins/delimiter-extractor/package.json +++ b/plugins/delimiter-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-delimiter-extractor", - "version": "0.5.0", + "version": "0.6.0", "description": "A plugin for parsing a delimited file and extracting it into Flatfile.", "registryMetadata": { "category": "extractors" @@ -29,7 +29,7 @@ "dependencies": { "@flatfile/api": "^1.5.13", "@flatfile/listener": "^0.3.15", - "@flatfile/util-extractor": "0.3.0", + "@flatfile/util-extractor": "0.4.0", "papaparse": "^5.4.1", "remeda": "^1.14.0" }, diff --git a/plugins/job-handler/CHANGELOG.md b/plugins/job-handler/CHANGELOG.md index 63b56939f..9349b7bec 100644 --- a/plugins/job-handler/CHANGELOG.md +++ b/plugins/job-handler/CHANGELOG.md @@ -1,5 +1,12 @@ # @flatfile/plugin-job-handler +## 0.1.1 + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-common@0.2.0 + ## 0.1.0 ### Minor Changes diff --git a/plugins/job-handler/package.json b/plugins/job-handler/package.json index 4ff266b82..d0f02511b 100644 --- a/plugins/job-handler/package.json +++ b/plugins/job-handler/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-job-handler", - "version": "0.1.0", + "version": "0.1.1", "description": "A plugin for handling Flatfile Jobs.", "registryMetadata": { "category": "core" @@ -29,6 +29,6 @@ "dependencies": { "@flatfile/api": "^1.4.9", "@flatfile/listener": "^0.3.15", - "@flatfile/util-common": "^0.1.0" + "@flatfile/util-common": "^0.2.0" } } diff --git a/plugins/json-extractor/CHANGELOG.md b/plugins/json-extractor/CHANGELOG.md index c5a11379f..7d3bb60c2 100644 --- a/plugins/json-extractor/CHANGELOG.md +++ b/plugins/json-extractor/CHANGELOG.md @@ -1,5 +1,16 @@ # @flatfile/plugin-json-extractor +## 0.6.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-extractor@0.4.0 + ## 0.5.0 ### Minor Changes diff --git a/plugins/json-extractor/package.json b/plugins/json-extractor/package.json index 6b946ebb6..3ac367d58 100644 --- a/plugins/json-extractor/package.json +++ b/plugins/json-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-json-extractor", - "version": "0.5.0", + "version": "0.6.0", "description": "A plugin for parsing json files in Flatfile.", "registryMetadata": { "category": "extractors" @@ -30,7 +30,7 @@ "@flatfile/api": "^1.4.9", "@flatfile/hooks": "^1.3.0", "@flatfile/listener": "^0.3.15", - "@flatfile/util-extractor": "0.3.0", + "@flatfile/util-extractor": "0.4.0", "remeda": "^1.14.0" } } \ No newline at end of file diff --git a/plugins/pdf-extractor/CHANGELOG.md b/plugins/pdf-extractor/CHANGELOG.md index 8bfeec5ff..2f43409ad 100644 --- a/plugins/pdf-extractor/CHANGELOG.md +++ b/plugins/pdf-extractor/CHANGELOG.md @@ -1,5 +1,12 @@ # @flatfile/plugin-pdf-extractor +## 0.0.4 + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-file-buffer@0.1.0 + ## 0.0.3 ### Patch Changes diff --git a/plugins/pdf-extractor/package.json b/plugins/pdf-extractor/package.json index 8ae0edc27..f6d0d2d0d 100644 --- a/plugins/pdf-extractor/package.json +++ b/plugins/pdf-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-pdf-extractor", - "version": "0.0.3", + "version": "0.0.4", "description": "A plugin for parsing PDF files in Flatfile.", "registryMetadata": { "category": "extractors" @@ -30,7 +30,7 @@ "@flatfile/api": "^1.5.14", "@flatfile/hooks": "^1.3.1", "@flatfile/listener": "^0.3.15", - "@flatfile/util-file-buffer": "0.0.4", + "@flatfile/util-file-buffer": "0.1.0", "axios": "^1.4.0", "fs-extra": "^11.1.1", "remeda": "^1.14.0" diff --git a/plugins/psv-extractor/CHANGELOG.md b/plugins/psv-extractor/CHANGELOG.md index eaefe7c1e..653dd8001 100644 --- a/plugins/psv-extractor/CHANGELOG.md +++ b/plugins/psv-extractor/CHANGELOG.md @@ -1,5 +1,16 @@ # @flatfile/plugin-psv-extractor +## 1.5.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/plugin-delimiter-extractor@0.6.0 + ## 1.4.0 ### Minor Changes diff --git a/plugins/psv-extractor/package.json b/plugins/psv-extractor/package.json index 1eef212fb..d1eab9a2e 100644 --- a/plugins/psv-extractor/package.json +++ b/plugins/psv-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-psv-extractor", - "version": "1.4.0", + "version": "1.5.0", "description": "A plugin for parsing a psv file and extracting it into Flatfile.", "registryMetadata": { "category": "extractors" @@ -28,6 +28,6 @@ "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.13", - "@flatfile/plugin-delimiter-extractor": "^0.5.0" + "@flatfile/plugin-delimiter-extractor": "^0.6.0" } } diff --git a/plugins/record-hook/CHANGELOG.md b/plugins/record-hook/CHANGELOG.md index 7ea97c218..fcfd59979 100644 --- a/plugins/record-hook/CHANGELOG.md +++ b/plugins/record-hook/CHANGELOG.md @@ -1,5 +1,16 @@ # @flatfile/plugin-record-hook +## 1.1.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-common@0.2.0 + ## 1.0.4 ### Patch Changes diff --git a/plugins/record-hook/package.json b/plugins/record-hook/package.json index 35eeb210a..f8ab89be0 100644 --- a/plugins/record-hook/package.json +++ b/plugins/record-hook/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-record-hook", - "version": "1.0.4", + "version": "1.1.0", "description": "A plugin for writing custom record-level hooks in Flatfile.", "registryMetadata": { "category": "records" @@ -35,7 +35,7 @@ "@flatfile/api": "^1.5.13", "@flatfile/hooks": "^1.3.1", "@flatfile/listener": "^0.3.15", - "@flatfile/util-common": "^0.1.1" + "@flatfile/util-common": "^0.2.0" }, "devDependencies": { "axios": "^1.4.0" diff --git a/plugins/tsv-extractor/CHANGELOG.md b/plugins/tsv-extractor/CHANGELOG.md index 76cae8678..3e4075c00 100644 --- a/plugins/tsv-extractor/CHANGELOG.md +++ b/plugins/tsv-extractor/CHANGELOG.md @@ -1,5 +1,16 @@ # @flatfile/plugin-tsv-extractor +## 1.4.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/plugin-delimiter-extractor@0.6.0 + ## 1.3.0 ### Minor Changes diff --git a/plugins/tsv-extractor/package.json b/plugins/tsv-extractor/package.json index 8ba0b8d0d..ee082c9f8 100644 --- a/plugins/tsv-extractor/package.json +++ b/plugins/tsv-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-tsv-extractor", - "version": "1.3.0", + "version": "1.4.0", "description": "A plugin for parsing a tsv file and extracting it into Flatfile.", "registryMetadata": { "category": "extractors" @@ -28,6 +28,6 @@ "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.13", - "@flatfile/plugin-delimiter-extractor": "^0.5.0" + "@flatfile/plugin-delimiter-extractor": "^0.6.0" } } diff --git a/plugins/xlsx-extractor/CHANGELOG.md b/plugins/xlsx-extractor/CHANGELOG.md index 4a7c01af4..eec99efb9 100644 --- a/plugins/xlsx-extractor/CHANGELOG.md +++ b/plugins/xlsx-extractor/CHANGELOG.md @@ -1,5 +1,16 @@ # @flatfile/plugin-record-hook +## 1.7.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-extractor@0.4.0 + ## 1.6.0 ### Minor Changes diff --git a/plugins/xlsx-extractor/package.json b/plugins/xlsx-extractor/package.json index d96c3cec8..b37ca494f 100644 --- a/plugins/xlsx-extractor/package.json +++ b/plugins/xlsx-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-xlsx-extractor", - "version": "1.6.0", + "version": "1.7.0", "description": "A plugin for parsing xlsx files in Flatfile.", "registryMetadata": { "category": "extractors" @@ -30,7 +30,7 @@ "@flatfile/api": "^1.4.9", "@flatfile/hooks": "^1.3.0", "@flatfile/listener": "^0.3.15", - "@flatfile/util-extractor": "0.3.0", + "@flatfile/util-extractor": "0.4.0", "remeda": "^1.14.0", "xlsx": "^0.18.5" } diff --git a/plugins/xml-extractor/CHANGELOG.md b/plugins/xml-extractor/CHANGELOG.md index 263fc306f..a62b4a008 100644 --- a/plugins/xml-extractor/CHANGELOG.md +++ b/plugins/xml-extractor/CHANGELOG.md @@ -1,5 +1,17 @@ # @flatfile/plugin-dxp-config +## 0.5.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-file-buffer@0.1.0 + - @flatfile/util-extractor@0.4.0 + ## 0.4.0 ### Minor Changes diff --git a/plugins/xml-extractor/package.json b/plugins/xml-extractor/package.json index 0415839fe..ec450a307 100644 --- a/plugins/xml-extractor/package.json +++ b/plugins/xml-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-xml-extractor", - "version": "0.4.0", + "version": "0.5.0", "description": "A plugin for extracting data from XML files.", "registryMetadata": { "category": "extractors" @@ -29,8 +29,8 @@ "dependencies": { "@flatfile/api": "^1.5.13", "@flatfile/listener": "^0.3.15", - "@flatfile/util-extractor": "0.3.0", - "@flatfile/util-file-buffer": "0.0.4", + "@flatfile/util-extractor": "0.4.0", + "@flatfile/util-file-buffer": "0.1.0", "remeda": "^1.24.0", "xml-json-format": "^1.0.8" } diff --git a/plugins/zip-extractor/CHANGELOG.md b/plugins/zip-extractor/CHANGELOG.md index 1e91a94a4..b5e36f868 100644 --- a/plugins/zip-extractor/CHANGELOG.md +++ b/plugins/zip-extractor/CHANGELOG.md @@ -1,5 +1,13 @@ # @flatfile/plugin-zip-extractor +## 0.3.6 + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-file-buffer@0.1.0 + - @flatfile/util-common@0.2.0 + ## 0.3.5 ### Patch Changes diff --git a/plugins/zip-extractor/package.json b/plugins/zip-extractor/package.json index cee876759..8d2bf0b7a 100644 --- a/plugins/zip-extractor/package.json +++ b/plugins/zip-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-zip-extractor", - "version": "0.3.5", + "version": "0.3.6", "description": "A plugin for unzipping zip files and uploading content back in Flatfile.", "registryMetadata": { "category": "extractors" @@ -30,8 +30,8 @@ "@flatfile/api": "^1.4.9", "@flatfile/hooks": "^1.3.0", "@flatfile/listener": "^0.3.15", - "@flatfile/util-common": "^0.1.1", - "@flatfile/util-file-buffer": "^0.0.4", + "@flatfile/util-common": "^0.2.0", + "@flatfile/util-file-buffer": "^0.1.0", "adm-zip": "^0.5.10", "os": "^0.1.2", "remeda": "^1.14.0" diff --git a/utils/common/CHANGELOG.md b/utils/common/CHANGELOG.md index b6f9347c5..4e1e78617 100644 --- a/utils/common/CHANGELOG.md +++ b/utils/common/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/util-common +## 0.2.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + ## 0.1.1 ### Patch Changes diff --git a/utils/common/package.json b/utils/common/package.json index 890c1bc71..0998dff6c 100644 --- a/utils/common/package.json +++ b/utils/common/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/util-common", - "version": "0.1.1", + "version": "0.2.0", "description": "A library containing common utilities and helpers for plugins.", "keywords": [], "author": "Carl Brugger", diff --git a/utils/extractor/CHANGELOG.md b/utils/extractor/CHANGELOG.md index 39a48a055..a7378e145 100644 --- a/utils/extractor/CHANGELOG.md +++ b/utils/extractor/CHANGELOG.md @@ -1,5 +1,17 @@ # @flatfile/plugin-extractor-utils +## 0.4.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + +### Patch Changes + +- Updated dependencies [b399623] + - @flatfile/util-file-buffer@0.1.0 + - @flatfile/util-common@0.2.0 + ## 0.3.0 ### Minor Changes diff --git a/utils/extractor/package.json b/utils/extractor/package.json index b51e1831a..b12326372 100644 --- a/utils/extractor/package.json +++ b/utils/extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/util-extractor", - "version": "0.3.0", + "version": "0.4.0", "description": "A library containing common utilities and helpers for extractors.", "keywords": [], "author": "Carl Brugger", @@ -26,8 +26,8 @@ "dependencies": { "@flatfile/api": "^1.5.13", "@flatfile/listener": "^0.3.15", - "@flatfile/util-common": "^0.1.0", - "@flatfile/util-file-buffer": "0.0.4", + "@flatfile/util-common": "^0.2.0", + "@flatfile/util-file-buffer": "0.1.0", "remeda": "^1.14.0" } } diff --git a/utils/file-buffer/CHANGELOG.md b/utils/file-buffer/CHANGELOG.md index 680cd4265..fca78ae91 100644 --- a/utils/file-buffer/CHANGELOG.md +++ b/utils/file-buffer/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/util-file-buffer +## 0.1.0 + +### Minor Changes + +- b399623: Refactor extractors to handle extraction on job:ready, add debug option, fix asyncBatching + ## 0.0.4 ### Patch Changes diff --git a/utils/file-buffer/package.json b/utils/file-buffer/package.json index 11df19633..11e19d2a3 100644 --- a/utils/file-buffer/package.json +++ b/utils/file-buffer/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/util-file-buffer", - "version": "0.0.4", + "version": "0.1.0", "description": "A utility for extracting data from any file and making it available as a buffer", "registryMetadata": { "category": "utilities"