From 8561aabed8e2f99aaddc119fc618395e19d1241a Mon Sep 17 00:00:00 2001 From: reqww Date: Wed, 12 Nov 2025 19:03:23 +0300 Subject: [PATCH] Update faststream --- packages/faststream-stomp/faststream_stomp/prometheus.py | 2 ++ packages/faststream-stomp/pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/faststream-stomp/faststream_stomp/prometheus.py b/packages/faststream-stomp/faststream_stomp/prometheus.py index aa3c7ab8..81d5db85 100644 --- a/packages/faststream-stomp/faststream_stomp/prometheus.py +++ b/packages/faststream-stomp/faststream_stomp/prometheus.py @@ -1,5 +1,6 @@ from __future__ import annotations +import typing from typing import TYPE_CHECKING import stompman @@ -40,6 +41,7 @@ def __init__( app_name: str = EMPTY, metrics_prefix: str = "faststream", received_messages_size_buckets: Sequence[float] | None = None, + **_kwargs: typing.Any, # noqa: ANN401 ) -> None: super().__init__( settings_provider_factory=lambda _: StompMetricsSettingsProvider(), diff --git a/packages/faststream-stomp/pyproject.toml b/packages/faststream-stomp/pyproject.toml index 20260cf5..9f1ba4ec 100644 --- a/packages/faststream-stomp/pyproject.toml +++ b/packages/faststream-stomp/pyproject.toml @@ -2,7 +2,7 @@ name = "faststream-stomp" description = "FastStream STOMP broker" authors = [{ name = "Lev Vereshchagin", email = "mail@vrslev.com" }] -dependencies = ["faststream~=0.5", "stompman>=2.0.1"] +dependencies = ["faststream~=0.6", "stompman>=2.0.1"] requires-python = ">=3.11" readme = "README.md" license = { text = "MIT" }