index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
migrations
/
serializer.py
Age
Commit message (
Expand
)
Author
2020-06-24
Fixed #31529 -- Added support for serialization of pathlib.Path/PurePath and ...
Nick Pope
2019-11-25
Fixed #27914 -- Fixed serialization of nested classes in migrations.
John Bowen
2019-10-03
Refs #27914 -- Fixed serialization of nested enum.Enum classes in migrations.
Hasan Ramezani
2019-09-30
Fixed #30774 -- Made serialization in migrations use members names for Enums.
Hasan Ramezani
2019-09-04
Fixed #27910 -- Added enumeration helpers for use in Field.choices.
Shai Berger
2019-04-14
Fixed #30350 -- Prevented recreation of migration for operations with a range...
Florian Apolloner
2019-02-06
Fixed #30159 -- Removed unneeded use of OrderedDict.
Nick Pope
2019-01-11
Refs #29738 -- Allowed registering serializers with MigrationWriter.
can
2019-01-11
Moved django.db.migrations.writer.SettingsReference to django.conf.
Tim Graham
2018-10-11
Fixed #29814 -- Added support for NoneType serialization in migrations.
Patrik Sletmo
2018-07-27
Fixed #29595 -- Allowed using timedelta in migrations questioner.
Tim Graham
2018-06-28
Fixed #29514 -- Reverted "Used datetime.timezone.utc instead of pytz.utc for ...
Tim Graham
2018-03-20
Used datetime.timezone.utc instead of pytz.utc for better performance.
Sergey Fedoseev
2018-02-05
Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation wa...
Raymond Hettinger
2017-12-11
Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.
Nick Pope
2017-12-06
Fixed #28870 -- Added support for functools.partialmethod serialization in mi...
Sergey Fedoseev
2017-11-13
Used BaseSimpleSerializer for serializing str and bytes in migrations.
Sergey Fedoseev
2017-05-18
Fixed #28152 -- Made migrations serialize sets as set literals rather than se...
Jon Dufresne
2017-04-27
Refs #27795 -- Replaced many force_text() with str()
Claude Paroz
2017-01-25
Refs #23919 -- Removed misc Python 2/3 references.
Tim Graham
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-21
Refs #23919 -- Removed misc references to Python 2.
Tim Graham
2017-01-21
Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).
Mariusz Felisiak
2017-01-19
Refs #23919 -- Removed enum ImportError handling for Python 2.
Tim Graham
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed six.PY2/PY3 usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2016-11-06
Fixed #27378 -- Added support for serialization of uuid.UUID in migrations.
Maxime Lorant
2016-08-30
Fixed #27081 -- Allowed migrations to serialize methods on pypy.
Tim Graham
2016-05-04
Fixed #26555 -- Gave deconstructible objects a higher priority during seriali...
Markus Holtermann
2016-02-25
Fixed #26151 -- Refactored MigrationWriter.serialize()
Yoong Kang Lim