Update module google/go-cmp to v0.5.4
Compare changes
+ 1
− 1
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
github.com/google/go-cmp | require | minor |
v0.4.0 -> v0.5.4
|
v0.5.4
Bug fixes:
(#247) Fix non-determinism in diffing algorithm (#248) Impose verbosity limit when formatting map keys
v0.5.3
Minor documentation changes:
(#236) Fix license headers (#205) Add an example for IgnoreFields (#237) Fix Diff documentation
v0.5.2
Minor documentation changes:
(#234) Suggest use of cmpopts.EquateErrors (#231) Fix Diff documentation
v0.5.1
Minor reporter changes:
String
or Error
methds.Minor documentation changes:
IgnoreUnexported
and IgnoreFields
to be more specific.v0.5.0
The most notable changes in this release are improvements to the reporter output (i.e., the implementation that produces output for Diff
). The changes seek to improve the signal-to-noise ratio such that differences of interest to the user are emphasized, while information that is less relevant are de-emphasized.
The reporter largely consists of a set of heuristics to determine what would be the best way to format the difference in the common case. If the output seems sub-par, please file an issue. The reports are highly valuable in improving its output (e.g., #195, #194, #202, #185).
Reporter changes:
strings.Join({...}, "\n")
syntax to show diffs between lines within a string. While this representation is unambiguous, the need to escape every line made the output visually distracting. Now, we add a new syntax where multiple lines are represented by a literal syntax using """
as delimiters. When possible, this syntax is preferred if it can unambiguously represent the difference.cmp.Comparer(bytes.Equal)
so that large byte slices are compared using an efficient implementation. Previously, this would prevent the reporter from being able to use specialized logic to show the per-element difference between these two slices if they were different, but now it is able to.String
method, using fully qualified type names, or some combination of the above.1776240
) Forcibly export fields for use by the reporter. This allows the reporter to use the String
or Error
method (if available) to format values within unexported fields. This occurs regardless of whether any cmp.Exporter
or cmp.AllowUnexported
options are used or not.Feature changes:
cmpopts.IgnoreFields
option now accepts unexported field names. Unlike exported fields, unexported field must be explicitly specified as they do not respect forwarding due to struct embedding.Comparer changes:
cmp
package is intended for use primarily within tests where the expected outcome is generally equality. Previously, even if the result is equal, cmp.Diff
would construct an expensive diff tree only to discard the result since the values are equal. Now, optimize for the common case by first checking whether the values are equal first, and only construct a diff if they are not.unsafe
, it requires that the parent struct be addressable. In Go, a struct field is only addressable if and only if the parent struct is addressable. To avoid leaking this internal implementation detail, we shallow copy the result to remove properties of addressability.v0.4.1
Minor reporter changes:
Minor documentation changes:
This MR has been generated by Renovate Bot.