From 37cc90517d4435b3607bea11aabc4240226c1e30 Mon Sep 17 00:00:00 2001 From: bazarnov Date: Thu, 11 Jan 2024 19:34:51 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Bump=20patch=20version=20of=20Py?= =?UTF-8?q?thon=20CDK?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/.bumpversion.cfg | 2 +- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/Dockerfile | 2 +- airbyte-cdk/python/setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/airbyte-cdk/python/.bumpversion.cfg b/airbyte-cdk/python/.bumpversion.cfg index 8c0dfbd0ff1a..a43a0aa292bf 100644 --- a/airbyte-cdk/python/.bumpversion.cfg +++ b/airbyte-cdk/python/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.58.6 +current_version = 0.58.7 commit = False [bumpversion:file:setup.py] diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index 58937e371e00..3baf17d7480b 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.58.7 + + ## 0.58.6 File CDK: Added logic to emit logged `RecordParseError` errors and raise the single `AirbyteTracebackException` in the end of the sync, instead of silent skipping the parsing errors. PR: https://github.com/airbytehq/airbyte/pull/32589 diff --git a/airbyte-cdk/python/Dockerfile b/airbyte-cdk/python/Dockerfile index cb35d42e9f45..14c33a7d72a0 100644 --- a/airbyte-cdk/python/Dockerfile +++ b/airbyte-cdk/python/Dockerfile @@ -32,5 +32,5 @@ ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] # needs to be the same as CDK -LABEL io.airbyte.version=0.58.6 +LABEL io.airbyte.version=0.58.7 LABEL io.airbyte.name=airbyte/source-declarative-manifest diff --git a/airbyte-cdk/python/setup.py b/airbyte-cdk/python/setup.py index 0cee360df713..129f675e6fc0 100644 --- a/airbyte-cdk/python/setup.py +++ b/airbyte-cdk/python/setup.py @@ -36,7 +36,7 @@ name="airbyte-cdk", # The version of the airbyte-cdk package is used at runtime to validate manifests. That validation must be # updated if our semver format changes such as using release candidate versions. - version="0.58.6", + version="0.58.7", description="A framework for writing Airbyte Connectors.", long_description=README, long_description_content_type="text/markdown",