Skip to content

Commit 8331bd4

Browse files
franklinkimlfleischmann
authored andcommitted
feat: update koanf v2.1.2
1 parent 122b738 commit 8331bd4

File tree

3 files changed

+22
-291
lines changed

3 files changed

+22
-291
lines changed

Diff for: backend/config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package config
33
import (
44
"fmt"
55
"github.com/kelseyhightower/envconfig"
6-
"github.com/knadh/koanf"
76
"github.com/knadh/koanf/parsers/yaml"
87
"github.com/knadh/koanf/providers/file"
8+
"github.com/knadh/koanf/v2"
99
"github.com/teamhanko/hanko/backend/ee/saml/config"
1010
"log"
1111
)

Diff for: backend/go.mod

+7-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ require (
2222
github.com/invopop/jsonschema v0.12.0
2323
github.com/jackc/pgconn v1.14.3
2424
github.com/kelseyhightower/envconfig v1.4.0
25-
github.com/knadh/koanf v1.5.0
25+
github.com/knadh/koanf/parsers/json v0.1.0
26+
github.com/knadh/koanf/parsers/yaml v0.1.0
27+
github.com/knadh/koanf/providers/file v1.1.2
28+
github.com/knadh/koanf/v2 v2.1.2
2629
github.com/labstack/echo-contrib v0.17.1
2730
github.com/labstack/echo-jwt/v4 v4.2.0
2831
github.com/labstack/echo/v4 v4.12.0
@@ -79,14 +82,15 @@ require (
7982
github.com/docker/go-connections v0.5.0 // indirect
8083
github.com/docker/go-units v0.5.0 // indirect
8184
github.com/fatih/color v1.13.0 // indirect
82-
github.com/fsnotify/fsnotify v1.5.1 // indirect
85+
github.com/fsnotify/fsnotify v1.7.0 // indirect
8386
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
8487
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
8588
github.com/go-faster/city v1.0.1 // indirect
8689
github.com/go-faster/errors v0.6.1 // indirect
8790
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
8891
github.com/go-playground/locales v0.14.1 // indirect
8992
github.com/go-playground/universal-translator v0.18.1 // indirect
93+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
9094
github.com/go-webauthn/x v0.1.9 // indirect
9195
github.com/gobuffalo/envy v1.10.2 // indirect
9296
github.com/gobuffalo/fizz v1.14.4 // indirect
@@ -116,6 +120,7 @@ require (
116120
github.com/jonboulle/clockwork v0.3.0 // indirect
117121
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
118122
github.com/klauspost/compress v1.16.5 // indirect
123+
github.com/knadh/koanf/maps v0.1.1 // indirect
119124
github.com/leodido/go-urn v1.4.0 // indirect
120125
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
121126
github.com/lestrrat-go/httpcc v1.0.1 // indirect
@@ -136,7 +141,6 @@ require (
136141
github.com/opencontainers/image-spec v1.1.0 // indirect
137142
github.com/opencontainers/runc v1.1.14 // indirect
138143
github.com/paulmach/orb v0.9.0 // indirect
139-
github.com/pelletier/go-toml v1.9.4 // indirect
140144
github.com/pierrec/lz4/v4 v4.1.17 // indirect
141145
github.com/pmezard/go-difflib v1.0.0 // indirect
142146
github.com/prometheus/client_golang v1.19.0 // indirect

0 commit comments

Comments
 (0)