Skip to content

Commit 653387b

Browse files
rjschweibmwiedemann
authored andcommitted
Update python-google-cloud-spanner to version 3.58.0 / rev 6 via SR 1313824
https://build.opensuse.org/request/show/1313824 by user rjschwei + anag_factory
1 parent 6d4c965 commit 653387b

6 files changed

Lines changed: 72 additions & 6 deletions

File tree

0 Bytes
Binary file not shown.

packages/p/python-google-cloud-spanner/.rev

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,12 @@
4141
<comment></comment>
4242
<requestid>1273311</requestid>
4343
</revision>
44+
<revision rev="6" vrev="1">
45+
<srcmd5>4aa3141b8a4310f825c564dd4f51c6fc</srcmd5>
46+
<version>3.58.0</version>
47+
<time>1761659149</time>
48+
<user>anag_factory</user>
49+
<comment></comment>
50+
<requestid>1313824</requestid>
51+
</revision>
4452
</revisionlist>

packages/p/python-google-cloud-spanner/google_cloud_spanner-3.53.0.tar.gz

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/ipfs/bafybeiawbtdul2cn7tzr77c6x64we6tx5tlojmo4dtgenlrpqqz5c533am

packages/p/python-google-cloud-spanner/python-google-cloud-spanner.changes

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,63 @@
1+
-------------------------------------------------------------------
2+
Mon Oct 27 10:05:03 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
3+
4+
- Replace bash scriptlet to remove mock usage from source code
5+
6+
-------------------------------------------------------------------
7+
Mon Oct 20 08:26:31 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
8+
9+
- Update to 3.58.0
10+
* **spanner:** Support setting read lock mode (#1404)
11+
* Remove Python 3.7 and 3.8 as supported runtimes (#1395)
12+
- from version 3.57.0
13+
* Support configuring logger in dbapi kwargs (#1400)
14+
- from version 3.56.0
15+
* Add support for multiplexed sessions - read/write (#1389)
16+
* Add support for multiplexed sessions (#1383)
17+
* Default enable multiplex session for all operations unless
18+
explicitly set to false (#1394)
19+
* **spanner:** Add new change_stream.proto (#1382)
20+
* Skip gRPC trailers for StreamingRead & ExecuteStreamingSql (#1385)
21+
- from version 3.55.0
22+
* Add a `last` field in the `PartialResultSet` (d532d57)
23+
* Add support for multiplexed sessions (#1381)
24+
* Add throughput_mode to UpdateDatabaseDdlRequest to be used by
25+
Spanner Migration Tool.
26+
See https://github.com/GoogleCloudPlatform/spanner-migration-tool (d532d57)
27+
* Support fine-grained permissions database roles in connect (#1338)
28+
* E2E tracing metadata append issue (#1357)
29+
* Pass through kwargs in dbapi connect (#1368)
30+
* Remove setup.cfg configuration for creating universal wheels (#1324)
31+
* A comment for field `chunked_value` in message
32+
`.google.spanner.v1.PartialResultSet` is changed (d532d57)
33+
* A comment for field `precommit_token` in message
34+
`.google.spanner.v1.PartialResultSet` is changed (d532d57)
35+
* A comment for field `precommit_token` in message
36+
`.google.spanner.v1.ResultSet` is changed (d532d57)
37+
* A comment for field `query_plan` in message
38+
`.google.spanner.v1.ResultSetStats` is changed (d532d57)
39+
* A comment for field `row_count_lower_bound` in message
40+
`.google.spanner.v1.ResultSetStats` is changed (d532d57)
41+
* A comment for field `row_type` in message
42+
`.google.spanner.v1.ResultSetMetadata` is changed (d532d57)
43+
* A comment for field `rows` in message
44+
`.google.spanner.v1.ResultSet` is changed (d532d57)
45+
* A comment for field `stats` in message
46+
`.google.spanner.v1.PartialResultSet` is changed (d532d57)
47+
* A comment for field `stats` in message
48+
`.google.spanner.v1.ResultSet` is changed (d532d57)
49+
* A comment for field `values` in message
50+
`.google.spanner.v1.PartialResultSet` is changed (d532d57)
51+
* A comment for message `ResultSetMetadata` is changed (d532d57)
52+
* A comment for message `ResultSetStats` is changed (d532d57)
53+
* Fix markdown formatting in transactions page (#1377)
54+
- from version 3.54.0
55+
* Add interval type support (#1340)
56+
* Add sample for pre-split feature (#1333)
57+
* Add SQL statement for begin transaction isolation level (#1331)
58+
* Support transaction isolation level in dbapi (#1327)
59+
* Improve client-side regex statement parser (#1328)
60+
161
-------------------------------------------------------------------
262
Mon Apr 28 13:02:48 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
363

packages/p/python-google-cloud-spanner/python-google-cloud-spanner.spec

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
%{?sle15_python_module_pythons}
2929
Name: python-google-cloud-spanner%{psuffix}
30-
Version: 3.53.0
30+
Version: 3.58.0
3131
Release: 0
3232
Summary: Google Cloud Spanner API client library
3333
License: Apache-2.0
@@ -76,10 +76,8 @@ Google Cloud Spanner API client library
7676
%autosetup -p1 -n google_cloud_spanner-%{version}
7777

7878
# don't use python-mock
79-
for i in $(find tests -name "*.py")
80-
do
81-
sed -i 's/^import mock/from unittest import mock/g' $i
82-
done
79+
find . -name "*.py" -exec sed -i "s/^import mock/from unittest import mock/g" {} \;
80+
find . -name "*.py" -exec sed -i "s/^from mock/from unittest.mock/g" {} \;
8381

8482
%build
8583
%pyproject_wheel

0 commit comments

Comments
 (0)