Bouke Haarsma
da181056a9
[1.6.x] Fixed #21210 -- Documented when runserver doesn't auto-restart.
...
Thanks gergely at polonkai.eu for the suggestion.
Backport of 9b7d38ed5a
from master
2013-10-14 10:38:30 -04:00
Bouke Haarsma
e3c8db61f3
[1.6.x] Fixed #21264 -- Incorrect RST usage in docs
...
Backport of 8fc63087f6
from master
2013-10-14 08:15:50 -04:00
Max Vizard
8f5ea9d19b
[1.6.x] Fixed #21027 -- Updated tutorial 5 docs to link to management shell command page.
...
Backport of 13ddf0e002
from master
2013-10-14 08:10:51 -04:00
Aymeric Augustin
ddff6522fa
[1.6.x] Fixed #19560 -- Identified field in warning for naive datetime.
...
Thanks gcc for the report and vajrasky for the patch.
Backport of 570d9c2678
from master.
2013-10-13 11:58:12 +02:00
Ramiro Morales
503092b09a
[1.6.x] Forms docs: More emphasis in 'id' value customizability.
...
18ea1c473b
form master.
2013-10-12 13:30:58 -03:00
Tim Graham
8f5d3d16cb
[1.6.x] Fixed #15582 -- Documented how TransactionTestCase.multi_db affects fixtures.
...
Thanks slinkp for the suggestion.
Backport of dd839a2dfd
from master
2013-10-11 20:12:52 -04:00
Cody Scott
f787869d8c
[1.6.x] Minor edits to docs/topics/db/queries.txt.
...
Backport of 8bfc7cc64c
from master
2013-10-11 15:35:48 -04:00
Cody Scott
2069dfeaef
[1.6.x] Small improvements to docs/topics/db/models.txt
...
Backport of 695bc0d191
from master
2013-10-10 20:57:16 -04:00
Claude Paroz
7a58fde7a6
[1.6.x] Fixed grammar/typos in auth customization docs
...
Backport of 1b9c72fc4f
from master.
2013-10-09 16:22:36 +02:00
Dan Loewenherz
af46932b57
[1.6.x] Fix grammatical errors in email documentation
...
Backport of 43f213e475
from master
2013-10-08 20:30:43 -04:00
Russell Keith-Magee
1ab84b6c65
[1.6.x] Fixed #21164 -- Added documentation for issue with test users.
...
The package renaming restores the older package names (which were also the
documented package names). This doesn't affect test discovery because the
module in question doesn't contain any tests.
Thanks to Carl for the design discussion.
Backport of ddb5385
from master.
2013-10-08 10:37:48 +08:00
Ramiro Morales
563b5c2000
[1.6.x] Re-added link to SQLite notes from DB section of install doc.
...
67f5dffbec
from master.
2013-10-07 07:42:28 -03:00
Tim Graham
e2e7571035
[1.6.x] Fixed #21218 -- Typo on docs/howto/upgrade-version.txt
...
Thanks ryan at ryangallen.com for the report.
Backport of 36e220f923
from master
2013-10-03 20:14:00 -04:00
Tim Graham
06b149e220
[1.6.x] Fixed #10913 -- Documented how related_name affects QuerySet filtering
...
Thanks neithere for the suggestion.
Backport of 75bb6ba966
from master
2013-10-02 12:13:44 -04:00
Tim Graham
9b89fcc0b0
[1.6.x] Clarified session replay attack differences with cookie backend.
...
Backport of 00a0d3de02
from master
2013-10-02 10:15:36 -04:00
Curtis Maloney
98773c4bb5
[1.6.x] Fixed #21154 -- Updated TemplateResponse docs to better explain context.
...
Thanks mrmachine for the report.
Backport of c39c9f2ad8
from master
2013-09-30 10:21:34 -04:00
Aymeric Augustin
0d74bdaf0c
Fixed #21134 -- Prevented queries in broken transactions.
...
Backport of 728548e4
from master.
Squashed commit of the following:
commit 63ddb271a44df389b2c302e421fc17b7f0529755
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 29 22:51:00 2013 +0200
Clarified interactions between atomic and exceptions.
commit 2899ec299228217c876ba3aa4024e523a41c8504
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 22 22:45:32 2013 +0200
Fixed TransactionManagementError in tests.
Previous commit introduced an additional check to prevent running
queries in transactions that will be rolled back, which triggered a few
failures in the tests. In practice using transaction.atomic instead of
the low-level savepoint APIs was enough to fix the problems.
commit 4a639b059ea80aeb78f7f160a7d4b9f609b9c238
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Sep 24 22:24:17 2013 +0200
Allowed nesting constraint_checks_disabled inside atomic.
Since MySQL handles transactions loosely, this isn't a problem.
commit 2a4ab1cb6e83391ff7e25d08479e230ca564bfef
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sat Sep 21 18:43:12 2013 +0200
Prevented running queries in transactions that will be rolled back.
This avoids a counter-intuitive behavior in an edge case on databases
with non-atomic transaction semantics.
It prevents using savepoint_rollback() inside an atomic block without
calling set_rollback(False) first, which is backwards-incompatible in
tests.
Refs #21134 .
commit 8e3db393853c7ac64a445b66e57f3620a3fde7b0
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 22 22:14:17 2013 +0200
Replaced manual savepoints by atomic blocks.
This ensures the rollback flag is handled consistently in internal APIs.
2013-09-30 10:14:22 +02:00
Ramiro Morales
5303afcd97
[1.6.x] Note about static files dirs paths on Windows.
...
Added it to the settings reference. We used to have it in comment form
in our old, bigger default project template settings.py file.
5866a49369
from master.
2013-09-28 20:35:47 -03:00
Tim Graham
d1047c8b4c
[1.6.x] Fixed #21116 -- Made usage of manage.py in docs more consistent.
...
Thanks daniel.quattro at gmail.com for the report.
d1c9802811
from master.
2013-09-25 21:11:17 -03:00
Baptiste Mispelon
5207928151
[1.6.X] Fixed wording in unit tests documentation.
...
Backport of 42b9feb2e7
from master.
2013-09-25 18:31:03 +02:00
Tim Graham
d30d66b907
[1.6.x] Fixed #21137 -- Corrected ULRconf include example.
...
Thanks marfire for the report.
Backport of 77f6b468e5
from master
2013-09-24 09:41:39 -04:00
Brett Koonce
db98c48884
[1.6.x] Removed extra p (topppings->toppings)
...
Backport of 946a2226ea
from master
2013-09-23 19:25:07 -04:00
Tim Graham
34f4053409
[1.6.x] Removed implication that six is part of Python stdlib.
...
Backport of 45969bdeb5
from master
2013-09-23 18:30:18 -04:00
Louis Fill
a6a5c8b06d
[1.6.x] Fixed #21070 -- Added a more complex database configuration example.
...
Thanks joejasinski for the suggestion.
Backport of e15f7f31d0
from master
2013-09-23 12:18:47 -04:00
Daley Chetwynd
5e549e7efe
[1.6.x] Fixed #20830 -- Clarified that Django uses a customized version of six.
...
Thanks glarrain for the suggestion.
Backport of a53caf28bf
from master
2013-09-23 11:07:36 -04:00
Ben Huckvale
cdb56725d4
[1.6.x] Fixed #21120 -- Added more explicit text on using validators and link to writing validators.
...
Thanks nicolas at niconomicon.net for the suggestion.
Backport of 98e0453f00
from master
2013-09-23 10:39:10 -04:00
Tim Garner
6e6d1b1ba8
[1.6.x] Fixed #21702 -- Added different bullet styles for nested lists.
...
Thanks moc at mocpa.com for the suggestion.
Backport of c81b6f7b83
from master
2013-09-23 07:40:01 -04:00
Ramiro Morales
b2876c0c91
[1.6.x] A few doc additions for changes from d228c1192e
.
...
ce0c5c38ea
from master.
2013-09-22 13:54:54 -03:00
Ramiro Morales
aef809f90c
[1.6.x] Reference Meta.index_together in DB performance guide.
...
9dc45efeba
from master.
2013-09-22 13:54:02 -03:00
mlissner
14f76b15c4
[1.6.x] Correct very minor typo
...
Just changed as to has.
Backport of d8f2d940cc
from master
2013-09-21 18:18:42 -04:00
Michael DiBernardo
bb8a087949
[1.6.x] Fixed #21137 -- Documented best practice for URLconfs with repeated pattern prefixes.
...
Backport of 222460a994
from master
2013-09-21 18:18:16 -04:00
Curtis Maloney
e94efee946
[1.6.x] Fixed #21133 -- Clarifed documentation about strftime formatting.
...
Backport of 43a2ec7999
from master
2013-09-21 06:56:00 -04:00
Aymeric Augustin
0ad178c43d
[1.6.x] Clarified why one must not catch database errors inside atomic.
...
Backport of 4db2752
from master.
2013-09-20 21:57:39 +02:00
Paul McMillan
85ba68cc14
[1.6.x] Increased default PBKDF2 iterations
...
Increases the default PBKDF2 iterations, since computers have gotten
faster since 2011. In the future, we plan to increment by 10% per
major version.
Backport of a075e2ad0d
from master
2013-09-19 15:34:59 -04:00
Markus Amalthea Magnuson
9888bb28ee
[1.6.x] Added missing "in" in sentence.
...
Backport of 2c5c422d34
from master
2013-09-19 13:29:48 -04:00
Russell Keith-Magee
886e876c72
[1.6.x] Fixed #21121 : Added archive of security issues.
...
Backport of 9d3e60aa3e
, 8e134c27c9
, 8b3bae9466
, c65ae7c969
, bbabc5325c
,
and a2e25e8a83
from master.
2013-09-19 15:02:52 +08:00
Ramiro Morales
c0625a74ce
[1.6.x] Reworded a paragraph in the logging docs.
...
9d12f68a53
from master.
2013-09-16 17:52:13 -03:00
Tim Graham
e96bcdd64f
[1.6.x] Cleaned up 1.5.4/1.4.8 release notes
...
Backport of 8d29005524
from master
2013-09-15 14:22:24 -04:00
James Bennett
623c4916df
[1.6.x] Add release notes and bump version number for security release.
2013-09-15 00:36:03 -06:00
Russell Keith-Magee
5ecc0f828e
[1.6.x] Ensure that passwords are never long enough for a DoS.
...
* Limit the password length to 4096 bytes
* Password hashers will raise a ValueError
* django.contrib.auth forms will fail validation
* Document in release notes that this is a backwards incompatible change
Thanks to Josh Wright for the report, and Donald Stufft for the patch.
This is a security fix; disclosure to follow shortly.
Backport of aae5a96d57
from master.
2013-09-15 13:46:16 +08:00
Goetz
097fb98f81
[1.6.x] Fixed #21101 -- Updated urlize documentation to mention email addresses
...
Backport of 39b49fd339
from master
2013-09-13 12:42:40 -04:00
Tim Graham
7a2adec4d0
[1.6.x] Fixed #21100 -- Noted that Create/UpdateViews.fields is new in 1.6
...
Thanks AndrewIngram for the suggestion.
Backport of ec89e1725a
from master
2013-09-13 09:35:22 -04:00
Tim Graham
6e17534c89
[1.6.x] Fixed #21094 -- Updated reuseable apps tutorial to use pip for installation.
...
Thanks ylb415 at gmail.com for the suggestion.
Backport of e4aab1bb8d
from master
2013-09-13 09:30:12 -04:00
Kevin Christopher Henry
c91ffd5f23
[1.6.x] Documentation -- added instructions on working with pull requests
...
Since non-core contributors are asked to review patches, instructions
on working with pull requests were added to the Working with Git and
GitHub page (based on the existing instructions in the core
committers page).
Backport of 990ce9aab9
from master
2013-09-13 08:27:23 -04:00
Matt Austin
a929adfd3b
[1.6.x] Fixed #21095 -- Documented new requirement for dates lookups.
...
Day, month, and week_day lookups now require time zone definitions in the database.
Backport of 9451d8d
from master.
2013-09-13 10:20:13 +02:00
Ramiro Morales
66e6e2d146
[1.6.x] Fixed a couple of typos in GeoDjango docs.
...
8b366a50f4
from master.
2013-09-12 19:45:27 -03:00
Phaneendra Chiruvella
e8bb41d05c
[1.6.x] Minor typo fix in django.contrib.auth.models.User docs
...
Backport of bd72c2acb6
from master
2013-09-11 19:44:35 -04:00
Tim Graham
b05639dcac
[1.6.x] Fixed #20887 -- Added a warning to GzipMiddleware in light of BREACH.
...
Thanks EvilDMP for the report and Russell Keith-Magee
for the draft text.
Backport of da843e7dba
from master
2013-09-11 08:18:48 -04:00
Kevin Christopher Henry
4f0ea1aca4
[1.6.x] Documentation -- Improved description of cache arguments
...
- Fixed some grammar and formatting mistakes
- Added the type and default for CULL_FREQUENCY
- Made the note on culling the entire cache more precise. (It's actually
slower on the filesystem backend.)
Backport of 5eca021d48
from master
2013-09-11 07:43:24 -04:00
Tim Graham
2f2731e67e
[1.6.x] Added 1.4.7/1.5.3 release notes
...
Backport of baec6a26dd
from master
2013-09-10 21:08:27 -04:00
Tarjei Husøy
ef3604a085
[1.6.x] Fixed broken sphinx reference to staticfiles.
...
Backport of 751dc0a36b
from master
2013-09-10 16:31:51 -04:00
Aymeric Augustin
f9f792eb04
[1.6.x] Took advantage of django.utils.six.moves.urllib.*.
...
Backport of 6a6428a36
from master.
2013-09-10 21:29:31 +02:00
oz123
960f5bc759
[1.6.x] Fixed #21075 - Improved doc for calling call_command with arguments.
...
Backport of fca4c4826e
from master
2013-09-10 09:18:14 -04:00
Tim Graham
01ad508514
[1.6.x] Fixed spelling; refs #16895 .
...
Thanks Panagiotis Issaris for the report.
Backport of fb51c9a0f2
from master
2013-09-09 11:31:25 -04:00
e0ne
276e053803
[1.6.x] Fixed #16895 -- Warned about cost of QuerySet ordering
...
Thanks outofculture at gmail.com for the suggestion.
Backport of cbf08c6b0c
from master
2013-09-09 09:49:15 -04:00
Tim Graham
c03848b540
[1.6.x] Fixed #21068 -- Added some docs for DiscoverRunner
...
Thanks jcd.
Backport of e4b012feeb
from master
2013-09-07 16:11:03 -04:00
Aymeric Augustin
01edcf70f2
Fixed #20409 -- Clarified how unique_for_date works when USE_TZ is set.
2013-09-07 14:09:52 -05:00
Tim Graham
7b8037f3aa
[1.6.x] Fixed #20005 -- Documented that Oracle databases need execute permission on SYS.DBMS_LOB.
...
Thanks jafula for the suggestion.
Backport of a86ecc80a2
from master
2013-09-07 14:01:05 -04:00
Tim Graham
17b67e17a3
[1.6.x] Fixed #20938 -- Added cached sessions note to deployment checklist.
...
Thanks mjtamlyn for the suggestion.
Backport of 4e784f337c
from master
2013-09-07 13:08:45 -04:00
Keith Edmiston
a357c854c9
[1.6.x] Fixed #16992 -- Added InnoDB warning regarding reuse of AUTO_INCREMENT values.
...
Thanks kent at nsc.liu.se for the report.
Backport of c54fa1a7bc
from master
2013-09-07 12:16:43 -04:00
Tim Graham
2ab2d0fb25
[1.6.x] Fixed a link in topics/testing/overview.txt
...
Backport of 0c295a7718
from master
2013-09-06 17:41:43 -04:00
Keith Edmiston
2c73ba88f2
[1.6.x] Fixed #19295 -- Documented that CachedStaticFilesStorage isn't compatible with runserver --insecure.
...
Backport of 028db97503
from master
2013-09-06 17:30:59 -04:00
Tim Graham
da44a8bdc2
[1.6.x] Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDS
...
Thanks craigbruce.
Backport of db3de52807
from master
2013-09-06 16:06:46 -04:00
Tim Graham
544382dd85
[1.6.x] Fixed instructions for running a subset of tests.
...
Backport of cd4068f359
from master
2013-09-06 14:31:43 -04:00
Eric Boersma
180b9955cc
[1.6.x] Fixed #21035 -- Changed docs to treat the acronym SQL phonetically.
...
The documentation and comments now all use 'an' to
refer to the word SQL and not 'a'.
Backport of 4d13cc56de
from master
2013-09-05 20:16:14 -04:00
micahhausler
9f69ae7847
[1.6.x] Fixed #21047 -- Added CLA mesage on the new contributor advice doc
...
Backport of 93dd31cadf
from master
2013-09-05 17:54:56 -04:00
Tim Graham
1dd061ad77
[1.6.x] Fixed #21044 -- Documented django.core.urlresolvers.Resolver404
...
Thanks Keryn Knight for the suggestion.
Backport of eacf060e01
from master
2013-09-05 08:45:58 -04:00
Tim Graham
622d5c7650
[1.6.x] Fixed #20900 -- Documented RemoteUserBackend.authenticate
...
Backport of 7b62b80693
from master
2013-09-05 06:32:50 -04:00
Tim Graham
cda4fc8225
[1.6.x] Fixed #20958 -- Documented that GenericForeignKey fields can't be accessed in forms.
...
Thanks marky1991.
Backport of 533d1ab334
from master
2013-09-04 13:19:32 -04:00
Paul C. Anagnostopoulos
fe0eb2f995
[1.6.x] Clarified docs for some tags and filters
...
Backport of 1ccdc08189
from master
2013-09-04 13:04:51 -04:00
Loic Bistuer
a62b640f7d
[1.6.x] Fixed #20973 -- Document serving static files without django.contrib.staticfiles
...
Backport of 7b04038a7f
from master
2013-09-03 09:01:43 -04:00
Aymeric Augustin
115318051c
[1.6.x] Replaced "not PY3" by "PY2", new in six 1.4.0.
...
Conflicts:
django/db/backends/oracle/base.py
django/db/backends/sqlite3/base.py
django/db/models/base.py
Backport of 365c3e8b
from master.
2013-09-03 07:34:45 -05:00
Tim Graham
c0fb6bdde3
[1.6.x] Fixed #21002 -- Documented JSON session serialization requires string keys
...
Thanks jeroen.pulles at redslider.net for the report.
Backport of 3baf1d1042
from master
2013-09-03 07:49:59 -04:00
Claude Paroz
4e3794dd1f
[1.6.x] Fixed #20998 -- Allow custom (de)serialization for GIS widgets
...
Thanks Mathieu Leplatre for the report and the initial patch.
Backport of 102f26c92
from master.
2013-09-02 13:34:26 +02:00
Loic Bistuer
64383e8349
[1.6.x] Made the doc about translating string literals in templates more prominent.
...
Backport of 9885f07757
from master
2013-08-31 08:00:33 -04:00
Claude Paroz
68ae9f39b7
[1.6.x] Fixed copy/paste error in measurement docs
...
Backport of e87997dd33
frmo master.
2013-08-31 10:33:46 +02:00
Tim Graham
0089a9a854
[1.6.x] Fixed typo in docs/ref/models/options.txt
...
Backport of a89c856a7a
from master
2013-08-30 21:07:04 -04:00
Carl Meyer
21a3efcf48
[1.6.x] Fixed #20999 - Allow overriding formfield class with choices, without subclass restrictions.
...
Refs #18162 . Thanks claudep and mjtamlyn for review.
Backport of 7211741fc5
from master.
2013-08-30 17:45:14 -06:00
Anssi Kääriäinen
76e38a2177
[1.6.x] Fixed #20988 -- Added model meta option select_on_save
...
The option can be used to force pre 1.6 style SELECT on save behaviour.
This is needed in case the database returns zero updated rows even if
there is a matching row in the DB. One such case is PostgreSQL update
trigger that returns NULL.
Reviewed by Tim Graham.
Refs #16649
Backport of e973ee6a98
from master
Conflicts:
django/db/models/options.py
tests/basic/tests.py
2013-08-30 09:47:34 +03:00
Jorge C. Leitão
60df34d477
[1.6.x] Added links to file docs.
...
Backport of d72f83c410
from master
2013-08-29 12:49:27 -04:00
Phaneendra Chiruvella
68eca2b36f
[1.6.x] Minor spelling correction in ModelForms docs
...
Backport of 2fbf949760
from master
2013-08-28 07:12:38 -04:00
Krzysztof Jurewicz
544a190ebf
[1.6.x] Fixed #20981 -- Noted the default value of disable_existing_loggers.
...
Backport of 095643e691
from master
2013-08-27 10:27:44 -04:00
Jan Böcker
c4e2e4f630
[1.6.x] Fixed typo in docs/topics/conditional-view-processing.txt
...
Backport of 5fd2c979cb
from master
2013-08-27 09:22:31 -04:00
Matt Robenolt
28026c3e26
[1.6.x] Updated instructions for running contrib tests.
...
Backport of 08e7a64369
from master
2013-08-27 08:24:31 -04:00
Ramiro Morales
2a166623a6
[1.6.x] Typos introduced in 57c82f909b
.
2013-08-22 22:33:59 -03:00
Tim Graham
5f061986b9
[1.6.x] Fixed #20922 -- Allowed customizing the serializer used by contrib.sessions
...
Added settings.SESSION_SERIALIZER which is the import path of a serializer
to use for sessions.
Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews.
Backport of b0ce6fe656
from master
2013-08-22 17:55:01 -04:00
Kevin Christopher Henry
bf9382fb02
[1.6.x] Documentation -- Clarified use of 'view' in test client introduction.
...
Backport of 2e926b041c
from master
2013-08-22 09:39:14 -04:00
Marc Tamlyn
8d02c378ab
[1.6.x] Fixed #20944 -- Removed inaccurate statement about View.dispatch().
...
Backport of bac4d03ce6
from master
2013-08-22 09:21:28 -04:00
Ramiro Morales
26a4c83598
[1.6.x] Made description of LANGUAGE_CODE setting more clear.
...
297f5af222
from master.
2013-08-22 08:29:59 -03:00
Kevin Christopher Henry
69a4594cb7
[1.6.x] Documentation -- Corrected error about Model.full_clean()
...
Although the ModelForm validation code was changed to call
Model.full_clean(), the documentation still said otherwise. The
offending phrase was removed.
Backport of bb011cf809
from master
2013-08-21 17:46:18 -04:00
Kevin Christopher Henry
e7d4d41a30
[1.6.x] Documentation - Noted that OneToOneField doesn't respect unique.
...
Added OneToOneField to the list of model fields for which the unique
argument isn't valid. (OneToOneFields are inherently unique, and if
the user supplies a value for unique it is ignored / overwritten.)
2013-08-20 21:20:55 -07:00
Florian Apolloner
12d364a9b0
[1.6.x] Fixed #20933 -- Allowed loaddata to load fixtures from relative paths.
...
Backport of 6e846f7627
from master.
2013-08-20 21:28:14 +02:00
Tim Graham
7825fb8788
[1.6.x] Fixed #20891 -- Removed part of the tutorial that requires pytz
...
Thanks AtomicSpark for the report.
Backport of 55339a7669
from master
2013-08-15 15:31:57 -04:00
James Bennett
d2419bb2b8
[1.6.x] Added release date to 1.5 release notes.
...
Forwardport of 61283a8208
from 1.5.x
2013-08-15 07:41:53 -04:00
Alasdair Nicol
52741004f6
[1.6.x] Updated docs following deprecation of django.views.defaults.shortcut
...
Follows 3f2befc
Backport of 354009d67e
from master
2013-08-15 07:07:15 -04:00
Tim Graham
8bd5251fd5
[1.6.x] Added some doc links for django.contrib.messages
...
Backport of b6178fa24b
from master
2013-08-14 12:58:19 -04:00
Tim Graham
529afa7138
Added 1.4.6/1.5.2 release notes.
2013-08-13 11:17:07 -05:00
Tim Graham
4f470f5186
[1.6.x] Added missing release notes for older versions of Django
...
Backport of 3f6cc33cff
from master
2013-08-12 14:07:58 -04:00
Tim Graham
43f12f368b
[1.6.x] Fixed #20890 -- Added missing import in class-based view docs.
...
Thanks André Augusto.
Backport of ab680725bf
from master
2013-08-10 18:08:27 -04:00
Tim Graham
2cd1439c06
[1.6.x] Fixed #20868 -- Added an email to django-announce as a security step.
...
Thanks garrison for the report.
Backport of 5737c57d95
from master
2013-08-09 16:02:54 -04:00