Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Metatools 1.3.1
< Funtoo:Metatools | Releases
Jump to navigation
Jump to search
Metatools 1.3.1 is a bugfix release which was released on 03 June 2023.
ChangeLog
This is a bugfix release.
- Add a missing __init__.py to
metatools/zmq
so that these source files get included in the distribution. This fixes a traceback due to these missing files which prevented the distributed PyPi source from working. - If
doit
was interrupted, it could write incomplete JSON to disk usingFileStorageBackend
. In this case, the JSON will be corrupt and the retrieved data will be invalid, and there was no obvious way to clear out this corrupt data. This would result in cached JSON data fromget_page()
being invalid and re-runningdoit
would not fix this. So a fix was added so that any corrupt entries inFileStorageBackend
will be treated as if they don't exist (returning aCacheMiss()
) which will allowdoit
to overwrite these corrupt entries with new, corrected entries.