Skip to content

Commit 920f4e7

Browse files
committed
Publish new connectors to log debugging info in json to avro conversion
1 parent 341ef12 commit 920f4e7

File tree

9 files changed

+11
-6
lines changed

9 files changed

+11
-6
lines changed

airbyte-integrations/connectors/destination-bigquery-denormalized/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ ENV ENABLE_SENTRY true
1717

1818
COPY --from=build /airbyte /airbyte
1919

20-
LABEL io.airbyte.version=0.3.3
20+
LABEL io.airbyte.version=0.3.4
2121
LABEL io.airbyte.name=airbyte/destination-bigquery-denormalized

airbyte-integrations/connectors/destination-bigquery/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ ENV ENABLE_SENTRY true
1717

1818
COPY --from=build /airbyte /airbyte
1919

20-
LABEL io.airbyte.version=1.1.3
20+
LABEL io.airbyte.version=1.1.4
2121
LABEL io.airbyte.name=airbyte/destination-bigquery

airbyte-integrations/connectors/destination-databricks/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-databricks
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.1.4
19+
LABEL io.airbyte.version=0.1.5
2020
LABEL io.airbyte.name=airbyte/destination-databricks

airbyte-integrations/connectors/destination-gcs/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-gcs
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.2.4
19+
LABEL io.airbyte.version=0.2.5
2020
LABEL io.airbyte.name=airbyte/destination-gcs

airbyte-integrations/connectors/destination-s3/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-s3
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.3.3
19+
LABEL io.airbyte.version=0.3.4
2020
LABEL io.airbyte.name=airbyte/destination-s3

docs/integrations/destinations/bigquery.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ This uploads data directly from your source to BigQuery. While this is faster to
209209
210210
| Version | Date | Pull Request | Subject |
211211
|:--------|:-----------| :--- |:--------------------------------------------------------------------------------------------|
212-
| 1.1.3 | 2022-05-02 | [12528](https://github.com/airbytehq/airbyte/pull/12528/) | Update Dataset location field description |
212+
| 1.1.4 | 2022-05-04 | [\#](https://github.com/airbytehq/airbyte/pull/) | In JSON to Avro conversion, log JSON field values that do not follow Avro schema for debugging. |
213+
| 1.1.3 | 2022-05-02 | [12528](https://github.com/airbytehq/airbyte/pull/12528) | Update Dataset location field description |
213214
| 1.1.2 | 2022-04-29 | [12477](https://github.com/airbytehq/airbyte/pull/12477) | Dataset location is a required field |
214215
| 1.1.1 | 2022-04-15 | [12068](https://github.com/airbytehq/airbyte/pull/12068) | Fixed bug with GCS bucket conditional binding |
215216
| 1.1.0 | 2022-04-06 | [11776](https://github.com/airbytehq/airbyte/pull/11776) | Use serialized buffering strategy to reduce memory consumption. |
@@ -242,6 +243,7 @@ This uploads data directly from your source to BigQuery. While this is faster to
242243
243244
| Version | Date | Pull Request | Subject |
244245
|:--------|:-----------|:-----------------------------------------------------------| :--- |
246+
| 1.1.4 | 2022-05-04 | [\#](https://github.com/airbytehq/airbyte/pull/) | In JSON to Avro conversion, log JSON field values that do not follow Avro schema for debugging. |
245247
| 0.3.3 | 2022-05-02 | [12528](https://github.com/airbytehq/airbyte/pull/12528/) | Update Dataset location field description |
246248
| 0.3.2 | 2022-04-29 | [12477](https://github.com/airbytehq/airbyte/pull/12477) | Dataset location is a required field |
247249
| 0.3.1 | 2022-04-15 | [11978](https://github.com/airbytehq/airbyte/pull/11978) | Fixed emittedAt timestamp. |

docs/integrations/destinations/databricks.md

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ Under the hood, an Airbyte data stream in Json schema is first converted to an A
103103

104104
| Version | Date | Pull Request | Subject |
105105
| :--- | :--- | :--- | :--- |
106+
| 1.1.5 | 2022-05-04 | [\#](https://github.com/airbytehq/airbyte/pull/) | In JSON to Avro conversion, log JSON field values that do not follow Avro schema for debugging. |
106107
| 0.1.4 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | Add `-XX:+ExitOnOutOfMemoryError` JVM option |
107108
| 0.1.3 | 2022-01-06 | [\#7622](https://github.com/airbytehq/airbyte/pull/7622) [\#9153](https://github.com/airbytehq/airbyte/issues/9153) | Upgrade Spark JDBC driver to `2.6.21` to patch Log4j vulnerability; update connector fields title/description. |
108109
| 0.1.2 | 2021-11-03 | [\#7288](https://github.com/airbytehq/airbyte/issues/7288) | Support Json `additionalProperties`. |

docs/integrations/destinations/gcs.md

+1
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ Under the hood, an Airbyte data stream in Json schema is first converted to an A
235235
236236
| Version | Date | Pull Request | Subject |
237237
| :--- | :--- | :--- | :--- |
238+
| 0.2.5 | 2022-05-04 | [\#](https://github.com/airbytehq/airbyte/pull/) | In JSON to Avro conversion, log JSON field values that do not follow Avro schema for debugging. |
238239
| 0.2.4 | 2022-04-22 | [\#12167](https://github.com/airbytehq/airbyte/pull/12167) | Add gzip compression option for CSV and JSONL formats. |
239240
| 0.2.3 | 2022-04-22 | [\#11795](https://github.com/airbytehq/airbyte/pull/11795) | Fix the connection check to verify the provided bucket path. |
240241
| 0.2.2 | 2022-04-05 | [\#11728](https://github.com/airbytehq/airbyte/pull/11728) | Properly clean-up bucket when running OVERWRITE sync mode |

docs/integrations/destinations/s3.md

+1
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ In order for everything to work correctly, it is also necessary that the user wh
315315

316316
| Version | Date | Pull Request | Subject |
317317
|:--------| :--- | :--- |:---------------------------------------------------------------------------------------------------------------------------|
318+
| 0.3.4 | 2022-05-04 | [\#](https://github.com/airbytehq/airbyte/pull/) | In JSON to Avro conversion, log JSON field values that do not follow Avro schema for debugging. |
318319
| 0.3.3 | 2022-04-20 | [\#12167](https://github.com/airbytehq/airbyte/pull/12167) | Add gzip compression option for CSV and JSONL formats. |
319320
| 0.3.2 | 2022-04-22 | [\#11795](https://github.com/airbytehq/airbyte/pull/11795) | Fix the connection check to verify the provided bucket path. |
320321
| 0.3.1 | 2022-04-05 | [\#11728](https://github.com/airbytehq/airbyte/pull/11728) | Properly clean-up bucket when running OVERWRITE sync mode |

0 commit comments

Comments
 (0)