summaryrefslogtreecommitdiff
path: root/django/core/serializers/xml_serializer.py
AgeCommit message (Expand)Author
2026-04-19Added support for nested fields to XML deserializer.Tim Graham
2026-04-06Fixed #37023 -- Made XML serializer put each ManyToManyField object on its ow...Tim Graham
2026-04-06Refs #37023 -- Removed hardcoded indent levels from XML serializer.Tim Graham
2026-02-26Fixed #36750 -- Made ordering of M2M objects deterministic in serializers.VIZZARD-X
2026-01-12Refs #36769 -- Raised SuspiciousOperation for unexpected nested tags in XML D...Jacob Walls
2026-01-12Refs #36769 -- Avoided visiting grandchild nodes in XML Deserializer.Jacob Walls
2025-12-22Fixed #36786 -- Fixed XML serialization of None values in natural keys.Youngkwang Yang
2025-12-11Fixed #36769 -- Avoided visiting deeply nested nodes in XML deserializer.Pravin Kamble
2025-12-03Fixed #35729 -- Enabled natural key serialization opt-out for subclasses.rimi0108
2025-12-02Fixed CVE-2025-64460 -- Corrected quadratic inner text accumulation in XML se...Shai Berger
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-01-08Fixed #36062 -- Handled serialization of CompositePrimaryKeys.Sarah Boyce
2024-12-18Fixed #35996 -- Fixed database serialization crash when serializing a many-to...Erica Pisani
2024-02-20Fixed #35236 -- Used Field.attname/column attributes instead of get_attname()...Adam Johnson
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2023-08-19Fixed #34779 -- Avoided unnecessary selection of non-nullable m2m fields with...Juan Alvarez
2023-06-04Fixed #34620 -- Fixed serialization crash on m2m fields without natural keys ...Mariusz Felisiak
2022-09-05Fixed #33937 -- Optimized serialization of related m2m fields without natural...Mark Evans
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2020-06-17Fixed #30583 -- Fixed handling JSONFields in XML serializer.Hasan Ramezani
2020-05-25Fixed #29078 -- Made serializers respect prefetch_related() for m2m fields.Claude Paroz
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-07-13Fixed #26291 -- Allowed loaddata to handle forward references in natural_key ...Peter Inglesby
2017-12-07Refs #23919 -- Replaced super() calls for old-style classes.Nick Pope
2017-06-20Fixed #28324 -- Made feedgenerators write feeds with deterministically ordere...Georg Sauthoff
2017-06-05Replaced Model._get_pk_val() with pk property.Tim Graham
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
2016-04-29Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen
2016-01-25Fixed #26125 -- Fixed E731 flake warnings.userimack
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-07-02Fixed #25050 -- Allowed serialization of models with deferred fields.Grégoire ROCHER
2015-06-19Fixed #20197 -- Made XML serializer fail loudly when outputting unserializabl...Claude Paroz
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
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-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2014-11-03Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos
2014-01-26Took advantage of the new get_model API. Refs #21702.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-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin