Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source Pipedrive: correct schema removing timestamp from fields #5642

Merged
merged 3 commits into from
Aug 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sourceDefinitionId": "d8286229-c680-4063-8c59-23b9b391c700",
"name": "Pipedrive",
"dockerRepository": "airbyte/source-pipedrive",
"dockerImageTag": "0.1.2",
"dockerImageTag": "0.1.3",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/pipedrive"
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
- sourceDefinitionId: d8286229-c680-4063-8c59-23b9b391c700
name: Pipedrive
dockerRepository: airbyte/source-pipedrive
dockerImageTag: 0.1.2
dockerImageTag: 0.1.3
documentationUrl: https://docs.airbyte.io/integrations/sources/pipedrive
- sourceDefinitionId: decd338e-5647-4c0b-adf4-da0e75f5a750
name: Postgres
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.1.2
LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.name=airbyte/source-pipedrive
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@
"format": "date-time"
},
"next_activity_time": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "string"]
},
"next_activity_id": {
"type": ["null", "integer"]
Expand Down Expand Up @@ -154,8 +153,7 @@
"type": ["null", "string"]
},
"next_activity_duration": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "string"]
},
"next_activity_note": {
"type": ["null", "string"]
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/pipedrive.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ See [How to find the API token](https://pipedrive.readme.io/docs/how-to-find-the

| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.1.3 | 2021-08-26 | [5642](https://github.com/airbytehq/airbyte/pull/5642) | Remove date-time from deals stream |
| 0.1.2 | 2021-07-23 | [4912](https://github.com/airbytehq/airbyte/pull/4912) | Update money type to support floating point |
| 0.1.1 | 2021-07-19 | [4686](https://github.com/airbytehq/airbyte/pull/4686) | Update spec.json |
| 0.1.0 | 2021-07-19 | [4686](https://github.com/airbytehq/airbyte/pull/4686) | Release Pipedrive connector! |