Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| ed7dfd222b | |||
| 1ac9af6aba | |||
| de6c13525f | |||
| 8509f7bad4 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4069e7b56e0baf9db18c053a605213f0ab2d8f23715dca7b3bd97108df446ced
|
||||
size 134602
|
||||
3
confluent_kafka-2.8.0.tar.gz
Normal file
3
confluent_kafka-2.8.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56c4aa8e9de6f6e8e3ecf86d396372e76631ec75b107cdb5248c7405ec7c5fa1
|
||||
size 189820
|
||||
@@ -1,3 +1,84 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 18 20:17:49 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 2.8.0:
|
||||
* Ensure algorithm query param is passed for CSFLE
|
||||
* DGS-19492 Handle records nested in arrays/maps when searching
|
||||
for tags
|
||||
* confluent-kafka-python v2.8.0 is based on librdkafka v2.8.0,
|
||||
see the librdkafka release notes
|
||||
- update to 2.7.0:
|
||||
* Support for Data Contracts with Schema Registry, including
|
||||
+ Data Quality rules
|
||||
+ Data Transformation rules
|
||||
+ Client-Side Field Level Encryption (CSFLE)
|
||||
+ Schema Migration rules (requires Python 3.9+)
|
||||
* Migrated the Schema Registry client from requests to httpx
|
||||
* Add support for multiple URLs
|
||||
* Allow configuring timeout
|
||||
* Fix deletion semantics
|
||||
* Python deserializer can take SR client
|
||||
* Fix handling of Avro unions
|
||||
* Remove deprecated RefResolver for JSON
|
||||
* Support delete of subject version
|
||||
* Added missing dependency on googleapis-common-protos when
|
||||
using protobufs.
|
||||
- update to 2.6.2:
|
||||
* Support for Data Contracts with Schema Registry, including
|
||||
* Data Quality rules
|
||||
* Data Transformation rules
|
||||
* Client-Side Field Level Encryption (CSFLE)
|
||||
* Schema Migration rules (requires Python 3.9+)
|
||||
* Migrated the Schema Registry client from requests to httpx
|
||||
* Add support for multiple URLs
|
||||
* Allow configuring timeout
|
||||
* Fix deletion semantics
|
||||
* Python deserializer can take SR client
|
||||
* Fix handling of Avro unions
|
||||
* Remove deprecated RefResolver for JSON
|
||||
* Support delete of subject version
|
||||
* Added Python 3.13 wheels (#1828).
|
||||
* KIP-460 Admin Leader Election RPC
|
||||
* Added Transactional id resource type for ACL operations
|
||||
- update to 2.5.3:
|
||||
* Fix an assert being triggered during push telemetry call when
|
||||
no metrics matched on the client side.
|
||||
* Minor enhancement to JSONDeserializer to retrieve schema from
|
||||
Schema Registry if not provided
|
||||
* confluent-kafka-python is based on librdkafka v2.5.3, see the
|
||||
* librdkafka release notes
|
||||
* for a complete list of changes, enhancements, fixes and
|
||||
upgrade considerations.
|
||||
- update to 2.5.0:
|
||||
* KIP-107 Added delete_records API.
|
||||
* Added an example to show the usage of the custom logger with
|
||||
`AdminClient`.
|
||||
* Improve caching on Schema Registry client.
|
||||
* Removed usage of `strcpy` to enhance security of the client.
|
||||
* Removed support for centos6 and centos7.
|
||||
* Fixed invalid write in `OAUTHBEARER/OIDC` extensions copy.
|
||||
* Fixed documentation for default value of `operation_timeout`
|
||||
and `request_timeout` in various Admin apis.
|
||||
* Fixed an issue related to import error of `TopicCollection`
|
||||
and `TopicPartitionInfo` classes when importing through other
|
||||
module like mypy.
|
||||
* Fixed a segfault when `commit` or `store_offsets` consumer
|
||||
method is called incorrectly with errored Message object.
|
||||
* Fixed `logger` not working when provided as an argument to
|
||||
`AdminClient` instead of a configuration property.
|
||||
* Fixed some memory leaks related to `PyDict_SetItem`.
|
||||
- update to 2.4.0:
|
||||
* KIP-848: Added KIP-848 based new consumer group rebalance
|
||||
protocol. The feature is an **Early Access**: not production
|
||||
ready yet. Please refer detailed doc for more information.
|
||||
* Fix segfault with describe_topics and flaky connection
|
||||
(@lpsinger, #1692)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 23 09:09:21 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to pip-based build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 2 19:24:06 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-confluent-kafka
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,39 +18,40 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-confluent-kafka
|
||||
Version: 2.3.0
|
||||
Version: 2.8.0
|
||||
Release: 0
|
||||
Summary: Confluent's Apache Kafka client for Python
|
||||
License: Apache-2.0
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/confluentinc/confluent-kafka-python
|
||||
Source: https://files.pythonhosted.org/packages/source/c/confluent-kafka/confluent-kafka-%{version}.tar.gz
|
||||
Source: https://files.pythonhosted.org/packages/source/c/confluent-kafka/confluent_kafka-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: librdkafka-devel >= %{version}
|
||||
BuildRequires: python-rpm-macros
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Confluent's Apache Kafka client for Python
|
||||
|
||||
%prep
|
||||
%setup -q -n confluent-kafka-%{version}
|
||||
%setup -q -n confluent_kafka-%{version}
|
||||
|
||||
%build
|
||||
export CFLAGS="%{optflags}"
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
rm -v %{buildroot}/%{_prefix}/LICENSE.txt
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE.txt
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{python_sitearch}/*
|
||||
%{python_sitearch}/confluent[_-]kafka
|
||||
%{python_sitearch}/confluent[_-]kafka-%{version}*-info
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user