Accepting request 573722 from devel:languages:python
- update to 2.0.2 (bsc#1077714, CVE-2018-6188): * Fixed #28883 -- Doc'd that the uuid URL path converter matches lowercase only letters. * Fixed a GeoIP2 test failure with the latest GeoIP2 database. * Added stub release notes for 2.0.1. * Bumped version for 2.0.2 release. * Fixed location of spatialite_source label. * Fixed #28958 -- Fixed admin changelist crash when using a query expression in the page's ordering. * Fixed #28231 -- Doc'd that QuerySet.bulk_create() casts objs to a list. * Fixed #29032 -- Fixed an example of using expressions in QuerySet.values(). * Disambiguated "settings" in SpatiaLite note. * Fixed typo in docs/topics/testing/advanced.txt. * Post-release version bump. * Refs #25604 -- Removed docs for makemigrations --exit. * Fixed #29002 -- Corrected cached template loader docs about when it's automatically enabled. * Fixed typo in TemplateCommand argument help text. * Added stub release notes for 1.11.9. * Fixed #28915 -- Prevented SQLite from truncating trailing zeros in the fractional part of DecimalField. * Refs #29086 -- Doc'd how to detect bytestring mistakes. * Fixed #28886 -- Updated prefix for example django.contrib.auth.urls URLs. * Fixed #29081 -- Clarified comments in QuerySet.select_related() example. * Refs #27985 -- Reallowed using __exact=None as an alias for __isnull=True if a custom lookup class with lookup_name != None is registered as the exact lookup. * Refs #28876 -- Fixed incorrect class-based model index name generation for models with quoted db_table. * Removed 'development' word in contributing docs * Fixed #29055 -- Doc'd that escapejs doesn't make template literals safe. * Fixed #29016 -- Fixed incorrect foreign key nullification on related instance deletion. * Fixed grammar in docs/releases/2.0.txt. * Fixed #29071 -- Fixed contrib.auth.authenticate() crash if a backend doesn't accept a request but a later one does. * Fixed #28944 -- Fixed crash when chaining values()/values_list() after QuerySet.select_for_update(of=()). * Fixed #29091 -- Fixed makemigrations crash if migrations directory doesn't have __init__.py. * Fixed #28898 -- Corrected admin check to allow a OneToOneField in ModelAdmin.autocomplete_fields. OBS-URL: https://build.opensuse.org/request/show/573722 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Django?expand=0&rev=36
This commit is contained in:
@@ -1,3 +1,84 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 7 13:54:36 UTC 2018 - tbechtold@suse.com
|
||||
|
||||
- update to 2.0.2 (bsc#1077714, CVE-2018-6188):
|
||||
* Fixed #28883 -- Doc'd that the uuid URL path converter matches lowercase only letters.
|
||||
* Fixed a GeoIP2 test failure with the latest GeoIP2 database.
|
||||
* Added stub release notes for 2.0.1.
|
||||
* Bumped version for 2.0.2 release.
|
||||
* Fixed location of spatialite_source label.
|
||||
* Fixed #28958 -- Fixed admin changelist crash when using a query expression in the page's ordering.
|
||||
* Fixed #28231 -- Doc'd that QuerySet.bulk_create() casts objs to a list.
|
||||
* Fixed #29032 -- Fixed an example of using expressions in QuerySet.values().
|
||||
* Disambiguated "settings" in SpatiaLite note.
|
||||
* Fixed typo in docs/topics/testing/advanced.txt.
|
||||
* Post-release version bump.
|
||||
* Refs #25604 -- Removed docs for makemigrations --exit.
|
||||
* Fixed #29002 -- Corrected cached template loader docs about when it's automatically enabled.
|
||||
* Fixed typo in TemplateCommand argument help text.
|
||||
* Added stub release notes for 1.11.9.
|
||||
* Fixed #28915 -- Prevented SQLite from truncating trailing zeros in the fractional part of DecimalField.
|
||||
* Refs #29086 -- Doc'd how to detect bytestring mistakes.
|
||||
* Fixed #28886 -- Updated prefix for example django.contrib.auth.urls URLs.
|
||||
* Fixed #29081 -- Clarified comments in QuerySet.select_related() example.
|
||||
* Refs #27985 -- Reallowed using __exact=None as an alias for __isnull=True if a custom lookup class with lookup_name != None is registered as the exact lookup.
|
||||
* Refs #28876 -- Fixed incorrect class-based model index name generation for models with quoted db_table.
|
||||
* Removed 'development' word in contributing docs
|
||||
* Fixed #29055 -- Doc'd that escapejs doesn't make template literals safe.
|
||||
* Fixed #29016 -- Fixed incorrect foreign key nullification on related instance deletion.
|
||||
* Fixed grammar in docs/releases/2.0.txt.
|
||||
* Fixed #29071 -- Fixed contrib.auth.authenticate() crash if a backend doesn't accept a request but a later one does.
|
||||
* Fixed #28944 -- Fixed crash when chaining values()/values_list() after QuerySet.select_for_update(of=()).
|
||||
* Fixed #29091 -- Fixed makemigrations crash if migrations directory doesn't have __init__.py.
|
||||
* Fixed #28898 -- Corrected admin check to allow a OneToOneField in ModelAdmin.autocomplete_fields.
|
||||
* Fixed #28896 -- Reallowed filtering a queryset with GeometryField=None.
|
||||
* Fixed #28891 -- Documented Origin's loader attribute.
|
||||
* Confirmed support for PostGIS 2.4.
|
||||
* Wrapped an import per isort.
|
||||
* Added release date for 2.0.1 and 1.11.9.
|
||||
* Fixed #28884 -- Fixed crash on SQLite when renaming a field in a model referenced by a ManyToManyField.
|
||||
* Fixed "template tag" spelling in docs.
|
||||
* Fixed #28947 -- Fixed crash when coercing a translatable URL pattern to str.
|
||||
* Fixed typo in docs/topics/i18n/translation.txt.
|
||||
* Refs #28932 -- Skipped the failing test for refs #28915 on Oracle.
|
||||
* Refs #25181 -- Updated timezone.now() docs about obtaining the time in the current time zone.
|
||||
* Updated documented mysqlclient requirement to 1.3.7.
|
||||
* Fixed #28885 -- Fixed hidden content at the bottom of the "The install worked successfully!" page for some languages.
|
||||
* Fixed #28403 -- Added missing formats in FORMAT_MODULE_PATH docs.
|
||||
* Fixed #29067 -- Fixed regression in QuerySet.values_list(..., flat=True) followed by annotate().
|
||||
* Removed note in tutorial about bypassing manage.py.
|
||||
* Fixed #28929 -- Corrected QUnit examples.
|
||||
* Refs #28958 -- Added a test for ModelAdmin with query expressions in ordering.
|
||||
* Updated various links in docs to use HTTPS.
|
||||
* Expanded docs for AbstractBaseUser.has_usable_password().
|
||||
* Fixed #29017 -- Updated BaseCommand.leave_locale_alone doc per refs #24073.
|
||||
* Doc'd specifying the ENGINE setting as part of configuring contrib.gis.
|
||||
* Added stub release notes for 1.11.10.
|
||||
* Fixed #28881 -- Doc'd that CommonPasswordValidator's password list must be lowercase.
|
||||
* Fixed #28784 -- Clarified how migrate --fake works.
|
||||
* Fixed typo in docs/ref/models/expressions.txt.
|
||||
* Fixed #29094 -- Fixed crash when entering an invalid uuid in ModelAdmin.raw_id_fields.
|
||||
* Refs #28876 -- Fixed incorrect foreign key constraint name for models with quoted db_table.
|
||||
* Bumped version for 2.0.1 release.
|
||||
* Fixed #25277 -- Restored test dependency to the original python-memcached.
|
||||
* Fixed #28761 -- Documented how an inline formset's prefix works.
|
||||
* Refs #28856 -- Fixed caching of a GenericForeignKey pointing to a model that uses more than one level of MTI.
|
||||
* Fixed #28966 -- Doc'd that the uuid URL path converter requires dashes
|
||||
* Fixed #29054 -- Fixed a regression where a queryset that annotates with geometry objects crashes.
|
||||
* Reverted "[1.11.x] Refs #28856 -- Fixed caching of a GenericForeignKey pointing to a model that uses more than one level of MTI."
|
||||
* Added "Python 3 Only" trove classifier.
|
||||
* Fixed #28941 -- Fixed crash in testserver command startup.
|
||||
* Fixed import in docs/ref/models/conditional-expressions.txt example.
|
||||
* Fixed CVE-2018-6188 -- Fixed information leakage in AuthenticationForm.
|
||||
* Fixed #28594 -- Removed Jython docs and specific code
|
||||
* Renamed the "Supported versions" label.
|
||||
* Fixed #28878 -- Added python_requires in setup.py and a warning for older pips that don't recognize it.
|
||||
* Fixed typo in docs/ref/contrib/admin/index.txt.
|
||||
* Refs #28856 -- Fixed caching of a GenericForeignKey pointing to a model that uses more than one level of MTI.
|
||||
* Added stub release notes for 2.0.2.
|
||||
* Fixed #28938 -- Corrected Python compatibility in the tutorial.
|
||||
* Fixed #28890 -- Removed newlines between MultiWidget's subwidgets.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 12 21:12:18 UTC 2017 - mimi.vx@gmail.com
|
||||
|
||||
|
||||
Reference in New Issue
Block a user