Commit f11a963
committed
Release 0.9.0
Overview
This release features SSL support. To use SSL, pass SSL parameters
on connect:
con = tarantool.Connection(
host, port,
user=user,
password=pass,
transport="ssl",
ssl_key_file=client_key_file,
ssl_cert_file=client_cert_file,
ssl_ca_file=client_ca_file,
ssl_ciphers=client_ciphers)
ConnectionPool and MeshConnection also support these parameters.
See Tarantool Enterprise Edition manual for details [1].
1. https://www.tarantool.io/en/enterprise_doc/security/#enterprise-iproto-encryption
Breaking changes
There are no breaking changes in the release.
New features
* SSL support (PR #220, #217).
Testing
* Tarantool Enterprise testing workflow on GitHub actions (PR #220).1 parent 69fae76 commit f11a963
1 file changed
+6
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
11 | | - | |
12 | 10 | | |
13 | 11 | | |
14 | 12 | | |
15 | 13 | | |
16 | 14 | | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
17 | 21 | | |
18 | 22 | | |
19 | 23 | | |
| |||
0 commit comments