Skip to content

Commit

Permalink
Release 0.0.15 (2023-10-30)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
katyukha committed Oct 30, 2023
1 parent 0352306 commit c3445c1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Release 0.0.15 (Unreleased)
## Release 0.0.15 (2023-10-30)

### Added

Expand Down
7 changes: 7 additions & 0 deletions subpackages/lib/source/odood/lib/odoo/db_manager.d
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,13 @@ struct OdooDatabaseManager {
in bool validate_strict=true) const {
_restoreValidateBackup(backup_path, validate_strict);

/* TODO: Implement database restoration in D
*
* 1. Restore filestore
* 2. Restore database
* 3. Set correct assert rights for filestore if needed
*/

return _project.lodoo(_test_mode).databaseRestore(name, backup_path);
}

Expand Down

0 comments on commit c3445c1

Please sign in to comment.