Compare commits
7 Commits
public_clo
...
factory
| Author | SHA256 | Date | |
|---|---|---|---|
| f4d28c7619 | |||
| 07b9276ae2 | |||
| 474ed3b69f | |||
| 1afaf44db4 | |||
| f0e60bbd9d | |||
| b0f233db89 | |||
| b8493cbd62 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b820f8d410c96ad87b8da79c696b979e1a182a170d0c0602626f5b9d8cbf21ee
|
||||
size 389745
|
||||
3
google_cloud_pubsub-2.34.0.tar.gz
Normal file
3
google_cloud_pubsub-2.34.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25f98c3ba16a69871f9ebbad7aece3fe63c8afe7ba392aad2094be730d545976
|
||||
size 396526
|
||||
@@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 14:38:13 UTC 2026 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 2.34.0
|
||||
* support mTLS certificates when available (#1566)
|
||||
- from version 2.33.0
|
||||
* Add AwsKinesisFailureReason.ApiViolationReason (ac68093)
|
||||
* Add tags to Subscription, Topic, and CreateSnapshotRequest messages
|
||||
for use in CreateSubscription, CreateTopic, and CreateSnapshot requests
|
||||
respectively (ac68093)
|
||||
* Annotate some resource fields with their corresponding API types (ac68093)
|
||||
* Deprecate credentials_file argument (ac68093)
|
||||
* A comment for field `received_messages` in message
|
||||
`.google.pubsub.v1.StreamingPullResponse` is changed (ac68093)
|
||||
- from version 2.32.0
|
||||
* Adds Python 3.14 support (#1512)
|
||||
* Debug logs (#1460)
|
||||
* Support the protocol version in StreamingPullRequest (#1455)
|
||||
* Ignore future warnings on python versions (#1546)
|
||||
- Stop installing fixup scripts which have been removed upstream
|
||||
- Update BuildRequires from setup.py
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 20 09:30:26 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 2.31.1
|
||||
* Change Log Severities for Terminated Streams (#1433
|
||||
* Propagate Otel Context to Subscriber Callback if Provided (#1429)
|
||||
- from version 2.31.0
|
||||
* Add MessageTransformationFailureReason to IngestionFailureEvent (#1427)
|
||||
* Surface Fatal Stream Errors to Future; Adjust Retryable Error Codes (#1422)
|
||||
- from version 2.30.0
|
||||
* Add SchemaViolationReason to IngestionFailureEvent (#1411)
|
||||
- from version 2.29.1
|
||||
* Remove setup.cfg configuration for creating universal wheels (#1376)
|
||||
* **sample:** Add samples for topic and subscription SMTs (#1386)
|
||||
* Update documentation for JavaScriptUDF to indicate that the `message_id`
|
||||
metadata field is optional instead of required (#1380)
|
||||
* Update readme links (#1409)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 08 13:51:01 UTC 2025 - Fabian Reiber <reiber@dfn-cert.de>
|
||||
|
||||
- Adds modern python on Leap 15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 8 14:53:22 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-google-cloud-pubsub
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,25 +16,25 @@
|
||||
#
|
||||
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-google-cloud-pubsub
|
||||
Version: 2.29.0
|
||||
Version: 2.34.0
|
||||
Release: 0
|
||||
Summary: Google Cloud Pub/Sub API client library
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/googleapis/python-pubsub
|
||||
Source: https://files.pythonhosted.org/packages/source/g/google-cloud-pubsub/google_cloud_pubsub-%{version}.tar.gz
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: python-rpm-macros
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module flaky}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module google-api-core >= 1.34.0}
|
||||
BuildRequires: %{python_module google-auth >= 2.14.1}
|
||||
BuildRequires: %{python_module grpc-google-iam-v1 >= 0.12.4}
|
||||
BuildRequires: %{python_module grpcio >= 1.51.3}
|
||||
BuildRequires: %{python_module grpcio >= 1.51.3 if %python-base < 3.14}
|
||||
BuildRequires: %{python_module grpcio >= 1.75.1 if %python-base >= 3.14}
|
||||
BuildRequires: %{python_module grpcio-status >= 1.33.2}
|
||||
BuildRequires: %{python_module opentelemetry-api >= 1.27.0}
|
||||
BuildRequires: %{python_module opentelemetry-sdk >= 1.27.0}
|
||||
@@ -42,6 +42,8 @@ BuildRequires: %{python_module proto-plus >= 1.22.0}
|
||||
BuildRequires: %{python_module proto-plus >= 1.22.2}
|
||||
BuildRequires: %{python_module proto-plus >= 1.25.0}
|
||||
BuildRequires: %{python_module protobuf >= 3.20.2}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest}
|
||||
# /SECTION
|
||||
BuildRequires: fdupes
|
||||
Requires: python-google-api-core >= 1.34.0
|
||||
@@ -56,8 +58,6 @@ Requires: python-proto-plus >= 1.22.2
|
||||
Requires: python-proto-plus >= 1.25.0
|
||||
Requires: python-protobuf >= 3.20.2
|
||||
Suggests: python-libcst >= 0.3.10
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
@@ -72,20 +72,12 @@ Google Cloud Pub/Sub API client library
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_clone -a %{buildroot}%{_bindir}/fixup_pubsub_v1_keywords.py
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
#%%pytest
|
||||
|
||||
%post
|
||||
%python_install_alternative fixup_pubsub_v1_keywords.py
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative fixup_pubsub_v1_keywords.py
|
||||
|
||||
%files %{python_files}
|
||||
%python_alternative %{_bindir}/fixup_pubsub_v1_keywords.py
|
||||
%{python_sitelib}/google/pubsub
|
||||
%{python_sitelib}/google/cloud/pubsub
|
||||
%{python_sitelib}/google/pubsub_v1
|
||||
|
||||
Reference in New Issue
Block a user