diff --git a/.bumpversion.toml b/.bumpversion.toml index 6bbc85b..61f7d47 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.5.10" +current_version = "0.5.11" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 98cf783..4cc49e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.5.11 (2024-12-20) +* Upgrade `confluent-kafka` which adds support of the list of urls to the `SchemaRegistryClient`. + ## 0.5.10 (2024-11-29) * `settings.RETRY_SETTINGS` takes a `dict` of kwargs to pass to `RetrySettings` class. * Add `exclude_fields` option to `ModelTopicConsumer` to ignore message value fields. diff --git a/django_kafka/__init__.py b/django_kafka/__init__.py index 836e404..5a0b524 100644 --- a/django_kafka/__init__.py +++ b/django_kafka/__init__.py @@ -18,7 +18,7 @@ logger = logging.getLogger(__name__) -__version__ = "0.5.10" +__version__ = "0.5.11" __all__ = [ "autodiscover", diff --git a/example/requirements.txt b/example/requirements.txt index 9688d42..e28386d 100644 --- a/example/requirements.txt +++ b/example/requirements.txt @@ -1,5 +1,5 @@ bump-my-version==0.28.1 -confluent-kafka[avro, schema-registry]==2.6.1 +confluent-kafka[avro, schema-registry]==2.6.2 django==5.1.3 ruff==0.7.4 setuptools==75.5.0 # without it PyCharm fails to index packages inside the Docker container diff --git a/pyproject.toml b/pyproject.toml index b541225..5acd252 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta" [project] name = "django-kafka" -version = "0.5.10" +version = "0.5.11" dependencies = [ "django>=4.2,<6.0", - "confluent-kafka[avro, schema-registry]==2.6.0" + "confluent-kafka[avro, schema-registry]==2.6.2" ] requires-python = ">=3.11" authors = [