Skip to content

Commit 49b7787

Browse files
committed
Merge branch 'bugfix/tax_exemptions-type' of github.com:philippeboyd/airbyte into marcos/test-pr-10419
2 parents 833f79a + 3089c69 commit 49b7787

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
@@ -669,7 +669,7 @@
669669
- name: Shopify
670670
sourceDefinitionId: 9da77001-af33-4bcd-be46-6252bf9342b9
671671
dockerRepository: airbyte/source-shopify
672-
dockerImageTag: 0.1.31
672+
dockerImageTag: 0.1.32
673673
documentationUrl: https://docs.airbyte.io/integrations/sources/shopify
674674
icon: shopify.svg
675675
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
@@ -7041,7 +7041,7 @@
70417041
supportsNormalization: false
70427042
supportsDBT: false
70437043
supported_destination_sync_modes: []
7044-
- dockerImage: "airbyte/source-shopify:0.1.31"
7044+
- dockerImage: "airbyte/source-shopify:0.1.32"
70457045
spec:
70467046
documentationUrl: "https://docs.airbyte.io/integrations/sources/shopify"
70477047
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.31
31+
LABEL io.airbyte.version=0.1.32
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
@@ -101,6 +101,7 @@ This connector support both: `OAuth 2.0` and `API PASSWORD` (for private applica
101101

102102
| Version | Date | Pull Request | Subject |
103103
| :--- | :--- | :--- | :--- |
104+
| 0.1.32 | 2022-02-17 | [10419](https://github.com/airbytehq/airbyte/pull/10419) | Fixed wrong field type for tax_exemptions |
104105
| 0.1.31 | 2022-02-08 | [10175](https://github.com/airbytehq/airbyte/pull/10175) | Fixed compatibility issues for legacy user config |
105106
| 0.1.30 | 2022-01-24 | [9648](https://github.com/airbytehq/airbyte/pull/9648) | Added permission validation before sync |
106107
| 0.1.29 | 2022-01-20 | [9049](https://github.com/airbytehq/airbyte/pull/9248) | Added `shop_url` to the record for all streams |

0 commit comments

Comments
 (0)