Skip to content
Open
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
7 changes: 2 additions & 5 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,8 @@

## New Features

* Added support for `dispatch_ids` and `queries` filters in the `list` method
- `dispatch_ids` parameter allows filtering by specific dispatch IDs
- `filter_queries` parameter supports text-based filtering on dispatch `id` and `type` fields
- Query format: IDs are prefixed with `#` (e.g., `#4`), types are matched as substrings (e.g., `bar` matches `foobar`)
- Multiple queries are combined with logical OR
<!-- Here goes the main new features and examples or instructions on how to use them -->

## Bug Fixes

<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ classifiers = [
requires-python = ">= 3.11, < 4"
dependencies = [
"typing-extensions >= 4.13.0, < 5",
"frequenz-api-dispatch >= 1.0.0-rc3, < 2",
"frequenz-api-dispatch >= 1.0.0, < 2",
"frequenz-client-base >= 0.11.0, < 0.12.0",
"frequenz-client-common >= 0.3.6, < 0.4.0",
"frequenz-core >= 1.0.2, < 2.0.0",
Expand Down Expand Up @@ -75,7 +75,7 @@ dev-mkdocs = [
"mike == 2.1.3",
"mkdocs-gen-files == 0.5.0",
"mkdocs-literate-nav == 0.6.2",
"frequenz-api-dispatch == 1.0.0-rc3",
"frequenz-api-dispatch == 1.0.0",
"mkdocs-macros-plugin == 1.4.0",
"mkdocs-material == 9.6.21",
"mkdocstrings[python] == 0.30.1",
Expand All @@ -95,7 +95,7 @@ dev-pylint = [
"pylint == 3.3.9",
# For checking the noxfile, docs/ script, and tests
"frequenz-client-dispatch[cli,dev-mkdocs,dev-noxfile,dev-pytest]",
"frequenz-api-dispatch == 1.0.0-rc3",
"frequenz-api-dispatch == 1.0.0",
]
dev-pytest = [
"pytest == 8.4.2",
Expand Down