Skip to content

Commit 7dc39e8

Browse files
authored
🐛 [source-salesforce] [source-stripe] [source-s3] Update airbyte-cdk to flush print buffer for every message (#37001)
1 parent 4a4a9c2 commit 7dc39e8

File tree

14 files changed

+518
-429
lines changed

14 files changed

+518
-429
lines changed

airbyte-integrations/connectors/source-s3/integration_tests/cloud_spec.json

+6
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@
242242
"default": "None",
243243
"airbyte_hidden": true,
244244
"enum": ["None", "Primitive Types Only"]
245+
},
246+
"ignore_errors_on_fields_mismatch": {
247+
"title": "Ignore errors on field mismatch",
248+
"description": "Whether to ignore errors that occur when the number of fields in the CSV does not match the number of columns in the schema.",
249+
"default": false,
250+
"type": "boolean"
245251
}
246252
},
247253
"required": ["filetype"]

airbyte-integrations/connectors/source-s3/integration_tests/spec.json

+6
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@
242242
"default": "None",
243243
"airbyte_hidden": true,
244244
"enum": ["None", "Primitive Types Only"]
245+
},
246+
"ignore_errors_on_fields_mismatch": {
247+
"title": "Ignore errors on field mismatch",
248+
"description": "Whether to ignore errors that occur when the number of fields in the CSV does not match the number of columns in the schema.",
249+
"default": false,
250+
"type": "boolean"
245251
}
246252
},
247253
"required": ["filetype"]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: file
1111
connectorType: source
1212
definitionId: 69589781-7828-43c5-9f63-8925b1c1ccc2
13-
dockerImageTag: 4.5.11
13+
dockerImageTag: 4.5.12
1414
dockerRepository: airbyte/source-s3
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/s3
1616
githubIssueLabel: source-s3

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

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

airbyte-integrations/connectors/source-s3/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 = "4.5.11"
6+
version = "4.5.12"
77
name = "source-s3"
88
description = "Source implementation for S3."
99
authors = [ "Airbyte <[email protected]>",]
@@ -29,7 +29,7 @@ source-s3 = "source_s3.run:run"
2929

3030
[tool.poetry.dependencies.airbyte-cdk]
3131
extras = [ "file-based",]
32-
version = "^0.70.1"
32+
version = "^0"
3333

3434
[tool.poetry.dependencies.smart-open]
3535
extras = [ "s3",]

airbyte-integrations/connectors/source-salesforce/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: b117307c-14b6-41aa-9422-947e34922962
13-
dockerImageTag: 2.5.0
13+
dockerImageTag: 2.5.1
1414
dockerRepository: airbyte/source-salesforce
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/salesforce
1616
githubIssueLabel: source-salesforce

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

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

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

+1-1
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 = "2.5.0"
6+
version = "2.5.1"
77
name = "source-salesforce"
88
description = "Source implementation for Salesforce."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-stripe/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: e094cb9a-26de-4645-8761-65c0c425d1de
13-
dockerImageTag: 5.3.2
13+
dockerImageTag: 5.3.3
1414
dockerRepository: airbyte/source-stripe
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/stripe
1616
githubIssueLabel: source-stripe

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

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

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

+1-1
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 = "5.3.2"
6+
version = "5.3.3"
77
name = "source-stripe"
88
description = "Source implementation for Stripe."
99
authors = [ "Airbyte <[email protected]>",]

docs/integrations/sources/s3.md

+1
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ To perform the text extraction from PDF and Docx files, the connector uses the [
325325

326326
| Version | Date | Pull Request | Subject |
327327
|:--------|:-----------|:----------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|
328+
| 4.5.12 | 2024-04-11 | [37001](https://github.com/airbytehq/airbyte/pull/37001) | Update airbyte-cdk to flush print buffer for every message |
328329
| 4.5.11 | 2024-03-14 | [36160](https://github.com/airbytehq/airbyte/pull/36160) | Bump python-cdk version to include CSV tab delimiter fix |
329330
| 4.5.10 | 2024-03-11 | [35955](https://github.com/airbytehq/airbyte/pull/35955) | Pin `transformers` transitive dependency |
330331
| 4.5.9 | 2024-03-06 | [35857](https://github.com/airbytehq/airbyte/pull/35857) | Bump poetry.lock to upgrade transitive dependency |

docs/integrations/sources/salesforce.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,13 @@ Now that you have set up the Salesforce source connector, check out the followin
193193

194194
| Version | Date | Pull Request | Subject |
195195
|:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------|
196+
| 2.5.1 | 2024-04-11 | [37001](https://github.com/airbytehq/airbyte/pull/37001) | Update airbyte-cdk to flush print buffer for every message |
196197
| 2.5.0 | 2024-04-11 | [36942](https://github.com/airbytehq/airbyte/pull/36942) | Move Salesforce to partitioned state in order to avoid stuck syncs |
197198
| 2.4.4 | 2024-04-08 | [36901](https://github.com/airbytehq/airbyte/pull/36901) | Upgrade CDK for empty internal_message empty when ExceptionWithDisplayMessage raised |
198199
| 2.4.3 | 2024-04-08 | [36885](https://github.com/airbytehq/airbyte/pull/36885) | Add missing retry on REST API |
199200
| 2.4.2 | 2024-04-05 | [36862](https://github.com/airbytehq/airbyte/pull/36862) | Upgrade CDK for updated error messaging regarding missing streams |
200201
| 2.4.1 | 2024-04-03 | [36385](https://github.com/airbytehq/airbyte/pull/36385) | Retry HTTP requests and jobs on various cases |
201-
| 2.4.0 | 2024-03-12 | [35978](https://github.com/airbytehq/airbyte/pull/35978) | Upgrade CDK to start emitting record counts with state and full refresh state |
202+
| 2.4.0 | 2024-03-12 | [35978](https://github.com/airbytehq/airbyte/pull/35978) | Upgrade CDK to start emitting record counts with state and full refresh state |
202203
| 2.3.3 | 2024-03-04 | [35791](https://github.com/airbytehq/airbyte/pull/35791) | Fix memory leak (OOM) |
203204
| 2.3.2 | 2024-02-19 | [35421](https://github.com/airbytehq/airbyte/pull/35421) | Add Stream Slice Step option to specification |
204205
| 2.3.1 | 2024-02-12 | [35147](https://github.com/airbytehq/airbyte/pull/35147) | Manage dependencies with Poetry. |

docs/integrations/sources/stripe.md

+1
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ Each record is marked with `is_deleted` flag when the appropriate event happens
223223

224224
| Version | Date | Pull Request | Subject |
225225
|:--------|:-----------|:----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
226+
| 5.3.3 | 2024-04-11 | [37001](https://github.com/airbytehq/airbyte/pull/37001) | Update airbyte-cdk to flush print buffer for every message |
226227
| 5.3.2 | 2024-04-11 | [36964](https://github.com/airbytehq/airbyte/pull/36964) | Update CDK version to fix breaking change before another devs work on it |
227228
| 5.3.1 | 2024-04-10 | [36960](https://github.com/airbytehq/airbyte/pull/36960) | Remove unused imports |
228229
| 5.3.0 | 2024-03-12 | [35978](https://github.com/airbytehq/airbyte/pull/35978) | Upgrade CDK to start emitting record counts with state and full refresh state |

0 commit comments

Comments
 (0)