- 15 Kas, 2014 15 kayıt (commit)
-
-
Claude Paroz yazdı
Thanks Reinout van Rees for the review.
-
Yigit Guler yazdı
-
Andrew Godwin yazdı
-
Erik Romijn yazdı
-
Marc Tamlyn yazdı
fixed #23834 -- added test and fix to check for default null on ArrayField
-
Yigit Guler yazdı
-
Daan Vielen yazdı
-
Tim Graham yazdı
This commit broke the tests on Python 3. This reverts commit 13d613f8.
-
Josh Smeaton yazdı
-
Andrew Godwin yazdı
Fixed #23827 -- TZ behavior in Storage API ref doc
-
Andrew Godwin yazdı
Use topological sort for migration operation dependency resolution
-
Klaas van Schelven yazdı
rather than an ad-hoc algorithm
-
James Aylett yazdı
This is derived from the current behaviour of FileSystemStorage. Note that since this was not previously documented, other implementations may not currently conform.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
- 14 Kas, 2014 1 kayıt (commit)
-
-
Michael Manfre yazdı
Fixed #16358 - Made memcache backend delete old value on a failure to set.
-
- 13 Kas, 2014 11 kayıt (commit)
-
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Adam DePue yazdı
The issue was fixed on master in e9103402 so this just forwardports the test and release notes from stable/1.7.x. Forwardport of 2d12a599 from stable/1.7.x
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Sean Wang yazdı
-
Michael Manfre yazdı
Default Memcached configuration allows for a maximum object of 1MB and will fail to set the key if it is too large. The key will be deleted from memcached if it fails to be set. This is needed to avoid an issue with cache_db session backend using the old value stored in memcached, instead of the newer value stored in the database.
-
- 12 Kas, 2014 9 kayıt (commit)
-
-
Baptiste Mispelon yazdı
Custom form fields having a `queryset` attribute but no `limit_choices_to` could no longer be used in ModelForms. Refs #2445. Thanks to artscoop for the report.
-
Tim Graham yazdı
-
Aymeric Augustin yazdı
__init__ isn't allowed to return anything other than None and it isn't common practice to include a return statement.
-
wrwrwr yazdı
Thanks Baptiste Mispelon for review.
-
Tim Graham yazdı
Usage of this method was removed pre 1.0 (c2ba59fc).
-
Tim Graham yazdı
This fix is necessary for Python 3.5 compatibility (refs #23763). Thanks Berker Peksag for review.
-
Anssi Kääriäinen yazdı
-
Jozef Knaperek yazdı
Made _do_update behave more strictly according to its docs, including a corner case when specific concurent updates are executed and select_on_save is set.
-
Anssi Kääriäinen yazdı
-
- 11 Kas, 2014 4 kayıt (commit)
-
-
Aymeric Augustin yazdı
`io.open` is required on Python 2.7. Just `open` would work on Python 3.
-
Aymeric Augustin yazdı
-
Claude Paroz yazdı
JavaScript string extraction support has been added in gettext 0.18.3. Thanks Aymeric Augustin for the review.
-
Aymeric Augustin yazdı
Added a test for the condition safe_join is designed to prevent. Previously, a generic ValueError was raised. It was impossible to tell an intentional exception raised to implement safe_join's contract from an unintentional exception caused by incorrect inputs or unexpected conditions. That resulted in bizarre exception catching patterns, which this patch removes. Since safe_join is a private API and since the change is unlikely to create security issues for users who use it anyway -- at worst, an uncaught SuspiciousFileOperation exception will bubble up -- it isn't documented.
-