Skip to content

Commit 92ad60b

Browse files
author
Anton Karpets
authored
🐛Source Mailchimp: fix cursor format for email_activity stream (#37434)
1 parent 80b1b1d commit 92ad60b

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ data:
1111
connectorSubtype: api
1212
connectorType: source
1313
definitionId: b03a9f3e-22a5-11eb-adc1-0242ac120002
14-
dockerImageTag: 2.0.0
14+
dockerImageTag: 2.0.1
1515
dockerRepository: airbyte/source-mailchimp
1616
documentationUrl: https://docs.airbyte.com/integrations/sources/mailchimp
1717
githubIssueLabel: source-mailchimp

airbyte-integrations/connectors/source-mailchimp/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 = "2.0.0"
6+
version = "2.0.1"
77
name = "source-mailchimp"
88
description = "Source implementation for Mailchimp."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-mailchimp/source_mailchimp/manifest.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,9 @@ definitions:
331331
field_path: ["{{ parameters.get('data_field') }}"]
332332
incremental_sync:
333333
type: DatetimeBasedCursor
334-
datetime_format: "%Y-%m-%dT%H:%M:%S%z"
334+
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
335+
cursor_datetime_formats:
336+
- "%Y-%m-%dT%H:%M:%S%z"
335337
cursor_field: "{{ parameters['cursor_field'] }}"
336338
start_datetime:
337339
type: MinMaxDatetime

docs/integrations/sources/mailchimp.md

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ Now that you have set up the Mailchimp source connector, check out the following
123123

124124
| Version | Date | Pull Request | Subject |
125125
|---------|------------|----------------------------------------------------------|----------------------------------------------------------------------------|
126+
| 2.0.1 | 2024-04-19 | [37434](https://github.com/airbytehq/airbyte/pull/37434) | Fix cursor format for the `email_activity` stream |
126127
| 2.0.0 | 2024-04-01 | [35281](https://github.com/airbytehq/airbyte/pull/35281) | Migrate to Low-Code |
127128
| 1.2.0 | 2024-03-28 | [36600](https://github.com/airbytehq/airbyte/pull/36600) | Migrate to latest Airbyte-CDK. |
128129
| 1.1.2 | 2024-02-09 | [35092](https://github.com/airbytehq/airbyte/pull/35092) | Manage dependencies with Poetry. |

0 commit comments

Comments
 (0)