Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-PyMySQL for openSUSE:Factory checked in at 2021-07-28 19:21:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-PyMySQL (Old) and /work/SRC/openSUSE:Factory/.python-PyMySQL.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PyMySQL" Wed Jul 28 19:21:44 2021 rev:16 rq:908898 version:1.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-PyMySQL/python-PyMySQL.changes 2020-11-26 23:16:10.901074305 +0100 +++ /work/SRC/openSUSE:Factory/.python-PyMySQL.new.1899/python-PyMySQL.changes 2021-07-28 19:21:51.979491769 +0200 @@ -1,0 +2,25 @@ +Wed Jul 28 13:51:39 UTC 2021 - Matej Cepl <mc...@suse.com> + +- Fix databases.json used for tests. + +------------------------------------------------------------------- +Thu Apr 22 20:03:03 UTC 2021 - Dirk M??ller <dmuel...@suse.com> + +- update to 1.0.2: + * Fix `user`, `password`, `host`, `database` are still positional arguments. + All arguments of `connect()` are now keyword-only. (#941) + * Stop emitting DeprecationWarning for use of ``db`` and ``passwd``. + Note that they are still deprecated. (#939) + * Add ``python_requires=">=3.6"`` to setup.py. (#936) + * Python 2.7 and 3.5 are not supported. + * ``connect()`` uses keyword-only arguments. User must use keyword argument. + * ``connect()`` kwargs ``db`` and ``passwd`` are now deprecated; Use ``database`` and ``password`` instead. + * old_password authentication method (used by MySQL older than 4.1) is not supported. + * MySQL 5.5 and MariaDB 5.5 are not officially supported, although it may still works. + * Removed ``escape_dict``, ``escape_sequence``, and ``escape_string`` from ``pymysql`` + module. They are still in ``pymysql.converters``. + * Connection supports context manager API. ``__exit__`` closes the connection. (#886) + * Add MySQL Connector/Python compatible TLS options (#903) + * Major code cleanup; PyMySQL now uses black and flake8. + +------------------------------------------------------------------- Old: ---- PyMySQL-0.10.1.tar.gz New: ---- PyMySQL-1.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-PyMySQL.spec ++++++ --- /var/tmp/diff_new_pack.cY8kon/_old 2021-07-28 19:21:52.415491197 +0200 +++ /var/tmp/diff_new_pack.cY8kon/_new 2021-07-28 19:21:52.419491192 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-PyMySQL # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,8 +24,9 @@ %endif %{?!python_module:%define python_module() python-%{**} python3-%{**}} +%global skip_python2 1 Name: python-PyMySQL -Version: 0.10.1 +Version: 1.0.2 Release: 0 Summary: Pure Python MySQL Driver License: MIT @@ -86,8 +87,8 @@ # cat << EOF > pymysql/tests/databases.json [{"host":"localhost","user":"$dbuser","passwd":"$dbuserpw", - "db":"$dbname1", "use_unicode": true, "local_infile": true}, - {"host":"localhost","user":"$dbuser","passwd":"$dbuserpw","db":"$dbname2"}] + "database":"$dbname1", "use_unicode": true, "local_infile": true}, + {"host":"localhost","user":"$dbuser","passwd":"$dbuserpw","database":"$dbname2"}] EOF # # running the test ++++++ PyMySQL-0.10.1.tar.gz -> PyMySQL-1.0.2.tar.gz ++++++ ++++ 8939 lines of diff (skipped)