Skip to content

Commit ddc636e

Browse files
lazebnyiartem1205
andauthored
Source Drift: Changed last records to last record (#37592)
Signed-off-by: Artem Inzhyyants <[email protected]> Co-authored-by: Artem Inzhyyants <[email protected]>
1 parent c326286 commit ddc636e

File tree

6 files changed

+324
-43
lines changed

6 files changed

+324
-43
lines changed

airbyte-integrations/connectors/source-drift/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: api
1111
connectorType: source
1212
definitionId: 445831eb-78db-4b1f-8f1f-0d96ad8739e2
13-
dockerImageTag: 0.3.3
13+
dockerImageTag: 0.3.4
1414
dockerRepository: airbyte/source-drift
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/drift
1616
githubIssueLabel: source-drift

airbyte-integrations/connectors/source-drift/poetry.lock

+302-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

airbyte-integrations/connectors/source-drift/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "0.3.3"
6+
version = "0.3.4"
77
name = "source-drift"
88
description = "Source implementation for Drift."
99
authors = [ "Airbyte <[email protected]>",]
@@ -17,7 +17,7 @@ include = "source_drift"
1717

1818
[tool.poetry.dependencies]
1919
python = "^3.9,<3.12"
20-
airbyte-cdk = "0.80.0"
20+
airbyte-cdk = "^0"
2121

2222
[tool.poetry.scripts]
2323
source-drift = "source_drift.run:run"

airbyte-integrations/connectors/source-drift/requirements.txt

-2
This file was deleted.

airbyte-integrations/connectors/source-drift/source_drift/manifest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ definitions:
3333
type: "DefaultPaginator"
3434
pagination_strategy:
3535
type: "CursorPagination"
36-
cursor_value: "{{ last_records['next'] }}"
36+
cursor_value: "{{ last_record['next'] }}"
3737
page_token_option:
3838
type: "RequestPath"
3939
field_name: "page_token"

docs/integrations/sources/drift.md

+18-17
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ If there are more endpoints you'd like Airbyte to support, please [create an iss
1616

1717
### Features
1818

19-
| Feature | Supported? |
20-
| :--- | :--- |
21-
| Full Refresh Sync | Yes |
22-
| Incremental Sync | Coming soon |
19+
| Feature | Supported? |
20+
|:------------------------------|:------------|
21+
| Full Refresh Sync | Yes |
22+
| Incremental Sync | Coming soon |
2323
| Replicate Incremental Deletes | Coming soon |
24-
| SSL connection | Yes |
25-
| Namespaces | No |
24+
| SSL connection | Yes |
25+
| Namespaces | No |
2626

2727
### Performance considerations
2828

@@ -49,14 +49,15 @@ The Drift connector should not run into Drift API limitations under normal usage
4949

5050
## CHANGELOG
5151

52-
| Version | Date | Pull Request | Subject |
53-
|:--------|:-----------| :------------------------------------------------------- |:--------------------------------------------------------------------|
54-
| 0.3.3 | 2024-04-19 | [37153](https://github.com/airbytehq/airbyte/pull/37153) | Upgrade to CDK 0.80.0 and manage dependencies with Poetry. |
55-
| 0.3.2 | 2024-04-15 | [37153](https://github.com/airbytehq/airbyte/pull/37153) | Base image migration: remove Dockerfile and use the python-connector-base image |
56-
| 0.3.1 | 2024-04-12 | [37153](https://github.com/airbytehq/airbyte/pull/37153) | schema descriptions |
57-
| 0.3.0 | 2023-08-05 | [29121](https://github.com/airbytehq/airbyte/pull/29121) | Migrate Python CDK to Low Code CDK |
58-
| 0.2.7 | 2023-06-09 | [27202](https://github.com/airbytehq/airbyte/pull/27202) | Remove authSpecification in favour of advancedAuth in specification |
59-
| 0.2.6 | 2023-03-07 | [23810](https://github.com/airbytehq/airbyte/pull/23810) | Prepare for cloud |
60-
| 0.2.5 | 2021-12-14 | [8429](https://github.com/airbytehq/airbyte/pull/8429) | Updated titles and descriptions |
61-
| 0.2.3 | 2021-10-27 | [7247](https://github.com/airbytehq/airbyte/pull/7247) | Migrate to the CDK |
62-
| 0.2.3 | 2021-10-25 | [7337](https://github.com/airbytehq/airbyte/pull/7337) | Added support of `OAuth 2.0` authorisation option |
52+
| Version | Date | Pull Request | Subject |
53+
|:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------|
54+
| 0.3.4 | 2024-05-03 | [37592](https://github.com/airbytehq/airbyte/pull/37592) | Change `last_records` to `last_record` |
55+
| 0.3.3 | 2024-04-19 | [37153](https://github.com/airbytehq/airbyte/pull/37153) | Upgrade to CDK 0.80.0 and manage dependencies with Poetry. |
56+
| 0.3.2 | 2024-04-15 | [37153](https://github.com/airbytehq/airbyte/pull/37153) | Base image migration: remove Dockerfile and use the python-connector-base image |
57+
| 0.3.1 | 2024-04-12 | [37153](https://github.com/airbytehq/airbyte/pull/37153) | schema descriptions |
58+
| 0.3.0 | 2023-08-05 | [29121](https://github.com/airbytehq/airbyte/pull/29121) | Migrate Python CDK to Low Code CDK |
59+
| 0.2.7 | 2023-06-09 | [27202](https://github.com/airbytehq/airbyte/pull/27202) | Remove authSpecification in favour of advancedAuth in specification |
60+
| 0.2.6 | 2023-03-07 | [23810](https://github.com/airbytehq/airbyte/pull/23810) | Prepare for cloud |
61+
| 0.2.5 | 2021-12-14 | [8429](https://github.com/airbytehq/airbyte/pull/8429) | Updated titles and descriptions |
62+
| 0.2.3 | 2021-10-27 | [7247](https://github.com/airbytehq/airbyte/pull/7247) | Migrate to the CDK |
63+
| 0.2.3 | 2021-10-25 | [7337](https://github.com/airbytehq/airbyte/pull/7337) | Added support of `OAuth 2.0` authorisation option |

0 commit comments

Comments
 (0)