- 17 Ock, 2017 16 kayıt (commit)
-
-
Tim Graham yazdı
Per deprecation timeline.
-
Tim Graham yazdı
-
Tim Graham yazdı
Per deprecation timeline.
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
Per deprecation timeline.
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Ed Morley yazdı
-
Ed Morley yazdı
-
Tim Graham yazdı
-
Markus Holtermann yazdı
-
Markus Holtermann yazdı
-
Mariusz Felisiak yazdı
-
- 16 Ock, 2017 8 kayıt (commit)
-
-
Mads Jensen yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Josh Smeaton yazdı
Thanks Travis Newport for the tests and Josh Smeaton for contributing to the patch.
-
Tim Graham yazdı
-
Mads Jensen yazdı
-
François Freitag yazdı
-
Dmitry Dygalo yazdı
-
- 15 Ock, 2017 2 kayıt (commit)
-
-
Mads Jensen yazdı
-
Mads Jensen yazdı
Thanks Tim Graham and Markus Holtermann for review.
-
- 14 Ock, 2017 8 kayıt (commit)
-
-
Matthew Schinckel yazdı
Thanks Josh Smeaton for Oracle fixes.
-
Florian Apolloner yazdı
Thanks Mariusz Felisiak for review and Oracle assistance. Thanks Tim Graham for review and writing docs.
-
Claude Paroz yazdı
-
François Freitag yazdı
When an error occurred during the cursor.execute statement, the cursor is closed. This operation did not fail with client-side cursors. Now, with server-side cursors, the close operation might fail (example below). The original error should be raised, not the one raised by cursor.close(), this is only clean-up code. For example, one can attempt to create a named cursor for an invalid query. psycopg will raise an error about the invalid query and the server-side cursor will not be created on PostgreSQL. When the code attempts to cursor.close(), it asks psycopg to close a cursor that was not created. pyscopg raises a new error: psycopg2.OperationalError: cursor "_django_curs_140365867840512_20" does not exist.
-
Simon Charette yazdı
This prevents the base_field from sharing attributes with the one used during migrations.
-
Jinank Jain yazdı
-
Josh Smeaton yazdı
-
Josh Smeaton yazdı
This particular test was sometimes failing when running the test suite in parallel. The `id` was different depending on the order the tests were run. The test was incorrectly comparing model primary keys rather than ensuring they didn't change.
-
- 13 Ock, 2017 6 kayıt (commit)
-
-
Simon Charette yazdı
Thanks Peter Inglesby for the report and tests.
-
Romain Garrigues yazdı
Thanks Florian Apolloner for contributing to this patch and Collin Anderson, Markus Holtermann, and Tim Graham for review.
-
Simon Charette yazdı
TestCase subclasses are wrapped in a transaction that prevents any data from being persisted between test runs andi thus don't require limiting the tables to be flushed to a subset of available apps like TransactionTestCase subclasses do.
-
Simon Charette yazdı
-
Simon Charette yazdı
The initial implementation added support for PostgreSQL but it is also required on Oracle (13b7f299). Thanks Mariusz Felisiak for the foreign key retreival queries.
-
Mariusz Felisiak yazdı
Regression in b52c7300.
-