index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
core
/
serializers
/
json.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Refs #34233 -- Used str.removeprefix()/removesuffix().
Mariusz Felisiak
2023-01-18
1
-1
/
+1
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-11
/
+12
*
Fixed #29249 -- Made JSON and YAML serializers use Unicode by default.
Hasan Ramezani
2020-04-28
1
-0
/
+1
*
Refs #16850 -- Removed obsolete simplejson support in JSON serializer.
Tim Graham
2017-05-20
1
-3
/
+0
*
Refs #23919 -- Used yield from.
Vytis Banaitis
2017-02-23
1
-2
/
+1
*
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
Anton Samarchyan
2017-02-21
1
-7
/
+4
*
Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().
Tim Graham
2017-02-09
1
-1
/
+1
*
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
1
-2
/
+2
*
Refs #23919 -- Replaced six.reraise by raise
Claude Paroz
2017-01-22
1
-6
/
+3
*
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-18
1
-6
/
+2
*
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2017-01-18
1
-3
/
+0
*
Removed DateTimeAwareJSONEncoder alias.
Tim Graham
2016-08-19
1
-3
/
+0
*
Fixed #26656 -- Added duration (timedelta) support to DjangoJSONEncoder.
Will Hardy
2016-07-14
1
-0
/
+3
*
Fixed #15091 -- Allowed passing custom encoder to JSON serializer.
Berker Peksag
2016-06-28
1
-2
/
+2
*
Fixed #25468 -- Made DjangoJSONEncoder lazy string aware
Claude Paroz
2015-09-27
1
-0
/
+3
*
Reordered import in JSON serializer
Claude Paroz
2015-06-24
1
-1
/
+1
*
Fixed #25019 -- Added UUID support in DjangoJSONEncoder
Lukas Hetzenecker
2015-06-24
1
-1
/
+4
*
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-06
1
-4
/
+4
*
Added a new GeoJSON serialization format for GeoDjango
Claude Paroz
2014-11-15
1
-1
/
+4
*
More attacking E302 violators
Alex Gaynor
2013-11-02
1
-0
/
+1
*
Whitespace cleanup.
Tim Graham
2013-10-10
1
-1
/
+0
*
Fixed #13182 -- Prevented trailing spaces in indented json output
Claude Paroz
2013-08-31
1
-0
/
+3
*
Removed most of absolute_import imports
Claude Paroz
2013-07-29
1
-0
/
+1
*
Fixed #18003 -- Preserved tracebacks when re-raising errors.
konarkmodi
2013-03-19
1
-1
/
+2
*
Replaced many smart_bytes by force_bytes
Claude Paroz
2012-08-29
1
-1
/
+0
*
[py3] Fixed JSON deserialization
Claude Paroz
2012-08-11
1
-4
/
+3
*
[py3] Ported django.utils.encoding.
Aymeric Augustin
2012-08-07
1
-1
/
+1
*
[py3] Replaced basestring by six.string_types.
Aymeric Augustin
2012-07-22
1
-1
/
+2
*
Fixed #15197 -- Fixed yaml serialization into HttpResponse
Claude Paroz
2012-06-28
1
-3
/
+2
*
Favored text (StringIO) over binary content for deserialization
Claude Paroz
2012-06-15
1
-7
/
+6
*
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-06-07
1
-1
/
+4
*
Fixed #5423 -- Made dumpdata output one row at a time.
Claude Paroz
2012-05-26
1
-2
/
+27
*
Replaced cStringIO.StringIO by io.BytesIO.
Claude Paroz
2012-05-05
1
-2
/
+2
*
Fixed #18013 -- Use the new 'as' syntax for exceptions.
Claude Paroz
2012-04-29
1
-1
/
+1
*
Fixed #18023 -- Removed bundled simplejson.
Aymeric Augustin
2012-04-29
1
-5
/
+8
*
Fixed the exception handling when deserializing via generators on Python 2.5 ...
Jannis Leidel
2012-02-10
1
-0
/
+2
*
Fixed #11970 -- Wrapped the exception happening during deserialization in Des...
Jannis Leidel
2012-02-09
1
-2
/
+9
*
Tweaked changes from r17228 to cater for older simplejson versions.
Ramiro Morales
2011-12-17
1
-1
/
+3
*
Fixed #16850 -- Made sure we always represent Decimal instances with JS strin...
Ramiro Morales
2011-12-17
1
-0
/
+1
*
Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.
Aymeric Augustin
2011-11-18
1
-10
/
+15
*
Fixed #14888 -- Removing duplicated code in serialisers. Thanks to eric.fortin.
Andrew Godwin
2011-01-08
1
-3
/
+0
*
Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....
Russell Keith-Magee
2010-05-04
1
-5
/
+1
*
Fixed #1142 -- Added multiple database support.
Russell Keith-Magee
2009-12-22
1
-1
/
+1
*
Fixed #7052 -- Added support for natural keys in serialization.
Russell Keith-Magee
2009-12-14
1
-0
/
+1
*
Fixed #7990 -- Modified serializers to use StringIO, rather than cStringIO, d...
Russell Keith-Magee
2008-07-30
1
-5
/
+4
*
Fixed #1443 -- Django's various bits now support dates before 1900. Thanks to...
Adrian Holovaty
2008-07-18
1
-3
/
+6
*
Fixed #6481 -- Fixed a bunch of import problems (and some whitespace cleanups).
Malcolm Tredinnick
2008-02-19
1
-1
/
+0
*
Fixed #6110 -- Mark the python format serializer as for internal use only. T...
Malcolm Tredinnick
2007-12-17
1
-0
/
+2
*
Fixed #3466 -- Fixed problem with specifyin a 'fields' argument to a JSON ser...
Russell Keith-Magee
2007-06-01
1
-0
/
+2
*
Removed some cruft left over from fixing problems in the move to DecimalField
Malcolm Tredinnick
2007-05-21
1
-23
/
+0
[next]