- 10 Ara, 2015 4 kayıt (commit)
-
-
Derek J. Curtis yazdı
-
Tim Graham yazdı
-
Damien yazdı
-
Shai Berger yazdı
The test creates and deletes a model in the same migration, and the model had an AutoField. On Oracle, AutoField's are set up using deferred SQL, which in this case was trying to modify a table after it had dbeen removed.
-
- 09 Ara, 2015 4 kayıt (commit)
-
-
Tim Graham yazdı
Referencing URLs by dotted path is a stronger convention than importing the URLs.
-
Amos Onn yazdı
-
Tim Graham yazdı
-
Andrew Plummer yazdı
-
- 08 Ara, 2015 9 kayıt (commit)
-
-
bphillips yazdı
Fixed #25672 -- Clarified why related ManyToManyFields with a custom intermediate model disable the remove() method.
-
Claude Paroz yazdı
Due to randomness of garbage collection with geometry objects, it's easier to simply ignore AttributeError/TypeError generally raised when parts of objects are already garbage-collected. Thanks Sergey Fedoseev and Tim Graham for reviewing the patch.
-
Gavin Wahl yazdı
-
Raphael Michel yazdı
URLValidator now validates the maximum length of a hostname and the maximum length of all labels inside the hostname.
-
Nik Nyby yazdı
-
Tim Graham yazdı
Thanks Justin Abrahms for the report.
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Sergey Fedoseev yazdı
-
- 07 Ara, 2015 5 kayıt (commit)
-
-
Qile Wang yazdı
-
Tim Graham yazdı
Thanks Jonas Haag for report and review.
-
Simon Charette yazdı
Thanks to Jean Gourds for the report, Tim and Claude for the review.
-
Tim Graham yazdı
-
Tim Graham yazdı
-
- 05 Ara, 2015 4 kayıt (commit)
-
-
Attila Tovt yazdı
-
Tim Graham yazdı
-
Thomas Grainger yazdı
This allows setting a Content-Security-Policy HTTP header (refs #15727). Special thanks to blighj, the original author of this patch.
-
Florian Apolloner yazdı
-
- 04 Ara, 2015 8 kayıt (commit)
-
-
Tim Graham yazdı
-
Sergey Fedoseev yazdı
-
Emre Yilmaz yazdı
This also fixes a possible data eviction race condition between setting and getting a key. Another thread could remove the key before get_and_set() accesses it again. In this case, now the default value will be returned instead of None.
-
Sergey Fedoseev yazdı
-
Alexander Sosnovskiy yazdı
-
Daniel Wiesmann yazdı
Some versions of GDAL give slightly different results.
-
bphillips yazdı
This is useful for certain language translations.
-
Sergey Fedoseev yazdı
-
- 03 Ara, 2015 6 kayıt (commit)
-
-
Claude Paroz yazdı
This skips some tests on systems with GEOS < 3.3 (the minimum supported version).
-
Raphaël Hertzog yazdı
When Django reraises an exception, it sets the __cause__ attribute even in Python 2, mimicking Python's 3 behavior for "raise Foo from Bar". However, Python 3 also ensures that all exceptions have a __traceback__ attribute and thus the "traceback2" Python 2 module (backport of Python 3's "traceback" module) relies on the fact that whenever you have a __cause__ attribute, the recorded exception also has a __traceback__ attribute. This is breaking testtools which is using traceback2 (see https://github.com/testing-cabal/testtools/issues/162). This commit fixes this inconsistency by ensuring that Django sets the __traceback__ attribute on any exception stored in a __cause__ attribute of a reraised exception.
-
Jaap Roes yazdı
-
Sergey Fedoseev yazdı
Complements 7127eb28.
-
Qile Wang yazdı
-
Josh Soref yazdı
-