James Bennett
ed9b7b6295
[1.6.x] Bump version number for 1.6 beta 3 security release.
1.6b3
2013-09-10 20:32:14 -05: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
Tim Graham
536cc64240
[1.6.x] Prevented arbitrary file inclusion with {% ssi %} tag and relative paths.
...
Thanks Rainer Koirikivi for the report and draft patch.
This is a security fix; disclosure to follow shortly.
Backport of 7fe5b656c9 from master
2013-09-10 21:03:51 -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
Садовский Николай
e4274e3da1
[1.6.x] Fixed #20707 -- Added explicit quota assignment to Oracle test user
...
To enable testing on Oracle 12c
2013-09-09 14:02:21 +03:00
Aymeric Augustin
b085e7c303
[1.6.x] Further hardening. Refs #18766 .
...
Backport of c687bf0 from master.
2013-09-08 20:43:33 +02:00
Aymeric Augustin
0035a0ce2e
[1.6.x] Hardened the test introduced in ded11aa6. Refs #18766 .
...
Inputs acceptable to time.mktime are platform-dependent.
Backport of 1a1e1478 from master.
2013-09-08 19:41:34 +02:00
Aymeric Augustin
7c31e195db
[1.6.x] Fixed #18766 -- Pointed to pytz when LocalTimezone fails.
...
Thanks void for the report.
Backport of ded11aa6 from master.
2013-09-08 09:17:03 +02: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
be9930d7be
[1.6.x] Fixed deprecation warning on Python 3
...
Backport of b7451b72 from master.
2013-09-07 13:15:13 -05:00
Aymeric Augustin
63b95ca452
[1.6.x] Fixed 9244447c -- incomplete backport.
...
The test client had been refactored in the mean time. This commit
de-factors the fix. Refs #20530 .
2013-09-07 13:15:13 -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
Aymeric Augustin
7fcd6aa669
[1.6.x] Fixed #20530 -- Properly decoded non-ASCII query strings on Python 3.
...
Thanks mitsuhiko for the report.
Backport of 65b6eff3 and adaptation of 8aaca65 from master.
2013-09-07 12:06:38 -05:00
Aymeric Augustin
9244447cc4
[1.6.x] Fixed an encoding issue in the test client.
...
Refs #20530 .
Backport of 7bb62793 and 476b0764 from master.
Conflicts:
django/test/client.py
2013-09-07 12:06:19 -05: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
Aymeric Augustin
fac5735a3d
[1.6.x] Fixed #20557 -- Properly decoded non-ASCII cookies on Python 3.
...
Thanks mitsuhiko for the report.
Non-ASCII values are supported. Non-ASCII keys still aren't, because the
current parser mangles them. That's another bug.
Simplified backport of 8aaca651 and f5add47 from master.
2013-09-07 10:45:24 -05:00
Aymeric Augustin
f855058c35
[1.6.x] Fixed #11811 -- Data-loss bug in queryset.update.
...
It's now forbidden to call queryset.update(field=instance) when instance
hasn't been saved to the database ie. instance.pk is None.
Conflicts:
tests/queries/tests.py
Backport of b4cd8169 from master.
2013-09-06 21:59:28 -05:00
Russell Keith-Magee
2a2ac5c140
Merge pull request #1566 from adamsc64/ticket_11857
...
Fixed #11857 -- Added missing 'closed' property on TemporaryFile class.
Backport of 926bc42 from trunk.
2013-09-06 19:44:25 -05:00
Tim Graham
6ba01f64c1
[1.6.x] Fixed Python 3 syntax error introduced in [c72392da]
...
Backport of 498014ccd5 from master
2013-09-06 20:08:56 -04:00
Russell Keith-Magee
3df9647ad9
[1.6.x] Merge pull request #1582 from rca/12756-missing-yaml-module-serializer-error-message
...
Fixed #12756 : Improved error message when yaml module is missing.
Backport of 4f5faa1916e7c8cb72cc9ebf1a1fd964ba6e707b from master.
2013-09-06 19:01:24 -05:00
Russell Keith-Magee
99952bab30
[1.6.x] Merge pull request #1580 from ianawilson/ticket_16502
...
Fixed #16502 -- Fixed a TemplateDoesNotExist error that should be an ImproperlyConfigured.
Assistance on the patch from #jambronrose.
Backport of 9b2dc12b8332389d1bfb9e83123a088a084a6a47 from master.
2013-09-06 17:39:16 -05:00
Russell Keith-Magee
b917458f47
Merge pull request #1579 from ianawilson/ticket_21058
...
[1.6.x] Fixed #21058 -- Fixed debug view blowing up when no template is provided to the template rendering functions.
Assistance on this commit from @jambonrose.
Backport of 122020fdb93980df850ae02f61d97da27e2cb515 from master.
2013-09-06 17:11:07 -05: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
Max Burstein
92e89452f1
[1.6.x] Fixed #21049 -- Fixed autoreload for Python 3
...
Changed th system module values check to return a list.
In Python 3 it returns a dict_view which could occassionally produce
a runtime error of "dictionary changed size during iteration".
Backport of 559cb826b8 from master
2013-09-06 17:32:08 -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
77cf0d6519
[1.6.x] Fixed #21041 -- Removed a duplicate form in tests.
...
Thanks tuxcanfly.
Backport of bab039d74c from master
2013-09-05 06:32:26 -04:00
Aymeric Augustin
a8624b22a7
[1.6.x] Tested exc_type instead of exc_value in __exit__.
...
exc_value might be None even though there's an exception, at least on
Python 2.6. Thanks Thomas Chaumeny for the report.
Fixed #21034 .
2013-09-04 16:18:47 -05:00
Aymeric Augustin
7c1efc2fa6
Updated six to version 1.4.1.
2013-09-04 15:23:24 -05: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
Carl Meyer
4420de89b6
[1.6.x] Fixed #21026 -- Corrected help for manage.py test command.
...
Backport of 8f7f8bf6884ada8622bc3696c7465c904164d314 from master.
2013-09-03 09:51:17 -06: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
2a14c08e71
Used six.moves.zip_longest, new in six 1.4.0.
2013-09-03 07:34:45 -05: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
Aymeric Augustin
50012577f3
[1.6.x] Updated the bundled version of six to 1.4.0.
...
Backport of 42920970 from master.
2013-09-03 07:34:44 -05:00
Claude Paroz
0514fbb2f3
[1.6.x] Fixed #21003 -- Ensured geometry widget return value has SRID
...
Thanks Mathieu Leplatre for the report and initial patch.
Backport of dd656073ad from master.
2013-09-03 13:55:20 +02:00
Claude Paroz
bd0319a261
[1.6.x] Isolated map creation JS code
...
Backport of 3550b27a8 from master.
2013-09-03 13:54:50 +02: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