forked from PyMySQL/PyMySQL
-
Notifications
You must be signed in to change notification settings - Fork 41
/
CHANGELOG
45 lines (41 loc) · 1.84 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Changes
--------
0.6 -Miscellaneous bug fixes
-Remove some old MySQLdb compatibility
-Performance up
0.5 -Rename package name from pymysql to cymysql
-Cython powered
-supoort Python 2.6+
0.4 -Miscellaneous bug fixes
-Implementation of SSL support
-Implementation of kill()
-Cleaned up charset functionality
-Fixed BIT type handling
-Connections raise exceptions after they are close()'d
-Full Py3k and unicode support
0.3 -Implemented most of the extended DBAPI 2.0 spec including callproc()
-Fixed error handling to include the message from the server and support
multiple protocol versions.
-Implemented ping()
-Implemented unicode support (probably needs better testing)
-Removed DeprecationWarnings
-Ran against the MySQLdb unit tests to check for bugs
-Added support for client_flag, charset, sql_mode, read_default_file,
use_unicode, cursorclass, init_command, and connect_timeout.
-Refactoring for some more compatibility with MySQLdb including a fake
pymysql.version_info attribute.
-Now runs with no warnings with the -3 command-line switch
-Added test cases for all outstanding tickets and closed most of them.
-Basic Jython support added.
-Fixed empty result sets bug.
-Integrated new unit tests and refactored the example into one.
-Fixed bug with decimal conversion.
-Fixed string encoding bug. Now unicode and binary data work!
-Added very basic docstrings.
0.2 -Changed connection parameter name 'password' to 'passwd'
to make it more plugin replaceable for the other mysql clients.
-Changed pack()/unpack() calls so it runs on 64 bit OSes too.
-Added support for unix_socket.
-Added support for no password.
-Renamed decorders to decoders.
-Better handling of non-existing decoder.