1
0
mirror of synced 2025-12-23 21:03:15 -05:00

🎉 Source Shopify: Add status property to Products stream (#5276)

Contributor's PR, additional checks are in: https://github.com/airbytehq/airbyte/pull/5286

Co-authored-by: Oleksandr <oleksandr.bazarnov@globallogic.com>
This commit is contained in:
Rodrigo Parra
2021-08-09 17:20:31 -04:00
committed by GitHub
parent f790fee57c
commit 08626bc0dd
5 changed files with 7 additions and 3 deletions

View File

@@ -2,6 +2,6 @@
"sourceDefinitionId": "9da77001-af33-4bcd-be46-6252bf9342b9",
"name": "Shopify",
"dockerRepository": "airbyte/source-shopify",
"dockerImageTag": "0.1.11",
"dockerImageTag": "0.1.12",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/shopify"
}

View File

@@ -148,7 +148,7 @@
- sourceDefinitionId: 9da77001-af33-4bcd-be46-6252bf9342b9
name: Shopify
dockerRepository: airbyte/source-shopify
dockerImageTag: 0.1.11
dockerImageTag: 0.1.12
documentationUrl: https://docs.airbyte.io/integrations/sources/shopify
- sourceDefinitionId: e87ffa8e-a3b5-f69c-9076-6011339de1f6
name: Redshift

View File

@@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.1.11
LABEL io.airbyte.version=0.1.12
LABEL io.airbyte.name=airbyte/source-shopify

View File

@@ -12,6 +12,9 @@
"published_scope": {
"type": ["null", "string"]
},
"status": {
"type": ["null", "string"]
},
"vendor": {
"type": ["null", "string"]
},

View File

@@ -61,6 +61,7 @@ Shopify has some [rate limit restrictions](https://shopify.dev/concepts/about-ap
| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.1.12 | 2021-08-09 | [5276](https://github.com/airbytehq/airbyte/pull/5276) | Add status property to product schema |
| 0.1.11 | 2021-07-23 | [4943](https://github.com/airbytehq/airbyte/pull/4943) | Fix products schema up to API 2021-07 |
| 0.1.10 | 2021-07-19 | [4830](https://github.com/airbytehq/airbyte/pull/4830) | Fix for streams json schemas, upgrade to API version 2021-07 |
| 0.1.9 | 2021-07-04 | [4472](https://github.com/airbytehq/airbyte/pull/4472) | Incremental sync is now using updated_at instead of since_id by default |