Skip to content

Commit e457b2e

Browse files
committed
chore: bump version to 2.0.918
1 parent ededb28 commit e457b2e

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@ Changelog
22
=========
33

44

5+
v2.0.918 (2023-12-14)
6+
---------------------
7+
- Refactor(Connection): explicitly use TLS client protocol for
8+
underlying connection socket. previously TLS protocol was used by
9+
default. resolves deprecation warnings in Python 3.11. [Brooke White]
10+
- Fix(Cursor, write_dataframe): Convert pandas dataframe holding bind
11+
parameters to Python list before query execution. Ensures Python
12+
datatypes are sent to Redshift server rather than NumPy datatypes.
13+
[Brooke White]
14+
- Test(Cursor, insert_data_bulk): table_name with and without schema.
15+
[Brooke White]
16+
- Fix(Cursor, __has_valid_columns): replace table_schema by schema_name.
17+
resolves unknown column error seen in insert_data_bulk. [Brooke White]
18+
- Fix(Cursor, __is_valid_table): replace table_schema by schema_name
19+
(#199) [Maximiliano Urrutia]
20+
21+
SVV_ALL_TABLES does not have table_schema column
22+
23+
524
v2.0.917 (2023-11-20)
625
---------------------
726
- Chore: lint codebase. [Brooke White]

redshift_connector/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# 1) we don't load dependencies by storing it in __init__.py
33
# 2) we can import it in setup.py for the same reason
44
# 3) we can import it into your module module
5-
__version__ = "2.0.917"
5+
__version__ = "2.0.918"

0 commit comments

Comments
 (0)