Skip to content

Commit 4c337cf

Browse files
committed
updating authors
1 parent 71cde51 commit 4c337cf

8 files changed

+83
-1
lines changed

AUTHORS.md

+2
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,5 @@ Authors in order of the timeline of their contributions:
5959
- [martin-kokos](https://github.com/martin-kokos) for using tomli and tomli-w for dealing with tomli files.
6060
- [Alex Sauer-Budge](https://github.com/amsb) for the bugfix for `datetime.date`.
6161
- [William Jamieson](https://github.com/WilliamJamieson) for [NumPy 2.0 compatibility](https://github.com/seperman/deepdiff/pull/422)
62+
- [Leo Sin](https://github.com/leoslf) for Supporting Python 3.12 in the build process
63+
- [sf-tcalhoun](https://github.com/sf-tcalhoun) for fixing "Instantiating a Delta with a flat_dict_list unexpectedly mutates the flat_dict_list"

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# DeepDiff Change log
22

3+
- v7-0-0
4+
- When verbose=2, return `new_path` when the `path` and `new_path` are different (for example when ignore_order=True and the index of items have changed).
5+
- Dropping support for Python 3.7
6+
- Introducing serialize to flat rows for delta objects.
7+
- fixes the issue with hashing `datetime.date` objects where it treated them as numbers instead of dates (fixes #445).
8+
- upgrading orjson to the latest version
9+
- Fix for bug when diffing two lists with ignore_order and providing compare_func
10+
- Fixes "Wrong diff on list of strings" #438
11+
- Supporting Python 3.12 in the build process by [Leo Sin](https://github.com/leoslf)
12+
- Fixes "Instantiating a Delta with a flat_dict_list unexpectedly mutates the flat_dict_list" #457 by [sf-tcalhoun](https://github.com/sf-tcalhoun)
13+
- Fixes "Error on Delta With None Key and Removed Item from List" #441
14+
- Fixes "Error when comparing two nested dicts with 2 added fields" #450
15+
- Fixes "Error when subtracting Delta from a dictionary" #443
316
- v6-7-1
417
- Support for subtracting delta objects when iterable_compare_func is used.
518
- Better handling of force adding a delta to an object.

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ Tested on Python 3.8+ and PyPy3.
2323

2424
Please check the [ChangeLog](CHANGELOG.md) file for the detailed information.
2525

26+
DeepDiff 7-0-0
27+
28+
- DeepDiff 7 comes with an improved delta object. [Delta to flat dictionaries](https://zepworks.com/deepdiff/current/serialization.html#delta-serialize-to-flat-dictionaries) have undergone a major change. We have also introduced [Delta serialize to flat rows](https://zepworks.com/deepdiff/current/serialization.html#delta-serialize-to-flat-rows).
29+
- Subtracting delta objects have dramatically improved at the cost of holding more metadata about the original objects.
30+
- When `verbose=2`, and the "path" of an item has changed in a report between t1 and t2, we include it as `new_path`.
31+
- `path(use_t2=True)` returns the correct path to t2 in any reported change in the [`tree view`](https://zepworks.com/deepdiff/current/view.html#tree-view)
32+
- Python 3.7 support is dropped and Python 3.12 is officially supported.
33+
34+
2635
DeepDiff 6-7-1
2736

2837
- Support for subtracting delta objects when iterable_compare_func is used.

docs/authors.rst

+5
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ Authors in order of the timeline of their contributions:
8484
- `Alex Sauer-Budge <https://github.com/amsb>`__ for the bugfix for
8585
``datetime.date``.
8686
- `William Jamieson <https://github.com/WilliamJamieson>`__ for `NumPy 2.0 compatibility <https://github.com/seperman/deepdiff/pull/422>`__
87+
- `Leo Sin <https://github.com/leoslf>`__ for Supporting Python 3.12 in
88+
the build process
89+
- `sf-tcalhoun <https://github.com/sf-tcalhoun>`__ for fixing
90+
“Instantiating a Delta with a flat_dict_list unexpectedly mutates the
91+
flat_dict_list”
8792

8893
.. _Sep Dehpour (Seperman): http://www.zepworks.com
8994
.. _Victor Hahn Castell: http://hahncastell.de

docs/basics.rst

+11
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ Set verbose level to 2 in order to see the added or removed items with their val
4545
{ 'dictionary_item_added': {'root[5]': 5, 'root[6]': 6},
4646
'dictionary_item_removed': {'root[4]': 4}}
4747

48+
Set verbose level to 2 includes new_path when the path has changed for a report between t1 and t2:
49+
>>> t1 = [1, 3]
50+
>>> t2 = [3, 2]
51+
>>>
52+
>>>
53+
>>> diff = DeepDiff(t1, t2, ignore_order=True, verbose_level=2)
54+
>>> pprint(diff)
55+
{'values_changed': {'root[0]': {'new_path': 'root[1]',
56+
'new_value': 2,
57+
'old_value': 1}}}
58+
4859
String difference
4960
>>> t1 = {1:1, 2:2, 3:3, 4:{"a":"hello", "b":"world"}}
5061
>>> t2 = {1:1, 2:4, 3:3, 4:{"a":"hello", "b":"world!"}}

docs/changelog.rst

+24
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ Changelog
55

66
DeepDiff Changelog
77

8+
- v7-0-0
9+
10+
- When verbose=2, return ``new_path`` when the ``path`` and
11+
``new_path`` are different (for example when ignore_order=True and
12+
the index of items have changed).
13+
- Dropping support for Python 3.7
14+
- Introducing serialize to flat rows for delta objects.
15+
- fixes the issue with hashing ``datetime.date`` objects where it
16+
treated them as numbers instead of dates (fixes #445).
17+
- upgrading orjson to the latest version
18+
- Fix for bug when diffing two lists with ignore_order and providing
19+
compare_func
20+
- Fixes “Wrong diff on list of strings” #438
21+
- Supporting Python 3.12 in the build process by `Leo
22+
Sin <https://github.com/leoslf>`__
23+
- Fixes “Instantiating a Delta with a flat_dict_list unexpectedly
24+
mutates the flat_dict_list” #457 by
25+
`sf-tcalhoun <https://github.com/sf-tcalhoun>`__
26+
- Fixes “Error on Delta With None Key and Removed Item from List”
27+
#441
28+
- Fixes “Error when comparing two nested dicts with 2 added fields”
29+
#450
30+
- Fixes “Error when subtracting Delta from a dictionary” #443
31+
832
- v6-7-1
933

1034
- Support for subtracting delta objects when iterable_compare_func

docs/index.rst

+18
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,24 @@ The DeepDiff library includes the following modules:
3131
What Is New
3232
***********
3333

34+
DeepDiff 7-0-0
35+
--------------
36+
37+
- DeepDiff 7 comes with an improved delta object. `Delta to flat
38+
dictionaries <https://zepworks.com/deepdiff/current/serialization.html#delta-serialize-to-flat-dictionaries>`__
39+
have undergone a major change. We have also introduced `Delta
40+
serialize to flat
41+
rows <https://zepworks.com/deepdiff/current/serialization.html#delta-serialize-to-flat-rows>`__.
42+
- Subtracting delta objects have dramatically improved at the cost of
43+
holding more metadata about the original objects.
44+
- When ``verbose=2``, and the “path” of an item has changed in a report
45+
between t1 and t2, we include it as ``new_path``.
46+
- ``path(use_t2=True)`` returns the correct path to t2 in any reported
47+
change in the
48+
```tree view`` <https://zepworks.com/deepdiff/current/view.html#tree-view>`__
49+
- Python 3.7 support is dropped and Python 3.12 is officially
50+
supported.
51+
3452

3553
DeepDiff 6-7-1
3654
--------------

docs/view.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ You can traverse through the tree elements!
6868
6969
:up: Move up to the parent node aka parent level
7070
:down: Move down to the child node aka child level
71-
:path(): Get the path to the current node in string representation, path(output_format='list') gives you the path in list representation.
71+
:path(): Get the path to the current node in string representation, path(output_format='list') gives you the path in list representation. path(use_t2=True) gives you the path to t2.
7272
:t1: The first item in the current node that is being diffed
7373
:t2: The second item in the current node that is being diffed
7474
:additional: Additional information about the node i.e. repetition

0 commit comments

Comments
 (0)