🐛 Source Braintre:: Adds timezone to timestamp in braintree connector (#43953)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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>"]
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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 |
|
||||
|
||||
Reference in New Issue
Block a user