Sergey Fedoseev
|
bb91c0a4dc
|
Refs #4518 -- Removed handling of empty strings in typecast_decimal().
It's unclear if the original change was needed, but it seems unneeded now.
Reverted 6fc10f50b0 .
|
2017-08-09 18:02:16 -04:00 |
Pavel Karateev
|
851ef09db9
|
Fixed typo in docs/releases/2.0.txt.
|
2017-08-09 20:48:36 +02:00 |
Mariusz Felisiak
|
3189a93ceb
|
Refs #23766 -- Added tests for CursorWrapper.callproc().
Thanks Tim Graham for the review.
|
2017-08-08 22:13:02 +02:00 |
Sergey Fedoseev
|
c754bdc45b
|
Refs #7070 -- Improved test for extra(), values(), distinct() and ordering() all together.
Tested that the extra select that appears in the select clause only because of
distinct() and order_by() doesn't appear in the result values.
|
2017-08-08 14:38:43 -04:00 |
Sergey Fedoseev
|
b8731c3fff
|
Refs #28459 -- Improved performance of sql.compiler.cursor_iter().
|
2017-08-08 14:07:03 -04:00 |
Claude Paroz
|
831358f23d
|
Fixed #28465 -- Unified index SQL creation in DatabaseSchemaEditor
Thanks Tim Graham for the review.
|
2017-08-08 17:37:43 +02:00 |
Tim Graham
|
d18227e341
|
Fixed #28471 -- Clarified that Meta.indexes is preferred to index_together.
|
2017-08-08 09:20:42 -04:00 |
bc500
|
09423db71a
|
Fixed #28472 -- Optimized a jQuery selector in admin's actions.js.
|
2017-08-08 08:35:57 -04:00 |
Sergey Fedoseev
|
fb0bdff981
|
Refs #28459 -- Improved performance of ValuesIterable.
|
2017-08-08 11:02:59 +05:00 |
Srinivas Reddy Thatiparthy
|
b5d47b18f1
|
Removed unnecessary else in SelectDateWidget.id_for_lable().
|
2017-08-07 22:01:45 -04:00 |
Sergey Fedoseev
|
ba1d82df63
|
Refs #28459 -- Improved performance of select_related() when model is prefetched from its parent.
|
2017-08-07 18:55:13 -04:00 |
Mads Jensen
|
773c7888d4
|
Added newline at end of docs/faq/index.txt.
|
2017-08-07 18:29:06 -04:00 |
Sergey Fedoseev
|
ca46f4688c
|
Refs #28459 -- Improved performance of SQLCompiler.results_iter().
|
2017-08-07 17:06:15 -04:00 |
Tim Graham
|
50a97edc1a
|
Fixed #28466 -- Clarified the definition of a lazy relationship.
|
2017-08-07 15:51:46 -04:00 |
Timothy Allen
|
5fe9b7b40a
|
Fixed #28457 -- Updated the design of the 'Congrats' page for new Django projects.
Developed by Timothy Allen and Chad Whitman of The Wharton School with
shepherding from Aymeric Augustin and Collin Anderson.
|
2017-08-07 10:33:55 -04:00 |
Srinivas Reddy Thatiparthy
|
0a24714b26
|
Removed unnecessary else clause in TemplateStrings.get_template().
|
2017-08-07 10:24:58 -04:00 |
Srinivas Reddy Thatiparthy
|
6a793d1788
|
Removed unnecessary assignment in Oracle's FormatStylePlaceholderCursor._fix_for_params().
Obsolete since fae56427e1 .
|
2017-08-07 10:11:54 -04:00 |
Mariusz Felisiak
|
7724879b52
|
Removed unused _combine() node argument from various combinable classes.
Unused since f59fd15c49 (Combinable) and
since its introduction in 2d877da855
(SearchVectorCombinable/SearchQueryCombinable/SearchQuery).
|
2017-08-02 21:21:32 -04:00 |
Tim Graham
|
d70432deae
|
Refs #7697 -- Tested escaping of safe strings in the technical 500 debug view.
Tests were omitted in the original commit: a56a226241 .
|
2017-08-02 15:56:47 -04:00 |
Tim Graham
|
293608a2e0
|
Refs #7697 -- Removed unnecessary force_escape of technical 500 debug view "unicode hint".
The test passes before and after the removal. unicode_hint will never
be SafeText, so normal autoescaping is sufficient.
|
2017-08-02 15:16:22 -04:00 |
Tim Graham
|
74b7a20fe6
|
Refs #5046 -- Tested the 'unicode hint' in the technical 500 debug view.
|
2017-08-02 15:07:26 -04:00 |
Tim Graham
|
78c155cf2e
|
Fixed #28441 -- Fixed GEOS version parsing with a commit hash at the end.
|
2017-08-02 09:30:30 -04:00 |
Sergey Fedoseev
|
78f7f68021
|
Refs #28459 -- Improved performance of Model.from_db() when fields are deferred.
|
2017-08-02 09:16:36 -04:00 |
Sergey Fedoseev
|
7bd9639406
|
Simplified check that pk is fetched in RawQuerySet.__iter__().
|
2017-08-02 08:56:16 -04:00 |
Mariusz Felisiak
|
5d9034bc92
|
Removed unused DatabaseOperations.last_insert_id() on PostgreSQL.
Unused since 9eb2afddfa .
|
2017-08-01 16:53:17 -04:00 |
Sergey Fedoseev
|
2d136ede8a
|
Fixed #28459 -- Improved performance of ValuesListIterable.
|
2017-08-01 14:44:02 -04:00 |
Matthew Wilkes
|
32d1bf2bdb
|
Fixed #28454 -- Simplifed use of Query.setup_joins() by returning a named tuple.
|
2017-08-01 14:25:54 -04:00 |
Tim Graham
|
8df7681d0e
|
Removed unneeded escape filter in templates where autoescaping is enabled.
|
2017-08-01 10:52:29 -04:00 |
Tim Graham
|
53d2534b38
|
Added stub release notes for 1.11.5.
|
2017-08-01 08:46:23 -04:00 |
Tim Graham
|
4c68ef9136
|
Added release date for 1.11.4.
|
2017-08-01 08:08:18 -04:00 |
Sergey Fedoseev
|
62dee1483d
|
Refs #28370 -- Moved db converters deprecation warning to improve performance.
|
2017-08-01 08:05:32 -04:00 |
Sergey Fedoseev
|
58da81a5a3
|
Fixed #27985 -- Fixed query for __exact=value when get_prep_value() converts value to None.
Also fixed crash of .filter(field__transform=None).
|
2017-07-31 15:34:07 -04:00 |
Anssi Kääriäinen
|
6155bc4a51
|
Refs #20880 -- Removed non-cloning logic from Query.clone().
|
2017-07-31 15:31:29 -04:00 |
Anssi Kääriäinen
|
66933a6619
|
Refs #20880 -- Removed non-cloning logic from QuerySet._clone().
|
2017-07-31 13:57:45 -04:00 |
Sergey Fedoseev
|
0baea920c8
|
Fixed #28453 -- Made __exact=None lookup use transforms.
|
2017-07-31 13:31:04 -04:00 |
Tim Graham
|
e3bd328b0f
|
Removed a primary key value dependency in a multiple_database test.
Follow up to a51c4de194 .
|
2017-07-31 13:28:29 -04:00 |
Sergey Fedoseev
|
aadd3aeb2b
|
Avoided creating temporary lists for obtaining the first item.
|
2017-07-31 11:02:23 -04:00 |
Sergey Fedoseev
|
0f905e4b44
|
Removed unneeded TruncBase.arity.
Uneeded since its introduction in 2a4af0ea43 .
|
2017-07-31 13:42:12 +05:00 |
Mads Jensen
|
a51c4de194
|
Used assertRaisesMessage() to test Django's error messages.
|
2017-07-29 19:07:23 -04:00 |
Sergey Fedoseev
|
38988f289f
|
Avoided creation of temporary sets.
|
2017-07-29 10:16:43 -04:00 |
Srinivas Reddy Thatiparthy
|
b306c0c1a3
|
Fixed #28264 -- Made FilePathField sort files and directories when recursive=True.
|
2017-07-29 09:15:46 -04:00 |
Sergey Fedoseev
|
99e7bba443
|
Prevented query_utils.refs_expression() from looking for empty string in annotations map.
|
2017-07-28 08:42:52 -04:00 |
Mariusz Felisiak
|
b61d5b1991
|
Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't provided.
Thanks Tim Graham for the review.
|
2017-07-27 19:36:47 +02:00 |
Tim Graham
|
14172cf442
|
Fixed #28415 -- Clarified what characters ASCII/UnicodeUsernameValidator accept.
|
2017-07-27 08:42:01 -04:00 |
Sergey Fedoseev
|
6ebe3a95ea
|
Fixed #28437 -- Added support for complex geometry expressions in GIS lookups.
|
2017-07-27 08:06:08 -04:00 |
Mariusz Felisiak
|
8e41373c81
|
Allowed database backends to specify data types for Cast().
A small refactor ahead of refs #28371.
|
2017-07-26 20:26:58 -04:00 |
Tim Graham
|
ef9344b3a5
|
Removed unused SpatialOperations.from_wkb.
Unused since its introduction in ff60c5f9de .
|
2017-07-26 20:03:41 -04:00 |
Anton Samarchyan
|
c91dcd36fc
|
Improved test coverage for django.conf.
|
2017-07-26 20:00:28 -04:00 |
Anton Samarchyan
|
0eefda493b
|
Improved test coverage for django.contrib.sitemaps.
|
2017-07-26 15:01:46 -04:00 |
Melvyn Sopacua
|
5bb9b9a388
|
Fixed #28363 -- Allowed naming the migration generated by squashmigrations.
|
2017-07-26 13:47:35 -04:00 |