Skip to content

Commit

Permalink
🐛 Source Hubspot: correct createAt and updateAd data type (#12424)
Browse files Browse the repository at this point in the history
* correct createAt and updateAd data type

* bump connectorversion

* bump connector version again
  • Loading branch information
marcosmarxm committed Apr 28, 2022
1 parent aab1533 commit e0902e6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
- name: HubSpot
sourceDefinitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c
dockerRepository: airbyte/source-hubspot
dockerImageTag: 0.1.53
dockerImageTag: 0.1.55
documentationUrl: https://docs.airbyte.io/integrations/sources/hubspot
icon: hubspot.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3480,7 +3480,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-hubspot:0.1.53"
- dockerImage: "airbyte/source-hubspot:0.1.55"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/hubspot"
connectionSpecification:
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-hubspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_hubspot ./source_hubspot
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.53
LABEL io.airbyte.version=0.1.55
LABEL io.airbyte.name=airbyte/source-hubspot
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@
"type": ["null", "string"]
},
"createdAt": {
"type": ["null", "integer"]
"type": ["null", "string"],
"format": "date-time"
},
"updatedAt": {
"type": ["null", "integer"]
"type": ["null", "string"],
"format": "date-time"
},
"active": {
"type": ["null", "boolean"]
Expand All @@ -49,10 +51,12 @@
}
},
"createdAt": {
"type": ["null", "integer"]
"type": ["null", "string"],
"format": "date-time"
},
"updatedAt": {
"type": ["null", "integer"]
"type": ["null", "string"],
"format": "date-time"
}
}
}
3 changes: 3 additions & 0 deletions docs/integrations/sources/hubspot.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ If you are using OAuth, most of the streams require the appropriate [scopes](htt

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------|
| 0.1.55 | 2022-04-28 | [12424](https://github.com/airbytehq/airbyte/pull/12424) | Correct schema for ticket_pipeline stream |
| 0.1.54 | 2022-04-28 | [12335](https://github.com/airbytehq/airbyte/pull/12335) | Mock time slep in unit test s |
| 0.1.53 | 2022-04-20 | [12230](https://github.com/airbytehq/airbyte/pull/12230) | chaneg spec json to yaml format |
| 0.1.52 | 2022-03-25 | [11423](https://github.com/airbytehq/airbyte/pull/11423) | Add tickets associations to engagements streams |
| 0.1.51 | 2022-03-24 | [11321](https://github.com/airbytehq/airbyte/pull/11321) | Fix updated at field non exists issue |
| 0.1.50 | 2022-03-22 | [11266](https://github.com/airbytehq/airbyte/pull/11266) | Fix Engagements Stream Pagination |
Expand Down

0 comments on commit e0902e6

Please sign in to comment.