Skip to content

Commit bfece07

Browse files
philippeboydmarcosmarxm
authored andcommitted
🐛 Source Shopify: fix wrong field type for tax_exemptions (#10419)
* fix(shopify): wrong type for tax_exemptions abandoned_checkouts customer tax_exemptions had the wrong field type * fix(shopify): wrong type for tax_exemptions abandoned_checkouts customer tax_exemptions had the wrong field type * bump connector version Co-authored-by: marcosmarxm <[email protected]>
1 parent 355998a commit bfece07

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@
690690
- name: Shopify
691691
sourceDefinitionId: 9da77001-af33-4bcd-be46-6252bf9342b9
692692
dockerRepository: airbyte/source-shopify
693-
dockerImageTag: 0.1.32
693+
dockerImageTag: 0.1.33
694694
documentationUrl: https://docs.airbyte.io/integrations/sources/shopify
695695
icon: shopify.svg
696696
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7152,7 +7152,7 @@
71527152
supportsNormalization: false
71537153
supportsDBT: false
71547154
supported_destination_sync_modes: []
7155-
- dockerImage: "airbyte/source-shopify:0.1.32"
7155+
- dockerImage: "airbyte/source-shopify:0.1.33"
71567156
spec:
71577157
documentationUrl: "https://docs.airbyte.io/integrations/sources/shopify"
71587158
connectionSpecification:

airbyte-integrations/connectors/source-shopify/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ COPY source_shopify ./source_shopify
2828
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
2929
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
3030

31-
LABEL io.airbyte.version=0.1.32
31+
LABEL io.airbyte.version=0.1.33
3232
LABEL io.airbyte.name=airbyte/source-shopify

airbyte-integrations/connectors/source-shopify/source_shopify/schemas/abandoned_checkouts.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,10 @@
604604
"type": ["null", "string"]
605605
},
606606
"tax_exemptions": {
607-
"type": ["null", "boolean"]
607+
"type": ["null", "array"],
608+
"items": {
609+
"type": ["null", "string"]
610+
}
608611
},
609612
"id": {
610613
"type": ["null", "integer"]

docs/integrations/sources/shopify.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ This connector support both: `OAuth 2.0` and `API PASSWORD` (for private applica
102102

103103
| Version | Date | Pull Request | Subject |
104104
| :--- | :--- | :--- | :--- |
105+
| 0.1.33 | 2022-02-17 | [10419](https://github.com/airbytehq/airbyte/pull/10419) | Fixed wrong field type for tax_exemptions |
105106
| 0.1.32 | 2022-02-18 | [10449](https://github.com/airbytehq/airbyte/pull/10449) | Added `tender_transactions` stream |
106107
| 0.1.31 | 2022-02-08 | [10175](https://github.com/airbytehq/airbyte/pull/10175) | Fixed compatibility issues for legacy user config |
107108
| 0.1.30 | 2022-01-24 | [9648](https://github.com/airbytehq/airbyte/pull/9648) | Added permission validation before sync |

0 commit comments

Comments
 (0)