Unreleased¶
Summary¶
From PyExasol version 1.0.0
, the default behavior has been changed to use strict
certificate verification in ExaConnection
and pyexasol.connect
. This means that
the default websocket_sslopt=None
will be mapped to
{"cert_reqs": ssl.CERT_REQUIRED}
. The prior default behavior was to map such cases
to {"cert_reqs": ssl.CERT_NONE}
.
For many users relying on the previous default behavior for encrypted connections, simply upgrading to version
1.0.0
is likely to lead to breaking changes with error messages like:[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed
.
Prior to the upgrade:
Please determine which encryption and security measures are appropriate for your organization by reading through
doc/user_guide/encryption.rst
.If needed, update your usage of
pyexasol.connect(...)
&ExaConnection
to reflect your organization’s needs.
✨Features¶
Added support for multi-version documentation
Added support for all standard nox tasks provided by
exasol-toolbox
#179: Modified
ExaConnection
so that default is encryption with strict certification verification
⚒️ Refactorings¶
Reformatted entire code base with
black
andisort
🔩 Internal¶
Relocked dependencies
Due to changes in cryptography’s Python support (!=3.9.0 and 3.9.1), we updated our support to Python ^3.9.2.
Added exasol-toolbox workflows and actions
Added missing plugin for multi-version documentation
Added support for publishing documentation to gh pages
Added
.git-blame-ignore-revs
file to workspaceNote: please make sure to adjust your git config accordingly (if not done yet)
```shell git config blame.ignoreRevsFile .git-blame-ignore-revs ```
#181: Modified integration tests to run also with
ssl.CERT_REQUIRED
📚 Documentation¶
Added sphinx based documentation
Added example to highlight how sensitive information from exceptions should be handled
Harmonized spelling of PyExasol across documentation