From b049d998e780c76711879068759a09e772318bba Mon Sep 17 00:00:00 2001 From: Arsen Losenko <20901439+arsenlosenko@users.noreply.github.com> Date: Fri, 11 Aug 2023 14:44:48 +0300 Subject: [PATCH] Source Hubspot: set `threadId` to string in `engagements` stream (#29248) * Source Hubspot: set to string in stream * Update changelog * Update expected records --- airbyte-integrations/connectors/source-hubspot/Dockerfile | 2 +- airbyte-integrations/connectors/source-hubspot/metadata.yaml | 4 ++-- .../source-hubspot/source_hubspot/schemas/engagements.json | 2 +- docs/integrations/sources/hubspot.md | 3 ++- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-hubspot/Dockerfile b/airbyte-integrations/connectors/source-hubspot/Dockerfile index 5b798a30ddbc..863dd6c768d8 100644 --- a/airbyte-integrations/connectors/source-hubspot/Dockerfile +++ b/airbyte-integrations/connectors/source-hubspot/Dockerfile @@ -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=1.3.2 +LABEL io.airbyte.version=1.3.3 LABEL io.airbyte.name=airbyte/source-hubspot diff --git a/airbyte-integrations/connectors/source-hubspot/metadata.yaml b/airbyte-integrations/connectors/source-hubspot/metadata.yaml index 80338530baf9..27690ba25ba3 100644 --- a/airbyte-integrations/connectors/source-hubspot/metadata.yaml +++ b/airbyte-integrations/connectors/source-hubspot/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c - dockerImageTag: 1.3.2 + dockerImageTag: 1.3.3 dockerRepository: airbyte/source-hubspot githubIssueLabel: source-hubspot icon: hubspot.svg @@ -14,7 +14,7 @@ data: registries: cloud: enabled: true - dockerImageTag: 1.3.2 + dockerImageTag: 1.3.3 oss: enabled: true releaseStage: generally_available diff --git a/airbyte-integrations/connectors/source-hubspot/source_hubspot/schemas/engagements.json b/airbyte-integrations/connectors/source-hubspot/source_hubspot/schemas/engagements.json index 3a0d548dab12..07212bcbf3e4 100644 --- a/airbyte-integrations/connectors/source-hubspot/source_hubspot/schemas/engagements.json +++ b/airbyte-integrations/connectors/source-hubspot/source_hubspot/schemas/engagements.json @@ -263,7 +263,7 @@ } }, "threadId": { - "type": ["null", "string", "integer"] + "type": ["null", "string"] }, "messageId": { "type": ["null", "string"] diff --git a/docs/integrations/sources/hubspot.md b/docs/integrations/sources/hubspot.md index 211eebe3dc60..ba137bf7a2e4 100644 --- a/docs/integrations/sources/hubspot.md +++ b/docs/integrations/sources/hubspot.md @@ -204,8 +204,9 @@ Now that you have set up the Hubspot source connector, check out the following H | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 1.3.3 | 2023-08-10 | [29248](https://github.com/airbytehq/airbyte/pull/29248) | Specify `threadId` in `engagements` stream to type string | | 1.3.2 | 2023-08-10 | [29326](https://github.com/airbytehq/airbyte/pull/29326) | Add primary keys to streams `ContactLists` and `PropertyHistory` | -| 1.3.1 | 2023-08-08 | [29211](https://github.com/airbytehq/airbyte/pull/29211) | Handle 400 and 403 errors without interruption of the sync | +| 1.3.1 | 2023-08-08 | [29211](https://github.com/airbytehq/airbyte/pull/29211) | Handle 400 and 403 errors without interruption of the sync | | 1.3.0 | 2023-08-01 | [28909](https://github.com/airbytehq/airbyte/pull/28909) | Add handling of source connection errors | | 1.2.0 | 2023-07-27 | [27091](https://github.com/airbytehq/airbyte/pull/27091) | Add new stream `ContactsMergedAudit` | | 1.1.2 | 2023-07-27 | [28558](https://github.com/airbytehq/airbyte/pull/28558) | Improve error messages during connector setup |