diff --git a/any.go b/any.go index ac96afb..3095faf 100644 --- a/any.go +++ b/any.go @@ -1,7 +1,7 @@ package deployer import ( - "go.arcalot.io/log" + log "go.arcalot.io/log/v2" "go.flow.arcalot.io/pluginsdk/schema" ) diff --git a/go.mod b/go.mod index 9c07386..ec3aa03 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,8 @@ module go.flow.arcalot.io/deployer go 1.18 require ( - go.arcalot.io/assert v1.3.0 // indirect - go.arcalot.io/lang v1.0.0 // indirect - go.arcalot.io/log v1.2.0 // indirect - go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293 // indirect + go.arcalot.io/assert v1.3.0 + go.arcalot.io/lang v1.0.0 + go.arcalot.io/log/v2 v2.0.0 + go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293 ) diff --git a/go.sum b/go.sum index 6676406..f2c9eee 100644 --- a/go.sum +++ b/go.sum @@ -2,7 +2,8 @@ go.arcalot.io/assert v1.3.0 h1:+uQex4s9gezATpTyFxUY5dlAcrwI1Me5fSmdcydGHho= go.arcalot.io/assert v1.3.0/go.mod h1:Xy3ScX0p9IMY89gdsgexOKxnmDr0nGHG9dV7p8Uxg7w= go.arcalot.io/lang v1.0.0 h1:mgDaieT4wWdZTnR4V7+/pgYRmzfU7VZZgIzHccuxAbY= go.arcalot.io/lang v1.0.0/go.mod h1:ALqfYEhAzC2WoGLaycmJoNJd5NmkR7V1PSKp/c5D278= -go.arcalot.io/log v1.2.0 h1:EOfehJoycnpYXOBwYribLzfYb9y2YKVNWJ0kCzqnJSw= -go.arcalot.io/log v1.2.0/go.mod h1:g/oBcBi33s6GxFyiEdbnKtEPBg62t2Uc9cdF3fSuuyg= +go.arcalot.io/log/v2 v2.0.0 h1:mbmsWDVBXZNWrDzUh5JLzeGCQ59kTuMFs+pyfJGc1hk= +go.arcalot.io/log/v2 v2.0.0/go.mod h1:1V8jnFIIGwh2CtcGkHNOmy1nCo7LbazQNkUcnKYNMn4= go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293 h1:tuCGnU+3L8vZzt3FJKz0q2tX7W2eGvEUzRQzhPM1tgI= go.flow.arcalot.io/pluginsdk v0.0.0-20221025073845-be663ec22293/go.mod h1:iblQl4Bx9gteegDXLD4WvU7S4Au0vkK6yKTc9mX00ls= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/interface.go b/interface.go index 96f99c4..19913d1 100644 --- a/interface.go +++ b/interface.go @@ -5,7 +5,7 @@ import ( "context" "io" - "go.arcalot.io/log" + log "go.arcalot.io/log/v2" "go.flow.arcalot.io/pluginsdk/schema" ) diff --git a/registry/helper_test.go b/registry/helper_test.go index 76ef582..a086ac4 100644 --- a/registry/helper_test.go +++ b/registry/helper_test.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "go.arcalot.io/log" + log "go.arcalot.io/log/v2" "go.flow.arcalot.io/deployer" "go.flow.arcalot.io/pluginsdk/schema" ) diff --git a/registry/registry.go b/registry/registry.go index 060d6c8..5788bfc 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -4,7 +4,7 @@ import ( "fmt" "reflect" - "go.arcalot.io/log" + log "go.arcalot.io/log/v2" "go.flow.arcalot.io/deployer" "go.flow.arcalot.io/pluginsdk/schema" ) diff --git a/registry/registry_test.go b/registry/registry_test.go index c58b02d..e330a32 100644 --- a/registry/registry_test.go +++ b/registry/registry_test.go @@ -4,7 +4,7 @@ import ( "testing" "go.arcalot.io/assert" - "go.arcalot.io/log" + log "go.arcalot.io/log/v2" "go.flow.arcalot.io/deployer/registry" )