auth0 / go-jwt-middleware

A Middleware for Go Programming Language to check for JWTs on HTTP requests
MIT License
1.08k stars 205 forks source link

Replace deprecated pkg/errors in favor of Go's standard library #189

Closed molaga closed 1 year ago

molaga commented 1 year ago

Since the legacy errors package pkg/errors is deprecated since 2021, I've removed its use across this repo, including in the examples, in favor of Go's standard library (https://pkg.go.dev/errors) which essentially does exactly the same, and is mainly maintained.

📝 Checklist

🔧 Changes

📚 References

🔬 Testing