Hello community,

here is the log from the commit of package python-Django for openSUSE:Factory 
checked in at 2015-01-08 23:03:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-Django (Old)
 and      /work/SRC/openSUSE:Factory/.python-Django.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-Django"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-Django/python-Django.changes      
2014-10-25 11:16:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-Django.new/python-Django.changes 
2015-01-08 23:03:17.000000000 +0100
@@ -1,0 +2,130 @@
+Thu Jan  8 11:04:09 UTC 2015 - tbecht...@suse.com
+
+- Update to Django 1.7.2:
+
+  * Fixed migration’s renaming of auto-created many-to-many tables
+    when changing Meta.db_table (#23630).
+  * Fixed a migration crash when adding an explicit id field to a
+    model on SQLite (#23702).
+  * Added a warning for duplicate models when a module is
+    reloaded. Previously a RuntimeError was raised every time two
+    models clashed in the app registry. (#23621).
+  * Prevented flush from loading initial data for migrated apps
+    (#23699).
+  * Fixed a makemessages regression in 1.7.1 when STATIC_ROOT has the
+    default None value (#23717).
+  * Added GeoDjango compatibility with mysqlclient database driver.
+  * Fixed MySQL 5.6+ crash with GeometryFields in migrations (#23719).
+  * Fixed a migration crash when removing a field that is referenced
+    in AlterIndexTogether or AlterUniqueTogether (#23614).
+  * Updated the first day of the week in the Ukrainian locale to
+    Monday.
+  * Added support for transactional spatial metadata initialization on
+    SpatiaLite 4.1+ (#23152).
+  * Fixed a migration crash that prevented changing a nullable field
+    with a default to non-nullable with the same default (#23738).
+  * Fixed a migration crash when adding GeometryFields with blank=True
+    on PostGIS (#23731).
+  * Allowed usage of DateTimeField() as Transform.output_field
+    (#23420).
+  * Fixed a migration serializing bug involving float("nan") and
+    float("inf") (#23770).
+  * Fixed a regression where custom form fields having a queryset
+    attribute but no limit_choices_to could not be used in a ModelForm
+    (#23795).
+  * Fixed a custom field type validation error with MySQL backend when
+    db_type returned None (#23761).
+  * Fixed a migration crash when a field is renamed that is part of an
+    index_together (#23859).
+  * Fixed squashmigrations to respect the --no-optimize parameter
+    (#23799).
+  * Made RenameModel reversible (#22248)
+  * Avoided unnecessary rollbacks of migrations from other apps when
+    migrating backwards (#23410).
+  * Fixed a rare query error when using deeply nested subqueries
+    (#23605).
+  * Fixed a crash in migrations when deleting a field that is part of
+    a index/unique_together constraint (#23794).
+  * Fixed django.core.files.File.__repr__() when the file’s name
+    contains Unicode characters (#23888).
+  * Added missing context to the admin’s delete_selected view that
+    prevented custom site header, etc. from appearing (#23898).
+  * Fixed a regression with dynamically generated inlines and allowed
+    field references in the admin (#23754).
+  * Fixed an infinite loop bug for certain cyclic migration
+    dependencies, and made the error message for cyclic dependencies
+    much more helpful.
+  * Added missing index_together handling for SQLite (#23880).
+  * Fixed a crash when RunSQL SQL content was collected by the schema
+    editor, typically when using sqlmigrate (#23909).
+  * Fixed a regression in contrib.admin add/change views which caused
+    some ModelAdmin methods to receive the incorrect obj value
+    (#23934).
+  * Fixed runserver crash when socket error message contained Unicode
+    characters (#23946).
+  * Fixed serialization of type when adding a deconstruct() method
+    (#23950).
+  * Prevented the SessionAuthenticationMiddleware from setting a
+    "Vary: Cookie" header on all responses (#23939).
+  * Fixed a crash when adding blank=True to TextField() on MySQL
+    (#23920).
+  * Fixed index creation by the migration infrastructure, particularly
+    when dealing with PostgreSQL specific {text|varchar}_pattern_ops
+    indexes (#23954).
+  * Fixed bug in makemigrations that created broken migration files
+    when dealing with multiple table inheritance and inheriting from
+    more than one model (#23956).
+  * Fixed a crash when a MultiValueField has invalid data (#23674).
+  * Fixed a crash in the admin when using “Save as new” and also
+    deleting a related inline (#23857).
+  * Always converted related_name to text (unicode), since that is
+    required on Python 3 for interpolation. Removed conversion of
+    related_name to text in migration deconstruction (#23455 and
+    #23982).
+  * Enlarged the sizes of tablespaces which are created by default for
+    testing on Oracle (the main tablespace was increased from 200M to
+    300M and the temporary tablespace from 100M to 150M). This was
+    required to accommodate growth in Django’s own test suite
+    (#23969).
+  * Fixed timesince filter translations in Korean (#23989).
+  * Fixed the SQLite SchemaEditor to properly add defaults in the
+    absence of a user specified default. For example, a CharField with
+    blank=True didn’t set existing rows to an empty string which
+    resulted in a crash when adding the NOT NULL constraint (#23987).
+  * makemigrations no longer prompts for a default value when adding
+    TextField() or CharField() without a default (#23405).
+  * Fixed a migration crash when adding order_with_respect_to to a
+    table with existing rows (#23983).
+  * Restored the pre_migrate signal if all apps have migrations
+    (#23975).
+  * Made admin system checks run for custom AdminSites (#23497).
+  * Ensured the app registry is fully populated when unpickling
+    models. When an external script (like a queueing infrastructure)
+    reloads pickled models, it could crash with an AppRegistryNotReady
+    exception (#24007).
+  * Added quoting to field indexes in the SQL generated by migrations
+    to prevent a crash when the index name requires it (##24015).
+  * Added datetime.time support to migrations questioner (#23998).
+  * Fixed admindocs crash on apps installed as eggs (#23525).
+  * Changed migrations autodetector to generate an AlterModelOptions
+    operation instead of DeleteModel and CreateModel operations when
+    changing Meta.managed. This prevents data loss when changing
+    managed from False to True and vice versa (#24037).
+  * Enabled the sqlsequencereset command on apps with migrations
+    (#24054).
+  * Added tablespace SQL to apps with migrations (#24051).
+  * Corrected contrib.sites default site creation in a multiple
+    database setup (#24000).
+  * Restored support for objects that aren’t str or bytes in
+    mark_for_escaping() on Python 3.
+  * Supported strings escaped by third-party libraries with the
+    __html__ convention in the template engine (#23831).
+  * Prevented extraneous DROP DEFAULT SQL in migrations (#23581).
+  * Restored the ability to use more than five levels of subqueries
+    (#23758).
+  * Fixed crash when ValidationError is initialized with a
+    ValidationError that is initialized with a dictionary (#24008).
+  * Prevented a crash on apps without migrations when running migrate
+    --list (#23366).
+
+-------------------------------------------------------------------
@@ -478 +607,0 @@
-

Old:
----
  Django-1.7.1.checksum.txt
  Django-1.7.1.tar.gz

New:
----
  Django-1.7.2.checksum.txt
  Django-1.7.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-Django.spec ++++++
--- /var/tmp/diff_new_pack.RflOmW/_old  2015-01-08 23:03:19.000000000 +0100
+++ /var/tmp/diff_new_pack.RflOmW/_new  2015-01-08 23:03:19.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Django
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           python-Django
-Version:        1.7.1
+Version:        1.7.2
 Release:        0
 Summary:        A high-level Python Web framework
 License:        BSD-3-Clause

++++++ Django-1.7.1.checksum.txt -> Django-1.7.2.checksum.txt ++++++
--- /work/SRC/openSUSE:Factory/python-Django/Django-1.7.1.checksum.txt  
2014-10-25 11:16:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-Django.new/Django-1.7.2.checksum.txt     
2015-01-08 23:03:17.000000000 +0100
@@ -1,67 +1,63 @@
 -----BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA512
+Hash: SHA256
 
-This file contains MD5, SHA1 and SHA256 checksums for the source-code
-tarball of Django 1.7.1, released October 22, 2014.
+This file contains MD5, SHA1, and SHA256 checksums for the source-code
+tarball of Django 1.7.2, released January 2, 2015.
 
 To use this file, you will need a working install of PGP or other
 compatible public-key encryption software. You will also need to have
 the Django release manager's public key in your keyring; this key has
-the ID ``0x2D9266A6808FE067`` and can be imported from the MIT
+the ID ``1E8ABDC773EDE252`` and can be imported from the MIT
 keyserver. For example, if using the open-source GNU Privacy Guard
 implementation of PGP::
 
-    gpg --keyserver pgp.mit.edu --recv-key 0x2D9266A6808FE067
+    gpg --keyserver pgp.mit.edu --recv-key 1E8ABDC773EDE252
 
 Once the key is imported, verify this file::
 
     gpg --verify <<THIS FILENAME>>
 
-Once you have verified this file, you can use normal MD5 and SHA1
+Once you have verified this file, you can use normal MD5, SHA1, or SHA256
 checksumming applications to generate the checksums of the Django
 package and compare them to the checksums listed below.
 
-
 Release packages:
-=================
-
-Django 1.7.1 (tar.gz): 
https://www.djangoproject.com/m/releases/1.7/Django-1.7.1.tar.gz
-Django 1.7.1 (.whl): 
https://www.djangoproject.com/m/releases/1.7/Django-1.7.1-py2.py3-none-any.whl
-
+================
 
-MD5 checksums:
-==============
-
-MD5(Django-1.7.1.tar.gz)= 81dae89f21647b9aa5c46c6b7dbfa349
-MD5(Django-1.7.1-py2.py3-none-any.whl)= 83bd3e5cfba6d6d2bee5a37efb34771c
+Django 1.7.2 (tar.gz): 
https://www.djangoproject.com/m/releases/1.7/Django-1.7.2.tar.gz
+Django 1.7.2 (.whl): 
https://www.djangoproject.com/m/releases/1.7/Django-1.7.2-py2.py3-none-any.whl
 
+MD5 checksum:
+=============
 
-SHA1 checksums:
-===============
+MD5(Django-1.7.2.tar.gz)= 855a53a9a5581c62b6031c9b3bd80ec5
+MD5(Django-1.7.2-py2.py3-none-any.whl)= b57f9a2dec214b60e338aa80fb902936
 
-SHA1(Django-1.7.1.tar.gz)= 689efc1e6d72b45b4deb451e6ed36ee77389fafc
-SHA1(Django-1.7.1-py2.py3-none-any.whl)= 
6b31e486376cbb8a823ff10bd22a6ee0f2fcf959
+SHA1 checksum:
+==============
 
+SHA1(Django-1.7.2.tar.gz)= 142168eef96423d3586d9bd99ca9b3c8d6ae652a
+SHA1(Django-1.7.2-py2.py3-none-any.whl)= 
b259a071161566a5797af26aa446f9cf127849ce
 
-SHA256 checksums:
-=================
+SHA256 checksum:
+================
 
-SHA256(Django-1.7.1.tar.gz)= 
3de62e71ce2cfbcdecb6e344cad04948506c8410ea5c6eab15c8f3b31b8ac1c0
-SHA256(Django-1.7.1-py2.py3-none-any.whl)= 
679fc24b3e85bf5a07ca2f6d5c4cdf3d4477bbb02f43a6548335952cc75b5d23
+SHA256(Django-1.7.2.tar.gz)= 
31c6c3c229f8c04b3be87e6afc3492903b57ec8f1188a47b6ae160d90cf653c8
+SHA256(Django-1.7.2-py2.py3-none-any.whl)= 
b22871edc9ddf3e57b18989c3c7e9174b4c168dc7b8dbe3f31d4101a73bf2006
 -----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.14 (Darwin)
+Version: GnuPG v1
 
-iQIcBAEBCgAGBQJUR+KFAAoJEC2SZqaAj+BnFmwP+QGzThBFaj3bdcJn0VEc19Il
-GuH5dGtYqYn03WDOG95HHVtbGWqxfV7xwDb0RK7YicM/yOaZMm1JqfbStd5w0+Vp
-EwoDKg4uEJ5+rI+0kbqS5VS1HlibQgBPPy7wJe1CzEkOfkRrzMPnKUaeuNJrKW+d
-hfbqOiTyXNEyF8B8r65mapk48aOb/uuDynR7B0xTNiiiaZXMty61JlLmUUN2V00v
-FZP+DviwTZMAHqIr7gGNTsJQrxWWzMAUgkeq3NchkSDGfMZGS4KZCK8RP4ua7cSl
-pLiaOGcEEZD/T9RcG+chxV3tdQh8TS0UHlVibUO6zj+4mlzNcecpsR6EI5d4VwGF
-08ObwDrkjFVYE6qUNM+dp64DT6pcEl52GTJ4VDCWzAwOHJUuCluDJIKHiUBF6hFl
-7OKKN9yRSIxn8snLP8P/JfkzBtiUWultfLr+6/d87dOQWGX5xtdeMlNTIeEimqwT
-KQBKLL5IeMkTRdY/ewZCuGYvThZAkwcjk0ZjK9G9PyHKmAgmbSMkb2rLiq1Xe8Eq
-na9M+wvmcaokeRlcrb196ueNk5/NhRsHr/IQDoZLqtKTnA0HjErJLpEpLZfGxNOO
-UOdhjSd7SaeX7bTgcOr5jsNWXpkM+Q9tWZVyIy2B6hC8JpM3TTmBuntz4nyzpX79
-7CKHNfGrTDXeZ9Lizbm/
-=6gi+
+iQIcBAEBCAAGBQJUp0TWAAoJEB6Kvcdz7eJS3P8P/i8ffgRtwTaR/DgYMOa8IR9f
+NRe5hSq2BgS2kxjOBapXkFvR/Zin8OGby9fi7Cv2bvRko1nokXfI+3M0IxjrgnO8
+7WjYtqvL/3HrI6L+81mEzJdWR2kuX28qcEBMTcjplgLvzCKf21Ptvs/+E4sTyQVu
+9kIO8K+tPvG5k9oYJgmZmmC9YY7ipvPzX7MUI9NB2kMVvT3yUvZLZ4IIaC+qecZo
+UHbGhfk1152mqtgVcsOtQEZOSY7KTdXFhgreWd1R9bVzHCjUdSb/PA/ygHTd/cD/
+VusiqilD0SqJqNMDpAFJNhBnjCu9bHjuolUk4fjK+lTR8ADLIXeXPGvA8j2QALlI
+k2AicDH4UjqxV3r8QdWxOlSdoQkEt5jv4LhjxjbyFBmFLrtKEWEsmRZw8gj6HbqP
+z4iX11KaRHiEhNiWwj/iZl84+1KiesQjJFAJQy9Y8k1Hb1qaDh/QT5OSRGIJQAMc
+hHlL8jCHsQRoieRulMw/jMitWBEAcy4otkQyI/grC0t2QXXIMskFy/Xgs+d5IozH
+TCTn7kinjBlGurP3Zg0q7bKZEqlvbD3qxmdr7Q8GIwHrQTcztKQSsyLRGLw75e3F
+s9/yk+cSF5D6BQ7W7prgfQdW01h8fyXGXDYgrE/2u5hDdabYZptBv15bDP6bazh+
+a42qx2m55ko80vcwgooa
+=9WtV
 -----END PGP SIGNATURE-----

++++++ Django-1.7.1.tar.gz -> Django-1.7.2.tar.gz ++++++
/work/SRC/openSUSE:Factory/python-Django/Django-1.7.1.tar.gz 
/work/SRC/openSUSE:Factory/.python-Django.new/Django-1.7.2.tar.gz differ: char 
5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to