1
0

Accepting request 379449 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/379449
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyMySQL?expand=0&rev=6
This commit is contained in:
Dominique Leuenberger 2016-03-26 14:29:00 +00:00 committed by Git OBS Bridge
commit cd3750920b
4 changed files with 45 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c18e62ca481c5ada6c7bee1b81fc003d6ceae932c878db384cd36808010b3774
size 56862

3
PyMySQL-0.7.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bd7acb4990dbf097fae3417641f93e25c690e01ed25c3ed32ea638d6c3ac04ba
size 67182

View File

@ -1,3 +1,42 @@
-------------------------------------------------------------------
Thu Mar 24 19:17:05 UTC 2016 - toddrme2178@gmail.com
- Add license and docs
-------------------------------------------------------------------
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 Mon May 11 16:53:18 UTC 2015 - benoit.monin@gmx.fr

View File

@ -1,7 +1,7 @@
# #
# spec file for package python-PyMySQL # spec file for package python-PyMySQL
# #
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -17,7 +17,7 @@
Name: python-PyMySQL Name: python-PyMySQL
Version: 0.6.6 Version: 0.7.2
Release: 0 Release: 0
Summary: Pure Python MySQL Driver Summary: Pure Python MySQL Driver
License: MIT License: MIT
@ -59,6 +59,7 @@ python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc CHANGELOG LICENSE README.rst
%{python_sitelib}/* %{python_sitelib}/*
%changelog %changelog