1
0

Accepting request 306395 from home:benoit_monin:branches:devel:languages:python

- update to version 0.6.6
- remove unwanted shebang of python files in test_MySQLdb

OBS-URL: https://build.opensuse.org/request/show/306395
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyMySQL?expand=0&rev=5
This commit is contained in:
Denisart Benjamin
2015-05-12 21:35:14 +00:00
committed by Git OBS Bridge
parent 5cf7cc0cc4
commit b71021c0f9
4 changed files with 49 additions and 5 deletions

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Mon May 11 16:53:18 UTC 2015 - benoit.monin@gmx.fr
- update to version 0.6.6:
Add context manager to cursor
* Fix can't encode blob that is not utf-8 on PY3. (regression of
0.6.4, Thanks to @wiggzz)
- additional changes from version 0.6.4
* Support "LOAD LOCAL INFILE". Thanks @wraziens
* Show MySQL warnings after execute query.
* Fix MySQLError may be wrapped with OperationalError while
connectiong. (#274)
* SSCursor no longer attempts to expire un-collected rows within
__del__, delaying termination of an interrupted program;
cleanup of uncollected rows is left to the Connection on next
execute, which emits a warning at that time. (#287)
* Support datetime and time with microsecond. (#303)
* Use surrogateescape to format bytes on Python 3.
* OperationalError raised from connect() have information about
original exception. (#304)
* `init_command` now support multi statement.
* `Connection.escape()` method now accepts second argument
compatible to MySQL-Python.
- additional changes from version 0.6.3
* Fixed multiple result sets with SSCursor.
* Fixed connection timeout.
* Fixed literal set syntax to work on Py2.6.
* Allow for mysql negative values with 0 hour timedelta.
* Added Connection.begin().
- additional changes from version 0.6.2
* Fixed old password on Python 3.
* Added support for bulk insert in Cursor.executemany().
* Added support for microseconds in datetimes and dates before
1900.
* Several other bug fixes.
- additional changes from version 0.6.1
* Added cursor._last_executed for MySQLdb compatibility
* Cursor.fetchall() and .fetchmany now return list, not tuple
* Allow "length of auth-plugin-data" = 0
* Cursor.connection references connection object without weakref
- remove unwanted shebang of python files in test_MySQLdb
-------------------------------------------------------------------
Wed Oct 9 12:32:51 UTC 2013 - dmueller@suse.com