Update dependency deepdiff to v8 #69
Open
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:
==5.8.1
->==8.5.0
Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
seperman/deepdiff (deepdiff)
v8.5.0
v8.4.1
Compare Source
v8.4.0
Compare Source
v8.3.0
Compare Source
v8.2.0
Compare Source
v8.1.1
Compare Source
Adding Python 3.13 to setup.py
v8.1.0
Compare Source
prefix
option topretty()
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).v6.7.1
Can't compare dicts with both single and double quotes in keys
v6.6.0
v6.4.1
Compare Source
Bugfix: Numpy should be optional
v6.4.0
Compare Source
Bobby Morck
zip_ordered_iterables
for forcing iterable items to be compared one by one.v6.3.1
Compare Source
include_paths
for nested dictionaries by kor4ikdatetime.date
by Alex Sauer-Budgev6.3.0
Compare Source
PrefixOrSuffixOperator
: This operator will skip strings that are suffix or prefix of each other.include_obj_callback
andinclude_obj_callback_strict
are added by Håvard Thom.np.float32
nans are not ignored when usingignore_nan_equality
by Noam Gottlieborjson
becomes optional again.ignore_type_in_groups
with numeric values so it does not report number changes when the number types are different.v6.2.3
Compare Source
v6.2.2
Compare Source
v6.2.1
Compare Source
Major improvement in the diff report for lists when items are all hashable and the order of items is important.
Configuration
📅 Schedule: Branch creation - "after 5am on saturday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
To execute skipped test pipelines write comment
/ok-to-test
.This PR has been generated by MintMaker (powered by Renovate Bot).