17
0

fetch updates from devel package devel:languages:python/python-google-cloud-storage

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:google/python-google-cloud-storage?expand=0&rev=2
This commit is contained in:
2023-12-17 20:02:52 +00:00
committed by Git OBS Bridge
parent 0317b99d4f
commit dcb41c02ea
5 changed files with 149 additions and 78 deletions

View File

@@ -1,3 +1,62 @@
-------------------------------------------------------------------
Sat Dec 16 19:22:43 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 2.14.0:
* Add support for Python 3.12
* Support object retention lock
* Clarify error message and docstrings in Blob class method
* Propagate timeout in BlobWriter
* Use native namespace to avoid pkg_resources warnings
-------------------------------------------------------------------
Fri Nov 24 13:54:17 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 2.13.0
* Add Autoclass v2.1 support (#1117)
* Add support for custom headers (#1121)
* Blob.from_string parse storage uri with regex (#1170)
* Bucket.delete(force=True) now works with version-enabled buckets (#1172)
* Fix typo in Bucket.clear_lifecycle_rules() (#1169)
* Fix exception field in tm reference docs (#1164)
- from version 2.12.0
* Add additional_blob_attributes to upload_many_from_filenames (#1162)
* Add crc32c_checksum argument to download_chunks_concurrently (#1138)
* Add skip_if_exists to download_many (#1161)
* Launch transfer manager to GA (#1159)
* Bump python-auth version to fix issue and remove workaround (#1158)
* Mark _deprecate_threads_param as a wrapper to unblock introspection and docs (#1122)
* Add snippets for upload_chunks_concurrently and add chunk_size (#1135)
* Update formatting and wording in transfer_manager docstrings (#1163)
- from version 2.11.0
* Add gccl-gcs-cmd field to X-Goog-API-Client header for Transfer Manager calls (#1119)
* Add transfer_manager.upload_chunks_concurrently using the XML MPU API (#1115)
* Support configurable retries in upload_chunks_concurrently (#1120)
* Split retention period tests due to caching change (#1068)
* Add Transfer Manager documentation in c.g.c (#1109)
- Refresh patches for new version
* demock.patch
- Update BuildRequires and Require from setup.py
-------------------------------------------------------------------
Wed Jun 28 12:25:01 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 2.10.0
* Add matchGlob parameter to list_blobs (#1055)
* Allow exceptions to be included in batch responses (#1043)
* Extend wait for bucket metadata consistency in system tests (#1053)
* Add clarification to batch module (#1045)
-------------------------------------------------------------------
Wed May 10 09:15:20 UTC 2023 - Matej Cepl <mcepl@suse.com>
- WORK IN PROGRESS! TESTS STILL FAIL!
- Update to 2.9.0:
- Un-deprecate blob.download_to_file(), bucket.create(), and bucket.list_blobs()
- Avoid pickling processed credentials
- Improve test error message for missing credentials
- Add sample and sample test for transfer manager
- Remove threads in transfer manager samples
-------------------------------------------------------------------
Thu Mar 30 10:04:38 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
@@ -205,7 +264,7 @@ Thu Sep 30 09:19:18 UTC 2021 - Matej Cepl <mcepl@suse.com>
Thu Sep 30 09:04:12 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
- Copy the testsuite before we run it to avoid import problems.
- Remove horrible workarounds creating __init__.py and then removing them.
- Remove horrible workarounds creating __init__.py and then removing them.
- Drop Requires on python-google-filesystem.
-------------------------------------------------------------------
@@ -230,7 +289,7 @@ Fri Jun 4 07:09:47 UTC 2021 - Matej Cepl <mcepl@suse.com>
class methods
- update batch connection to request api endpoint info from
client
- allow metadata keys to be cleared
- allow metadata keys to be cleared
- allow signed url version v4 without signed credentials
- correctly encode bytes for V2 signature
- add mtls support
@@ -244,13 +303,13 @@ Fri Jun 4 07:09:47 UTC 2021 - Matej Cepl <mcepl@suse.com>
- make retry parameter public and added in other methods
- avoid triggering global logging config
- fall back to 'charset' of 'content_type' in
'download_as_text'
'download_as_text'
- fix conditional retry handling of camelCase query params
- retry uploads only conditionally
- update 'custom_time' setter to record change
- update 'custom_time' setter to record change
- add testing support for Python 3.9, drop Python 3.5
- use passed-in client within Blob.from_string and helpers
- preserve metadata value when uploading new file content
- use passed-in client within Blob.from_string and helpers
- preserve metadata value when uploading new file content
- retry API calls with exponential backoff
- field policy return string
- self-upload files for Unicode system test
@@ -264,10 +323,10 @@ Fri Jun 4 07:09:47 UTC 2021 - Matej Cepl <mcepl@suse.com>
- error message return from api
- storage: add support of daysSinceNoncurrentTime and
noncurrentTimeBefore
- pass 'client_options' to base class ctor
- pass 'client_options' to base class ctor
- rename 'Blob.download_as_{string,bytes}', add
'Blob.download_as_text'
- change datetime.now to utcnow
- change datetime.now to utcnow
- extract hashes correctly during download
- add timeouts to Blob methods where missing
- auto-populate standard headers for non-chunked downloads
@@ -288,7 +347,7 @@ Tue Apr 13 19:30:16 UTC 2021 - Robert Schweikert <rjschwei@suse.com>
Mon Jun 29 15:55:00 UTC 2020 - Sean Marlow <sean.marlow@suse.com>
- Update version requirement for mock package.
+ The tests require at least version 3.0.0.
+ The tests require at least version 3.0.0.
-------------------------------------------------------------------
Thu Jun 18 10:41:05 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>