You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compatibility notes:
1. ErrSymlinkLoop is removed in favor of wrapping syscall.ELOOP into
&os.PathError{}; users should use e.g. errors.Is(err, syscall.ELOOP)
to check for this particular error.
2. IsNotExist now does not use pkg/errors.Cause but native go error
unwrapping; it could breaks a use case when it is used for some
third-party errors wrapped using pkg/errors.Wrap[f].
I was not able to find any users of either feature.
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
0 commit comments