411c51db42
- 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: - Update to 5.7.0:
Dirk Mueller2025-11-10 08:26:26 +00:00
dbeb87b922
Accepting request 1277132 from devel:languages:python
Ana Guerrero2025-05-13 18:07:57 +00:00
96ba107c60
- Update to 6.0.1 * repozo: fix restoring on stdout. * repozo: prevent an incorrect "option ignored" warning when running backup or verify. * FileStorage: fix restore regression introduced in ZODB 6.0 in #395: when restoring data records with undo the restore was no longer emitting backpointers and was emitting duplicate data copies instead. #409 fixes restore back to emit data records with backpointers for undo again. - Add conflict with fstail, since ZODB has a binary with the same name.
Markéta Machová2025-05-13 12:32:07 +00:00
1cf4887367
- update to 5.8.1: * Fix racetest problems. For details see #376. * Fix --with-verify argument in script repozo --recover. For details see #381.
Dirk Mueller2024-01-07 16:48:35 +00:00
5a7ae5546b
- Update to 5.5.1: * Add support for Python 3.7. * Bump the dependency on zodbpickle to at least 1.0.1. This is required to avoid a memory leak on Python 2.7. See issue 203. * Bump the dependency on persistent to at least 4.4.0. * Make the internal support functions for dealing with OIDs (p64 and u64) somewhat faster and raise more informative exceptions on certain types of bad input. See issue 216. * Remove support for python setup.py test. It hadn't been working for some time. See issue #218. * Make the tests run faster by avoiding calls to time.sleep(). - Drop no longer needed python-ZODB-testsuite.patch
Tomáš Chvátal
2019-03-04 16:04:34 +00:00