14
0

Accepting request 946516 from home:bnavigator:branches:devel:languages:python:numeric

- Update to v1.5
  * Fix serialization bug when using DM_UNIX_TIME in a non-C locale
    context
- Release 1.1 - 1.4
  * wheel related
- Release 1.1
  * Reduce decoder memory consumption by uniquifiying keys in the
    loaded dictionaries
  * Implement an alternative way of transmogrify JSON objects,
    similar to json's object_pairs_hook load option (issue #154)
- Release 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 (fix issue #149 and issue #150)
  * 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
- Release 0.9.4
  * Fix memory leak loading an invalid JSON (issue #148)
- Release 0.9.3
  * Fix access to Encoder instance attributes (issue #147)
- Release 0.9.2
  * Use current master version of rapidjson
  * Enable GH Actions-based test workflow, thanks to Martin Thoma
    (PR #143)
  * Produce Python 3.9 wheels, disable testing under Python < 3.6

OBS-URL: https://build.opensuse.org/request/show/946516
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-rapidjson?expand=0&rev=15
This commit is contained in:
2022-01-14 22:21:30 +00:00
committed by Git OBS Bridge
parent 805d9c2770
commit 50922a9c65
4 changed files with 54 additions and 11 deletions

View File

@@ -1,3 +1,43 @@
-------------------------------------------------------------------
Thu Jan 13 23:07:04 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Update to v1.5
* Fix serialization bug when using DM_UNIX_TIME in a non-C locale
context
- Release 1.1 - 1.4
* wheel related
- Release 1.1
* Reduce decoder memory consumption by uniquifiying keys in the
loaded dictionaries
* Implement an alternative way of transmogrify JSON objects,
similar to json's object_pairs_hook load option (issue #154)
- Release 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 (fix issue #149 and issue #150)
* 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
- Release 0.9.4
* Fix memory leak loading an invalid JSON (issue #148)
- Release 0.9.3
* Fix access to Encoder instance attributes (issue #147)
- Release 0.9.2
* Use current master version of rapidjson
* Enable GH Actions-based test workflow, thanks to Martin Thoma
(PR #143)
* Produce Python 3.9 wheels, disable testing under Python < 3.6
* Make the character used for indentation in pretty mode a
parameter (issue #135)
* Handle wider precision range in timestamps fractional seconds
(PR 133), thanks to Karl Seguin
* Add comparison benchmarks against orjson and hyperjson (issue
#130 and PR #131, thanks to Sebastian Pipping)
-------------------------------------------------------------------
Tue Mar 10 10:08:12 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>