From e457b2e55241094a661d437377fb02689d2ceb5c Mon Sep 17 00:00:00 2001 From: Brooke White Date: Thu, 14 Dec 2023 14:06:54 -0800 Subject: [PATCH] chore: bump version to 2.0.918 --- CHANGELOG.md | 19 +++++++++++++++++++ redshift_connector/version.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bf0bc5..eadadd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ Changelog ========= +v2.0.918 (2023-12-14) +--------------------- +- Refactor(Connection): explicitly use TLS client protocol for + underlying connection socket. previously TLS protocol was used by + default. resolves deprecation warnings in Python 3.11. [Brooke White] +- Fix(Cursor, write_dataframe): Convert pandas dataframe holding bind + parameters to Python list before query execution. Ensures Python + datatypes are sent to Redshift server rather than NumPy datatypes. + [Brooke White] +- Test(Cursor, insert_data_bulk): table_name with and without schema. + [Brooke White] +- Fix(Cursor, __has_valid_columns): replace table_schema by schema_name. + resolves unknown column error seen in insert_data_bulk. [Brooke White] +- Fix(Cursor, __is_valid_table): replace table_schema by schema_name + (#199) [Maximiliano Urrutia] + + SVV_ALL_TABLES does not have table_schema column + + v2.0.917 (2023-11-20) --------------------- - Chore: lint codebase. [Brooke White] diff --git a/redshift_connector/version.py b/redshift_connector/version.py index 549e945..db225e1 100644 --- a/redshift_connector/version.py +++ b/redshift_connector/version.py @@ -2,4 +2,4 @@ # 1) we don't load dependencies by storing it in __init__.py # 2) we can import it in setup.py for the same reason # 3) we can import it into your module module -__version__ = "2.0.917" +__version__ = "2.0.918"