- 17 Mar, 2020 5 commits
-
-
Éloi Rivard authored
-
Éloi Rivard authored
-
Éloi Rivard authored
-
Éloi Rivard authored
-
Éloi Rivard authored
-
- 06 Mar, 2020 1 commit
-
-
Jason Madden authored
Simplify appveyor.yml.
-
- 05 Mar, 2020 4 commits
-
-
Jason Madden authored
-
Jason Madden authored
Fixes issues with zc.buildout and version pins (https://github.com/zopefoundation/ZODB/pull/295#issuecomment-593805066)
-
Jason Madden authored
Fix test compatibility with persistent 4.6; test CPython with PURE_PYTHON
-
Jason Madden authored
-
- 23 Jan, 2020 1 commit
-
-
Julien Muchembled authored
Fixes #290
-
- 16 Jan, 2020 1 commit
-
-
Jens W. Klein authored
fix #292 improve volatile attribute documentation
-
- 02 Jan, 2020 1 commit
-
-
Jens W. Klein authored
-
- 30 Dec, 2019 1 commit
-
-
Jens W. Klein authored
-
- 12 Dec, 2019 1 commit
-
-
Jason Madden authored
Fix tests with transaction 3.0.
-
- 11 Dec, 2019 1 commit
-
-
Jason Madden authored
Only test changes were required, no production code changes.
-
- 09 Dec, 2019 1 commit
-
-
Tim Gates authored
Closes #287
-
- 21 Nov, 2019 1 commit
-
-
Jürgen Gmach authored
* Add support for Python 3.8. modified: .travis.yml modified: CHANGES.rst modified: setup.py modified: tox.ini modified: appveyor.yml
-
- 27 Sep, 2019 3 commits
-
-
Jason Madden authored
Tests: Always pass bytes for the previous serial param of storage.store
-
Jason Madden authored
This is consistent with what persistent.Persistent and Connection actually do. RelStorage previously had a special case just for these tests.
-
Jason Madden authored
Make TmpStore implement its own getSize
-
- 26 Sep, 2019 1 commit
-
-
Jason Madden authored
This is consistent with its __len__ and provides a better figure for existing logging. Fixes #282
-
- 23 Sep, 2019 2 commits
-
-
Julien Muchembled authored
IStorage implementations used to do this task themselves which leads to code duplication and sometimes bugs (one was fixed recently in NEO). Like for object serialization, this should be done by the upper layer (Connection). This commit also provides a way to get raw extensions data while iterating over transactions (this is actually the original purpose[2]). So far, extension data could only be retrieved unpickled, which caused several problems: - tools like `zodb dump` [1] cannot dump data exactly as stored on a storage. This makes database potentially not bit-to-bit identical to its original after restoring from such dump. - `zodb dump` output could be changing from run to run on the same database. This comes from the fact that e.g. python dictionaries are unordered and so when pickling a dict back to bytes the result could be not the same as original. ( this problem can be worked-around partly to work reliably for e.g. dict with str keys - by always emitting items in key sorted order, but it is hard to make it work reliably for arbitrary types ) Both issues make it hard to verify integrity of database at the lowest possible level after restoration, and make it hard to verify bit-to-bit compatibility with non-python ZODB implementations. For this, TransactionMetaData gets a new 'extension_bytes' attribute and and common usage becomes: * Application committing a transaction: - 'extension' is set with a dictionary - the storage gets the bytes via 'extension_bytes' * Iteration: - the storage passes bytes as 'extension' parameter of TransactionMetaData - the application can get extension data either as bytes ('extension_bytes') or deserialized ('extension'): in the former case, no deserialization happens and the returned value is exactly what was passed by the storage [1] https://lab.nexedi.com/nexedi/zodbtools [2] https://github.com/zopefoundation/ZODB/pull/183Co-Authored-By: Kirill Smelkov <kirr@nexedi.com>
-
Julien Muchembled authored
-
- 20 Sep, 2019 2 commits
-
-
Jason Madden authored
TransactionalUndo closes storages it opens.
-
Jason Madden authored
Fixes #268.
-
- 09 May, 2019 3 commits
-
-
Jason Madden authored
Fix ResourceWarnings seen during testing, and a testrunner orphaned thread warning
-
Jason Madden authored
-
Jason Madden authored
Fixes #266
-
- 08 May, 2019 3 commits
-
-
Jason Madden authored
Drop support for Python 3.4
-
Jason Madden authored
-
Jason Madden authored
isAlive -> is_alive. Fixes #263
-
- 07 May, 2019 2 commits
-
-
Jason Madden authored
Also upbate the .travis.yml to pick up modern versions of PyPy and PyPy3
-
Jason Madden authored
-
- 18 Mar, 2019 2 commits
-
-
Marius Gedminas authored
repozo -B with missing -f should show a clear error message
-
Marius Gedminas authored
Fixes #259.
-
- 06 Mar, 2019 3 commits
-
-
Nicolas Wavrant authored
Repozo : add an option to verify on recovery
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
So if recovering a ZODB fails for any reason, it doesn't leave behind a partial file which may be confused with the recovered file (as it bears same name).
-
- 29 Jan, 2019 1 commit
-
-
Tres Seaver authored
Spellcheck error in ZODB2.rst
-