From 0754d464c5660e7f52ee1cff8c057cfa28326952 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sat, 17 Aug 2024 01:34:42 +0200 Subject: [PATCH 1/2] Dependencies: Update to commons-codec 0.0.7 --- CHANGES.md | 2 +- cratedb_toolkit/io/processor/kinesis_lambda.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a8c93867..5c19ec0f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -16,7 +16,7 @@ - MongoDB: Fix indentation in prettified SQL output of `migr8 translate` - MongoDB: Add capability to give type hints and add transformations - Dependencies: Adjust code for lorrystream version 0.0.3 -- Dependencies: Update to lorrystream 0.0.4 and commons-codec 0.0.6 +- Dependencies: Update to lorrystream 0.0.4 and commons-codec 0.0.7 ## 2024/07/25 v0.0.16 - `ctk load table`: Added support for MongoDB Change Streams diff --git a/cratedb_toolkit/io/processor/kinesis_lambda.py b/cratedb_toolkit/io/processor/kinesis_lambda.py index 0f37851c..80eb6dc9 100644 --- a/cratedb_toolkit/io/processor/kinesis_lambda.py +++ b/cratedb_toolkit/io/processor/kinesis_lambda.py @@ -25,7 +25,7 @@ # /// script # requires-python = ">=3.9" # dependencies = [ -# "commons-codec==0.0.6", +# "commons-codec==0.0.7", # "sqlalchemy-cratedb==0.38.0", # ] # /// diff --git a/pyproject.toml b/pyproject.toml index db8dccc6..3dba72e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -154,7 +154,7 @@ kinesis = [ "lorrystream[carabas]==0.0.4", ] mongodb = [ - "commons-codec[mongodb,zyp]==0.0.6", + "commons-codec[mongodb,zyp]==0.0.7", "cratedb-toolkit[io]", "orjson<4,>=3.3.1", "pymongo<5,>=3.10.1", From edbbb72dad8917cf8f8a717790bed0385644d2d1 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sat, 17 Aug 2024 01:58:02 +0200 Subject: [PATCH 2/2] CI: Codecov API is currently down, so configure it more leniently fail_ci_if_error: false --- .github/workflows/influxdb.yml | 2 +- .github/workflows/main.yml | 6 +++--- .github/workflows/mongodb.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/influxdb.yml b/.github/workflows/influxdb.yml index ce67c852..e1cfc177 100644 --- a/.github/workflows/influxdb.yml +++ b/.github/workflows/influxdb.yml @@ -91,4 +91,4 @@ jobs: flags: influxdb env_vars: OS,PYTHON name: codecov-umbrella - fail_ci_if_error: true + fail_ci_if_error: false diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a56c923..376f11c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -89,7 +89,7 @@ jobs: flags: main env_vars: OS,PYTHON name: codecov-umbrella - fail_ci_if_error: true + fail_ci_if_error: false tests-pymongo: @@ -154,7 +154,7 @@ jobs: flags: pymongo env_vars: OS,PYTHON name: codecov-umbrella - fail_ci_if_error: true + fail_ci_if_error: false tests-kinesis: @@ -219,4 +219,4 @@ jobs: flags: kinesis env_vars: OS,PYTHON name: codecov-umbrella - fail_ci_if_error: true + fail_ci_if_error: false diff --git a/.github/workflows/mongodb.yml b/.github/workflows/mongodb.yml index 734fd991..0595f77a 100644 --- a/.github/workflows/mongodb.yml +++ b/.github/workflows/mongodb.yml @@ -90,4 +90,4 @@ jobs: flags: mongodb env_vars: OS,PYTHON name: codecov-umbrella - fail_ci_if_error: true + fail_ci_if_error: false