diff --git a/encoders/marshaler.go b/encoders/marshaler.go index 8e4aff0..680d97a 100644 --- a/encoders/marshaler.go +++ b/encoders/marshaler.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/gazebo-web/gz-go/v9/telemetry" + "github.com/gazebo-web/gz-go/v10/telemetry" "github.com/grpc-ecosystem/grpc-gateway/v2/runtime" "go.opentelemetry.io/otel/codes" ) diff --git a/examples/authentication/http/main.go b/examples/authentication/http/main.go index dcb6283..0785644 100644 --- a/examples/authentication/http/main.go +++ b/examples/authentication/http/main.go @@ -7,7 +7,7 @@ import ( "time" "github.com/gazebo-web/auth/pkg/authentication" - "github.com/gazebo-web/gz-go/v9/middleware" + "github.com/gazebo-web/gz-go/v10/middleware" "github.com/rs/cors" ) diff --git a/go.mod b/go.mod index 099234b..99d0e20 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/gazebo-web/gz-go/v9 +module github.com/gazebo-web/gz-go/v10 go 1.21 diff --git a/mailing/sendgrid_builder.go b/mailing/sendgrid_builder.go index cf264e4..0d43e31 100644 --- a/mailing/sendgrid_builder.go +++ b/mailing/sendgrid_builder.go @@ -1,7 +1,7 @@ package mailing import ( - "github.com/gazebo-web/gz-go/v9/structs" + "github.com/gazebo-web/gz-go/v10/structs" "github.com/sendgrid/sendgrid-go/helpers/mail" ) diff --git a/main.go b/main.go index 32f9cfd..2cb5011 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( "strings" "time" - "github.com/gazebo-web/gz-go/v9/monitoring" + "github.com/gazebo-web/gz-go/v10/monitoring" "github.com/gorilla/mux" "github.com/rollbar/rollbar-go" "gorm.io/driver/mysql" diff --git a/monitoring/prometheus/prometheus.go b/monitoring/prometheus/prometheus.go index 15981eb..add77c5 100644 --- a/monitoring/prometheus/prometheus.go +++ b/monitoring/prometheus/prometheus.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/gazebo-web/gz-go/v9/monitoring" + "github.com/gazebo-web/gz-go/v10/monitoring" "github.com/gorilla/mux" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" diff --git a/monitoring_prometheus_test.go b/monitoring_prometheus_test.go index daf8224..0310335 100644 --- a/monitoring_prometheus_test.go +++ b/monitoring_prometheus_test.go @@ -5,8 +5,8 @@ import ( "net/http/httptest" "testing" - "github.com/gazebo-web/gz-go/v9/monitoring" - "github.com/gazebo-web/gz-go/v9/monitoring/prometheus" + "github.com/gazebo-web/gz-go/v10/monitoring" + "github.com/gazebo-web/gz-go/v10/monitoring/prometheus" "github.com/gorilla/mux" "github.com/stretchr/testify/suite" "gorm.io/gorm" diff --git a/net/client.go b/net/client.go index dd9b895..f2b8726 100644 --- a/net/client.go +++ b/net/client.go @@ -5,7 +5,7 @@ import ( "errors" "reflect" - "github.com/gazebo-web/gz-go/v9/encoders" + "github.com/gazebo-web/gz-go/v10/encoders" ) var ( diff --git a/net/client_test.go b/net/client_test.go index 8cc881a..2fa604a 100644 --- a/net/client_test.go +++ b/net/client_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/gazebo-web/gz-go/v9/encoders" + "github.com/gazebo-web/gz-go/v10/encoders" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/net/http.go b/net/http.go index 1511d06..742cc6e 100644 --- a/net/http.go +++ b/net/http.go @@ -10,8 +10,8 @@ import ( "strings" "time" - "github.com/gazebo-web/gz-go/v9/encoders" - "github.com/gazebo-web/gz-go/v9/telemetry" + "github.com/gazebo-web/gz-go/v10/encoders" + "github.com/gazebo-web/gz-go/v10/telemetry" "go.opentelemetry.io/otel/codes" ) diff --git a/repository/firestore/firestore.go b/repository/firestore/firestore.go index 7abff03..f23273b 100644 --- a/repository/firestore/firestore.go +++ b/repository/firestore/firestore.go @@ -4,9 +4,9 @@ import ( "context" "cloud.google.com/go/firestore" - "github.com/gazebo-web/gz-go/v9/errors" - "github.com/gazebo-web/gz-go/v9/reflect" - "github.com/gazebo-web/gz-go/v9/repository" + "github.com/gazebo-web/gz-go/v10/errors" + "github.com/gazebo-web/gz-go/v10/reflect" + "github.com/gazebo-web/gz-go/v10/repository" "google.golang.org/api/iterator" ) diff --git a/repository/firestore/firestore_test.go b/repository/firestore/firestore_test.go index 493a6af..925d26f 100644 --- a/repository/firestore/firestore_test.go +++ b/repository/firestore/firestore_test.go @@ -9,8 +9,8 @@ import ( "cloud.google.com/go/firestore" firebase "firebase.google.com/go/v4" - "github.com/gazebo-web/gz-go/v9/errors" - "github.com/gazebo-web/gz-go/v9/repository" + "github.com/gazebo-web/gz-go/v10/errors" + "github.com/gazebo-web/gz-go/v10/repository" "github.com/stretchr/testify/suite" ) diff --git a/repository/firestore/options.go b/repository/firestore/options.go index 3500929..a5bf9e9 100644 --- a/repository/firestore/options.go +++ b/repository/firestore/options.go @@ -4,8 +4,8 @@ import ( "errors" "cloud.google.com/go/firestore" - "github.com/gazebo-web/gz-go/v9/pagination" - "github.com/gazebo-web/gz-go/v9/repository" + "github.com/gazebo-web/gz-go/v10/pagination" + "github.com/gazebo-web/gz-go/v10/repository" ) // Option is a Firestore-specific repository.Option implementation. diff --git a/repository/firestore/options_test.go b/repository/firestore/options_test.go index b307e90..965223f 100644 --- a/repository/firestore/options_test.go +++ b/repository/firestore/options_test.go @@ -3,7 +3,7 @@ package firestore import ( "testing" - "github.com/gazebo-web/gz-go/v9/repository" + "github.com/gazebo-web/gz-go/v10/repository" "github.com/stretchr/testify/assert" ) diff --git a/repository/sql/options.go b/repository/sql/options.go index d2d6913..ad359f6 100644 --- a/repository/sql/options.go +++ b/repository/sql/options.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/gazebo-web/gz-go/v9/repository" + "github.com/gazebo-web/gz-go/v10/repository" "gorm.io/gorm" ) diff --git a/repository/sql/options_test.go b/repository/sql/options_test.go index 58975e5..ec3cfc0 100644 --- a/repository/sql/options_test.go +++ b/repository/sql/options_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - utilsgorm "github.com/gazebo-web/gz-go/v9/database/gorm" - "github.com/gazebo-web/gz-go/v9/repository" + utilsgorm "github.com/gazebo-web/gz-go/v10/database/gorm" + "github.com/gazebo-web/gz-go/v10/repository" "github.com/stretchr/testify/suite" "gorm.io/gorm" ) diff --git a/repository/sql/repository.go b/repository/sql/repository.go index 68c01fc..794b050 100644 --- a/repository/sql/repository.go +++ b/repository/sql/repository.go @@ -3,8 +3,8 @@ package sql import ( "context" - "github.com/gazebo-web/gz-go/v9/reflect" - "github.com/gazebo-web/gz-go/v9/repository" + "github.com/gazebo-web/gz-go/v10/reflect" + "github.com/gazebo-web/gz-go/v10/repository" "gorm.io/gorm" ) diff --git a/repository/sql/repository_test.go b/repository/sql/repository_test.go index ca492bf..e29e6ce 100644 --- a/repository/sql/repository_test.go +++ b/repository/sql/repository_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" - utilsgorm "github.com/gazebo-web/gz-go/v9/database/gorm" - "github.com/gazebo-web/gz-go/v9/repository" + utilsgorm "github.com/gazebo-web/gz-go/v10/database/gorm" + "github.com/gazebo-web/gz-go/v10/repository" "github.com/stretchr/testify/suite" "gorm.io/gorm" ) diff --git a/router.go b/router.go index f25ff79..fdbc298 100644 --- a/router.go +++ b/router.go @@ -9,7 +9,7 @@ import ( "strings" "github.com/codegangsta/negroni" - "github.com/gazebo-web/gz-go/v9/monitoring" + "github.com/gazebo-web/gz-go/v10/monitoring" "github.com/gorilla/mux" ) diff --git a/utility.go b/utility.go index 07edead..2e64701 100644 --- a/utility.go +++ b/utility.go @@ -20,7 +20,7 @@ import ( "text/template" "github.com/form3tech-oss/jwt-go" - gzerrors "github.com/gazebo-web/gz-go/v9/errors" + gzerrors "github.com/gazebo-web/gz-go/v10/errors" ) // GetUserIdentity returns the user identity found in the http request's JWT