summaryrefslogtreecommitdiff
path: root/django/core/serializers/xml_serializer.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #33937 -- Optimized serialization of related m2m fields without natural...Mark Evans2022-09-051-1/+7
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-57/+113
* Fixed #30583 -- Fixed handling JSONFields in XML serializer.Hasan Ramezani2020-06-171-2/+10
* Fixed #29078 -- Made serializers respect prefetch_related() for m2m fields.Claude Paroz2020-05-251-1/+5
* Refs #29784 -- Switched to https:// links where available.Jon Dufresne2018-09-261-1/+1
* Fixed #26291 -- Allowed loaddata to handle forward references in natural_key ...Peter Inglesby2018-07-131-5/+41
* Refs #23919 -- Replaced super() calls for old-style classes.Nick Pope2017-12-071-1/+1
* Fixed #28324 -- Made feedgenerators write feeds with deterministically ordere...Georg Sauthoff2017-06-201-11/+10
* Replaced Model._get_pk_val() with pk property.Tim Graham2017-06-051-3/+3
* Refs #27795 -- Replaced many force_text() with str()Claude Paroz2017-04-271-8/+7
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-24/+14
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-011-3/+3
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-4/+4
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Replaced smart_* by force_* calls whenever possibleClaude Paroz2016-09-031-8/+8
* Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen2016-04-291-2/+1
* Fixed #26125 -- Fixed E731 flake warnings.userimack2016-01-251-1/+2
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-8/+11
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
* Fixed #25050 -- Allowed serialization of models with deferred fields.Grégoire ROCHER2015-07-021-1/+2
* Fixed #20197 -- Made XML serializer fail loudly when outputting unserializabl...Claude Paroz2015-06-191-2/+8
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-131-2/+2
* Fixed #24558 -- Made dumpdata mapping ordering deterministic.Simon Charette2015-04-021-10/+11
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-17/+17
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-5/+6
* Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon2015-01-061-2/+2
* Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-031-1/+1
* Took advantage of the new get_model API. Refs #21702.Aymeric Augustin2014-01-261-2/+1
* Changed get_model to raise an exception on errors.Aymeric Augustin2013-12-281-3/+1
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-2/+2
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
* Moved the new app cache inside core.Aymeric Augustin2013-12-171-1/+1
* Removed module-level functions for the app cache.Aymeric Augustin2013-12-171-1/+2
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+2
* Fixed all the E203 violationsAlex Gaynor2013-10-261-7/+7
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-4/+4
* Fixed #21267 -- Fixed E502 pep8 warningsAlasdair Nicol2013-10-181-2/+2
* Fixed #13252 -- Added ability to serialize with natural primary keys.Tai Lee2013-10-111-18/+14
* Fixed "indentation is not a multiple of four" pep8 issues.Tim Graham2013-09-031-1/+1
* Fixed #19998 -- Fixed --ignorenonexistent support for XML based fixtures.Christoph Sieghart2013-03-301-1/+5
* Restrict the XML deserializer to prevent network and entity-expansion DoS att...Carl Meyer2013-02-191-1/+94
* Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin2012-11-031-2/+0
* [py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin2012-08-091-1/+3
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-9/+9
* Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz2012-06-071-1/+3
* Fixed #17602 -- Stopped the XML serializer from doing unneeded queries. Thank...Jannis Leidel2012-02-041-10/+5
* Reverting r14994 (at request of SmileyChris) because of some backwards compat...Russell Keith-Magee2010-12-211-13/+18
* Fixes #13252 -- Use the natural key instead of the primary key when serializingChris Beaven2010-12-211-18/+13
* Fixed #11486 -- Corrected the XML serializer to allow for the serialization o...Russell Keith-Magee2010-09-191-9/+16
* Fixed #13030 -- Corrected natural key deserialization to subclasses. Thanks t...Russell Keith-Magee2010-03-181-0/+4