Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 1.19 KB

CHANGELOG.md

File metadata and controls

18 lines (13 loc) · 1.19 KB

Changes 0.12.0 -> 0.13.0 (2024-06...)

Notes

This version reconsiders many of the core elements of the worker application.

The application now relies on pydantic to define the models for what is consumed from the configuration file and the command line. Previously there was a heinous mix of classes which just had attributes and methods seemingly hung on them at random. This was a nightmare to maintain and understand.

  • the CopierFactory was reorganized to be more modular

  • providers became a package, with a model used to validation all provider configurations

  • all of the configuration file logic was moved into the commands module, the logic to handle managing the cofig is all contained there instead of being spread out many places

  • added tfworker.util.log to handle interaction with the user, via the CLI or via a logger in the future

  • made significant strides towards consolidating all exceptions / error handling

  • made significant strides in only having the primary cli.py and commands/ actually cause the program to terminate

  • validation of options and inputs is now handled centrally in the pydantic models instead of being spread out everywhere

  • ... @TODO find time to update this :)