From 207338a3b0f5960cc69ee2d9b9ff9238eb4bc3a7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 07:49:33 +0000 Subject: [PATCH] chore(deps): update module github.com/vektra/mockery/v2 to v2.50.1 --- cart/application/cartCache.go | 2 +- cart/application/eventHandling.go | 2 +- cart/application/receiver.go | 2 +- cart/application/service.go | 2 +- cart/domain/cart/cartServicePorts.go | 12 ++++++------ cart/domain/validation/itemValidator.go | 2 +- cart/infrastructure/defaultCartBehaviour.go | 4 ++-- category/domain/service.go | 2 +- category/interfaces/controller/querycommand.go | 2 +- customer/domain/customer.go | 4 ++-- payment/interfaces/webpayment.go | 2 +- product/domain/productService.go | 2 +- 12 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cart/application/cartCache.go b/cart/application/cartCache.go index 41f51639c..eb46dbbb1 100644 --- a/cart/application/cartCache.go +++ b/cart/application/cartCache.go @@ -16,7 +16,7 @@ import ( "flamingo.me/flamingo/v3/framework/web" ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name CartCache --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name CartCache --case snake type ( // CartCache describes a cart caches methods diff --git a/cart/application/eventHandling.go b/cart/application/eventHandling.go index f832377b8..6a57b6f24 100644 --- a/cart/application/eventHandling.go +++ b/cart/application/eventHandling.go @@ -13,7 +13,7 @@ import ( cartDomain "flamingo.me/flamingo-commerce/v3/cart/domain/cart" ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name CartMerger --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name CartMerger --case snake type ( // EventReceiver handles events from other packages diff --git a/cart/application/receiver.go b/cart/application/receiver.go index 1e7771b20..16d1fdc42 100644 --- a/cart/application/receiver.go +++ b/cart/application/receiver.go @@ -1,6 +1,6 @@ package application -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name Receiver --case snake --structname CartReceiver +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name Receiver --case snake --structname CartReceiver import ( "context" diff --git a/cart/application/service.go b/cart/application/service.go index c094a7a65..fbaeb73bf 100644 --- a/cart/application/service.go +++ b/cart/application/service.go @@ -1,6 +1,6 @@ package application -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name Service --case snake --structname CartService +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name Service --case snake --structname CartService import ( "context" diff --git a/cart/domain/cart/cartServicePorts.go b/cart/domain/cart/cartServicePorts.go index 3d9d203d1..98cddd106 100644 --- a/cart/domain/cart/cartServicePorts.go +++ b/cart/domain/cart/cartServicePorts.go @@ -1,11 +1,11 @@ package cart -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name CompleteBehaviour --case snake -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name CustomerCartService --case snake -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name GiftCardAndVoucherBehaviour --case snake -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name GiftCardBehaviour --case snake -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name GuestCartService --case snake -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name ModifyBehaviour --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name CompleteBehaviour --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name CustomerCartService --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name GiftCardAndVoucherBehaviour --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name GiftCardBehaviour --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name GuestCartService --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name ModifyBehaviour --case snake import ( "context" diff --git a/cart/domain/validation/itemValidator.go b/cart/domain/validation/itemValidator.go index f4f214c93..7245d48c4 100644 --- a/cart/domain/validation/itemValidator.go +++ b/cart/domain/validation/itemValidator.go @@ -12,7 +12,7 @@ import ( "flamingo.me/flamingo-commerce/v3/product/domain" ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name ItemValidator --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name ItemValidator --case snake type ( // ItemValidator checks a cart item diff --git a/cart/infrastructure/defaultCartBehaviour.go b/cart/infrastructure/defaultCartBehaviour.go index 189066361..f1d5ad67d 100644 --- a/cart/infrastructure/defaultCartBehaviour.go +++ b/cart/infrastructure/defaultCartBehaviour.go @@ -19,8 +19,8 @@ import ( "flamingo.me/flamingo-commerce/v3/product/domain" ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name GiftCardHandler --case snake -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name VoucherHandler --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name GiftCardHandler --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name VoucherHandler --case snake type ( // DefaultCartBehaviour defines the default cart order behaviour diff --git a/category/domain/service.go b/category/domain/service.go index f83abca33..8fd3c11fc 100644 --- a/category/domain/service.go +++ b/category/domain/service.go @@ -10,7 +10,7 @@ var ( ErrNotFound = errors.New("category not found") ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name CategoryService --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name CategoryService --case snake type ( // CategoryService interface diff --git a/category/interfaces/controller/querycommand.go b/category/interfaces/controller/querycommand.go index c99bd2f0f..7daf5406c 100644 --- a/category/interfaces/controller/querycommand.go +++ b/category/interfaces/controller/querycommand.go @@ -15,7 +15,7 @@ import ( "flamingo.me/flamingo-commerce/v3/search/utils" ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name ProductSearchService --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name ProductSearchService --case snake type ( // QueryHandler provides the base command logic that is agnostic to the actual view type diff --git a/customer/domain/customer.go b/customer/domain/customer.go index cd59006f5..2c6301207 100644 --- a/customer/domain/customer.go +++ b/customer/domain/customer.go @@ -1,7 +1,7 @@ package domain -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name Customer --case snake -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name CustomerIdentityService --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name Customer --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name CustomerIdentityService --case snake import ( "context" diff --git a/payment/interfaces/webpayment.go b/payment/interfaces/webpayment.go index f1fc28ce3..234dd81e8 100644 --- a/payment/interfaces/webpayment.go +++ b/payment/interfaces/webpayment.go @@ -9,7 +9,7 @@ import ( "flamingo.me/flamingo-commerce/v3/payment/domain" ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name WebCartPaymentGateway --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name WebCartPaymentGateway --case snake type ( // WebCartPaymentGatewayProvider defines the map of providers for payment providers diff --git a/product/domain/productService.go b/product/domain/productService.go index d074dd668..068e05bb0 100644 --- a/product/domain/productService.go +++ b/product/domain/productService.go @@ -7,7 +7,7 @@ import ( searchDomain "flamingo.me/flamingo-commerce/v3/search/domain" ) -//go:generate go run github.com/vektra/mockery/v2@v2.46.1 --name ProductService --case snake +//go:generate go run github.com/vektra/mockery/v2@v2.50.1 --name ProductService --case snake type ( // ProductService interface