1
0
forked from pool/python-Django

Accepting request 633018 from home:mimi_vx:branches:devel:languages:python:django

- update to version 2.1.1
- drop django-urlencode.patch
 * Fixed a race condition in QuerySet.update_or_create() that could result
    in data loss
 * Fixed a regression where QueryDict.urlencode() crashed if the dictionary
    contains a non-string value
 * Fixed a regression in Django 2.0 where using manage.py test --keepdb fails
    on PostgreSQL if the database exists and the user doesn’t have permission
    to create databases
 * Fixed a regression in Django 2.0 where combining Q objects with __in
    lookups and lists crashed
 * Fixed translation failure of DurationField’s “overflow” error message
 * Fixed a regression where the admin change form crashed if the user doesn’t
    have the ‘add’ permission to a model that uses TabularInline
 * Fixed a regression where a related_query_name reverse accessor wasn’t
    set up when a GenericRelation is declared on an abstract base model
 * Fixed the test client’s JSON serialization of a request data dictionary
    for structured content type suffixes
 * Made the admin change view redirect to the changelist view after a POST
    if the user has the ‘view’ permission
 * Fixed admin change view crash for view-only users if the form
    has an extra form field
 * Fixed a regression in Django 2.0.5 where QuerySet.values() or values_list()
    after combining querysets with extra() with union(), difference(),
    or intersection() crashed due to mismatching columns

OBS-URL: https://build.opensuse.org/request/show/633018
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-Django?expand=0&rev=10
This commit is contained in:
Tomáš Chvátal
2018-09-05 06:09:55 +00:00
committed by Git OBS Bridge
parent 99a8fe49d6
commit dc36a4ad03
7 changed files with 95 additions and 112 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Tue Sep 4 12:24:15 UTC 2018 - Ondřej Súkup <mimi.vx@gmail.com>
- update to version 2.1.1
- drop django-urlencode.patch
* Fixed a race condition in QuerySet.update_or_create() that could result
in data loss
* Fixed a regression where QueryDict.urlencode() crashed if the dictionary
contains a non-string value
* Fixed a regression in Django 2.0 where using manage.py test --keepdb fails
on PostgreSQL if the database exists and the user doesnt have permission
to create databases
* Fixed a regression in Django 2.0 where combining Q objects with __in
lookups and lists crashed
* Fixed translation failure of DurationFields “overflow” error message
* Fixed a regression where the admin change form crashed if the user doesnt
have the add permission to a model that uses TabularInline
* Fixed a regression where a related_query_name reverse accessor wasnt
set up when a GenericRelation is declared on an abstract base model
* Fixed the test clients JSON serialization of a request data dictionary
for structured content type suffixes
* Made the admin change view redirect to the changelist view after a POST
if the user has the view permission
* Fixed admin change view crash for view-only users if the form
has an extra form field
* Fixed a regression in Django 2.0.5 where QuerySet.values() or values_list()
after combining querysets with extra() with union(), difference(),
or intersection() crashed due to mismatching columns
-------------------------------------------------------------------
Tue Aug 14 07:46:04 UTC 2018 - tchvatal@suse.com