Skip to content

fix(source-hubspot): Add missing cursor format for workflows stream state migration #59755

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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 @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c
dockerImageTag: 4.12.0
dockerImageTag: 4.12.1
dockerRepository: airbyte/source-hubspot
documentationUrl: https://docs.airbyte.com/integrations/sources/hubspot
erdUrl: https://dbdocs.io/airbyteio/source-hubspot?view=relationships
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "4.12.0"
version = "4.12.1"
name = "source-hubspot"
description = "Source implementation for HubSpot."
authors = [ "Airbyte <[email protected]>",]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,7 @@ definitions:
- type: CustomStateMigration
class_name: source_hubspot.components.MigrateEmptyStringState
cursor_field: updatedAt
cursor_format: "%ms"

email_events_stream:
$ref: "#/definitions/stream_base"
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/hubspot.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ The connector is restricted by normal HubSpot [rate limitations](https://legacyd

| Version | Date | Pull Request | Subject |
|:-----------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 4.12.1 | 2025-05-09 | [59755](https://github.com/airbytehq/airbyte/pull/59755) | Add missing cursor format for workflows stream state migration |
| 4.12.0 | 2025-05-09 | [58592](https://github.com/airbytehq/airbyte/pull/58592) | Migrate incremental streams: email_events, engagements, subscription_changes |
| 4.11.0 | 2025-05-07 | [59216](https://github.com/airbytehq/airbyte/pull/59216) | Migrate workflows to low code |
| 4.10.0 | 2025-05-07 | [59195](https://github.com/airbytehq/airbyte/pull/59195) | Migrate deal_pipelines to low code |
Expand Down
Loading