Skip to content

Commit

Permalink
Source Zenloop: Fix unhashable type in ZenloopSubstreamSlicer compone…
Browse files Browse the repository at this point in the history
…nt (#22580)

* Source Zenloop: make stream_state_field hashable

* Update changelog

* auto-bump connector version

---------

Co-authored-by: Octavia Squidington III <[email protected]>
  • Loading branch information
arsenlosenko and octavia-squidington-iii authored Feb 10, 2023
1 parent 858ba2a commit 6d6e008
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2064,7 +2064,7 @@
- name: Zenloop
sourceDefinitionId: f1e4c7f6-db5c-4035-981f-d35ab4998794
dockerRepository: airbyte/source-zenloop
dockerImageTag: 0.1.4
dockerImageTag: 0.1.5
documentationUrl: https://docs.airbyte.com/integrations/sources/zenloop
icon: zenloop.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16736,7 +16736,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-zenloop:0.1.4"
- dockerImage: "airbyte/source-zenloop:0.1.5"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/zenloop"
connectionSpecification:
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-zenloop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_zenloop ./source_zenloop
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.name=airbyte/source-zenloop
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ def stream_slices(self, sync_mode: SyncMode, stream_state: StreamState) -> Itera
else:
for parent_stream_config in self.parent_stream_configs:
stream_state_field = parent_stream_config.stream_slice_field or None
yield {stream_state_field: custom_stream_state_value, "parent_slice": {}}
yield {stream_state_field.string: custom_stream_state_value, "parent_slice": {}}
1 change: 1 addition & 0 deletions docs/integrations/sources/zenloop.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ The Zenloop connector should not run into Zenloop API limitations under normal u

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :---------------------------- |
| 0.1.5 | 2023-02-08 | [00000](https://github.com/airbytehq/airbyte/pull/00000) | Fix unhashable type in ZenloopSubstreamSlicer component |
| 0.1.4 | 2022-11-18 | [19624](https://github.com/airbytehq/airbyte/pull/19624) | Migrate to low code |
| 0.1.3 | 2022-09-28 | [17304](https://github.com/airbytehq/airbyte/pull/17304) | Migrate to per-stream states |
| 0.1.2 | 2022-08-22 | [15843](https://github.com/airbytehq/airbyte/pull/15843) | Adds Properties stream |
Expand Down

0 comments on commit 6d6e008

Please sign in to comment.