|
1 | | -# DeepDiff v 5.8.0 |
| 1 | +# DeepDiff v 5.8.1 |
2 | 2 |
|
3 | 3 |  |
4 | 4 |  |
|
14 | 14 |
|
15 | 15 | Tested on Python 3.6+ and PyPy3. |
16 | 16 |
|
17 | | -- **[Documentation](https://zepworks.com/deepdiff/5.8.0/)** |
| 17 | +- **[Documentation](https://zepworks.com/deepdiff/5.8.1/)** |
18 | 18 |
|
19 | 19 | ## What is new? |
20 | 20 |
|
| 21 | +DeepDiff 5-8-1 includes bug fixes: |
| 22 | +- Fixed test suite for 32bit systems (https://github.com/seperman/deepdiff/issues/302) by [Louis-Philippe Véronneau](https://github.com/baldurmen) |
| 23 | +- Fixed the issue when using `ignore_order=True` and `group_by` simultaneously |
| 24 | +- Added the support for diffing object properties (`@property`) (https://github.com/seperman/deepdiff/issues/312) |
| 25 | +- Better support of diffing private variables |
| 26 | + |
21 | 27 | DeepDiff 5-8-0 includes bug fixes and improvements: |
22 | 28 |
|
23 | 29 | - Fixed the bug with delta randomly not producing the same results when `ignore_order=True` (https://github.com/seperman/deepdiff/issues/277) |
@@ -61,13 +67,13 @@ Note: if you want to use DeepDiff via commandline, make sure to run `pip install |
61 | 67 |
|
62 | 68 | DeepDiff gets the difference of 2 objects. |
63 | 69 |
|
64 | | -> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.0/diff.html) |
65 | | -> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/5.8.0/> |
| 70 | +> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.1/diff.html) |
| 71 | +> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/5.8.1/> |
66 | 72 | > - Tutorials and posts about DeepDiff can be found on <https://zepworks.com/tags/deepdiff/> |
67 | 73 |
|
68 | 74 | ## A few Examples |
69 | 75 |
|
70 | | -> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.8.0/> for full documentation. |
| 76 | +> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.8.1/> for full documentation. |
71 | 77 |
|
72 | 78 | ### List difference ignoring order or duplicates |
73 | 79 |
|
@@ -271,8 +277,8 @@ Example: |
271 | 277 | ``` |
272 | 278 |
|
273 | 279 |
|
274 | | -> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.0/diff.html) |
275 | | -> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/> |
| 280 | +> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.1/diff.html) |
| 281 | +> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/> |
276 | 282 |
|
277 | 283 |
|
278 | 284 | # Deep Search |
@@ -304,17 +310,17 @@ And you can pass all the same kwargs as DeepSearch to grep too: |
304 | 310 | {'matched_paths': {"root['somewhere']": 'around'}, 'matched_values': {"root['long']": 'somewhere'}} |
305 | 311 | ``` |
306 | 312 |
|
307 | | -> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.8.0/dsearch.html) |
308 | | -> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/> |
| 313 | +> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.8.1/dsearch.html) |
| 314 | +> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/> |
309 | 315 |
|
310 | 316 | # Deep Hash |
311 | 317 | (New in v4-0-0) |
312 | 318 |
|
313 | 319 | DeepHash is designed to give you hash of ANY python object based on its contents even if the object is not considered hashable! |
314 | 320 | DeepHash is supposed to be deterministic in order to make sure 2 objects that contain the same data, produce the same hash. |
315 | 321 |
|
316 | | -> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.0/deephash.html) |
317 | | -> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/> |
| 322 | +> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.1/deephash.html) |
| 323 | +> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/> |
318 | 324 |
|
319 | 325 | Let's say you have a dictionary object. |
320 | 326 |
|
@@ -362,8 +368,8 @@ Which you can write as: |
362 | 368 | At first it might seem weird why DeepHash(obj)[obj] but remember that DeepHash(obj) is a dictionary of hashes of all other objects that obj contains too. |
363 | 369 |
|
364 | 370 |
|
365 | | -> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.0/deephash.html) |
366 | | -> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/> |
| 371 | +> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.1/deephash.html) |
| 372 | +> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/> |
367 | 373 |
|
368 | 374 |
|
369 | 375 | # Using DeepDiff in unit tests |
@@ -443,11 +449,11 @@ Thank you! |
443 | 449 |
|
444 | 450 | How to cite this library (APA style): |
445 | 451 |
|
446 | | - Dehpour, S. (2022). DeepDiff (Version 5.8.0) [Software]. Available from https://github.com/seperman/deepdiff. |
| 452 | + Dehpour, S. (2022). DeepDiff (Version 5.8.1) [Software]. Available from https://github.com/seperman/deepdiff. |
447 | 453 |
|
448 | 454 | How to cite this library (Chicago style): |
449 | 455 |
|
450 | | - Dehpour, Sep. 2022. DeepDiff (version 5.8.0). |
| 456 | + Dehpour, Sep. 2022. DeepDiff (version 5.8.1). |
451 | 457 |
|
452 | 458 | # Authors |
453 | 459 |
|
|
0 commit comments