From e11da6c227c626ea2dc8b0ac4a82e556b800bf99 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 10 Jul 2024 20:46:57 +0000 Subject: [PATCH] chore: update versions --- .changeset/few-pots-move.md | 12 ------------ plugins/delimiter-extractor/CHANGELOG.md | 16 ++++++++++++++++ plugins/delimiter-extractor/package.json | 4 ++-- plugins/json-extractor/CHANGELOG.md | 7 +++++++ plugins/json-extractor/package.json | 4 ++-- plugins/xlsx-extractor/CHANGELOG.md | 16 ++++++++++++++++ plugins/xlsx-extractor/package.json | 4 ++-- plugins/xml-extractor/CHANGELOG.md | 7 +++++++ plugins/xml-extractor/package.json | 4 ++-- utils/extractor/CHANGELOG.md | 11 +++++++++++ utils/extractor/package.json | 2 +- 11 files changed, 66 insertions(+), 21 deletions(-) delete mode 100644 .changeset/few-pots-move.md diff --git a/.changeset/few-pots-move.md b/.changeset/few-pots-move.md deleted file mode 100644 index 863cf57f2..000000000 --- a/.changeset/few-pots-move.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@flatfile/plugin-delimiter-extractor': major -'@flatfile/plugin-xlsx-extractor': major -'@flatfile/util-extractor': major ---- - -Removed the 'Required' field check from extractors and the subsequent field.constraints.required. -This is a breaking change if you are using this required field check in your implementation. - -Source sheets don't require the field.constraints.required. - -If you need to implement this functionality you can use a listener to add in the field.constraints.required to the specific fields you need. \ No newline at end of file diff --git a/plugins/delimiter-extractor/CHANGELOG.md b/plugins/delimiter-extractor/CHANGELOG.md index 5c57b6122..3929f0b10 100644 --- a/plugins/delimiter-extractor/CHANGELOG.md +++ b/plugins/delimiter-extractor/CHANGELOG.md @@ -1,5 +1,21 @@ # @flatfile/plugin-delimiter-extractor +## 2.0.0 + +### Major Changes + +- a6e764b: Removed the 'Required' field check from extractors and the subsequent field.constraints.required. + This is a breaking change if you are using this required field check in your implementation. + + Source sheets don't require the field.constraints.required. + + If you need to implement this functionality you can use a listener to add in the field.constraints.required to the specific fields you need. + +### Patch Changes + +- Updated dependencies [a6e764b] + - @flatfile/util-extractor@2.0.0 + ## 1.0.1 ### Patch Changes diff --git a/plugins/delimiter-extractor/package.json b/plugins/delimiter-extractor/package.json index b436e431f..1af133c41 100644 --- a/plugins/delimiter-extractor/package.json +++ b/plugins/delimiter-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-delimiter-extractor", - "version": "1.0.1", + "version": "2.0.0", "url": "https://github.com/FlatFilers/flatfile-plugins/tree/main/plugins/delimiter-extractor", "description": "A plugin for parsing .delimiter files in Flatfile.", "registryMetadata": { @@ -32,7 +32,7 @@ }, "license": "ISC", "dependencies": { - "@flatfile/util-extractor": "^1.0.1", + "@flatfile/util-extractor": "^2.0.0", "papaparse": "^5.4.1", "remeda": "^1.14.0" }, diff --git a/plugins/json-extractor/CHANGELOG.md b/plugins/json-extractor/CHANGELOG.md index 40b222256..fce45d895 100644 --- a/plugins/json-extractor/CHANGELOG.md +++ b/plugins/json-extractor/CHANGELOG.md @@ -1,5 +1,12 @@ # @flatfile/plugin-json-extractor +## 0.7.7 + +### Patch Changes + +- Updated dependencies [a6e764b] + - @flatfile/util-extractor@2.0.0 + ## 0.7.6 ### Patch Changes diff --git a/plugins/json-extractor/package.json b/plugins/json-extractor/package.json index 8f343a0fe..1c6dc0a1e 100644 --- a/plugins/json-extractor/package.json +++ b/plugins/json-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-json-extractor", - "version": "0.7.6", + "version": "0.7.7", "url": "https://github.com/FlatFilers/flatfile-plugins/tree/main/plugins/json-extractor", "description": "A plugin for parsing json files in Flatfile.", "registryMetadata": { @@ -52,7 +52,7 @@ }, "license": "ISC", "dependencies": { - "@flatfile/util-extractor": "^1.0.0" + "@flatfile/util-extractor": "^2.0.0" }, "devDependencies": { "@flatfile/rollup-config": "0.1.1" diff --git a/plugins/xlsx-extractor/CHANGELOG.md b/plugins/xlsx-extractor/CHANGELOG.md index 448cec7a2..fb66edf57 100644 --- a/plugins/xlsx-extractor/CHANGELOG.md +++ b/plugins/xlsx-extractor/CHANGELOG.md @@ -1,5 +1,21 @@ # @flatfile/plugin-xlsx-extractor +## 3.0.0 + +### Major Changes + +- a6e764b: Removed the 'Required' field check from extractors and the subsequent field.constraints.required. + This is a breaking change if you are using this required field check in your implementation. + + Source sheets don't require the field.constraints.required. + + If you need to implement this functionality you can use a listener to add in the field.constraints.required to the specific fields you need. + +### Patch Changes + +- Updated dependencies [a6e764b] + - @flatfile/util-extractor@2.0.0 + ## 2.0.1 ### Patch Changes diff --git a/plugins/xlsx-extractor/package.json b/plugins/xlsx-extractor/package.json index 37393a7f5..2fd5479f4 100644 --- a/plugins/xlsx-extractor/package.json +++ b/plugins/xlsx-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-xlsx-extractor", - "version": "2.0.1", + "version": "3.0.0", "url": "https://github.com/FlatFilers/flatfile-plugins/tree/main/plugins/xlsx-extractor", "description": "A plugin for parsing xlsx files in Flatfile.", "registryMetadata": { @@ -32,7 +32,7 @@ }, "license": "ISC", "dependencies": { - "@flatfile/util-extractor": "^1.0.1", + "@flatfile/util-extractor": "^2.0.0", "remeda": "^1.14.0", "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz" }, diff --git a/plugins/xml-extractor/CHANGELOG.md b/plugins/xml-extractor/CHANGELOG.md index 391c9ede3..3308c9343 100644 --- a/plugins/xml-extractor/CHANGELOG.md +++ b/plugins/xml-extractor/CHANGELOG.md @@ -1,5 +1,12 @@ # @flatfile/plugin-dxp-config +## 0.5.19 + +### Patch Changes + +- Updated dependencies [a6e764b] + - @flatfile/util-extractor@2.0.0 + ## 0.5.18 ### Patch Changes diff --git a/plugins/xml-extractor/package.json b/plugins/xml-extractor/package.json index a50a9c0d8..cd3b4cf8e 100644 --- a/plugins/xml-extractor/package.json +++ b/plugins/xml-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-xml-extractor", - "version": "0.5.18", + "version": "0.5.19", "description": "A plugin for parsing .xml files in Flatfile.", "registryMetadata": { "category": "extractors" @@ -31,7 +31,7 @@ }, "license": "ISC", "dependencies": { - "@flatfile/util-extractor": "^1.0.1", + "@flatfile/util-extractor": "^2.0.0", "remeda": "^1.24.0", "xml-json-format": "^1.0.8" }, diff --git a/utils/extractor/CHANGELOG.md b/utils/extractor/CHANGELOG.md index 6f77eab46..7686fcb6a 100644 --- a/utils/extractor/CHANGELOG.md +++ b/utils/extractor/CHANGELOG.md @@ -1,5 +1,16 @@ # @flatfile/plugin-extractor-utils +## 2.0.0 + +### Major Changes + +- a6e764b: Removed the 'Required' field check from extractors and the subsequent field.constraints.required. + This is a breaking change if you are using this required field check in your implementation. + + Source sheets don't require the field.constraints.required. + + If you need to implement this functionality you can use a listener to add in the field.constraints.required to the specific fields you need. + ## 1.0.1 ### Patch Changes diff --git a/utils/extractor/package.json b/utils/extractor/package.json index 709cb7ef4..f9097f217 100644 --- a/utils/extractor/package.json +++ b/utils/extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/util-extractor", - "version": "1.0.1", + "version": "2.0.0", "url": "https://github.com/FlatFilers/flatfile-plugins/tree/main/utils/extractor", "description": "A library containing common utilities and helpers for extractors.", "keywords": [