Jon Dufresne
|
348cfccd90
|
Fixed #26938 -- Fixed invalid HTML in template postmortem on the debug page.
|
2016-07-24 18:18:57 +02:00 |
|
Jon Dufresne
|
b2e54aec58
|
Added stub release notes for 1.9.9.
|
2016-07-24 18:18:57 +02:00 |
|
Alex Hill
|
971120778a
|
Fixed #26945 -- Ensured that i18n_patterns returns a list
|
2016-07-24 17:17:00 +02:00 |
|
Preetham Nosum
|
32cf01c1c1
|
Fixed #18348 -- Documented SesssionStore.create()
|
2016-07-22 17:16:19 -04:00 |
|
Andrew Nester
|
dde6288fbe
|
Fixed #26882 -- Added tests for auth.views.logout_then_login().
|
2016-07-22 15:04:13 -04:00 |
|
Jon Dufresne
|
caa006f327
|
Removed unnecessary coerce to list in forms_tests.
|
2016-07-22 07:46:45 -04:00 |
|
Chad Whitman
|
bc1e9e823b
|
Removed duplicate admin CSS selector.
|
2016-07-21 16:58:14 -04:00 |
|
Kevan Swanberg
|
17a0a6667c
|
Refs #26796 -- Fixed ManyToManyField's limit_choices_to warning without a through model.
|
2016-07-21 14:29:03 -04:00 |
|
Dmitry Dygalo
|
d7a097265b
|
Fixed #26922 -- Fixed SimpleTestCase.assertHTMLEqual() crash on Python 3.5+.
|
2016-07-21 14:01:23 -04:00 |
|
Tobias McNulty
|
915786785f
|
Fixed #26924 -- Fixed i18n test failure on Mac OS X.
|
2016-07-21 13:54:35 -04:00 |
|
Raphaël Hertzog
|
8e5cbc884f
|
Fixed #26923 -- Fixed template_tests with numpy < 1.9.0.
|
2016-07-21 12:59:55 -04:00 |
|
Claude Paroz
|
283b468462
|
Fixed #25454 -- Ensured register_hstore_handler is called for all connections
Thanks Simon Charette for help with the patch.
|
2016-07-21 17:54:54 +02:00 |
|
petedmarsh
|
7bf3ba0d0c
|
Fixed #26899 -- Documented why RawSQL params is a required parameter.
|
2016-07-21 10:28:31 -04:00 |
|
Dmitry Dygalo
|
ca32979cdc
|
Made miscellaneous code cleanups
|
2016-07-21 10:08:19 -04:00 |
|
Tim Graham
|
a05d86a69a
|
Fixed #26918 -- Clarified source of pre/post_save update_fields argument.
|
2016-07-21 10:06:41 -04:00 |
|
Tobias McNulty
|
09d38746ba
|
Fixed #22446 -- Added tox.ini to automate pull request checks.
|
2016-07-20 14:06:28 -04:00 |
|
Claude Paroz
|
3ea7167bb5
|
Refs #24928 -- Added introspection support for UUIDField
|
2016-07-20 17:27:29 +02:00 |
|
Simon Charette
|
271bfe65d9
|
Fixed #26916 -- Fixed prefetch_related when using a cached_property as to_attr.
Thanks Trac alias karyon for the report and Tim for the review.
|
2016-07-19 16:05:07 -04:00 |
|
Tim Graham
|
081fdaf110
|
Fixed a GeoIP test failure with the latest data.
|
2016-07-19 09:08:46 -04:00 |
|
Tim Graham
|
bc53af13cb
|
Added CVE-2016-6186 to the security release archive.
|
2016-07-18 15:19:35 -04:00 |
|
Tim Graham
|
93c538694e
|
Fixed XSS in admin's add/change related popup.
This is a security fix.
|
2016-07-18 11:17:01 -04:00 |
|
akki
|
767849b765
|
Removed unnecessary looping in sqlite3 SchemaEditor.
|
2016-07-18 08:47:30 -04:00 |
|
Akshesh
|
bdba0fc195
|
Fixed typo in autodetector method name.
|
2016-07-17 15:18:39 -04:00 |
|
Claude Paroz
|
599393172b
|
Fixed #26826 -- Stripped spaces from dumpdata pks arguments
Thanks Kevin Graham Foster for the report and Tim Graham for the review.
|
2016-07-16 20:49:10 +02:00 |
|
Tim Graham
|
7c33aa8a87
|
Fixed #26900 -- Fixed crash accessing deferred FileFields.
|
2016-07-16 08:22:24 -04:00 |
|
Claude Paroz
|
255fb99284
|
Fixed #17209 -- Added password reset/change class-based views
Thanks Tim Graham for the review.
|
2016-07-16 10:36:12 +02:00 |
|
andrewnester
|
20d39325ca
|
Fixed #26765 -- Made CommonMiddleware no longer set an ETag when response has Cache-Control: no-store.
|
2016-07-15 15:34:00 -04:00 |
|
Tim Graham
|
ba246bd5fe
|
Fixed inconsistent indentation in docs/ref/models/options.txt
|
2016-07-15 13:42:37 -04:00 |
|
Jon Dufresne
|
3f76d1402d
|
Refs #26889 -- Refactored SchemaEditor to allow backend specific indexes.
|
2016-07-15 10:34:37 -04:00 |
|
Marc-Aurèle Brothier
|
f8bfa80680
|
Fixed #26868 -- Changed MySQL version detection to use a query.
Workaround a bug with MariaDB and MySQL native client not stripping the
`5.5.5-` prefix.
|
2016-07-15 10:05:03 -04:00 |
|
Claude Paroz
|
92c48a392f
|
Updated contrib.postgres translation catalog
Forward port of cb78011402 from stable/1.10.x.
|
2016-07-15 09:48:57 +02:00 |
|
Marten Kenbeek
|
389a5318a0
|
Fixed #26888 -- Fixed concurrency issue in URL resolver.
Fixed a regression in 625b8e9295 :
improper short-circuiting could lead to a KeyError when threads
concurrently call RegexURLResolver._populate().
|
2016-07-14 14:41:52 -04:00 |
|
Claude Paroz
|
3e71f6544f
|
Fixed #26897 -- Fixed makemessages crash on Python 2 with non-ASCII file names
Thanks Tim Graham for the review.
|
2016-07-14 20:37:56 +02:00 |
|
Will Hardy
|
8ef78b8165
|
Fixed #26656 -- Added duration (timedelta) support to DjangoJSONEncoder.
|
2016-07-14 13:34:15 -04:00 |
|
Priy
|
a7b5dfd170
|
Fixed #26821 -- Fixed forms.Email/URLField crash on None value.
|
2016-07-14 12:59:14 -04:00 |
|
Jensen Cochran
|
d44afd8892
|
Fixed #26804 -- Fixed a race condition in QuerySet.update_or_create().
|
2016-07-14 12:10:19 -04:00 |
|
Jon Dufresne
|
76e19da5b0
|
Fixed #26890 -- Fixed IntegerField crash on Unicode numbers.
|
2016-07-14 09:38:57 -04:00 |
|
Tim Graham
|
944e66cb1d
|
Reverted "Fixed #25388 -- Added an option to allow disabling of migrations during test database creation"
This reverts commit 157d7f1f1d since it
disables migrations all the time, not just during tests.
|
2016-07-14 09:21:28 -04:00 |
|
Tim Graham
|
a117190477
|
Fixed #26894 -- Fixed a typo in docs/faq/admin.txt
|
2016-07-14 08:02:11 -04:00 |
|
Tom Carrick
|
46e2010460
|
Fixed typos in docs/ref/contrib/postgres/search.txt
|
2016-07-14 07:52:47 -04:00 |
|
Daniel Rice
|
08c723fbae
|
Reworded a sentence in tutorial 7.
|
2016-07-14 07:50:29 -04:00 |
|
Jon Dufresne
|
2e4cfcd2b9
|
Fixed #26889 -- Fixed missing PostgreSQL index in SchemaEditor.add_field().
|
2016-07-13 14:33:54 -07:00 |
|
Jiang Haiyun
|
10883b63b7
|
Fixed typo in docs/internals/contributing/writing-code/coding-style.txt
|
2016-07-13 10:15:39 -04:00 |
|
Kenneth
|
841cb45847
|
Fixed #26884 -- Evaluated callables in QuerySet.update_or_create()'s defaults when updating.
|
2016-07-12 22:09:53 -04:00 |
|
Jon Dufresne
|
b84ecaa736
|
Fixed #26088 -- Made autodector detect changing proxy model to MTI.
|
2016-07-12 21:45:17 -04:00 |
|
Andrey Fedoseev
|
81963b37a9
|
Fixed #17657 -- Made ModelForm respect ModelMultipleChoiceField's to_field_name.
Follow up to 67d984413c .
|
2016-07-12 16:20:06 -04:00 |
|
Md. Sadaf Noor
|
1f82b857ce
|
Fixed #26831 -- Documented session data must be JSON encodable for JSONSerializer.
|
2016-07-12 13:45:01 -04:00 |
|
Andrew Nester
|
08ed3cc6d1
|
Fixed #26671 -- Made HashedFilesMixin ignore the 'chrome' scheme.
|
2016-07-12 08:20:39 -04:00 |
|
Dmitry S..ky / skype: dvska-at-skype
|
82be474efa
|
Fixed #26792 -- Allowed None for the value of cache.get_or_set().
|
2016-07-11 20:49:27 -04:00 |
|
Tim Graham
|
ee2f0f311a
|
Linked "Features removed" release notes to corresponding deprecation notes.
|
2016-07-11 15:22:32 -04:00 |
|