Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8.0.0 #460

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

8.0.0 #460

wants to merge 9 commits into from

Conversation

seperman
Copy link
Owner

@seperman seperman commented May 17, 2024

With the introduction of threshold_to_diff_deeper, the values returned are different than in previous versions of DeepDiff. You can still get the older values by setting threshold_to_diff_deeper=0. However to signify that enough has changed in this release that the users need to update the parameters passed to DeepDiff, we will be doing a major version update.

  • use_enum_value=True makes it so when diffing enum, we use the enum's value. It makes it so comparing an enum to a string or any other value is not reported as a type change.
  • threshold_to_diff_deeper=float is a number between 0 and 1. When comparing dictionaries that have a small intersection of keys, we will report the dictionary as a new_value instead of reporting individual keys changed. If you set it to zero, you get the same results as DeepDiff 7.0.1 and earlier, which means this feature is disabled. The new default is 0.33 which means if less that one third of keys between dictionaries intersect, report it as a new object.
  • Deprecated ordered-set and switched to orderly-set. The ordered-set package was not being maintained anymore and starting Python 3.6, there were better options for sets that ordered. I forked one of the new implementations, modified it, and published it as orderly-set.
  • Added use_log_scale:bool and log_scale_similarity_threshold:float. They can be used to ignore small changes in numbers by comparing their differences in logarithmic space. This is different than ignoring the difference based on significant digits.
  • Update the docs

Copy link

codecov bot commented May 17, 2024

Codecov Report

Attention: Patch coverage is 86.66667% with 16 lines in your changes are missing coverage. Please review.

Project coverage is 96.81%. Comparing base (b391ae9) to head (2d97ea0).
Report is 1 commits behind head on master.

Files Patch % Lines
deepdiff/distance.py 70.27% 11 Missing ⚠️
deepdiff/diff.py 90.69% 4 Missing ⚠️
deepdiff/lfucache.py 50.00% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #460      +/-   ##
==========================================
- Coverage   97.16%   96.81%   -0.36%     
==========================================
  Files          14       14              
  Lines        3880     3919      +39     
==========================================
+ Hits         3770     3794      +24     
- Misses        110      125      +15     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@seperman seperman changed the title 7.1.0 8.0.0 May 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant