Skip to content

Releases: katyukha/Odood

v0.2.0-alpha.2

13 Sep 14:52
Compare
Choose a tag to compare
v0.2.0-alpha.2 Pre-release
Pre-release

Changelog

Release 0.2.0 (unreleased)

Added

  • New command odood odoo run that allows to run Odoo itself.
  • New command odood deploy that could be used to deploy production-ready Odoo instance.

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

v0.1.0

15 Aug 13:53
Compare
Choose a tag to compare

Changelog

Release 0.1.0 (2024-08-15)

Added

  • New command odood venv pip that allows to run pip from current venv.
  • New command odood venv npm that allows to run npm from current venv.
  • New command odood venv python that allows to run python from current venv.
  • New command odood venv ipython that allows to run ipython from current venv.
  • Added new option --ual to command odood repo add that allows to automatically
    update list of addons when repository was added.
  • New command odood venv run that allows to run any command from current venv.
  • New command odood repo run-pre-commit to run pre-commit for the repo.

Changed

  • Database restoration reimplemented in D,
    thus now it restores db dump and filestore in parallel.

v0.0.16-rc3

16 May 09:55
Compare
Choose a tag to compare
v0.0.16-rc3 Pre-release
Pre-release

Changelog

Release 0.0.16 (Unreleased)

Added

  • New command odood venv pip that allows to run pip from current venv.
  • New command odood venv npm that allows to run npm from current venv.
  • New command odood venv python that allows to run python from current venv.

Changed

  • Database restoration reimplemented in D,
    thus now it restores db dump and filestore in parallel.

v0.0.16-rc2

03 Dec 19:46
Compare
Choose a tag to compare
v0.0.16-rc2 Pre-release
Pre-release

Changelog

Release 0.0.16 (Unreleased)

Changed

  • Database restoration reimplemented in D,
    thus now it restores db dump and filestore in parallel.

v0.0.16-rc1

05 Nov 19:53
Compare
Choose a tag to compare
v0.0.16-rc1 Pre-release
Pre-release

Changelog

Release 0.0.16 (Unreleased)

Changed

  • Database restoration reimplemented in D,
    thus now it restores db dump and filestore in parallel.

v0.0.15

30 Oct 18:25
Compare
Choose a tag to compare

Changelog

Release 0.0.15 (2023-10-30)

Added

  • Added ability skip addons specified in file during install/update/upgrade.
  • Added new options to odood test command:
    • --file that could be used to pass the path to file to read addons to test from
    • --skip-file read names of addons to skip from file

Changed

  • Installation of dependencies from manifest is now optional.
    It is frequent case, when authors of module place incorrect dependencies
    in manifest, thus installation of addon may fail.

Fixes

  • Fix error when running addons install/update/uninstall with non-existing
    logfile. This was caused by attempt to determine starting point of logfile
    to search for errors happened during operation.
    Now this case is handled correctly.

v0.0.15-rc3

06 Oct 19:08
Compare
Choose a tag to compare
v0.0.15-rc3 Pre-release
Pre-release

Changelog

Release 0.0.15 (Unreleased)

Added

  • Added ability skip addons specified in file during install/update/upgrade.
  • Added new options to odood test command:
    • --file that could be used to pass the path to file to read addons to test from
    • --skip-file read names of addons to skip from file

Changed

  • Installation of dependencies from manifest is now optional.
    It is frequent case, when authors of module place incorrect dependencies
    in manifest, thus installation of addon may fail.

Fixes

  • Fix error when running addons install/update/uninstall with non-existing
    logfile. This was caused by attempt to determine starting point of logfile
    to search for errors happened during operation.
    Now this case is handled correctly.

v0.0.15-rc2

06 Oct 08:06
Compare
Choose a tag to compare
v0.0.15-rc2 Pre-release
Pre-release

Changelog

Release 0.0.15 (Unreleased)

Changed

  • Installation of dependencies from manifest is now optional.
    It is frequent case, when authors of module place incorrect dependencies
    in manifest, thus installation of addon may fail.

Fixes

  • Fix error when running addons install/update/uninstall with non-existing
    logfile. This was caused by attempt to determine starting point of logfile
    to search for errors happened during operation.
    Now this case is handled correctly.

v0.0.15-rc1

06 Oct 07:49
Compare
Choose a tag to compare
v0.0.15-rc1 Pre-release
Pre-release

Changelog

Release 0.0.15 (Unreleased)

Changed

  • Installation of dependencies from manifest is now optional.
    It is frequent case, when authors of module place incorrect dependencies
    in manifest, thus installation of addon may fail.

Fixes

  • Fix error when running addons install/update/uninstall with non-existing
    logfile. This was caused by attempt to determine starting point of logfile
    to search for errors happened during operation.
    Now this case is handled correctly.

v0.0.14

04 Oct 07:11
Compare
Choose a tag to compare

Changelog

Release 0.0.14 (2023-10-04)

Added

  • Added new options --skip and --skip-re to odood test command,
    that allow to not run tests for specified addons.
    Useful in cases, when there is need to skip some addons
    found via options --dir and --dir-r
  • Added new options --skip and --skip-re to odood addons install/update/uninstall commands.
    Useful in cases, when there is need to skip some addons
    found via options --dir and --dir-r
  • Added new option --skip-errors to odood addons install/update/uninstall commands, that allows
    to not fail when installing addons in database,
    thus allowing to install addons to other databases, and fail in the end.
  • Added new option --install-type to odood init and odood venv reinstall-odoo commands,
    thus, now it is possible to install Odoo as git repo or as unpacked archive depending on this option

Changed

  • Load Python dynamically, thus make Odood more portable.
  • Finally, make Odood portable. Now we have universal deb package, that could be installed on most debian-based repos newer then ubuntu:20.04
  • Commands odood addons install/update/uninstall now will report Odoo errors raised during addons installation.