~~~~~~~~~~~~~~~~
* Allow to bypass SSL verification if the server is misconfigured.
Environment variable ``ODOOLY_SSL_UNVERIFIED=1`` is detected.
* Accept multiple command line arguments for local mode. Example:
``odooly -- --config path/to/odoo.conf --data-dir ./var``
* Add ``self`` to the ``globals()`` in interactive mode, to mimic
Odoo shell.
* On login, assign the context of the user:
``env['res.users'].context_get()``. Do not copy the context when
switching database, or when connecting with a different user.
* Drop attribute ``Client.context``. It is only available as
:attr:`Env.context`.
* Fix hashing error when :attr:`Env.context` contains a list.
* Assign the model name to ``Record._name``.
* Fix installation/upgrade with an empty list.
* Catch error when database does not exist on login.
* Format other Odoo errors like ``DatabaseExists``.