1
0

Accepting request 379440 from home:TheBlackCat:branches:devel:languages:python

Update to 0.7.2

OBS-URL: https://build.opensuse.org/request/show/379440
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyMySQL?expand=0&rev=7
This commit is contained in:
Todd R
2016-03-24 19:12:52 +00:00
committed by Git OBS Bridge
parent b71021c0f9
commit 4efd80f6de
4 changed files with 39 additions and 5 deletions

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 24 19:12:11 UTC 2016 - toddrme2178@gmail.com
- Update to 0.7.2
* Fix misuse of `max_allowed_packet` parameter. (#426, #407 and #397)
* Add %(name)s plceholder support to `Cursor.executemany()`. (#427, thanks to
@WorldException)
- Update to 0.7.1
* Fix auth fail with MySQL 5.1
* Fix escaping unicode fails on Python 2
- Update to 0.7
* Faster binary escaping
* Add `"_binary" prefix` to string literal for binary types.
binary types are: `bytearray` on Python 2, `bytes` and `bytearray` on Python 3.
This is because recent MySQL show warnings when string literal is invalid for
connection encoding.
* `pymysql.Binary()` returns `bytearray` on Python 2. This is required to distinguish
binary and string.
* Auth plugin support.
* no_delay option is ignored. It will be removed in PyMySQL 0.8.
- Update to 0.6.7
* Allow self signed certificate
* Add max_allowed_packet option
* Fix error when bytes in executemany
* Support geometry type
* Add coveralls badge to README
* Fix some bugs relating to warnings
* Add Cursor.mogrify() method
* no_delay option is deprecated and True by default
* Fix options from my.cnf overrides options from arguments
* Allow socket like object. (It's not feature for end users)
* Strip quotes while reading options from my.cnf file
* Fix encoding issue in executemany()
-------------------------------------------------------------------
Mon May 11 16:53:18 UTC 2015 - benoit.monin@gmx.fr