evanphx / json-patch

A Go library to apply RFC6902 patches and create and apply RFC7386 patches
BSD 3-Clause "New" or "Revised" License
1.05k stars 181 forks source link

Dependency github.com/pkg/errors was archived #205

Open katexochen opened 4 months ago

katexochen commented 4 months ago

https://github.com/pkg/errors was archived.

Might be best to migrate to stdlib errors package, I think the only unsupported function

errors.Wrapf(err, "...")

can be replaced with something like

fmt.Errof("%w: ...", err)

@evanphx I can provide a PR if desired.

ns-jisorce commented 1 month ago

+1