15
0

Accepting request 882652 from home:bnavigator:branches:devel:languages:python

- Update to 5.2.3
  * Retaining the order of multiple dictionary items added via
    Delta.
  * Fixed the typo with yml files in deep cli.
  * Fixing Grep RecursionError where using non UTF-8 character.
  * Allowing kwargs to be passed to to_json method.
- Release 5.2.2
  * Fixed Delta serialization when None type is present.
- Release 5.2.0
  * Removed Murmur3 as the preferred hashing method. Using SHA256 by
    default now.
  * Added commandline for deepdiff.
  * Added group_by.
  * Added math_epsilon.
  * Improved ignoring of NoneType.
- Release 5.0.2
  * Bug Fix NoneType in ignore type groups
    https://github.com/seperman/deepdiff/issues/207
- Release 5.0.1
  * Bug fix to not apply format to non numbers.
- Release 5.0.0
  * Introducing the Delta object
  * Improving Numpy support
  * Fixing tuples comparison when ignore_order=True
  * Dramatically improving the results when ignore_order=True by
    running in passes
  * Introducing pretty print view, deep_distance, purge,
    progress logging, cache and truncate_datetime.
  * Adds support for datetime.time
- Skip python36 build because the test suite makes extensive use of

OBS-URL: https://build.opensuse.org/request/show/882652
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-deepdiff?expand=0&rev=11
This commit is contained in:
2021-04-03 09:58:21 +00:00
committed by Git OBS Bridge
parent 8bcf9916d0
commit 425450fc6f
4 changed files with 75 additions and 14 deletions

View File

@@ -1,3 +1,38 @@
-------------------------------------------------------------------
Thu Apr 1 21:00:21 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Update to 5.2.3
* Retaining the order of multiple dictionary items added via
Delta.
* Fixed the typo with yml files in deep cli.
* Fixing Grep RecursionError where using non UTF-8 character.
* Allowing kwargs to be passed to to_json method.
- Release 5.2.2
* Fixed Delta serialization when None type is present.
- Release 5.2.0
* Removed Murmur3 as the preferred hashing method. Using SHA256 by
default now.
* Added commandline for deepdiff.
* Added group_by.
* Added math_epsilon.
* Improved ignoring of NoneType.
- Release 5.0.2
* Bug Fix NoneType in ignore type groups
https://github.com/seperman/deepdiff/issues/207
- Release 5.0.1
* Bug fix to not apply format to non numbers.
- Release 5.0.0
* Introducing the Delta object
* Improving Numpy support
* Fixing tuples comparison when ignore_order=True
* Dramatically improving the results when ignore_order=True by
running in passes
* Introducing pretty print view, deep_distance, purge,
progress logging, cache and truncate_datetime.
* Adds support for datetime.time
- Skip python36 build because the test suite makes extensive use of
NumPy.
-------------------------------------------------------------------
Thu Apr 2 10:36:40 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>