Claude Paroz
0cbb6ac007
Refs #24928 -- Added introspection support for PostgreSQL JSONField
...
Thanks Adam Johnson and Tim Graham for the reviews.
2017-09-09 18:26:29 +02:00
Sergey Fedoseev
63d2472b10
Fixed capitalization of "Spherical Mercator."
2017-09-09 09:35:30 -04:00
Samir Shah
4ac2ab30f5
Removed obsolete doc references to javascript_catalog.
2017-09-08 07:53:56 -04:00
Tim Graham
44a6c27fd4
Fixed #28561 -- Removed inaccurate docs about QuerySet.order_by() and joins.
...
As of ccbba98131
, both examples don't use
a join.
2017-09-06 19:21:38 -04:00
Sergey Fedoseev
f3c9562143
Fixed #15648 -- Allowed QuerySet.values_list() to return a namedtuple.
2017-09-06 15:32:32 -04:00
Olivier Tabone
a027447f56
Fixed #27318 -- Made cache.set_many() return the list of failed keys.
2017-09-06 14:38:44 -04:00
Sami J. Lehtinen
407c1249c9
Fixed #28032 -- Added Paginator.get_page().
...
Moved boilerplate from docs to a method.
2017-09-06 14:17:19 -04:00
François Freitag
ad4a8acdb5
Fixed #11557 -- Added support for a list of fields in Meta.get_latest_by and QuerySet.earliest()/latest().
2017-09-05 20:14:54 -04:00
Dima Kudosh
093fd479d6
Fixed #28335 -- Allowed query expressions in Meta.ordering.
2017-09-05 19:10:20 -04:00
Tim Graham
3d2c3905a6
Refs #28555 -- Forwardported 1.11.6 release note.
2017-09-05 16:46:55 -04:00
Tim Graham
1b86088f6f
Added stub release notes for 1.11.6.
2017-09-05 16:13:46 -04:00
Tim Graham
79ae5811c7
Added 2017-12794 to the security release archive.
2017-09-05 12:09:44 -04:00
Tim Graham
46e2b9e059
Fixed CVE-2017-12794 -- Fixed XSS possibility in traceback section of technical 500 debug page.
...
This is a security fix.
2017-09-05 10:58:38 -04:00
Tim Graham
73b6d02747
Added stub release notes for security releases.
2017-09-05 10:58:38 -04:00
Mads Jensen
f4135783ad
Fixed #28126 -- Added GistIndex to contrib.postgres.
...
Thanks to Marc Tamlyn for the initial patch.
2017-09-04 21:08:02 -04:00
Jonatas CD
c9b22707b0
Fixed #28479 -- Doc'd that transaction rollback doesn't revert model state.
2017-09-04 15:43:29 -04:00
Michael
3f2b1d926b
Fixed #28568 -- Fixed typo in docs/ref/models/database-functions.txt.
...
And made an example use naming consistent with the rest of the doc.
2017-09-04 14:40:56 -04:00
Berker Peksag
d81c86d32c
Fixed typo in docs/releases/1.10.txt.
2017-09-04 08:40:07 -04:00
ZachLiuGIS
2dacc2ccd9
Fixed #28550 -- Restored contrib.auth's login() and logout() views' respect of positional arguments.
...
Regression in 78963495d0
.
Forwardport of f8e0557b01
from stable/1.11.x
2017-09-03 12:06:44 -04:00
Tim Graham
2fc5a5bfe3
Removed stray versionadded/changed annotations for 1.10.
2017-09-02 21:47:01 -04:00
jkrzy
48d92fea67
Fixed #28367 -- Doc'd how to override management commands.
2017-09-02 16:21:13 -04:00
Jeremy Satterfield
473ab4610e
Fixed #28332 -- Fixed diamond inheritence example in docs.
2017-09-02 14:10:41 -04:00
Simon Meers
60443e84b3
Fixed #17985 -- Documented ModelAdmin.lookup_allowed().
2017-09-02 13:54:33 -04:00
Nick Pope
11f4c52ec7
Fixed #28525 -- Documented GDAL and GeoIP exceptions.
2017-09-02 09:10:18 -04:00
Berker Peksag
90fcf0fce7
Fixed typos in docs/releases/1.10.txt.
2017-09-02 09:09:07 -04:00
Nick Pope
f9c2fd30be
Fixed #28559 -- Removed contrib.gis.gdal.OGRException backwards compatibility alias.
2017-09-02 08:52:01 -04:00
Tim Graham
6e4a34580d
Fixed #28557 -- Fixed ForeignKey/OneToOneField/ManyToManyField argument name in docs.
2017-09-01 20:03:32 -04:00
Tim Graham
04050bff30
Refs #26522 -- Forwardported 1.11.5 release note.
2017-09-01 16:41:39 -04:00
Nick Pope
cbb27d603b
Reordered GeoIP docs be consistent with GDAL/GEOS ordering.
2017-09-01 09:48:25 -04:00
Nick Pope
49017dc13a
Made GeoIP docs headers consistent with other GIS docs.
2017-09-01 09:44:41 -04:00
Tim Graham
9075805570
Refs #23276 -- Fixed explanation of how calling views works.
...
"Importing the view" is no longer applicable after
a9fd740d22
.
2017-08-31 11:57:46 -04:00
Tim Graham
e5bd585c6e
Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.
...
Previously, it was a QuerySet which could reevaluate to a new value if the
model's data changes. This is inconsistent with other Field.value_from_object()
methods.
This allows reverting the fix in the admin for refs #27998 .
2017-08-31 09:34:44 -04:00
Tim Graham
11cd46930e
Refs #28487 -- Forwardported 1.11.5 release note.
2017-08-31 08:00:47 -04:00
jkrzy
20a761697f
Fixed #27701 -- Doc'd staticfiles runserver bypasses middleware when serving static files.
2017-08-30 16:40:19 -04:00
Jkrzy
da3a5cee4f
Fixed #28548 -- Replaced 'middlewares' with 'middleware' in docs.
2017-08-30 06:25:51 -04:00
caleb logan
9e2bf65d6a
Fixed #28530 -- Prevented SelectDateWidget from localizing years in output.
2017-08-29 14:56:08 -04:00
Mads Jensen
fb42d02471
Refs #25809 -- Omitted pages_per_range from BrinIndex.deconstruct() if it's None.
2017-08-26 09:45:45 -04:00
Claude Paroz
3c0b2b80ed
Fixed #28532 -- Fixed typo in PostgreSQL field docs
...
Thanks Andreas Poisel for the report.
2017-08-26 10:20:01 +02:00
hui shang
c0f4c60edd
Fixed #28513 -- Added POST request support to LogoutView.
2017-08-24 09:11:16 -04:00
Mariusz Felisiak
939d923e8e
Refs #28498 -- Forwardported 1.11.5 release note.
2017-08-23 10:08:42 +02:00
Mariusz Felisiak
330e965cd8
Fixed typo in docs/releases/1.11.5.txt.
2017-08-23 08:55:25 +02:00
Kim DoHyeon
f21915bb3a
Fixed #27931 -- Clarified the meaning of "django catch-all logger."
2017-08-22 16:24:18 -04:00
Kevin Grinberg
c6a3546093
Fixed #28451 -- Restored pre-Django 1.11 Oracle sequence/trigger naming.
...
Regression in 69b7d4b116
.
2017-08-22 15:51:08 -04:00
Harry Moreno
254fb8d1a4
Added "test --keepdb" to testing speedup docs.
2017-08-22 10:26:00 -04:00
Claude Paroz
ed77bea582
Refs #28502 -- Complemented stringformat tuple handling/test.
...
An additional test and a code change were suggested in a late review.
2017-08-22 08:45:08 -04:00
Adrien Brunet
b5ad5c628a
Fixed typo in documented number of logging filters.
2017-08-21 16:06:38 -04:00
Berker Peksag
8d095c6378
Removed redundant backticks in docs/releases/1.8.txt
2017-08-21 09:16:22 +02:00
Mariusz Felisiak
6784383e93
Fixed #28498 -- Fixed test database creation with cx_Oracle 6.
2017-08-16 18:39:58 +02:00
Sergey Fedoseev
a493424352
Removed unused reference in docs/ref/utils.txt.
...
Unused since f6acd1d271
.
2017-08-16 18:42:37 +05:00
Bae KwonHan
0608c24378
Fixed typo in docs/releases/2.0.txt.
2017-08-15 09:41:49 -04:00