From 093949f7be4f3e6fecf38a35b3a535955a8c6beb Mon Sep 17 00:00:00 2001 From: Seperman Date: Mon, 17 Oct 2022 17:56:15 -0700 Subject: [PATCH] changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c67bbc0..91a59b61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # DeepDiff Change log +- v6-2-1 + - Removed the print statements. +- v6-2-0 + - Major improvement in the diff report for lists when items are all hashable and the order of items is important. +- v6-1-0 + - DeepDiff.affected_paths can be used to get the list of all paths where a change, addition, or deletion was reported for. + - DeepDiff.affected_root_keys can be used to get the list of all paths where a change, addition, or deletion was reported for. + - Bugfix: ValueError when using Decimal 0.x #339 by [Enric Pou](https://github.com/epou) + - Serialization of UUID +- v6-0-0 + - [Exclude obj callback strict](https://github.com/seperman/deepdiff/pull/320/files) parameter is added to DeepDiff by Mikhail Khviyuzov [mskhviyu](https://github.com/mskhviyu). + - A fix for diffing using `iterable_compare_func` with nested objects by [dtorres-sf](https://github.com/dtorres-sf) who originally contributed this feature. - v5-7-0: - https://github.com/seperman/deepdiff/pull/284 Bug-Fix: TypeError in _get_numbers_distance() when ignore_order = True by @Dhanvantari - https://github.com/seperman/deepdiff/pull/280 Add support for UUIDs by @havardthom