Skip to content

Commit

Permalink
🚨🚨🐛 Source Mailchimp: Multiple schema updates and fixes (airbytehq#32836
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ChristoGrab authored and jatinyadav-cc committed Feb 26, 2024
1 parent 57f62b1 commit ac1715c
Show file tree
Hide file tree
Showing 17 changed files with 417 additions and 326 deletions.

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,6 @@
"stream_descriptor": { "name": "reports" }
}
},
{
"type": "STREAM",
"stream": {
"stream_state": {
"16d6ec4ffc": { "last_changed": "2230-02-26T05:42:10+00:00" }
},
"stream_descriptor": { "name": "segment_members" }
}
},
{
"type": "STREAM",
"stream": {
Expand Down
16 changes: 15 additions & 1 deletion airbyte-integrations/connectors/source-mailchimp/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: b03a9f3e-22a5-11eb-adc1-0242ac120002
dockerImageTag: 0.10.0
dockerImageTag: 1.0.0
dockerRepository: airbyte/source-mailchimp
documentationUrl: https://docs.airbyte.com/integrations/sources/mailchimp
githubIssueLabel: source-mailchimp
Expand All @@ -22,7 +22,21 @@ data:
enabled: true
oss:
enabled: true
releases:
breakingChanges:
1.0.0:
message:
Version 1.0.0 introduces schema changes to all incremental streams.
A full schema refresh and data reset are required to upgrade to this version.
For more details, see our <a href='https://docs.airbyte.io/integrations/sources/mailchimp-migrations'>migration guide</a>.
upgradeDeadline: "2024-01-10"
releaseStage: generally_available
suggestedStreams:
streams:
- email_activity
- campaigns
- lists
- reports
supportLevel: certified
tags:
- language:python
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@
"type": ["null", "string"]
},
"create_time": {
"type": ["null", "string"]
"type": ["null", "string"],
"format": "date-time",
"airbyte-type": "timestamp_with_timezone"
},
"start_time": {
"type": ["null", "string"]
"type": ["null", "string"],
"format": "date-time",
"airbyte_type": "timestamp_with_timezone"
},
"status": {
"type": ["null", "string"]
Expand Down Expand Up @@ -42,7 +46,10 @@
},
"conditions": {
"type": ["null", "array"],
"items": {}
"items": {
"type": ["null", "object"],
"additionalProperties": true
}
}
}
},
Expand Down Expand Up @@ -180,29 +187,6 @@
"type": ["null", "number"]
}
}
},
"_links": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"rel": {
"type": ["null", "string"]
},
"href": {
"type": ["null", "string"]
},
"method": {
"type": ["null", "string"]
},
"targetSchema": {
"type": ["null", "string"]
},
"schema": {
"type": ["null", "string"]
}
}
}
}
}
}
Loading

0 comments on commit ac1715c

Please sign in to comment.