Skip to content

Commit 2618e29

Browse files
authored
🐛 Source Braintre:: Adds timezone to timestamp in braintree connector (#43953)
1 parent 6841dd6 commit 2618e29

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

airbyte-integrations/connectors/source-braintree/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ data:
55
connectorSubtype: api
66
connectorType: source
77
definitionId: 63cea06f-1c75-458d-88fe-ad48c7cb27fd
8-
dockerImageTag: 0.3.10
8+
dockerImageTag: 0.3.11
99
dockerRepository: airbyte/source-braintree
1010
documentationUrl: https://docs.airbyte.com/integrations/sources/braintree
1111
githubIssueLabel: source-braintree

airbyte-integrations/connectors/source-braintree/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "0.3.10"
6+
version = "0.3.11"
77
name = "source-braintree"
88
description = "Source implementation for Braintree."
99
authors = ["Airbyte <[email protected]>"]

airbyte-integrations/connectors/source-braintree/source_braintree/manifest.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3750,7 +3750,7 @@ streams:
37503750
request_body_json:
37513751
search:
37523752
created_at:
3753-
min: "{{ stream_interval.start_time }}"
3753+
min: "{{ format_datetime(stream_interval.start_time, '%Y-%m-%d %H:%M:%S %z') }}"
37543754
record_selector:
37553755
type: RecordSelector
37563756
extractor:
@@ -9749,7 +9749,7 @@ streams:
97499749
request_body_json:
97509750
search:
97519751
created_at:
9752-
min: "{{ stream_interval.start_time }}"
9752+
min: "{{ format_datetime(stream_interval.start_time, '%Y-%m-%d %H:%M:%S %z') }}"
97539753
record_selector:
97549754
type: RecordSelector
97559755
extractor:
@@ -15707,7 +15707,7 @@ streams:
1570715707
request_body_json:
1570815708
search:
1570915709
created_at:
15710-
min: "{{ stream_interval.start_time }}"
15710+
min: "{{ format_datetime(stream_interval.start_time, '%Y-%m-%d %H:%M:%S %z') }}"
1571115711
record_selector:
1571215712
type: RecordSelector
1571315713
extractor:

docs/integrations/sources/braintree.md

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ The Braintree connector should not run into Braintree API limitations under norm
7272

7373
| Version | Date | Pull Request | Subject |
7474
| :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- |
75+
| 0.3.11 | 2024-08-12 | [43953](https://github.com/airbytehq/airbyte/pull/43953) | Corrects timezone handling |
7576
| 0.3.10 | 2024-08-10 | [43666](https://github.com/airbytehq/airbyte/pull/43666) | Update dependencies |
7677
| 0.3.9 | 2024-08-03 | [43225](https://github.com/airbytehq/airbyte/pull/43225) | Update dependencies |
7778
| 0.3.8 | 2024-07-29 | [42848](https://github.com/airbytehq/airbyte/pull/42848) | Corrects pagination issues |

0 commit comments

Comments
 (0)