From 30bde159bfe68b8e635d4e28e76c32880d610270 Mon Sep 17 00:00:00 2001 From: Marcos Marx Date: Wed, 17 Nov 2021 22:18:02 -0300 Subject: [PATCH] Publish PR 7936: add exclude weekends to exchange rate connector (#8071) * Source Exchange Rates: add ignore_weekends boolean option * unformat * backward compatibility for ignore_weekends option Co-authored-by: Marcos Marx * Add changelog * bump version Co-authored-by: Deividas J --- .../e2b40e36-aa0e-4bed-b41b-bcea6fa348b1.json | 2 +- .../init/src/main/resources/seed/source_definitions.yaml | 2 +- .../init/src/main/resources/seed/source_specs.yaml | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/e2b40e36-aa0e-4bed-b41b-bcea6fa348b1.json b/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/e2b40e36-aa0e-4bed-b41b-bcea6fa348b1.json index 455811b714691..3cbdb567bd7c3 100644 --- a/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/e2b40e36-aa0e-4bed-b41b-bcea6fa348b1.json +++ b/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/e2b40e36-aa0e-4bed-b41b-bcea6fa348b1.json @@ -2,7 +2,7 @@ "sourceDefinitionId": "e2b40e36-aa0e-4bed-b41b-bcea6fa348b1", "name": "Exchange Rates Api", "dockerRepository": "airbyte/source-exchange-rates", - "dockerImageTag": "0.2.4", + "dockerImageTag": "0.2.5", "documentationUrl": "https://docs.airbyte.io/integrations/sources/exchangeratesapi", "icon": "exchangeratesapi.svg" } diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index 1f06117bb4f11..c3e8317dc3e72 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -130,7 +130,7 @@ - name: Exchange Rates Api sourceDefinitionId: e2b40e36-aa0e-4bed-b41b-bcea6fa348b1 dockerRepository: airbyte/source-exchange-rates - dockerImageTag: 0.2.4 + dockerImageTag: 0.2.5 documentationUrl: https://docs.airbyte.io/integrations/sources/exchangeratesapi icon: exchangeratesapi.svg sourceType: api diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index 31450e5838ed5..eefc469674fae 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -1098,7 +1098,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-exchange-rates:0.2.4" +- dockerImage: "airbyte/source-exchange-rates:0.2.5" spec: documentationUrl: "https://docs.airbyte.io/integrations/sources/exchangeratesapi" connectionSpecification: @@ -1129,6 +1129,10 @@ examples: - "EUR" - "USD" + ignore_weekends: + type: "boolean" + description: "Ignore weekends? (Exchanges don't run on weekends)" + default: true supportsNormalization: false supportsDBT: false supported_destination_sync_modes: []