forked from pool/python-google-cloud-secret-manager
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 9e3e80e19b | |||
| ef51050706 | |||
| 86fda7695b | |||
| bd58842237 | |||
| b195cf1b2a | |||
| d8fffb7ab3 | |||
| f08afa6884 | |||
| 1201b06df1 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a086a7413aaf4fffbd1c4fe9229ef0ce9bcf48f5a8df5b449c4a32deb5a2cfde
|
||||
size 221105
|
||||
3
google_cloud_secret_manager-2.26.0.tar.gz
Normal file
3
google_cloud_secret_manager-2.26.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d1d6f76327685a0ed78a4cf50f289e1bfbbe56026ed0affa98663b86d6d50d6
|
||||
size 277603
|
||||
@@ -1,3 +1,46 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 16 08:32:45 UTC 2026 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 2.26.0
|
||||
* auto-enable mTLS when supported certificates are detected
|
||||
* check Python and dependency versions in generated GAPICs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 17 12:39:21 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 2.25.0
|
||||
* Add support for Python 3.14 (4763aa7)
|
||||
* Deprecate credentials_file argument (4763aa7)
|
||||
- from version 2.24.0
|
||||
* [google-cloud-secret-manager] Update secret manager protos for
|
||||
tags (#13976)
|
||||
- Update BuildRequires and Requires from setup.py
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 25 09:00:46 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 2.23.3
|
||||
* Various documentation clarifications (#13796)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 24 06:03:23 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 2.23.2:
|
||||
* Features
|
||||
+ Add REST Interceptors which support reading metadata
|
||||
+ Add support for reading selective GAPIC generation methods from service
|
||||
YAML
|
||||
+ Add support for opt-in debug logging
|
||||
+ Add support for Python 3.13
|
||||
* Bug Fixes
|
||||
+ [Many APIs] Allow Protobuf 6.x
|
||||
+ remove setup.cfg configuration for creating universal wheels
|
||||
+ deps: Require grpc-google-iam-v1>=0.14.0
|
||||
+ Fix typing issue with gRPC metadata when key ends in -bin
|
||||
+ disable universe-domain validation
|
||||
+ Retry and timeout values do not propagate in requests during pagination
|
||||
+ Allow Protobuf 5.x
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 10 13:54:01 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-google-cloud-secret-manager
|
||||
#
|
||||
# Copyright (c) 2024 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
|
||||
@@ -18,28 +18,34 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-google-cloud-secret-manager
|
||||
Version: 2.20.0
|
||||
Version: 2.26.0
|
||||
Release: 0
|
||||
Summary: Google Cloud Secret Manager API client library
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-secret-manager
|
||||
Source: https://files.pythonhosted.org/packages/source/g/google-cloud-secret-manager/google-cloud-secret-manager-%{version}.tar.gz
|
||||
Source: https://files.pythonhosted.org/packages/source/g/google-cloud-secret-manager/google_cloud_secret_manager-%{version}.tar.gz
|
||||
BuildRequires: %{python_module grpcio}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
%if %python_version_nodots < 314
|
||||
Requires: python-grpcio >= 1.33.2
|
||||
%else
|
||||
Requires: python-grpcio >= 1.75.1
|
||||
%endif
|
||||
Requires: python-google-api-core >= 1.34.1
|
||||
Requires: python-grpc-google-iam-v1 >= 0.12.4
|
||||
Requires: python-proto-plus >= 1.22.3
|
||||
Requires: python-protobuf >= 3.19.5
|
||||
Requires: python-grpc-google-iam-v1 >= 0.14.0
|
||||
Requires: python-proto-plus >= 1.25.0
|
||||
Requires: python-protobuf >= 3.20.2
|
||||
BuildArch: noarch
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module google-api-core >= 1.34.1}
|
||||
BuildRequires: %{python_module grpc-google-iam-v1 >= 0.12.4}
|
||||
BuildRequires: %{python_module proto-plus >= 1.22.3}
|
||||
BuildRequires: %{python_module protobuf >= 3.19.5}
|
||||
BuildRequires: %{python_module grpc-google-iam-v1 >= 0.14.0}
|
||||
BuildRequires: %{python_module proto-plus >= 1.25.0}
|
||||
BuildRequires: %{python_module protobuf >= 3.20.2}
|
||||
# /SECTION
|
||||
%python_subpackages
|
||||
|
||||
@@ -47,7 +53,7 @@ BuildRequires: %{python_module protobuf >= 3.19.5}
|
||||
Google Cloud Secret Manager API client library
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n google-cloud-secret-manager-%{version}
|
||||
%autosetup -p1 -n google_cloud_secret_manager-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
Reference in New Issue
Block a user