Skip to content

Commit

Permalink
Source Typeform: Unpin CDK version (#36164)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristoGrab committed Mar 18, 2024
1 parent f18e8e4 commit 8b849ab
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 40 deletions.
Expand Up @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: e7eff203-90bf-43e5-a240-19ea3056c474
dockerImageTag: 1.2.5
dockerImageTag: 1.2.6
dockerRepository: airbyte/source-typeform
documentationUrl: https://docs.airbyte.com/integrations/sources/typeform
githubIssueLabel: source-typeform
Expand Down
68 changes: 34 additions & 34 deletions airbyte-integrations/connectors/source-typeform/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "1.2.5"
version = "1.2.6"
name = "source-typeform"
description = "Source implementation for Typeform."
authors = [ "Airbyte <contact@airbyte.io>",]
Expand All @@ -17,7 +17,7 @@ include = "source_typeform"

[tool.poetry.dependencies]
python = "^3.9,<3.12"
airbyte-cdk = "==0.59.0"
airbyte-cdk = "^0"

[tool.poetry.scripts]
source-typeform = "source_typeform.run:run"
Expand Down
Expand Up @@ -30,10 +30,10 @@ def stream_slices(self) -> Iterable[StreamSlice]:

if form_ids:
for item in form_ids:
yield {"form_id": item}
yield StreamSlice(partition={"form_id": item}, cursor_slice={})
else:
for parent_stream_config in self.parent_stream_configs:
for item in parent_stream_config.stream.read_records(sync_mode=SyncMode.full_refresh):
yield {"form_id": item["id"]}
yield StreamSlice(partition={"form_id": item["id"]}, cursor_slice={})

yield from []
3 changes: 2 additions & 1 deletion docs/integrations/sources/typeform.md
Expand Up @@ -90,7 +90,8 @@ API rate limits \(2 requests per second\): [https://developer.typeform.com/get-s

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------|
| 1.2.5 | 2024-02-12 | [35152](https://github.com/airbytehq/airbyte/pull/35152) | Manage dependencies with Poetry. |
| 1.2.6 | 2024-03-13 | [36164](https://github.com/airbytehq/airbyte/pull/36164) | Unpin CDK version |
| 1.2.5 | 2024-02-12 | [35152](https://github.com/airbytehq/airbyte/pull/35152) | Manage dependencies with Poetry. |
| 1.2.4 | 2024-01-24 | [34484](https://github.com/airbytehq/airbyte/pull/34484) | Fix pagination stop condition |
| 1.2.3 | 2024-01-11 | [34145](https://github.com/airbytehq/airbyte/pull/34145) | prepare for airbyte-lib |
| 1.2.2 | 2023-12-12 | [33345](https://github.com/airbytehq/airbyte/pull/33345) | Fix single use refresh token authentication |
Expand Down

0 comments on commit 8b849ab

Please sign in to comment.