Skip to content

Commit 69494fe

Browse files
brianjlaixiaohansong
authored andcommitted
✨ [greenhouse] [iterable] [linkedin-ads] [paypal-transactions] [pinterest] Bump cdk versions for to use continue on stream per-error reporting (#35465)
1 parent 178dae9 commit 69494fe

File tree

25 files changed

+203
-254
lines changed

25 files changed

+203
-254
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[run]
2+
omit =
3+
source_greenhouse/run.py

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: api
1111
connectorType: source
1212
definitionId: 59f1e50a-331f-4f09-b3e8-2e8d4d355f44
13-
dockerImageTag: 0.4.5
13+
dockerImageTag: 0.5.0
1414
dockerRepository: airbyte/source-greenhouse
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/greenhouse
1616
githubIssueLabel: source-greenhouse

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

Lines changed: 59 additions & 124 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 2 additions & 2 deletions
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.4.5"
6+
version = "0.5.0"
77
name = "source-greenhouse"
88
description = "Source implementation for Greenhouse."
99
authors = [ "Airbyte <[email protected]>",]
@@ -17,7 +17,7 @@ include = "source_greenhouse"
1717

1818
[tool.poetry.dependencies]
1919
python = "^3.9,<3.12"
20-
airbyte-cdk = "==0.55.2"
20+
airbyte-cdk = "==0.63.2"
2121
dataclasses-jsonschema = "==2.15.1"
2222

2323
[tool.poetry.scripts]

airbyte-integrations/connectors/source-greenhouse/unit_tests/test_streams.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_parse_response_expected_response(applications_stream):
138138
]
139139
"""
140140
response._content = response_content
141-
parsed_response = applications_stream.retriever._parse_response(response, stream_state={})
141+
parsed_response = applications_stream.retriever._parse_response(response, stream_state={}, records_schema={})
142142
records = [dict(record) for record in parsed_response]
143143

144144
assert records == json.loads(response_content)
@@ -148,7 +148,7 @@ def test_parse_response_empty_content(applications_stream):
148148
response = requests.Response()
149149
response.status_code = 200
150150
response._content = b"[]"
151-
parsed_response = applications_stream.retriever._parse_response(response, stream_state={})
151+
parsed_response = applications_stream.retriever._parse_response(response, stream_state={}, records_schema={})
152152
records = [record for record in parsed_response]
153153

154154
assert records == []
@@ -164,7 +164,7 @@ def test_ignore_403(applications_stream):
164164
response = requests.Response()
165165
response.status_code = 403
166166
response._content = b""
167-
parsed_response = applications_stream.retriever._parse_response(response, stream_state={})
167+
parsed_response = applications_stream.retriever._parse_response(response, stream_state={}, records_schema={})
168168
records = [record for record in parsed_response]
169169
assert records == []
170170

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[run]
2+
omit =
3+
source_iterable/run.py

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: api
1111
connectorType: source
1212
definitionId: 2e875208-0c0b-4ee4-9e92-1cb3156ea799
13-
dockerImageTag: 0.2.2
13+
dockerImageTag: 0.3.0
1414
dockerRepository: airbyte/source-iterable
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/iterable
1616
githubIssueLabel: source-iterable

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

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 2 additions & 2 deletions
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.2.2"
6+
version = "0.3.0"
77
name = "source-iterable"
88
description = "Source implementation for Iterable."
99
authors = [ "Airbyte <[email protected]>",]
@@ -18,7 +18,7 @@ include = "source_iterable"
1818
[tool.poetry.dependencies]
1919
python = "^3.9,<3.12"
2020
pendulum = "==2.1.2"
21-
airbyte-cdk = "==0.58.8"
21+
airbyte-cdk = "==0.63.2"
2222
requests = "==2.31.0"
2323
python-dateutil = "==2.8.2"
2424

airbyte-integrations/connectors/source-linkedin-ads/metadata.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ data:
1111
connectorSubtype: api
1212
connectorType: source
1313
definitionId: 137ece28-5434-455c-8f34-69dc3782f451
14-
dockerImageTag: 0.6.8
14+
dockerImageTag: 0.7.0
1515
dockerRepository: airbyte/source-linkedin-ads
1616
documentationUrl: https://docs.airbyte.com/integrations/sources/linkedin-ads
1717
githubIssueLabel: source-linkedin-ads
@@ -21,8 +21,7 @@ data:
2121
name: LinkedIn Ads
2222
remoteRegistries:
2323
pypi:
24-
enabled: false
25-
# TODO: Set enabled=true after `airbyte-lib-validate-source` is passing.
24+
enabled: true
2625
packageName: airbyte-source-linkedin-ads
2726
registries:
2827
cloud:

airbyte-integrations/connectors/source-linkedin-ads/poetry.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

airbyte-integrations/connectors/source-linkedin-ads/pyproject.toml

Lines changed: 2 additions & 2 deletions
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.6.8"
6+
version = "0.7.0"
77
name = "source-linkedin-ads"
88
description = "Source implementation for Linkedin Ads."
99
authors = [ "Airbyte <[email protected]>",]
@@ -17,7 +17,7 @@ include = "source_linkedin_ads"
1717

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

2222
[tool.poetry.scripts]
2323
source-linkedin-ads = "source_linkedin_ads.run:run"

airbyte-integrations/connectors/source-paypal-transaction/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ data:
1111
connectorSubtype: api
1212
connectorType: source
1313
definitionId: d913b0f2-cc51-4e55-a44c-8ba1697b9239
14-
dockerImageTag: 2.3.0
14+
dockerImageTag: 2.4.0
1515
dockerRepository: airbyte/source-paypal-transaction
1616
documentationUrl: https://docs.airbyte.com/integrations/sources/paypal-transaction
1717
githubIssueLabel: source-paypal-transaction

0 commit comments

Comments
 (0)