All Versions
102
Latest Version
Avg Release Cycle
58 days
Latest Release
49 days ago
Changelog History
Page 7
Changelog History
Page 7
-
v3.0.0 Changes
May 01, 2020โ Added
orjson.dumps()serializes subclasses ofstr,int,list, anddict.
๐ Changed
orjson.dumps()serializesdataclasses.dataclassanduuid.UUIDinstances by default. The optionsOPT_SERIALIZE_DATACLASSandOPT_SERIALIZE_UUIDcan still be specified but have no effect.
-
v2.6.8 Changes
April 30, 2020๐ Changed
- The source distribution vendors a forked dependency.
-
v2.6.7 Changes
April 30, 2020๐ Fixed
- ๐ Fix integer overflows in debug builds.
๐ Changed
- The source distribution sets the recommended RUSTFLAGS in
.cargo/config.
-
v2.6.6 Changes
April 24, 2020๐ Fixed
- Import
numpyonly on first use ofOPT_SERIALIZE_NUMPYto reduce interpreter start time when not used. - โฌ๏ธ Reduce build time by half.
- Import
-
v2.6.5 Changes
April 08, 2020๐ Fixed
- ๐ Fix deserialization raising
JSONDecodeErroron some valid negative floats with large exponents.
- ๐ Fix deserialization raising
-
v2.6.4 Changes
April 08, 2020๐ Changed
- ๐ Improve deserialization performance of floats by about 40%.
-
v2.6.3 Changes
April 01, 2020๐ Changed
- Serialize
enum.Enumobjects. - ๐ Minor performance improvements.
- Serialize
-
v2.6.2 Changes
March 27, 2020๐ Changed
- ๐ง Publish python3.9
manylinux2014wheel instead ofmanylinux1forx86_64. - ๐ง Publish python3.9
manylinux2014wheel foraarch64.
๐ Fixed
- ๐ Fix compilation failure on 32-bit.
- ๐ง Publish python3.9
-
v2.6.1 Changes
March 19, 2020๐ Changed
- Serialization is 10-20% faster and uses about 50% less memory by writing
directly to the returned
bytesobject.
- Serialization is 10-20% faster and uses about 50% less memory by writing
directly to the returned
-
v2.6.0 Changes
March 10, 2020โ Added
- ๐จ
orjson.dumps()pretty prints with an indentation of two spaces ifoption=orjson.OPT_INDENT_2is specified.
- ๐จ