summaryrefslogtreecommitdiff
path: root/django/core/serializers
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-2/+1
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-1/+1
* Refs #29708 -- Removed PickleSerializer per deprecation timeline.Mariusz Felisiak2023-01-171-24/+0
* Fixed #33937 -- Optimized serialization of related m2m fields without natural...Mark Evans2022-09-052-2/+14
* Fixed #33582 -- Fixed deserializing natural keys with foreing key dependencie...François Granade2022-03-181-1/+3
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-077-146/+305
* Fixed #29708 -- Deprecated PickleSerializer.Adam Johnson2022-01-131-0/+7
* Refs #33012 -- Moved PickleSerializer to django.core.serializers.base and add...Daniyal Abbasi2021-09-021-0/+16
* Fixed #32420 -- Fixed detecting primary key values in deserialization when PK...Mikolaj Rybinski2021-02-051-1/+1
* Bumped minimum isort version to 5.1.0.David Smith2020-07-301-3/+2
* Fixed #30583 -- Fixed handling JSONFields in XML serializer.Hasan Ramezani2020-06-171-2/+10
* Refs #30190 -- Minor edits to JSONL serializer.Mariusz Felisiak2020-06-171-1/+1
* Fixed #30190 -- Added JSONL serializer.Ali Vakilzade2020-06-162-0/+58
* Fixed #29078 -- Made serializers respect prefetch_related() for m2m fields.Claude Paroz2020-05-252-4/+10
* Fixed #29249 -- Made JSON and YAML serializers use Unicode by default.Hasan Ramezani2020-04-282-0/+2
* Fixed #31051 -- Allowed dumpdata to handle circular references in natural keys.Matthijs Kooijman2020-04-071-7/+17
* Used model's Options.label/label_lower where applicable.Mariusz Felisiak2020-01-291-1/+1
* Fixed #26743 -- Fixed UnboundLocalError crash when deserializing m2m fields a...Baptiste Mispelon2019-12-131-1/+5
* Fixed #28725 -- Prevented serializing inherited ManyToManyFields in child model.Nadège Michel2019-06-271-1/+1
* Fixed typos in docs, comments, and exception messages.Ville Skyttä2019-04-181-3/+3
* Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope2019-02-062-3/+5
* Fixed #28385 -- Fixed deserializing natural keys when primary key has a defau...dmytryi.striletskyi2018-11-271-6/+9
* Refs #29784 -- Switched to https:// links where available.Jon Dufresne2018-09-262-2/+2
* Fixed typos in comments and docs.luz.paz2018-08-011-1/+1
* Fixed #26291 -- Allowed loaddata to handle forward references in natural_key ...Peter Inglesby2018-07-133-15/+91
* Extracted deserialize fk/m2m functions from Deserializer.Peter Inglesby2018-03-202-40/+55
* Fixed #24607 -- Serialized natural keys in multi-table inheritance models.Denys Duchier2018-02-121-1/+9
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-2/+1
* Simplified an iterator in core.serializers.sort_dependencies().Sergey Fedoseev2018-01-031-1/+1
* Fixed #28984 -- Made assorted code simplifications.Tim Graham2018-01-031-5/+1
* 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 -- Removed force_text() usage in serialization frameworkClaude Paroz2017-06-051-14/+12
* Refs #16850 -- Removed obsolete simplejson support in JSON serializer.Tim Graham2017-05-201-3/+0
* Refs #23919 -- Removed force_text() in Python deserializer needed only on Pyt...Claude Paroz2017-04-271-6/+0
* Refs #27795 -- Replaced many force_text() with str()Claude Paroz2017-04-271-8/+7
* Refs #23919 -- Used yield from.Vytis Banaitis2017-02-232-4/+2
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-215-42/+23
* Fixed #27742 -- Reverted "Fixed #24607 -- Serialized natural keys in multi-ta...Tim Graham2017-02-111-7/+1
* Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham2017-02-092-2/+2
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-013-19/+16
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-253-8/+8
* Refs #23919 -- Replaced six.reraise by raiseClaude Paroz2017-01-222-12/+6
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-192-5/+5
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-183-8/+7
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-184-10/+6
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-183-7/+0
* Fixed #27546 -- Removed hardcoded class names in __repr__() methods.Keda872016-12-011-2/+5
* Fixed E305 flake8 warnings.Ramin Farajpour Cami2016-11-141-0/+1