From d046b776bc54baf0a2be41026e621edebd527f2e Mon Sep 17 00:00:00 2001 From: Luka Peschke Date: Wed, 14 Feb 2024 16:24:10 +0100 Subject: [PATCH] chore: v5.3.0 (#1525) Signed-off-by: Luka Peschke --- CHANGELOG.md | 2 ++ poetry.lock | 3 +-- pyproject.toml | 38 +++++++++++++++++++------------------- sonar-project.properties | 2 +- 4 files changed, 23 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed6a07087..bfc82551f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## [5.3.0] 2024-02-14 + ### Changed - Mongo: maximal connection pool size is now configurable via the `max_pool_size` parameter. It defaults to 1 diff --git a/poetry.lock b/poetry.lock index 987a4942d..b197b43dc 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1570,7 +1570,7 @@ grpc = ["grpcio (>=1.0.0,<2.0.0dev)"] name = "grpcio" version = "1.53.2" description = "HTTP/2-based RPC framework" -optional = false +optional = true python-versions = ">=3.7" files = [ {file = "grpcio-1.53.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:18afdda2bbe0c615da4daff754cab0df9bbd859c415d85e7e741a2975b3208b4"}, @@ -3376,7 +3376,6 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, diff --git a/pyproject.toml b/pyproject.toml index d36a408a5..b02b7af36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,24 +1,6 @@ -[tool.ruff] -line-length = 120 - -[tool.ruff.lint] -select = ["E", "F", "UP", "N", "C", "B", "I001", "S", "Q"] -ignore = [ - "S101", # allow use of assert - # FIXME: S105, S106, S608 and S113 should be addressed - "S105", "S106", # possible hardcoded password - "S608", # possible SQL injection - "S113", # requests call without timeout - "N801", # class names - "N802", # function names - "N818", # exception names - "B017", # pytest.raises(Exception) - "C901", # complexity -] - [tool.poetry] name = "toucan-connectors" -version = "5.2.0" +version = "5.3.0" description = "Toucan Toco Connectors" authors = ["Toucan Toco "] license = "BSD" @@ -195,3 +177,21 @@ files = [ "toucan_connectors/peakina/peakina_connector.py", "toucan_connectors/mongo/mongo_connector.py" ] + +[tool.ruff] +line-length = 120 + +[tool.ruff.lint] +select = ["E", "F", "UP", "N", "C", "B", "I001", "S", "Q"] +ignore = [ + "S101", # allow use of assert + # FIXME: S105, S106, S608 and S113 should be addressed + "S105", "S106", # possible hardcoded password + "S608", # possible SQL injection + "S113", # requests call without timeout + "N801", # class names + "N802", # function names + "N818", # exception names + "B017", # pytest.raises(Exception) + "C901", # complexity +] diff --git a/sonar-project.properties b/sonar-project.properties index 06014ec22..f3880e951 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -3,7 +3,7 @@ sonar.organization=toucantoco # This is the name and version displayed in the SonarCloud UI. sonar.projectName=Toucan Connectors -sonar.projectVersion=5.2.0 +sonar.projectVersion=5.3.0 sonar.python.version=3.11 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.