Commit 4e45e0c5 authored by Kirill Smelkov's avatar Kirill Smelkov

zodbtools: v↑ (0.0.0.dev4 -> 0.0.0.dev8)

Going from 0.0.0.dev4 to -> 0.0.0.dev8 zodbtools:

- Stabilized `zodb dump` format and layed ground for `zodb restore`;
- Taught `zodb analyze` to work with any ZODB storage (instead of being
  FileStorage-only tool) and to analyze a particular range of history
  (instead of crunching data for days on a large database);
- Added `zodb commit` tool that is handy in testing;
- Added ability to specify tid ranges in human-readable format, as in
  e.g. `zodb analyze data.fs 2018-01-01T10:30:00Z..yesterday`.
- Progressed on Python3 support.

See https://pypi.org/project/zodbtools/#zodbtools-change-history
for details.
parent fcfa3195
......@@ -3,6 +3,7 @@
[buildout]
extends =
../pygolang/buildout.cfg
../ZEO/buildout.cfg
parts =
......@@ -17,6 +18,7 @@ eggs =
# dependent eggs that must come through in-tree recipes
depends =
${pygolang:egg}
# ZEO comes through zodbtools -> zodburi -> ZEO
${ZEO:egg}
......@@ -26,8 +28,17 @@ eggs = ${zodbtools:eggs}
[versions]
zodbtools = 0.0.0.dev4
zodbtools = 0.0.0.dev8
# pygolang -> component/pygolang/
# Required by:
# zodbtools==0.0.0dev4
zodburi = 2.4.0
# zope.interface -> stack/slapos.cfg
# six -> stack/slapos.cfg
dateparser = 0.7.6
# needed by dateparser:
# python-dateutil -> stack/slapos.cfg
# pytz -> stack/slapos.cfg
regex = 2020.9.27
# tzlocal -> stack/slapos.cfg
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment