Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sourceDefinitionId": "9da77001-af33-4bcd-be46-6252bf9342b9",
"name": "Shopify",
"dockerRepository": "blotout/source-shopify",
"dockerImageTag": "0.1.28",
"dockerImageTag": "0.1.31",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/shopify"
}
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@
- name: Shopify
sourceDefinitionId: 9da77001-af33-4bcd-be46-6252bf9342b9
dockerRepository: blotout/source-shopify
dockerImageTag: 0.1.28
dockerImageTag: 0.1.31
documentationUrl: https://docs.airbyte.io/integrations/sources/shopify
sourceType: api
- name: Short.io
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5184,7 +5184,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "blotout/source-shopify:0.1.28"
- dockerImage: "blotout/source-shopify:0.1.31"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/shopify"
connectionSpecification:
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-shopify/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ COPY source_shopify ./source_shopify
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.28
LABEL io.airbyte.version=0.1.31
LABEL io.airbyte.name=blotout/source-shopify
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
class ShopifyStream(HttpStream, ABC):

# Latest Stable Release
api_version = "2021-07"
api_version = "2023-07"
# Page size
limit = 250
# Define primary key as sort key for full_refresh, or very first sync for incremental_refresh
Expand Down Expand Up @@ -468,7 +468,7 @@ def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) ->
Testing connection availability for the connector.
"""
auth = ShopifyAuthenticator(config).get_auth_header()
api_version = "2021-07" # Latest Stable Release
api_version = "2023-07" # Latest Stable Release
url = f"https://{config['shop']}.myshopify.com/admin/api/{api_version}/shop.json"

try:
Expand Down