From ea536c3ee58aa9341caea3dd49dd970f763c5959 Mon Sep 17 00:00:00 2001 From: renovate <renovate-bot@autistici.org> Date: Thu, 4 Apr 2024 15:36:13 +0000 Subject: [PATCH] Update module golang.org/x/sync to v0.7.0 --- go.mod | 2 +- go.sum | 2 ++ vendor/golang.org/x/sync/singleflight/singleflight.go | 9 +++++++++ vendor/modules.txt | 2 +- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 28b1a711..0ae98f2a 100644 --- a/go.mod +++ b/go.mod @@ -12,6 +12,6 @@ require ( github.com/mattn/go-sqlite3 v1.14.16 github.com/prometheus/client_golang v1.12.2 golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 - golang.org/x/sync v0.3.0 + golang.org/x/sync v0.7.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/go.sum b/go.sum index 1b9bfbb1..3f813f8d 100644 --- a/go.sum +++ b/go.sum @@ -1053,6 +1053,8 @@ golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= diff --git a/vendor/golang.org/x/sync/singleflight/singleflight.go b/vendor/golang.org/x/sync/singleflight/singleflight.go index 8473fb79..40518309 100644 --- a/vendor/golang.org/x/sync/singleflight/singleflight.go +++ b/vendor/golang.org/x/sync/singleflight/singleflight.go @@ -31,6 +31,15 @@ func (p *panicError) Error() string { return fmt.Sprintf("%v\n\n%s", p.value, p.stack) } +func (p *panicError) Unwrap() error { + err, ok := p.value.(error) + if !ok { + return nil + } + + return err +} + func newPanicError(v interface{}) error { stack := debug.Stack() diff --git a/vendor/modules.txt b/vendor/modules.txt index 49db0399..0da4cc52 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -441,7 +441,7 @@ golang.org/x/oauth2/google/internal/externalaccount golang.org/x/oauth2/internal golang.org/x/oauth2/jws golang.org/x/oauth2/jwt -# golang.org/x/sync v0.3.0 +# golang.org/x/sync v0.7.0 ## explicit golang.org/x/sync/singleflight # golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 -- GitLab