Releases: muflone/pyodoo
Releases · muflone/pyodoo
Release 0.7.1
Release 0.7.0
- Added PythonCode class to execute a Python code
- Added sample for PythonCode
- Added tests for PythonCode
Release 0.6.0
- Added xlrd dependency
- Added requests dependency
- Added support for SqlExcelQuery
- Get the demo credentials following the https://demo.odoo.com/ redirects
Release 0.5.10
- Use the existing UID if not authenticated in Model.get_model
Release 0.5.9
- Removed limit, offset and order arguments from Model.get and Model.get_many
Release 0.5.8
- Added some tests for filter with CompareType
- Added CompareType.NOT_CONTAINS
- Added CompareType.LIKE
- Added CompareType.NOT_LIKE
- Added CompareType.ILIKE
- Added CompareType.NOT_ILIKE
- Added CompareType.RAW_LIKE
- Added CompareType.RAW_ILIKE
- Added CompareType.UNSET_OR_EQUAL
- Added CompareType.CHILD_OF
- Added CompareType.PARENT_OF
- Added compatibility with Python 3.11
Release 0.5.7
- Added Model method first to get the first result from filter
Release 0.5.6
- Added argument ignore_none_errors to Model to ignore errors about None values
Release 0.5.5
- Added authenticate argument to Model init
- Added Api method do_read_many to get multiple records by ID
- Added Model method get_many to get multiple records at once
- Changed the Model update method to update multiple records at once
- Renamed Model method set_order_by to _set_order_by
- Renamed Model method set_pagination to _set_pagination
- Renamed Model method set_options_language to _set_options_language
- Added is_active filter Model methods
Release 0.5.4
- Allowed multiple records for the Model method delete