~~~~~~~~~~~~~~~~~~
* Add support for the JSON-RPC protocol. It is enabled if the ``--server``
argument contains the full path to the ``/jsonrpc`` endpoint.
As an alternative, you can specify the ``protocol`` in the configuration
file.
* Change the return value of :meth:`Model.browse` method if search domain is
an empty list. It returns an empty ``RecordList`` except if some other
argument is provided (e.g.
``all_users = model('res.users').browse([], limit=None)``).
Compatibility tip: you can restore the old behavior with
``Model._browse_compat = True``.
* Change the return value of ``Client.read()`` and ``Model.read()`` methods
if search domain is an empty list: it returns ``False``.
* Improve error formatting for recent Odoo versions, in interactive mode.
* Refactor the construction of ``Service`` proxies.
* Drop compatibility with Python 2.6.