Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristoGrab committed Jun 3, 2024
1 parent 2a84074 commit febb11f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class KlaviyoStream(HttpStream, CheckpointMixin, ABC):
@property
def state(self):
return self._state

@state.setter
def state(self, value):
self._state = value
Expand All @@ -38,7 +38,7 @@ def __init__(self, api_key: str, start_date: Optional[str] = None, **kwargs: Any
super().__init__(**kwargs)
self._api_key = api_key
self._start_ts = start_date
if not hasattr(self, '_state'):
if not hasattr(self, "_state"):
self._state = {}

@property
Expand Down Expand Up @@ -128,7 +128,7 @@ def read_records(
stream_slice: Optional[Mapping[str, Any]] = None,
stream_state: Optional[Mapping[str, Any]] = None,
) -> Iterable[StreamData]:

current_state = self.state or {}
try:
for record in super().read_records(sync_mode, cursor_field, stream_slice, current_state):
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/klaviyo.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Stream `Lists Detailed` contains field `profile_count` in addition to info from

| Version | Date | Pull Request | Subject |
|:---------|:-----------|:-----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------|
| `2.6.3` | 2024-06-04 | [38879](https://github.com/airbytehq/airbyte/pull/38879) | Implement `CheckpointMixin` for handling state in Python streams |
| `2.6.2` | 2024-05-08 | [37789](https://github.com/airbytehq/airbyte/pull/37789) | Move stream schemas and spec to manifest |
| `2.6.1` | 2024-05-07 | [38010](https://github.com/airbytehq/airbyte/pull/38010) | Add error handler for `5XX` status codes |
| `2.6.0` | 2024-04-19 | [37370](https://github.com/airbytehq/airbyte/pull/37370) | Add streams `campaigns_detailed` and `lists_detailed` |
Expand Down

0 comments on commit febb11f

Please sign in to comment.