summaryrefslogtreecommitdiff
path: root/django/core/serializers/python.py
AgeCommit message (Expand)Author
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-07-14Fixed #24716 -- Deprecated Field._get_val_from_obj()Thomas Stephenson
2015-07-02Fixed #25050 -- Allowed serialization of models with deferred fields.Grégoire ROCHER
2015-04-09Fixed #19820 -- Added more helpful error messages to Python deserializer.Richard Eames
2015-04-02Fixed #24558 -- Made dumpdata mapping ordering deterministic.Simon Charette
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
2015-02-13Fixed #24320 - Used field.value_to_string() in serialization of foreign key.Andriy Sokolovskiy
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2014-12-23Fixed #17946 -- Fixed deserialization of self-referencing M2M fieldsClaude Paroz
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-05-18Removed some unnecessary exception naming; thanks claudep.Tim Graham
2014-05-18Fixed #21799 - Modified loaddata --ignorenonexistent to ignore models.Esau Rodriguez
2014-01-26Took advantage of the new get_model API. Refs #21702.Aymeric Augustin
2013-12-30Stopped populating the app registry as a side effect.Aymeric Augustin
2013-12-28Changed get_model to raise an exception on errors.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Terminated AppCache._populate() with extreme prejudice.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Removed the _-prefix for populate().Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-11Fixed #13252 -- Added ability to serialize with natural primary keys.Tai Lee
2013-02-12Fixed #19746 -- Allow deserialization of pk-less dataNick Sandford
2013-02-05Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.Simon Charette
2012-09-30Fixed #9279 -- Added ignorenonexistent option to loaddataPreston Holmes
2012-08-08[py3] Fixed 'iterable but non string' detectionClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-26Fixed #5423 -- Made dumpdata output one row at a time.Claude Paroz
2012-03-12Fix #17879: Corrected regression in python (inherited by yaml and json) seria...Karen Tracey
2012-02-04Fixed #17602 -- Stopped the XML serializer from doing unneeded queries. Thank...Jannis Leidel
2010-12-21Reverting r14994 (at request of SmileyChris) because of some backwards compat...Russell Keith-Magee
2010-12-21Fixes #13252 -- Use the natural key instead of the primary key when serializingChris Beaven
2010-03-18Fixed #13030 -- Corrected natural key deserialization to subclasses. Thanks t...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-14Fixed #7052 -- Added support for natural keys in serialization.Russell Keith-Magee
2009-11-03Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee
2009-04-13Fixed #9522 -- Modified handling of values in base serializer so that field s...Russell Keith-Magee
2008-08-28Fixed #8651: correctly deserialize objects with 0 for pk/fk.Jacob Kaplan-Moss
2008-08-12Fixed #8134 -- Corrected serialization of m2m fields with intermediate models...Russell Keith-Magee
2007-12-17Fixed #6110 -- Mark the python format serializer as for internal use only. T...Malcolm Tredinnick
2007-09-15Fixed #4714 -- Modified serializers to handle None primary keys correctly. Th...Russell Keith-Magee
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-05-28Fixed a serialization problem with objects that have a foreign key on an obje...Russell Keith-Magee
2007-05-14Fixed #4288 -- Modified serializers to pay attention to the to_field attribut...Russell Keith-Magee
2007-03-13Added various fixes to serializer implementations. Fixes mostly deal with han...Russell Keith-Magee
2007-02-26Fixed #3390: the serializer can now contain forward references. Thanks, Russ.Jacob Kaplan-Moss