From 6499dcf2105d408086ece014e039271b0774e3df Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 06:30:19 +1100 Subject: [PATCH] build(deps): update module github.com/go-webauthn/webauthn to v0.7.1 (#4920) * build(deps): update module github.com/go-webauthn/webauthn to v0.7.1 * test: fix for upstream changes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: James Elliott --- go.mod | 4 ++-- go.sum | 8 ++++---- internal/handlers/webauthn_test.go | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index e19c6adc5..8d0372505 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( github.com/go-ldap/ldap/v3 v3.4.4 github.com/go-rod/rod v0.112.5 github.com/go-sql-driver/mysql v1.7.0 - github.com/go-webauthn/webauthn v0.7.0 + github.com/go-webauthn/webauthn v0.7.1 github.com/golang-jwt/jwt/v4 v4.4.3 github.com/golang/mock v1.6.0 github.com/google/uuid v1.3.0 @@ -67,7 +67,7 @@ require ( github.com/fxamacker/cbor/v2 v2.4.0 // indirect github.com/go-crypt/x v0.1.13 // indirect github.com/go-redis/redis/v8 v8.11.5 // indirect - github.com/go-webauthn/revoke v0.1.6 // indirect + github.com/go-webauthn/revoke v0.1.9 // indirect github.com/golang/glog v1.0.0 // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/google/go-tpm v0.3.3 // indirect diff --git a/go.sum b/go.sum index caf23a0fc..dd9a94df3 100644 --- a/go.sum +++ b/go.sum @@ -190,10 +190,10 @@ github.com/go-sql-driver/mysql v1.7.0/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9 github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= github.com/go-test/deep v1.0.2-0.20181118220953-042da051cf31/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= -github.com/go-webauthn/revoke v0.1.6 h1:3tv+itza9WpX5tryRQx4GwxCCBrCIiJ8GIkOhxiAmmU= -github.com/go-webauthn/revoke v0.1.6/go.mod h1:TB4wuW4tPlwgF3znujA96F70/YSQXHPPWl7vgY09Iy8= -github.com/go-webauthn/webauthn v0.7.0 h1:Tk2evkiZGtmbgGoYUbNw2BbPyI8e65tfi8HY9mSluWA= -github.com/go-webauthn/webauthn v0.7.0/go.mod h1:FrFAvvr9oP+tXr1WeDpRz/rYJi5GRG0/EVFfpN7YhKA= +github.com/go-webauthn/revoke v0.1.9 h1:gSJ1ckA9VaKA2GN4Ukp+kiGTk1/EXtaDb1YE8RknbS0= +github.com/go-webauthn/revoke v0.1.9/go.mod h1:j6WKPnv0HovtEs++paan9g3ar46gm1NarktkXBaPR+w= +github.com/go-webauthn/webauthn v0.7.1 h1:b1/HP1bkqsW+DIO22WyG7BP9dL0rN151VpruH6cxADA= +github.com/go-webauthn/webauthn v0.7.1/go.mod h1:22OJd+TV8oHrjjXmPHtcPR82lR/yR5m5ilGiF8yPFrE= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= diff --git a/internal/handlers/webauthn_test.go b/internal/handlers/webauthn_test.go index 44e5b237d..a566c4a7d 100644 --- a/internal/handlers/webauthn_test.go +++ b/internal/handlers/webauthn_test.go @@ -75,7 +75,7 @@ func TestWebauthnGetUser(t *testing.T) { descriptors := user.WebAuthnCredentialDescriptors() assert.Equal(t, "fido-u2f", descriptors[0].AttestationType) - assert.Equal(t, []byte("abc123"), descriptors[0].CredentialID) + assert.Equal(t, "abc123", string(descriptors[0].CredentialID)) assert.Equal(t, protocol.PublicKeyCredentialType, descriptors[0].Type) assert.Len(t, descriptors[0].Transport, 0) @@ -91,7 +91,7 @@ func TestWebauthnGetUser(t *testing.T) { assert.False(t, user.Devices[1].CloneWarning) assert.Equal(t, "packed", descriptors[1].AttestationType) - assert.Equal(t, []byte("123abc"), descriptors[1].CredentialID) + assert.Equal(t, "123abc", string(descriptors[1].CredentialID)) assert.Equal(t, protocol.PublicKeyCredentialType, descriptors[1].Type) assert.Len(t, descriptors[1].Transport, 2)