fix(deps): update dependency deepdiff to v8 #145
+14
−17
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^6.7.1
->^8.0.0
Release Notes
seperman/deepdiff (deepdiff)
v8.0.1
Compare Source
8.0.1 - extra import of numpy is removed
v8.0.0
Compare Source
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 settingthreshold_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 anew_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.ordered-set
and switched toorderly-set
. Theordered-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 asorderly-set
.use_log_scale:bool
andlog_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.iterable_compare_func
is used.v7.0.1
new_path
when thepath
andnew_path
are different (for example when ignore_order=True and the index of items have changed).datetime.date
objects where it treated them as numbers instead of dates (fixes #445).Configuration
📅 Schedule: Branch creation - "every weekend" in timezone US/Eastern, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.