mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 01:37:31 +00:00
chore(core): update dependencies (#7517)
* chore(core): update dependencies * chore(core): update dependencies
This commit is contained in:
@@ -3,12 +3,12 @@ package oidc
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"log/slog"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"github.com/zitadel/oidc/v3/pkg/oidc"
|
||||
"github.com/zitadel/oidc/v3/pkg/op"
|
||||
"golang.org/x/exp/slog"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/api/assets"
|
||||
http_utils "github.com/zitadel/zitadel/internal/api/http"
|
||||
|
@@ -2,13 +2,13 @@ package oidc
|
||||
|
||||
import (
|
||||
"context"
|
||||
"log/slog"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"github.com/zitadel/logging"
|
||||
"github.com/zitadel/oidc/v3/pkg/oidc"
|
||||
"github.com/zitadel/oidc/v3/pkg/op"
|
||||
"golang.org/x/exp/slog"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/auth/repository"
|
||||
"github.com/zitadel/zitadel/internal/command"
|
||||
|
@@ -27,7 +27,11 @@ var (
|
||||
)
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
ts, err := testserver.NewTestServer(testserver.CustomVersionOpt(os.Getenv("ZITADEL_CRDB_VERSION")))
|
||||
opts := make([]testserver.TestServerOpt, 0, 1)
|
||||
if version := os.Getenv("ZITADEL_CRDB_VERSION"); version != "" {
|
||||
opts = append(opts, testserver.CustomVersionOpt(version))
|
||||
}
|
||||
ts, err := testserver.NewTestServer(opts...)
|
||||
if err != nil {
|
||||
logging.WithFields("error", err).Fatal("unable to start db")
|
||||
}
|
||||
|
@@ -20,7 +20,11 @@ var (
|
||||
)
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
ts, err := testserver.NewTestServer(testserver.CustomVersionOpt(os.Getenv("ZITADEL_CRDB_VERSION")))
|
||||
opts := make([]testserver.TestServerOpt, 0, 1)
|
||||
if version := os.Getenv("ZITADEL_CRDB_VERSION"); version != "" {
|
||||
opts = append(opts, testserver.CustomVersionOpt(version))
|
||||
}
|
||||
ts, err := testserver.NewTestServer(opts...)
|
||||
if err != nil {
|
||||
logging.WithFields("error", err).Fatal("unable to start db")
|
||||
}
|
||||
|
Reference in New Issue
Block a user