Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
DifferentialOrange committed Jun 20, 2022
1 parent 69fae76 commit f11a963
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased

### Added
- SSL support (PR #220, #217).
- Tarantool Enterprise testing workflow on GitHub actions (PR #220).

### Changed

### Fixed

## 0.9.0 - 2022-06-20

### Added
- SSL support (PR #220, #217).
- Tarantool Enterprise testing workflow on GitHub actions (PR #220).

## 0.8.0 - 2022-04-29

### Added
Expand Down

0 comments on commit f11a963

Please sign in to comment.