Skip to content

Releases: muflone/pyodoo

Release 0.7.2

19 Aug 01:09
0.7.2

Choose a tag to compare

  • Handle authentication unsuccessful
  • Applied less strict requirements
  • Added decorator _ignore_none_errors for many Model methods
  • Disable tests as demo.odoo.com XML-RPC seems unavailable
  • Added supported Python version 3.13
  • Added Model properties uid, partner_id, partner_name

Release 0.7.1

19 Jun 22:39
0.7.1

Choose a tag to compare

  • Bumped dependencies
  • Fixed tests data as the database demo has changed
  • Added extra Python versions for TravisCI

Release 0.7.0

06 Oct 22:48
0.7.0

Choose a tag to compare

  • Added PythonCode class to execute a Python code
  • Added sample for PythonCode
  • Added tests for PythonCode

Release 0.6.0

25 Jun 22:09
0.6.0

Choose a tag to compare

  • 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

02 Jun 23:19

Choose a tag to compare

  • Use the existing UID if not authenticated in Model.get_model

Release 0.5.9

17 May 21:38

Choose a tag to compare

  • Removed limit, offset and order arguments from Model.get and Model.get_many

Release 0.5.8

16 May 00:04

Choose a tag to compare

  • 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

19 Mar 11:08

Choose a tag to compare

  • Added Model method first to get the first result from filter

Release 0.5.6

12 Feb 02:07

Choose a tag to compare

  • Added argument ignore_none_errors to Model to ignore errors about None values

Release 0.5.5

05 Feb 20:36

Choose a tag to compare

  • 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