Skip to content

Commit

Permalink
Source Recurly: adds state_checkpoint_interval to streams (#13685)
Browse files Browse the repository at this point in the history
* Add `state_checkpoint_interval` to Recurly stream

* Bumpg Recurly source version to `0.4.1`
  • Loading branch information
mohamagdy authored and girarda committed Aug 11, 2022
1 parent 940bc8c commit ee8df45
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@
- name: Recurly
sourceDefinitionId: cd42861b-01fc-4658-a8ab-5d11d0510f01
dockerRepository: airbyte/source-recurly
dockerImageTag: 0.4.0
dockerImageTag: 0.4.1
documentationUrl: https://docs.airbyte.io/integrations/sources/recurly
icon: recurly.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7722,7 +7722,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-recurly:0.4.0"
- dockerImage: "airbyte/source-recurly:0.4.1"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/recurly"
connectionSpecification:
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-recurly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_recurly ./source_recurly
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.4.0
LABEL io.airbyte.version=0.4.1
LABEL io.airbyte.name=airbyte/source-recurly
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@


class BaseStream(Stream):
state_checkpoint_interval = 1000

def __init__(self, client: Client, begin_time: str = None, end_time: str = None, **kwargs):
super(Stream, self).__init__(**kwargs)

Expand Down
13 changes: 7 additions & 6 deletions docs/integrations/sources/recurly.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces

## CHANGELOG

| Version | Date | Pull Request | Subject |
|:--------|:-----------| :--- | :--- |
| 0.4.0 | 2022-01-28 | [9866](https://github.com/airbytehq/airbyte/pull/9866) | Revamp Recurly Schema and add more resources |
| 0.3.2 | 2022-01-20 | [8617](https://github.com/airbytehq/airbyte/pull/8617) | Update connector fields title/description |
| 0.3.1 | 2022-01-10 | [9382](https://github.com/airbytehq/airbyte/pull/9382) | Source Recurly: avoid loading all accounts when importing account coupon redemptions |
| 0.3.0 | 2021-12-08 | [8468](https://github.com/airbytehq/airbyte/pull/8468) | Support Incremental Sync Mode |
| Version | Date | Pull Request | Subject |
|:--------|:-----------| :--------------------------------------------------------| :--------------------------------------------------------------------------------------- |
| 0.4.1 | 2022-06-10 | [13685](https://github.com/airbytehq/airbyte/pull/13685) | Add state_checkpoint_interval to Recurly stream |
| 0.4.0 | 2022-01-28 | [9866](https://github.com/airbytehq/airbyte/pull/9866) | Revamp Recurly Schema and add more resources |
| 0.3.2 | 2022-01-20 | [8617](https://github.com/airbytehq/airbyte/pull/8617) | Update connector fields title/description |
| 0.3.1 | 2022-01-10 | [9382](https://github.com/airbytehq/airbyte/pull/9382) | Source Recurly: avoid loading all accounts when importing account coupon redemptions |
| 0.3.0 | 2021-12-08 | [8468](https://github.com/airbytehq/airbyte/pull/8468) | Support Incremental Sync Mode |

0 comments on commit ee8df45

Please sign in to comment.