This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
forked from aio-libs/aiomysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
161 lines (82 loc) · 2.98 KB
/
CHANGES.txt
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
Changes
-------
0.0.17 (2018-07-06)
^^^^^^^^^^^^^^^^^^^
* Pinned version of PyMySQL
0.0.16 (2018-06-03)
^^^^^^^^^^^^^^^^^^^
* Added ability to execute precompiled sqlalchemy queries #294 (Thanks @vlanse)
0.0.15 (2018-05-20)
^^^^^^^^^^^^^^^^^^^
* Fixed handling of user-defined types for sqlalchemy #290
* Fix KeyError when server reports unknown collation #289
0.0.14 (2018-04-22)
^^^^^^^^^^^^^^^^^^^
* Fixed SSL connection finalization #282
0.0.13 (2018-04-19)
^^^^^^^^^^^^^^^^^^^
* Added SSL support #280 (Thanks @terrycain)
* Fixed __all__ in aiomysql/__init__ #270 (Thanks @matianjun1)
* Added docker fixtures #275 (Thanks @terrycain)
0.0.12 (2018-01-18)
^^^^^^^^^^^^^^^^^^^
* Fixed support for SQLAlchemy 1.2.0
* Fixed argument for cursor.execute in sa engine #239 (Thanks @NotSoSuper)
0.0.11 (2017-12-06)
^^^^^^^^^^^^^^^^^^^
* Fixed README formatting on pypi
0.0.10 (2017-12-06)
^^^^^^^^^^^^^^^^^^^
* Updated regular expressions to be compatible with pymysql #167 (Thanks @AlexLisovoy)
* Added connection recycling in the pool #216
0.0.9 (2016-09-14)
^^^^^^^^^^^^^^^^^^
* Fixed AttributeError in _request_authentication function #104 (Thanks @ttlttl)
* Fixed legacy auth #105
* uvloop added to test suite #106
* Fixed bug with unicode in json field #107 (Thanks @methane)
0.0.8 (2016-08-24)
^^^^^^^^^^^^^^^^^^
* Default min pool size reduced to 1 #80 (Thanks @Drizzt1991)
* Update to PyMySQL 0.7.5 #89
* Fixed connection cancellation in process of executing a query #79 (Thanks @Drizzt1991)
0.0.7 (2016-01-27)
^^^^^^^^^^^^^^^^^^
* Fix for multiple results issue, ported from pymysql #52
* Fixed useless warning with no_delay option #55
* Added async/await support for Engine, SAConnection, Transaction #57
* pool.release returns future so we can wait on it in __aexit__ #60
* Update to PyMySQL 0.6.7
0.0.6 (2015-12-11)
^^^^^^^^^^^^^^^^^^
* Fixed bug with SA rollback (Thanks @khlyestovillarion!)
* Fixed issue with default no_delay option (Thanks @khlyestovillarion!)
0.0.5 (2015-10-28)
^^^^^^^^^^^^^^^^^^
* no_delay option is deprecated and True by default
* Add Cursor.mogrify() method
* Support for "LOAD LOCAL INFILE" query.
* Check connection inside pool, in case of timeout drop it, fixes #25
* Add support of python 3.5 features to pool, connection and cursor
0.0.4 (2015-05-23)
^^^^^^^^^^^^^^^^^^
* Allow to call connection.wait_closed twice.
* Fixed sqlalchemy 1.0.0 support.
* Fix #11: Rename Connection.wait_closed() to .ensure_closed()
* Raise ResourceWarning on non-closed Connection
* Rename Connection.connect to _connect
0.0.3 (2015-03-10)
^^^^^^^^^^^^^^^^^^
* Added support for PyMySQL up to 0.6.6.
* Ported improvements from PyMySQL.
* Added basic documentation.
* Fixed and added more examples.
0.0.2 (2015-02-17)
^^^^^^^^^^^^^^^^^^
* Added MANIFEST.in.
0.0.1 (2015-02-17)
^^^^^^^^^^^^^^^^^^
* Initial release.
* Implemented plain connections: connect, Connection, Cursor.
* Implemented database pools.
* Ported sqlalchemy optional support.