From 96d83dbcd9ac3595f1df9df221302225199ac1e1 Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Wed, 16 Apr 2025 16:12:36 +0200 Subject: [PATCH] bump to changes in upstream PR Signed-off-by: Christian Richter --- go.mod | 2 +- go.sum | 4 ++-- .../libregraph/lico/bootstrap/backends/ldap/ldap.go | 2 +- .../lico/bootstrap/backends/libregraph/libregraph.go | 2 +- vendor/github.com/libregraph/lico/identifier/api.go | 2 +- vendor/github.com/libregraph/lico/identifier/config.go | 2 +- vendor/github.com/libregraph/lico/identifier/meta/branding.go | 2 +- vendor/modules.txt | 4 ++-- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/go.mod b/go.mod index 96ede60dcf..5db083e3b7 100644 --- a/go.mod +++ b/go.mod @@ -345,7 +345,7 @@ replace github.com/go-micro/plugins/v4/store/nats-js-kv => github.com/kobergj/pl replace go-micro.dev/v4 => github.com/butonic/go-micro/v4 v4.11.1-0.20241115112658-b5d4de5ed9b3 -replace github.com/libregraph/lico => github.com/dragonchaser/lico v0.0.0-20250416122745-696f1eb05e9c +replace github.com/libregraph/lico => github.com/dragonchaser/lico v0.0.0-20250416140806-144ca6e74bce // exclude the v2 line of go-sqlite3 which was released accidentally and prevents pulling in newer versions of go-sqlite3 // see https://github.com/mattn/go-sqlite3/issues/965 for more details diff --git a/go.sum b/go.sum index 411c7cc204..7a5df5799b 100644 --- a/go.sum +++ b/go.sum @@ -279,8 +279,8 @@ github.com/dlclark/regexp2 v1.4.0 h1:F1rxgk7p4uKjwIQxBs9oAXe5CqrXlCduYEJvrF4u93E github.com/dlclark/regexp2 v1.4.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= github.com/dnsimple/dnsimple-go v0.63.0/go.mod h1:O5TJ0/U6r7AfT8niYNlmohpLbCSG+c71tQlGr9SeGrg= -github.com/dragonchaser/lico v0.0.0-20250416122745-696f1eb05e9c h1:JeR9yGofF08fNQthvr1DekPg0Ug7FGYNkFoJe7dfemg= -github.com/dragonchaser/lico v0.0.0-20250416122745-696f1eb05e9c/go.mod h1:GLIhLiUD3QUvbdZ+d7tKdkTwaotVQ3qhC8t1biWzFf8= +github.com/dragonchaser/lico v0.0.0-20250416140806-144ca6e74bce h1:b3gVyNYR1R/WKWEcZd3YkebJt0toJ/s+gyjeqdkHsQs= +github.com/dragonchaser/lico v0.0.0-20250416140806-144ca6e74bce/go.mod h1:GLIhLiUD3QUvbdZ+d7tKdkTwaotVQ3qhC8t1biWzFf8= github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/dutchcoders/go-clamd v0.0.0-20170520113014-b970184f4d9e h1:rcHHSQqzCgvlwP0I/fQ8rQMn/MpHE5gWSLdtpxtP6KQ= diff --git a/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go b/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go index 31c225e19e..7b8604d373 100644 --- a/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go +++ b/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go @@ -145,7 +145,7 @@ func NewIdentityManager(bs bootstrap.Bootstrap) (identity.Manager, error) { DefaultBannerLogo: config.IdentifierDefaultBannerLogo, DefaultSignInPageText: config.IdentifierDefaultSignInPageText, - DefaultSignInPageLogoUri: config.IdentifierDefaultLogoTargetURI, + DefaultSignInPageLogoURI: config.IdentifierDefaultLogoTargetURI, DefaultUsernameHintText: config.IdentifierDefaultUsernameHintText, UILocales: config.IdentifierUILocales, diff --git a/vendor/github.com/libregraph/lico/bootstrap/backends/libregraph/libregraph.go b/vendor/github.com/libregraph/lico/bootstrap/backends/libregraph/libregraph.go index 4b8b2a4d8c..ded47b49c8 100644 --- a/vendor/github.com/libregraph/lico/bootstrap/backends/libregraph/libregraph.go +++ b/vendor/github.com/libregraph/lico/bootstrap/backends/libregraph/libregraph.go @@ -128,7 +128,7 @@ func NewIdentityManager(bs bootstrap.Bootstrap) (identity.Manager, error) { DefaultBannerLogo: config.IdentifierDefaultBannerLogo, DefaultSignInPageText: config.IdentifierDefaultSignInPageText, - DefaultSignInPageLogoUri: config.IdentifierDefaultLogoTargetURI, + DefaultSignInPageLogoURI: config.IdentifierDefaultLogoTargetURI, DefaultUsernameHintText: config.IdentifierDefaultUsernameHintText, UILocales: config.IdentifierUILocales, diff --git a/vendor/github.com/libregraph/lico/identifier/api.go b/vendor/github.com/libregraph/lico/identifier/api.go index 5caaebcc7b..74c158e036 100644 --- a/vendor/github.com/libregraph/lico/identifier/api.go +++ b/vendor/github.com/libregraph/lico/identifier/api.go @@ -50,7 +50,7 @@ func (i Identifier) writeHelloResponse(rw http.ResponseWriter, req *http.Request BannerLogo: i.defaultBannerLogo, UsernameHintText: i.Config.DefaultUsernameHintText, SignInPageText: i.Config.DefaultSignInPageText, - SignInPageLogoUri: i.Config.DefaultSignInPageLogoUri, + SignInPageLogoURI: i.Config.DefaultSignInPageLogoURI, Locales: i.Config.UILocales, }, } diff --git a/vendor/github.com/libregraph/lico/identifier/config.go b/vendor/github.com/libregraph/lico/identifier/config.go index 4fc69f06a7..2750f599b8 100644 --- a/vendor/github.com/libregraph/lico/identifier/config.go +++ b/vendor/github.com/libregraph/lico/identifier/config.go @@ -48,7 +48,7 @@ type Config struct { DefaultBannerLogo []byte DefaultSignInPageText *string - DefaultSignInPageLogoUri *string + DefaultSignInPageLogoURI *string DefaultUsernameHintText *string UILocales []string diff --git a/vendor/github.com/libregraph/lico/identifier/meta/branding.go b/vendor/github.com/libregraph/lico/identifier/meta/branding.go index 760f9b8c72..da8623a373 100644 --- a/vendor/github.com/libregraph/lico/identifier/meta/branding.go +++ b/vendor/github.com/libregraph/lico/identifier/meta/branding.go @@ -22,6 +22,6 @@ type Branding struct { BannerLogo *string `json:"bannerLogo,omitempty"` SignInPageText *string `json:"signinPageText,omitempty"` UsernameHintText *string `json:"usernameHintText,omitempty"` - SignInPageLogoUri *string `json:"signinPageLogoUri,omitempty"` + SignInPageLogoURI *string `json:"signinPageLogoUri,omitempty"` Locales []string `json:"locales,omitempty"` } diff --git a/vendor/modules.txt b/vendor/modules.txt index e03b2139c0..189f3aeb5f 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -870,7 +870,7 @@ github.com/libregraph/idm/server github.com/libregraph/idm/server/handler github.com/libregraph/idm/server/handler/boltdb github.com/libregraph/idm/server/handler/ldif -# github.com/libregraph/lico v0.65.1 => github.com/dragonchaser/lico v0.0.0-20250416122745-696f1eb05e9c +# github.com/libregraph/lico v0.65.1 => github.com/dragonchaser/lico v0.0.0-20250416140806-144ca6e74bce ## explicit; go 1.18 github.com/libregraph/lico github.com/libregraph/lico/bootstrap @@ -2434,4 +2434,4 @@ stash.kopano.io/kgol/rndm # github.com/unrolled/secure => github.com/DeepDiver1975/secure v0.0.0-20240611112133-abc838fb797c # github.com/go-micro/plugins/v4/store/nats-js-kv => github.com/kobergj/plugins/v4/store/nats-js-kv v0.0.0-20240807130109-f62bb67e8c90 # go-micro.dev/v4 => github.com/butonic/go-micro/v4 v4.11.1-0.20241115112658-b5d4de5ed9b3 -# github.com/libregraph/lico => github.com/dragonchaser/lico v0.0.0-20250416122745-696f1eb05e9c +# github.com/libregraph/lico => github.com/dragonchaser/lico v0.0.0-20250416140806-144ca6e74bce