Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Release (2026-MM-DD)

- `telemetryrouter`:
- [v0.6.0](services/telemetryrouter/CHANGELOG.md#v060)
- **Feature:** Add `disabled` field to `ConfigFilter` to allow disabling a filter without removing it

## Release (2026-09-14)

- `albwaf`:
Expand Down
3 changes: 3 additions & 0 deletions services/telemetryrouter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.6.0
- **Feature:** Add `disabled` field to `ConfigFilter` to allow disabling a filter without removing it

## v0.5.2
- **Fix:** Corrected an invalid `pyproject.toml` build configuration (`wheel-sources` instead of `wheel.sources`) that caused `import stackit.telemetryrouter` to fail with `ModuleNotFoundError`

Expand Down
2 changes: 1 addition & 1 deletion services/telemetryrouter/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
da4701b7dbe20e984aef89711bb9ba716e19fcba
915f82be0b0f434901fcedc91fafe58b652035ef
2 changes: 1 addition & 1 deletion services/telemetryrouter/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-telemetryrouter"
version = "v0.5.2"
version = "v0.6.0"
description = "STACKIT Telemetry Router API"
authors = [{name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud"}]
requires-python = ">=3.10,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import pprint
from typing import Any, ClassVar, Dict, List, Optional, Set

from pydantic import BaseModel, ConfigDict, Field
from pydantic import BaseModel, ConfigDict, Field, StrictBool
from pydantic_core import to_jsonable_python
from typing_extensions import Annotated, Self

Expand All @@ -32,7 +32,8 @@ class ConfigFilter(BaseModel):
""" # noqa: E501

attributes: Annotated[List[ConfigFilterAttributes], Field(min_length=1, max_length=100)]
__properties: ClassVar[List[str]] = ["attributes"]
disabled: Optional[StrictBool] = None
__properties: ClassVar[List[str]] = ["attributes", "disabled"]

model_config = ConfigDict(
validate_by_name=True,
Expand Down Expand Up @@ -95,7 +96,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
[ConfigFilterAttributes.from_dict(_item) for _item in obj["attributes"]]
if obj.get("attributes") is not None
else None
)
),
"disabled": obj.get("disabled"),
}
)
return _obj
2 changes: 1 addition & 1 deletion services/telemetryrouter/uv.lock

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

Loading