Skip to content

Commit 5d4dbe1

Browse files
committed
Prepare release 8.0.11
1 parent cf099bd commit 5d4dbe1

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
commit.txt
88
*.patch
99
*.diff
10+
*.egg-info/
1011
dist/
1112
build/
1213
venv/

CHANGES.txt

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

11+
v8.0.11
12+
=======
13+
14+
- WL#11668: Add SHA256_MEMORY authentication mechanism
15+
- WL#11614: Enable C extension by default
16+
- WL#11448: New document _id generation support
17+
- WL#11282: Support new locking modes NOWAIT and SKIP LOCKED
18+
- BUG#27639119: Use a list of dictionaries to store warnings
19+
- BUG#27634885: Update error codes for MySQL 8.0.11
20+
- BUG#27589450: Remove upsert functionality from WriteStatement class
21+
- BUG#27528842: Fix internal queries open for SQL injection
22+
- BUG#27364914: Cursor prepared statements do not convert strings
23+
- BUG#24953913: Fix failing unittests
24+
- BUG#24948205: Results from JSON_TYPE() are returned as bytearray
25+
- BUG#24948186: JSON type results are bytearray instead of corresponding python type
26+
1127
v8.0.6
1228
======
1329

cpyint

lib/mysql/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
as mysql.connector.version.
3333
"""
3434

35-
VERSION = (8, 0, 6, 'rc', 1)
35+
VERSION = (8, 0, 11, '', 1)
3636

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

0 commit comments

Comments
 (0)