Skip to content

v0.2.0-beta.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Oct 14:59
· 0 commits to main since this release

Changelog

Release 0.2.0 (unreleased)

Added

  • New experimental command odood deploy that could be used to deploy production-ready Odoo instance.
  • Added experimental support for Odoo 18

Changed

  • Pre-commit related commands moved to pre-commit subcommand.
    Thus, following commands now available to work with pre-commit:
    • odood pre-commit init
    • odood pre-commit set-up
    • odood pre-commit run
  • Change command odood server run. Command uses execv to run Odoo,
    thus, Odoo process will replace Odood process. Thus, option --detach
    is not available here. If you want to start Odoo in background, then
    odood server start command exists. Instead, this command (odood server run)
    is designed to run Odoo with provided args in same way as you run Odoo binary directly.
    For example, following command
    odood server run -- -d my_database --install=crm --stop-after-init,
    that will install crm module, will be translated to odoo -d my_database --install=crm --stop-after-init,
    that will be ran inside virtualenv of current Odood project.
    • Added new option --ignore-running that allows to ignore server running.
    • Removed option --detach as it does not have sense. Use odood server start instead.