shanghui
|
d968788b57
|
Fixed #28833 -- Prevented CacheMiddleware from caching responses with "Cache-Control: private".
|
2018-02-06 09:42:05 -05:00 |
Tom
|
272f685794
|
Fixed #27999 -- Added test client support for HTTP 307 and 308 redirects.
|
2018-02-06 09:03:43 -05:00 |
Tim Graham
|
0f0a07ac27
|
Refs #28814 -- Fixed migrations crash with namespace packages on Python 3.7.
Due to https://bugs.python.org/issue32303.
|
2018-02-05 13:29:32 -05:00 |
Raymond Hettinger
|
aba9763b51
|
Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation warnings.
https://bugs.python.org/issue25988
|
2018-02-05 11:42:47 -05:00 |
Jon Dufresne
|
8b21878357
|
Refs #28723 -- Fixed stale prefetch_related cache after add/remove.
Regression in 514b2c989a .
|
2018-02-05 11:02:57 -05:00 |
Tim Graham
|
16ee53d7bb
|
Fixed #29113 -- Simplified django.forms.formsets.all_valid() and clarified docstring.
|
2018-02-05 10:29:38 -05:00 |
Simon Charette
|
7515e1f3fc
|
Added stub release notes for 2.0.3.
|
2018-02-05 10:12:47 -05:00 |
Jon Dufresne
|
f0658ff818
|
Made prefetch_related tests use assertCountEqual() for unordered sequences.
|
2018-02-05 10:00:57 -05:00 |
Raffaele Salmaso
|
da3df5b878
|
Fixed #8500 -- Allowed overriding the default admin site instance.
|
2018-02-03 18:51:10 -05:00 |
Tim Graham
|
d0a42a14c0
|
Fixed imports per isort 4.3.1.
Partially reverted 9bcf73d788 .
|
2018-02-02 14:44:07 -05:00 |
Jon Dufresne
|
6a039800db
|
Refs #27795 -- Replaced force_bytes() usage in django.core.cache.
|
2018-02-02 08:57:58 +01:00 |
Mariusz Felisiak
|
75e45a45e7
|
Simplified aggregation.tests.
|
2018-02-02 08:47:32 +01:00 |
Jon Dufresne
|
16c5a334ff
|
Refs #27795 -- Replaced force_text/bytes() with decode()/encode() in password hashers.
|
2018-02-01 12:36:21 -05:00 |
Tim Graham
|
66119ed642
|
Added CVE-2018-6188 to the security release archive.
|
2018-02-01 10:14:17 -05:00 |
Tim Graham
|
af33fb250e
|
Fixed CVE-2018-6188 -- Fixed information leakage in AuthenticationForm.
Reverted 359370a8b8 (refs #28645).
This is a security fix.
|
2018-02-01 09:05:14 -05:00 |
Tim Graham
|
552abffab1
|
Fixed #29094 -- Fixed crash when entering an invalid uuid in ModelAdmin.raw_id_fields.
Regression in 2f9861d823 .
Thanks Carel Burger for the report and fix.
|
2018-02-01 08:36:36 -05:00 |
Mariusz Felisiak
|
9bcf73d788
|
Fixed imports per isort 4.3.0.
|
2018-02-01 09:29:46 +01:00 |
danieltatraivertis
|
9cd313fc2e
|
Fixed #29090 -- Updated Hungarian time formats to use ':' instead of '.'.
|
2018-01-31 20:03:27 -05:00 |
Mariusz Felisiak
|
f73f821143
|
Removed uneeded comment in DatabaseWrapper.check_constraints() on SQLite/MySQL backends.
|
2018-01-31 20:02:45 -05:00 |
Chris Hasbrouck
|
92fe161e69
|
Made minor edits and corrections to docs/internals/git.txt.
|
2018-01-31 13:04:19 -05:00 |
Rodrigo
|
4fe0e619e7
|
Disambiguated "settings" in SpatiaLite note.
|
2018-01-31 12:20:24 -05:00 |
Rodrigo
|
9817add9e0
|
Doc'd specifying the ENGINE setting as part of configuring contrib.gis.
|
2018-01-31 12:09:26 -05:00 |
Rodrigo
|
7c5cf33127
|
Fixed location of spatialite_source label.
|
2018-01-31 11:27:55 -05:00 |
priyanshsaxena
|
617d5f410f
|
Fixed #29066 -- Allowed negating query expressions.
|
2018-01-31 10:54:19 -05:00 |
Jon Dufresne
|
6b2f8fb91c
|
Refs #27795 -- Replaced force_text() usage in django.core.management.
Use decode() since Popen.communicate() always returns bytes.
|
2018-01-31 10:35:08 -05:00 |
Дилян Палаузов
|
f427ffcccb
|
Fixed #29093 -- Simplified a few lines in ModelBase.__new__().
|
2018-01-31 10:22:56 -05:00 |
Tim Graham
|
4775dcb521
|
Renamed the "Supported versions" label.
|
2018-01-31 10:17:06 -05:00 |
Jon Dufresne
|
8f14ed6c81
|
Removed unused os_err_exc_type kwarg from core.management.utils.popen_wrapper().
Unused since its introduction in 7fca4416c7 .
|
2018-01-31 10:02:01 -05:00 |
Tim Graham
|
0a37ea56d0
|
Fixed #29091 -- Fixed makemigrations crash if migrations directory doesn't have __init__.py.
Regression in aadd3aeb2b .
|
2018-01-31 09:36:36 -05:00 |
Tim Graham
|
de59132afc
|
Refs #29071 -- Forwardported 2.0.2/1.11.10 release notes.
|
2018-01-31 09:29:12 -05:00 |
Tim Graham
|
c10cb9716f
|
Refs #29086 -- Doc'd how to detect bytestring mistakes.
|
2018-01-30 19:58:16 -05:00 |
Vlastimil Zíma
|
fbc3c29e7c
|
Fixed #29036 -- Fixed HTML5 required validation on SelectDateWidget if the attribute is added by JavaScript.
Thanks Tim Graham for the initial patch.
|
2018-01-30 19:09:31 -05:00 |
Tim Graham
|
5538729e4e
|
Fixed #29089 -- Avoided redundant date parsing in SelectDateWidget.format_value().
|
2018-01-30 18:11:05 -05:00 |
Tim Graham
|
3a4b11873a
|
Added tests for SelectDateWidget.value_from_datadict().
|
2018-01-30 18:10:33 -05:00 |
Mads Jensen
|
1500573620
|
Added test for Apps.get_models() when models_ready=False.
|
2018-01-30 10:44:58 -05:00 |
Jon Dufresne
|
136bf5c214
|
Fixed #29076 -- Made Model.refresh_from_db() clear cached relationships even if the related id doesn't change.
|
2018-01-30 10:43:53 -05:00 |
Collin Anderson
|
46b3e3ffdc
|
Fixed #29065 -- Made django.core.validators only load Pillow if needed.
|
2018-01-30 09:42:23 -05:00 |
Christoph Zwerschke
|
d4bbd3f418
|
Corrected an explanation in tutorial 5.
|
2018-01-29 12:48:37 -05:00 |
Tim Graham
|
e6f0e324e2
|
Fixed #29081 -- Clarified comments in QuerySet.select_related() example.
|
2018-01-29 11:11:43 -05:00 |
bquinn
|
c2b969e124
|
Fixed #29004 -- Added inspectdb --include-views option.
|
2018-01-27 18:51:40 -05:00 |
Tim Graham
|
92f48680db
|
Expanded docs for AbstractBaseUser.has_usable_password().
|
2018-01-27 11:03:41 -05:00 |
Sigurd Ljødal
|
a455e732a0
|
Fixed #28650 -- Added TruncWeek database function.
|
2018-01-27 09:59:13 -05:00 |
Tim Graham
|
f229049d6c
|
Fixed #29055 -- Doc'd that escapejs doesn't make template literals safe.
|
2018-01-27 09:40:55 -05:00 |
François Freitag
|
3aa9ab39cc
|
Refs #28748 -- Reallowed lazy values in model field choices.
Regression in f9844f4841 .
Thanks Matthias Kestenholz for the report and suggestions.
|
2018-01-27 09:19:56 -05:00 |
Mariusz Felisiak
|
b002a032f9
|
Fixed #29054 -- Fixed a regression where a queryset that annotates with geometry objects crashes.
Made GEOSGeometryBase hashable.
Regression in 19b2dfd1bf .
Thanks Tim Graham for the review.
|
2018-01-27 11:12:11 +01:00 |
Jon Dufresne
|
3187c89d6f
|
Fixed #29067 -- Fixed regression in QuerySet.values_list(..., flat=True) followed by annotate().
|
2018-01-26 09:35:50 -05:00 |
Roger Gammans
|
d0b44c44ef
|
Fixed #29060 -- Made {% firstof %} assign '' to the asvar if all inputs are false.
|
2018-01-25 13:40:51 -05:00 |
shanghui
|
8dc675d90f
|
Fixed #28838 -- Fixed Model.save() crash if the base manager annotates with a related field.
|
2018-01-25 10:12:04 -05:00 |
Senthil
|
cbac11f962
|
Fixed #28784 -- Clarified how migrate --fake works.
|
2018-01-24 14:56:40 -05:00 |
Ashaba
|
95fd5cf459
|
Fixed #28403 -- Added missing formats in FORMAT_MODULE_PATH docs.
|
2018-01-24 13:38:15 -05:00 |