Skip to content

Commit

Permalink
chore: v5.3.0 (#1525)
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke authored Feb 14, 2024
1 parent 0ea6be2 commit d046b77
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "BSD"
Expand Down Expand Up @@ -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
]
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit d046b77

Please sign in to comment.