2020-12-15 10:03:13 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-rapidjson: updated to 1.0
1.0
Require Python 3.6 or greater
New serialization options, iterable_mode and mapping_mode, to give some control \
on how generic iterables and mappings get encoded
Internal refactorings, folding "skipkeys" and "sort_keys" \
arguments into the mapping_mode options, respectively as MM_SKIP_NON_STRING_KEYS \
and MM_SORT_KEYS: "old" arguments kept for backward compatibility
Bump major version to 1, tag as "production/stable" and switch to a \
simpler X.Y versioning schema
|
2020-11-17 09:52:38 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-rapidjson: updated to 0.9.4
0.9.4:
* Fix memory leak loading an invalid JSON
|
2020-10-27 23:30:08 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-rapidjson: updated to 0.9.3
0.9.3:
* Fix access to ``Encoder`` instance attributes
0.9.2:
* Use `current master`__ version of rapidjson
* Enable GH Actions-based test workflow
* Produce Python 3.9 wheels, disable testing under Python < 3.6
* Make the character used for indentation in pretty mode a parameter
* Handle wider precision range in timestamps fractional seconds
* Add comparison benchmarks against orjson and hyperjson
|
2020-06-11 16:05:57 by Adam Ciarcinski | Files touched by this commit (4) |
Log message:
py-rapidjson: added version 0.9.1
RapidJSON is an extremely fast C++ JSON parser and serialization library: this
module wraps it into a Python 3 extension, exposing its
serialization/deserialization (to/from either bytes, str or file-like
instances) and JSON Schema validation capabilities.
|