1
0
mirror of synced 2025-12-25 02:09:19 -05:00

🐛 Source Braintre:: Adds timezone to timestamp in braintree connector (#43953)

This commit is contained in:
Antonio Papa
2024-08-20 01:56:10 -04:00
committed by GitHub
parent 6841dd63a6
commit 2618e2931b
4 changed files with 6 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 63cea06f-1c75-458d-88fe-ad48c7cb27fd
dockerImageTag: 0.3.10
dockerImageTag: 0.3.11
dockerRepository: airbyte/source-braintree
documentationUrl: https://docs.airbyte.com/integrations/sources/braintree
githubIssueLabel: source-braintree

View File

@@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.3.10"
version = "0.3.11"
name = "source-braintree"
description = "Source implementation for Braintree."
authors = ["Airbyte <contact@airbyte.io>"]

View File

@@ -3750,7 +3750,7 @@ streams:
request_body_json:
search:
created_at:
min: "{{ stream_interval.start_time }}"
min: "{{ format_datetime(stream_interval.start_time, '%Y-%m-%d %H:%M:%S %z') }}"
record_selector:
type: RecordSelector
extractor:
@@ -9749,7 +9749,7 @@ streams:
request_body_json:
search:
created_at:
min: "{{ stream_interval.start_time }}"
min: "{{ format_datetime(stream_interval.start_time, '%Y-%m-%d %H:%M:%S %z') }}"
record_selector:
type: RecordSelector
extractor:
@@ -15707,7 +15707,7 @@ streams:
request_body_json:
search:
created_at:
min: "{{ stream_interval.start_time }}"
min: "{{ format_datetime(stream_interval.start_time, '%Y-%m-%d %H:%M:%S %z') }}"
record_selector:
type: RecordSelector
extractor:

View File

@@ -72,6 +72,7 @@ The Braintree connector should not run into Braintree API limitations under norm
| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- |
| 0.3.11 | 2024-08-12 | [43953](https://github.com/airbytehq/airbyte/pull/43953) | Corrects timezone handling |
| 0.3.10 | 2024-08-10 | [43666](https://github.com/airbytehq/airbyte/pull/43666) | Update dependencies |
| 0.3.9 | 2024-08-03 | [43225](https://github.com/airbytehq/airbyte/pull/43225) | Update dependencies |
| 0.3.8 | 2024-07-29 | [42848](https://github.com/airbytehq/airbyte/pull/42848) | Corrects pagination issues |