| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-01-29 | Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as ↵ | Hasan | |
| appropriate. | |||
| 2016-01-29 | Refs #26022 -- Used context manager version of assertRaises in tests. | Hasan | |
| 2015-12-03 | Fixed many spelling mistakes in code, comments, and docs. | Josh Soref | |
| 2015-10-27 | Fixed #25550 -- Deprecated direct assignment to the reverse side of a ↵ | Tim Graham | |
| related set. | |||
| 2015-09-27 | Fixed #25468 -- Made DjangoJSONEncoder lazy string aware | Claude Paroz | |
| Thanks Stavros Korokithakis for the report and Tim Graham for the review. | |||
| 2015-09-26 | Made tests/serializers/models.py a models package | Claude Paroz | |
| Thanks Tim Graham for the patch series review. | |||
| 2015-09-26 | Moved remaining of serializers_regress to serializers tests | Claude Paroz | |
| 2015-09-26 | Moved more serializers_regress to serializers tests | Claude Paroz | |
| 2015-09-26 | Separated natural key serialization tests | Claude Paroz | |
| 2015-09-26 | Separated JSON serialization tests | Claude Paroz | |
| 2015-09-26 | Separated XML serialization tests | Claude Paroz | |
| 2015-09-26 | Separated YAML serialization tests | Claude Paroz | |
| 2015-09-12 | Fixed #23395 -- Limited line lengths to 119 characters. | Dražen Odobašić | |
| 2015-07-27 | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | |
| ForeignKey/OneToOneField | |||
| 2015-07-24 | Fixed #22258 -- Added progress status for dumpdata when outputting to file | Claude Paroz | |
| Thanks Gwildor Sok for the report and Tim Graham for the review. | |||
| 2015-07-14 | Fixed #24716 -- Deprecated Field._get_val_from_obj() | Thomas Stephenson | |
| The method duplicates the functionality of Field.value_from_object() and has the additional downside of being a privately named public API method. | |||
| 2015-07-03 | Refs #25050 -- Corrected test assertion in serializers test. | Tim Graham | |
| 2015-07-02 | Fixed #25050 -- Allowed serialization of models with deferred fields. | Grégoire ROCHER | |
| 2015-06-19 | Fixed #20197 -- Made XML serializer fail loudly when outputting ↵ | Claude Paroz | |
| unserializable chars Thanks Tim Graham for the review. | |||
| 2015-06-10 | Fix for ticket 12685 | mick | |
| 2015-05-20 | Refs #24652 -- Used SimpleTestCase where appropriate. | Simon Charette | |
| 2015-04-09 | Fixed #19820 -- Added more helpful error messages to Python deserializer. | Richard Eames | |
| 2015-04-02 | Fixed #24558 -- Made dumpdata mapping ordering deterministic. | Simon Charette | |
| Thanks to gfairchild for the report and Claude for the review. | |||
| 2015-02-20 | Update converters to take a consistent set of parameters. | Marc Tamlyn | |
| As suggested by Anssi. This has the slightly strange side effect of passing the expression to Expression.convert_value has the expression passed back to it, but it allows more complex patterns of expressions. | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-08 | Fixed #24020 -- Refactored SQL compiler to use expressions | Anssi Kääriäinen | |
| Refactored compiler SELECT, GROUP BY and ORDER BY generation. While there, also refactored select_related() implementation (get_cached_row() and get_klass_info() are now gone!). Made get_db_converters() method work on expressions instead of internal_type. This allows the backend converters to target specific expressions if need be. Added query.context, this can be used to set per-query state. Also changed the signature of database converters. They now accept context as an argument. | |||
| 2014-09-24 | Removed numbering from the models.py header of some test packages. | Loic Bistuer | |
| This is a reliqua from the early days of the modeltests/regressiontests era. | |||
| 2014-09-03 | Fixed #18757, #14462, #21565 -- Reworked database-python type conversions | Marc Tamlyn | |
| Complete rework of translating data values from database Deprecation of SubfieldBase, removal of resolve_columns and convert_values in favour of a more general converter based approach and public API Field.from_db_value(). Now works seamlessly with aggregation, .values() and raw queries. Thanks to akaariai in particular for extensive advice and inspiration, also to shaib, manfre and timograham for their reviews. | |||
| 2014-06-11 | Fixed #22653 -- Added some database feature flags to tests. | Tim Graham | |
| Thanks Rahul Priyadarshi. | |||
| 2014-03-21 | Removed legacy transaction management per the deprecation timeline. | Aymeric Augustin | |
| 2013-12-23 | Imported override_settings from its new location. | Aymeric Augustin | |
| 2013-12-06 | Added missing deconstruct() methods. | Baptiste Mispelon | |
| 2013-11-02 | Fixing E302 Errors | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-26 | Fix all violators of E231 | Alex Gaynor | |
| 2013-10-21 | Removed some direct settings manipulations in tests; refs #21230. | Bouke Haarsma | |
| 2013-10-19 | Removed unused local variables in tests. | Tim Graham | |
| 2013-10-17 | Fixed #21285 -- Fixed E121,E122 pep8 warnings | Alasdair Nicol | |
| 2013-09-09 | Fixed #19885 -- cleaned up the django.test namespace | Kevin Christopher Henry | |
| * override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion. | |||
| 2013-09-06 | Fixed deprecation warning on Python 3 | Tim Graham | |
| 2013-09-06 | Cleanup commit after peer review. | Roberto Aguilar | |
| 2013-09-06 | Updated NoYamlSerializerTestCase to run with yaml. | Roberto Aguilar | |
| In order to verify the behavior of using the yaml serializer when yaml is on the system, fake the ImportError when the serializer is being registered. | |||
| 2013-09-06 | Added tests for missing pyyaml. | Roberto Aguilar | |
| This test makes sure an YAML import errors are communicated to the caller rather than stating the serializer does not exist. | |||
| 2013-09-03 | Fixed "indentation is not a multiple of four" pep8 issues. | Tim Graham | |
| 2013-09-01 | Change test added in 3e34005b1b to be more stable. | Ramiro Morales | |
| It could fail when actual serialization JSON field ordering was different from the hard-coded one. Refs #13182. | |||
| 2013-08-31 | Properly skipped yaml tests when not installed | Claude Paroz | |
| 2013-08-31 | Fixed #13182 -- Prevented trailing spaces in indented json output | Claude Paroz | |
| Thanks Stéphane Raimbault for the report and the initial patch. | |||
| 2013-07-29 | Removed most of absolute_import imports | Claude Paroz | |
| Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way. | |||
| 2013-07-01 | Stopped using django.utils.unittest in the test suite. | Aymeric Augustin | |
| Refs #20680. | |||
