Skip to content

Commit

Permalink
Source Mailchimp: fix primary key for email activities (airbytehq#5137)
Browse files Browse the repository at this point in the history
* upgrade primary key for mailchimp email activities

* bump version
  • Loading branch information
vovavovavovavova authored Aug 4, 2021
1 parent 056062b commit 1e45000
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "b03a9f3e-22a5-11eb-adc1-0242ac120002",
"name": "Mailchimp",
"dockerRepository": "airbyte/source-mailchimp",
"dockerImageTag": "0.2.6",
"dockerImageTag": "0.2.7",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-mailchimp",
"icon": "mailchimp.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
- sourceDefinitionId: b03a9f3e-22a5-11eb-adc1-0242ac120002
name: Mailchimp
dockerRepository: airbyte/source-mailchimp
dockerImageTag: 0.2.6
dockerImageTag: 0.2.7
documentationUrl: https://hub.docker.com/r/airbyte/source-mailchimp
icon: mailchimp.svg
- sourceDefinitionId: 39f092a6-8c87-4f6f-a8d9-5cef45b7dbe1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.6
LABEL io.airbyte.version=0.2.7
LABEL io.airbyte.name=airbyte/source-mailchimp
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def path(self, **kwargs) -> str:
class EmailActivity(IncrementalMailChimpStream):
cursor_field = "timestamp"
data_field = "emails"
primary_key = None

def stream_slices(self, **kwargs):
campaign_stream = Campaigns(authenticator=self.authenticator)
Expand Down
3 changes: 2 additions & 1 deletion docs/integrations/sources/mailchimp.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ To start syncing Mailchimp data with Airbyte, you'll need two things:

| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.2.5 | 2021-07-28 | [5024](https://github.com/airbytehq/airbyte/pull/5024) | Source Mailchimp: handle records with no no "activity" field in response |
| 0.2.7 | 2021-08-03 | [5137](https://github.com/airbytehq/airbyte/pull/5137) | Source Mailchimp: fix primary key for email activities |
| 0.2.6 | 2021-07-28 | [5024](https://github.com/airbytehq/airbyte/pull/5024) | Source Mailchimp: handle records with no no "activity" field in response |
| 0.2.5 | 2021-07-08 | [4621](https://github.com/airbytehq/airbyte/pull/4621) | Mailchimp fix url-base |
| 0.2.4 | 2021-06-09 | [4285](https://github.com/airbytehq/airbyte/pull/4285) | Use datacenter URL parameter from apikey |
| 0.2.3 | 2021-06-08 | [3973](https://github.com/airbytehq/airbyte/pull/3973) | Add AIRBYTE_ENTRYPOINT for Kubernetes support |
Expand Down

0 comments on commit 1e45000

Please sign in to comment.