forked from pool/python-ZODB
Accepting request 1316821 from devel:languages:python
- update to 6.1:
* get_transaction(). Use transaction.get() instead.
transaction.commit() is a shortcut spelling of
transaction.get().commit(), and transaction.abort() of
transaction.get().abort(). Note that importing ZODB no
longer installs get_transaction as a name in Python's
__builtin__ module either.
* The begin() method of Transaction objects. Use the begin()
method of a transaction manager instead. transaction.begin()
is a shortcut spelling to call the default transaction
manager's begin() method.
* The dt argument to Connection.cacheMinimize().
* The Connection.cacheFullSweep() method. Use cacheMinimize()
instead.
* The Connection.getTransaction() method. Pass a transaction
manager to DB.open() instead.
* The Connection.getLocalTransaction() method. Pass a
transaction manager to DB.open() instead.
* The cache_deactivate_after and version_cache_deactivate_after
arguments to the DB constructor.
* The temporary, force, and waitflag arguments to DB.open().
DB.open() no longer blocks (there's no longer a fixed limit
on the number of open connections).
* The transaction and txn_mgr``arguments to ``DB.open(). Use
the transaction_manager argument instead.
* The getCacheDeactivateAfter, setCacheDeactivateAfter,
getVersionCacheDeactivateAfter and
setVersionCacheDeactivateAfter methods of DB.
- Update to 5.8.0:
OBS-URL: https://build.opensuse.org/request/show/1316821
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-ZODB?expand=0&rev=17
This commit is contained in:
@@ -1,3 +1,35 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 10 08:25:49 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 6.1:
|
||||
* get_transaction(). Use transaction.get() instead.
|
||||
transaction.commit() is a shortcut spelling of
|
||||
transaction.get().commit(), and transaction.abort() of
|
||||
transaction.get().abort(). Note that importing ZODB no
|
||||
longer installs get_transaction as a name in Python's
|
||||
__builtin__ module either.
|
||||
* The begin() method of Transaction objects. Use the begin()
|
||||
method of a transaction manager instead. transaction.begin()
|
||||
is a shortcut spelling to call the default transaction
|
||||
manager's begin() method.
|
||||
* The dt argument to Connection.cacheMinimize().
|
||||
* The Connection.cacheFullSweep() method. Use cacheMinimize()
|
||||
instead.
|
||||
* The Connection.getTransaction() method. Pass a transaction
|
||||
manager to DB.open() instead.
|
||||
* The Connection.getLocalTransaction() method. Pass a
|
||||
transaction manager to DB.open() instead.
|
||||
* The cache_deactivate_after and version_cache_deactivate_after
|
||||
arguments to the DB constructor.
|
||||
* The temporary, force, and waitflag arguments to DB.open().
|
||||
DB.open() no longer blocks (there's no longer a fixed limit
|
||||
on the number of open connections).
|
||||
* The transaction and txn_mgr``arguments to ``DB.open(). Use
|
||||
the transaction_manager argument instead.
|
||||
* The getCacheDeactivateAfter, setCacheDeactivateAfter,
|
||||
getVersionCacheDeactivateAfter and
|
||||
setVersionCacheDeactivateAfter methods of DB.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 4 15:21:36 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
@@ -44,7 +76,7 @@ Sun Jan 7 16:42:08 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 1 20:18:21 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||
|
||||
- Update to 5.8.0:
|
||||
- Update to 5.8.0:
|
||||
* Add support for Python 3.11.
|
||||
* Expand and refactor tests for race conditions.
|
||||
|
||||
@@ -56,7 +88,7 @@ Wed Sep 7 16:00:22 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 7 15:57:07 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||
|
||||
- Update to 5.7.0:
|
||||
- Update to 5.7.0:
|
||||
* Fix TypeError: can't concat str to bytes when running fsoids.py script with Python 3. See issue 350.
|
||||
* Readd transaction size information to fsdump output; adapt fsstats to fsdump's exchanged order for
|
||||
size and class information in data records; (fixes #354 <https://github.com/zopefoundation/ZODB/issues/354>_).
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-ZODB
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
# Copyright (c) 2013 LISA GmbH, Bingen, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
%bcond_without libalternatives
|
||||
Name: python-ZODB
|
||||
Version: 6.0.1
|
||||
Version: 6.1
|
||||
Release: 0
|
||||
Summary: Zope Object Database: object database and persistence
|
||||
License: ZPL-2.1
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:89f70fae1852123e243547909c311441d63405dec26f6ec42f365a2191db9509
|
||||
size 788213
|
||||
3
zodb-6.1.tar.gz
Normal file
3
zodb-6.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:854a269f78977cdfda06aff08e93a8aa512c214202caae301222db2ef98ba365
|
||||
size 788711
|
||||
Reference in New Issue
Block a user