Skip to content

Commit dcef0ae

Browse files
committed
Prepare release 2.1.7
1 parent c7ceb89 commit dcef0ae

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGES.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ Copyright (c) 2009, 2017, Oracle and/or its affiliates. All rights reserved.
88
Full release notes:
99
http://dev.mysql.com/doc/relnotes/connector-python/en/
1010

11+
v2.1.7
12+
======
13+
14+
- BUG26376334: Fix prepared statements in MySQL 8.0
15+
- BUG25965922: Add support for Django 1.11
16+
- BUG24659561: Fix MySQLCursor.executemany() when using utf8mb4 charset
17+
- BUG24342757: Fix unclosed socket on connection failure
18+
- BUG22880163: Fix memory leak on using Named Tuple Cursors
19+
- BUG22825962: Fix memory leak on escape_string()
20+
- BUG22564149: Fix cmd_query_iter() when using bytestrings with Python 2
21+
- BUG21947091: Add ssl_disabled option
22+
1123
v2.1.6
1224
======
1325

cpyint

lib/mysql/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
as mysql.connector.version.
2727
"""
2828

29-
VERSION = (2, 1, 6, '', 0)
29+
VERSION = (2, 1, 7, '', 0)
3030

3131
if VERSION[3] and VERSION[4]:
3232
VERSION_TEXT = '{0}.{1}.{2}{3}{4}'.format(*VERSION)

0 commit comments

Comments
 (0)