Skip to content

Commit ab0131d

Browse files
Benjamin Gutzmanngutzbenj
authored andcommitted
Bump version to 0.11.1
1 parent 6b6d268 commit ab0131d

File tree

5 files changed

+4
-109
lines changed

5 files changed

+4
-109
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Types of changes:
1616

1717
## [Unreleased]
1818

19+
## [0.11.1] - 2026-01-22
20+
1921
### Fixed
2022

2123
- Ensure all check classes accept and forward `identifier_placeholder` so naming-only identifier filters use the configured placeholder for result naming and logging. Add unit tests covering the behavior.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "koality"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors = [
55
{ name = "Team PiT @ Otto Group data.works GmbH" },
66
{ name = "Norbert Maager" },

src/koality/checks.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,6 @@ def __init__(
811811
*,
812812
filters: dict[str, Any] | None = None,
813813
identifier_format: str = "identifier",
814-
identifier_placeholder: str = "ALL",
815814
date_info: str | None = None,
816815
extra_info: str | None = None,
817816
monitor_only: bool = False,
@@ -841,7 +840,6 @@ def __init__(
841840
upper_threshold=upper_threshold,
842841
filters=filters,
843842
identifier_format=identifier_format,
844-
identifier_placeholder=identifier_placeholder,
845843
date_info=date_info,
846844
extra_info=extra_info,
847845
monitor_only=monitor_only,
@@ -1027,7 +1025,6 @@ def __init__(
10271025
*,
10281026
filters: dict[str, Any] | None = None,
10291027
identifier_format: str = "identifier",
1030-
identifier_placeholder: str = "ALL",
10311028
date_info: str | None = None,
10321029
extra_info: str | None = None,
10331030
monitor_only: bool = False,
@@ -1043,7 +1040,6 @@ def __init__(
10431040
upper_threshold=upper_threshold,
10441041
filters=filters,
10451042
identifier_format=identifier_format,
1046-
identifier_placeholder=identifier_placeholder,
10471043
date_info=date_info,
10481044
extra_info=extra_info,
10491045
monitor_only=monitor_only,
@@ -1071,7 +1067,6 @@ def __init__(
10711067
*,
10721068
filters: dict[str, Any] | None = None,
10731069
identifier_format: str = "identifier",
1074-
identifier_placeholder: str = "ALL",
10751070
date_info: str | None = None,
10761071
extra_info: str | None = None,
10771072
monitor_only: bool = False,
@@ -1087,7 +1082,6 @@ def __init__(
10871082
upper_threshold=upper_threshold,
10881083
filters=filters,
10891084
identifier_format=identifier_format,
1090-
identifier_placeholder=identifier_placeholder,
10911085
date_info=date_info,
10921086
extra_info=extra_info,
10931087
monitor_only=monitor_only,
@@ -1115,7 +1109,6 @@ def __init__(
11151109
*,
11161110
filters: dict[str, Any] | None = None,
11171111
identifier_format: str = "identifier",
1118-
identifier_placeholder: str = "ALL",
11191112
date_info: str | None = None,
11201113
extra_info: str | None = None,
11211114
monitor_only: bool = False,
@@ -1131,7 +1124,6 @@ def __init__(
11311124
upper_threshold=upper_threshold,
11321125
filters=filters,
11331126
identifier_format=identifier_format,
1134-
identifier_placeholder=identifier_placeholder,
11351127
date_info=date_info,
11361128
extra_info=extra_info,
11371129
monitor_only=monitor_only,
@@ -1183,7 +1175,6 @@ def __init__(
11831175
*,
11841176
filters: dict[str, Any] | None = None,
11851177
identifier_format: str = "identifier",
1186-
identifier_placeholder: str = "ALL",
11871178
date_info: str | None = None,
11881179
extra_info: str | None = None,
11891180
monitor_only: bool = False,
@@ -1203,7 +1194,6 @@ def __init__(
12031194
upper_threshold=upper_threshold,
12041195
filters=filters,
12051196
identifier_format=identifier_format,
1206-
identifier_placeholder=identifier_placeholder,
12071197
date_info=date_info,
12081198
extra_info=extra_info,
12091199
monitor_only=monitor_only,

tests/unit/test_identifier_placeholder_checks.py

Lines changed: 0 additions & 97 deletions
This file was deleted.

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)