From dddfd54d11407e2c09db953e9a1b8baea7d84338 Mon Sep 17 00:00:00 2001
From: Christoph Witzko <github@christophwitzko.com>
Date: Wed, 18 Oct 2023 13:42:02 +0200
Subject: [PATCH] chore: update protoc-gen-go-grpc + protoc

---
 pkg/analyzer/commit_analyzer.pb.go           |  4 +-
 pkg/analyzer/commit_analyzer_grpc.pb.go      | 27 ++++++++-----
 pkg/condition/ci_condition.pb.go             |  4 +-
 pkg/condition/ci_condition_grpc.pb.go        | 32 +++++++++------
 pkg/generator/changelog_generator.pb.go      |  4 +-
 pkg/generator/changelog_generator_grpc.pb.go | 27 ++++++++-----
 pkg/hooks/hooks.pb.go                        |  4 +-
 pkg/hooks/hooks_grpc.pb.go                   | 32 +++++++++------
 pkg/provider/provider.pb.go                  |  4 +-
 pkg/provider/provider_grpc.pb.go             | 42 ++++++++++++--------
 pkg/semrel/structs.pb.go                     |  4 +-
 pkg/updater/updater.pb.go                    |  4 +-
 pkg/updater/updater_grpc.pb.go               | 32 +++++++++------
 13 files changed, 134 insertions(+), 86 deletions(-)

diff --git a/pkg/analyzer/commit_analyzer.pb.go b/pkg/analyzer/commit_analyzer.pb.go
index 1b838d7..27707ff 100644
--- a/pkg/analyzer/commit_analyzer.pb.go
+++ b/pkg/analyzer/commit_analyzer.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.28.1
-// 	protoc        v3.21.12
+// 	protoc-gen-go v1.31.0
+// 	protoc        v4.24.3
 // source: pkg/analyzer/commit_analyzer.proto
 
 package analyzer
diff --git a/pkg/analyzer/commit_analyzer_grpc.pb.go b/pkg/analyzer/commit_analyzer_grpc.pb.go
index fa89406..4e792f6 100644
--- a/pkg/analyzer/commit_analyzer_grpc.pb.go
+++ b/pkg/analyzer/commit_analyzer_grpc.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
-// - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.21.12
+// - protoc-gen-go-grpc v1.3.0
+// - protoc             v4.24.3
 // source: pkg/analyzer/commit_analyzer.proto
 
 package analyzer
@@ -18,6 +18,13 @@ import (
 // Requires gRPC-Go v1.32.0 or later.
 const _ = grpc.SupportPackageIsVersion7
 
+const (
+	CommitAnalyzerPlugin_Init_FullMethodName    = "/CommitAnalyzerPlugin/Init"
+	CommitAnalyzerPlugin_Name_FullMethodName    = "/CommitAnalyzerPlugin/Name"
+	CommitAnalyzerPlugin_Version_FullMethodName = "/CommitAnalyzerPlugin/Version"
+	CommitAnalyzerPlugin_Analyze_FullMethodName = "/CommitAnalyzerPlugin/Analyze"
+)
+
 // CommitAnalyzerPluginClient is the client API for CommitAnalyzerPlugin service.
 //
 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
@@ -38,7 +45,7 @@ func NewCommitAnalyzerPluginClient(cc grpc.ClientConnInterface) CommitAnalyzerPl
 
 func (c *commitAnalyzerPluginClient) Init(ctx context.Context, in *CommitAnalyzerInit_Request, opts ...grpc.CallOption) (*CommitAnalyzerInit_Response, error) {
 	out := new(CommitAnalyzerInit_Response)
-	err := c.cc.Invoke(ctx, "/CommitAnalyzerPlugin/Init", in, out, opts...)
+	err := c.cc.Invoke(ctx, CommitAnalyzerPlugin_Init_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -47,7 +54,7 @@ func (c *commitAnalyzerPluginClient) Init(ctx context.Context, in *CommitAnalyze
 
 func (c *commitAnalyzerPluginClient) Name(ctx context.Context, in *CommitAnalyzerName_Request, opts ...grpc.CallOption) (*CommitAnalyzerName_Response, error) {
 	out := new(CommitAnalyzerName_Response)
-	err := c.cc.Invoke(ctx, "/CommitAnalyzerPlugin/Name", in, out, opts...)
+	err := c.cc.Invoke(ctx, CommitAnalyzerPlugin_Name_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -56,7 +63,7 @@ func (c *commitAnalyzerPluginClient) Name(ctx context.Context, in *CommitAnalyze
 
 func (c *commitAnalyzerPluginClient) Version(ctx context.Context, in *CommitAnalyzerVersion_Request, opts ...grpc.CallOption) (*CommitAnalyzerVersion_Response, error) {
 	out := new(CommitAnalyzerVersion_Response)
-	err := c.cc.Invoke(ctx, "/CommitAnalyzerPlugin/Version", in, out, opts...)
+	err := c.cc.Invoke(ctx, CommitAnalyzerPlugin_Version_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -65,7 +72,7 @@ func (c *commitAnalyzerPluginClient) Version(ctx context.Context, in *CommitAnal
 
 func (c *commitAnalyzerPluginClient) Analyze(ctx context.Context, in *AnalyzeCommits_Request, opts ...grpc.CallOption) (*AnalyzeCommits_Response, error) {
 	out := new(AnalyzeCommits_Response)
-	err := c.cc.Invoke(ctx, "/CommitAnalyzerPlugin/Analyze", in, out, opts...)
+	err := c.cc.Invoke(ctx, CommitAnalyzerPlugin_Analyze_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -122,7 +129,7 @@ func _CommitAnalyzerPlugin_Init_Handler(srv interface{}, ctx context.Context, de
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CommitAnalyzerPlugin/Init",
+		FullMethod: CommitAnalyzerPlugin_Init_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CommitAnalyzerPluginServer).Init(ctx, req.(*CommitAnalyzerInit_Request))
@@ -140,7 +147,7 @@ func _CommitAnalyzerPlugin_Name_Handler(srv interface{}, ctx context.Context, de
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CommitAnalyzerPlugin/Name",
+		FullMethod: CommitAnalyzerPlugin_Name_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CommitAnalyzerPluginServer).Name(ctx, req.(*CommitAnalyzerName_Request))
@@ -158,7 +165,7 @@ func _CommitAnalyzerPlugin_Version_Handler(srv interface{}, ctx context.Context,
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CommitAnalyzerPlugin/Version",
+		FullMethod: CommitAnalyzerPlugin_Version_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CommitAnalyzerPluginServer).Version(ctx, req.(*CommitAnalyzerVersion_Request))
@@ -176,7 +183,7 @@ func _CommitAnalyzerPlugin_Analyze_Handler(srv interface{}, ctx context.Context,
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CommitAnalyzerPlugin/Analyze",
+		FullMethod: CommitAnalyzerPlugin_Analyze_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CommitAnalyzerPluginServer).Analyze(ctx, req.(*AnalyzeCommits_Request))
diff --git a/pkg/condition/ci_condition.pb.go b/pkg/condition/ci_condition.pb.go
index d6968f7..ebcd3ea 100644
--- a/pkg/condition/ci_condition.pb.go
+++ b/pkg/condition/ci_condition.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.28.1
-// 	protoc        v3.21.12
+// 	protoc-gen-go v1.31.0
+// 	protoc        v4.24.3
 // source: pkg/condition/ci_condition.proto
 
 package condition
diff --git a/pkg/condition/ci_condition_grpc.pb.go b/pkg/condition/ci_condition_grpc.pb.go
index a6b256b..a95da90 100644
--- a/pkg/condition/ci_condition_grpc.pb.go
+++ b/pkg/condition/ci_condition_grpc.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
-// - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.21.12
+// - protoc-gen-go-grpc v1.3.0
+// - protoc             v4.24.3
 // source: pkg/condition/ci_condition.proto
 
 package condition
@@ -18,6 +18,14 @@ import (
 // Requires gRPC-Go v1.32.0 or later.
 const _ = grpc.SupportPackageIsVersion7
 
+const (
+	CIConditionPlugin_Name_FullMethodName             = "/CIConditionPlugin/Name"
+	CIConditionPlugin_Version_FullMethodName          = "/CIConditionPlugin/Version"
+	CIConditionPlugin_RunCondition_FullMethodName     = "/CIConditionPlugin/RunCondition"
+	CIConditionPlugin_GetCurrentBranch_FullMethodName = "/CIConditionPlugin/GetCurrentBranch"
+	CIConditionPlugin_GetCurrentSHA_FullMethodName    = "/CIConditionPlugin/GetCurrentSHA"
+)
+
 // CIConditionPluginClient is the client API for CIConditionPlugin service.
 //
 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
@@ -39,7 +47,7 @@ func NewCIConditionPluginClient(cc grpc.ClientConnInterface) CIConditionPluginCl
 
 func (c *cIConditionPluginClient) Name(ctx context.Context, in *CIName_Request, opts ...grpc.CallOption) (*CIName_Response, error) {
 	out := new(CIName_Response)
-	err := c.cc.Invoke(ctx, "/CIConditionPlugin/Name", in, out, opts...)
+	err := c.cc.Invoke(ctx, CIConditionPlugin_Name_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -48,7 +56,7 @@ func (c *cIConditionPluginClient) Name(ctx context.Context, in *CIName_Request,
 
 func (c *cIConditionPluginClient) Version(ctx context.Context, in *CIVersion_Request, opts ...grpc.CallOption) (*CIVersion_Response, error) {
 	out := new(CIVersion_Response)
-	err := c.cc.Invoke(ctx, "/CIConditionPlugin/Version", in, out, opts...)
+	err := c.cc.Invoke(ctx, CIConditionPlugin_Version_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -57,7 +65,7 @@ func (c *cIConditionPluginClient) Version(ctx context.Context, in *CIVersion_Req
 
 func (c *cIConditionPluginClient) RunCondition(ctx context.Context, in *RunCondition_Request, opts ...grpc.CallOption) (*RunCondition_Response, error) {
 	out := new(RunCondition_Response)
-	err := c.cc.Invoke(ctx, "/CIConditionPlugin/RunCondition", in, out, opts...)
+	err := c.cc.Invoke(ctx, CIConditionPlugin_RunCondition_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -66,7 +74,7 @@ func (c *cIConditionPluginClient) RunCondition(ctx context.Context, in *RunCondi
 
 func (c *cIConditionPluginClient) GetCurrentBranch(ctx context.Context, in *GetCurrentBranch_Request, opts ...grpc.CallOption) (*GetCurrentBranch_Response, error) {
 	out := new(GetCurrentBranch_Response)
-	err := c.cc.Invoke(ctx, "/CIConditionPlugin/GetCurrentBranch", in, out, opts...)
+	err := c.cc.Invoke(ctx, CIConditionPlugin_GetCurrentBranch_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -75,7 +83,7 @@ func (c *cIConditionPluginClient) GetCurrentBranch(ctx context.Context, in *GetC
 
 func (c *cIConditionPluginClient) GetCurrentSHA(ctx context.Context, in *GetCurrentSHA_Request, opts ...grpc.CallOption) (*GetCurrentSHA_Response, error) {
 	out := new(GetCurrentSHA_Response)
-	err := c.cc.Invoke(ctx, "/CIConditionPlugin/GetCurrentSHA", in, out, opts...)
+	err := c.cc.Invoke(ctx, CIConditionPlugin_GetCurrentSHA_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -136,7 +144,7 @@ func _CIConditionPlugin_Name_Handler(srv interface{}, ctx context.Context, dec f
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CIConditionPlugin/Name",
+		FullMethod: CIConditionPlugin_Name_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CIConditionPluginServer).Name(ctx, req.(*CIName_Request))
@@ -154,7 +162,7 @@ func _CIConditionPlugin_Version_Handler(srv interface{}, ctx context.Context, de
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CIConditionPlugin/Version",
+		FullMethod: CIConditionPlugin_Version_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CIConditionPluginServer).Version(ctx, req.(*CIVersion_Request))
@@ -172,7 +180,7 @@ func _CIConditionPlugin_RunCondition_Handler(srv interface{}, ctx context.Contex
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CIConditionPlugin/RunCondition",
+		FullMethod: CIConditionPlugin_RunCondition_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CIConditionPluginServer).RunCondition(ctx, req.(*RunCondition_Request))
@@ -190,7 +198,7 @@ func _CIConditionPlugin_GetCurrentBranch_Handler(srv interface{}, ctx context.Co
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CIConditionPlugin/GetCurrentBranch",
+		FullMethod: CIConditionPlugin_GetCurrentBranch_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CIConditionPluginServer).GetCurrentBranch(ctx, req.(*GetCurrentBranch_Request))
@@ -208,7 +216,7 @@ func _CIConditionPlugin_GetCurrentSHA_Handler(srv interface{}, ctx context.Conte
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/CIConditionPlugin/GetCurrentSHA",
+		FullMethod: CIConditionPlugin_GetCurrentSHA_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(CIConditionPluginServer).GetCurrentSHA(ctx, req.(*GetCurrentSHA_Request))
diff --git a/pkg/generator/changelog_generator.pb.go b/pkg/generator/changelog_generator.pb.go
index d74d649..1a3a66b 100644
--- a/pkg/generator/changelog_generator.pb.go
+++ b/pkg/generator/changelog_generator.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.28.1
-// 	protoc        v3.21.12
+// 	protoc-gen-go v1.31.0
+// 	protoc        v4.24.3
 // source: pkg/generator/changelog_generator.proto
 
 package generator
diff --git a/pkg/generator/changelog_generator_grpc.pb.go b/pkg/generator/changelog_generator_grpc.pb.go
index 598af01..064f977 100644
--- a/pkg/generator/changelog_generator_grpc.pb.go
+++ b/pkg/generator/changelog_generator_grpc.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
-// - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.21.12
+// - protoc-gen-go-grpc v1.3.0
+// - protoc             v4.24.3
 // source: pkg/generator/changelog_generator.proto
 
 package generator
@@ -18,6 +18,13 @@ import (
 // Requires gRPC-Go v1.32.0 or later.
 const _ = grpc.SupportPackageIsVersion7
 
+const (
+	ChangelogGeneratorPlugin_Init_FullMethodName     = "/ChangelogGeneratorPlugin/Init"
+	ChangelogGeneratorPlugin_Name_FullMethodName     = "/ChangelogGeneratorPlugin/Name"
+	ChangelogGeneratorPlugin_Version_FullMethodName  = "/ChangelogGeneratorPlugin/Version"
+	ChangelogGeneratorPlugin_Generate_FullMethodName = "/ChangelogGeneratorPlugin/Generate"
+)
+
 // ChangelogGeneratorPluginClient is the client API for ChangelogGeneratorPlugin service.
 //
 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
@@ -38,7 +45,7 @@ func NewChangelogGeneratorPluginClient(cc grpc.ClientConnInterface) ChangelogGen
 
 func (c *changelogGeneratorPluginClient) Init(ctx context.Context, in *ChangelogGeneratorInit_Request, opts ...grpc.CallOption) (*ChangelogGeneratorInit_Response, error) {
 	out := new(ChangelogGeneratorInit_Response)
-	err := c.cc.Invoke(ctx, "/ChangelogGeneratorPlugin/Init", in, out, opts...)
+	err := c.cc.Invoke(ctx, ChangelogGeneratorPlugin_Init_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -47,7 +54,7 @@ func (c *changelogGeneratorPluginClient) Init(ctx context.Context, in *Changelog
 
 func (c *changelogGeneratorPluginClient) Name(ctx context.Context, in *ChangelogGeneratorName_Request, opts ...grpc.CallOption) (*ChangelogGeneratorName_Response, error) {
 	out := new(ChangelogGeneratorName_Response)
-	err := c.cc.Invoke(ctx, "/ChangelogGeneratorPlugin/Name", in, out, opts...)
+	err := c.cc.Invoke(ctx, ChangelogGeneratorPlugin_Name_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -56,7 +63,7 @@ func (c *changelogGeneratorPluginClient) Name(ctx context.Context, in *Changelog
 
 func (c *changelogGeneratorPluginClient) Version(ctx context.Context, in *ChangelogGeneratorVersion_Request, opts ...grpc.CallOption) (*ChangelogGeneratorVersion_Response, error) {
 	out := new(ChangelogGeneratorVersion_Response)
-	err := c.cc.Invoke(ctx, "/ChangelogGeneratorPlugin/Version", in, out, opts...)
+	err := c.cc.Invoke(ctx, ChangelogGeneratorPlugin_Version_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -65,7 +72,7 @@ func (c *changelogGeneratorPluginClient) Version(ctx context.Context, in *Change
 
 func (c *changelogGeneratorPluginClient) Generate(ctx context.Context, in *GenerateChangelog_Request, opts ...grpc.CallOption) (*GenerateChangelog_Response, error) {
 	out := new(GenerateChangelog_Response)
-	err := c.cc.Invoke(ctx, "/ChangelogGeneratorPlugin/Generate", in, out, opts...)
+	err := c.cc.Invoke(ctx, ChangelogGeneratorPlugin_Generate_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -123,7 +130,7 @@ func _ChangelogGeneratorPlugin_Init_Handler(srv interface{}, ctx context.Context
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ChangelogGeneratorPlugin/Init",
+		FullMethod: ChangelogGeneratorPlugin_Init_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ChangelogGeneratorPluginServer).Init(ctx, req.(*ChangelogGeneratorInit_Request))
@@ -141,7 +148,7 @@ func _ChangelogGeneratorPlugin_Name_Handler(srv interface{}, ctx context.Context
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ChangelogGeneratorPlugin/Name",
+		FullMethod: ChangelogGeneratorPlugin_Name_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ChangelogGeneratorPluginServer).Name(ctx, req.(*ChangelogGeneratorName_Request))
@@ -159,7 +166,7 @@ func _ChangelogGeneratorPlugin_Version_Handler(srv interface{}, ctx context.Cont
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ChangelogGeneratorPlugin/Version",
+		FullMethod: ChangelogGeneratorPlugin_Version_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ChangelogGeneratorPluginServer).Version(ctx, req.(*ChangelogGeneratorVersion_Request))
@@ -177,7 +184,7 @@ func _ChangelogGeneratorPlugin_Generate_Handler(srv interface{}, ctx context.Con
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ChangelogGeneratorPlugin/Generate",
+		FullMethod: ChangelogGeneratorPlugin_Generate_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ChangelogGeneratorPluginServer).Generate(ctx, req.(*GenerateChangelog_Request))
diff --git a/pkg/hooks/hooks.pb.go b/pkg/hooks/hooks.pb.go
index 5894f1e..18d66d3 100644
--- a/pkg/hooks/hooks.pb.go
+++ b/pkg/hooks/hooks.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.28.1
-// 	protoc        v3.21.12
+// 	protoc-gen-go v1.31.0
+// 	protoc        v4.24.3
 // source: pkg/hooks/hooks.proto
 
 package hooks
diff --git a/pkg/hooks/hooks_grpc.pb.go b/pkg/hooks/hooks_grpc.pb.go
index 6a9ca76..d586268 100644
--- a/pkg/hooks/hooks_grpc.pb.go
+++ b/pkg/hooks/hooks_grpc.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
-// - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.21.12
+// - protoc-gen-go-grpc v1.3.0
+// - protoc             v4.24.3
 // source: pkg/hooks/hooks.proto
 
 package hooks
@@ -18,6 +18,14 @@ import (
 // Requires gRPC-Go v1.32.0 or later.
 const _ = grpc.SupportPackageIsVersion7
 
+const (
+	HooksPlugin_Init_FullMethodName      = "/HooksPlugin/Init"
+	HooksPlugin_Name_FullMethodName      = "/HooksPlugin/Name"
+	HooksPlugin_Version_FullMethodName   = "/HooksPlugin/Version"
+	HooksPlugin_Success_FullMethodName   = "/HooksPlugin/Success"
+	HooksPlugin_NoRelease_FullMethodName = "/HooksPlugin/NoRelease"
+)
+
 // HooksPluginClient is the client API for HooksPlugin service.
 //
 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
@@ -39,7 +47,7 @@ func NewHooksPluginClient(cc grpc.ClientConnInterface) HooksPluginClient {
 
 func (c *hooksPluginClient) Init(ctx context.Context, in *HooksInit_Request, opts ...grpc.CallOption) (*HooksInit_Response, error) {
 	out := new(HooksInit_Response)
-	err := c.cc.Invoke(ctx, "/HooksPlugin/Init", in, out, opts...)
+	err := c.cc.Invoke(ctx, HooksPlugin_Init_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -48,7 +56,7 @@ func (c *hooksPluginClient) Init(ctx context.Context, in *HooksInit_Request, opt
 
 func (c *hooksPluginClient) Name(ctx context.Context, in *HooksName_Request, opts ...grpc.CallOption) (*HooksName_Response, error) {
 	out := new(HooksName_Response)
-	err := c.cc.Invoke(ctx, "/HooksPlugin/Name", in, out, opts...)
+	err := c.cc.Invoke(ctx, HooksPlugin_Name_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -57,7 +65,7 @@ func (c *hooksPluginClient) Name(ctx context.Context, in *HooksName_Request, opt
 
 func (c *hooksPluginClient) Version(ctx context.Context, in *HooksVersion_Request, opts ...grpc.CallOption) (*HooksVersion_Response, error) {
 	out := new(HooksVersion_Response)
-	err := c.cc.Invoke(ctx, "/HooksPlugin/Version", in, out, opts...)
+	err := c.cc.Invoke(ctx, HooksPlugin_Version_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -66,7 +74,7 @@ func (c *hooksPluginClient) Version(ctx context.Context, in *HooksVersion_Reques
 
 func (c *hooksPluginClient) Success(ctx context.Context, in *SuccessHook_Request, opts ...grpc.CallOption) (*SuccessHook_Response, error) {
 	out := new(SuccessHook_Response)
-	err := c.cc.Invoke(ctx, "/HooksPlugin/Success", in, out, opts...)
+	err := c.cc.Invoke(ctx, HooksPlugin_Success_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -75,7 +83,7 @@ func (c *hooksPluginClient) Success(ctx context.Context, in *SuccessHook_Request
 
 func (c *hooksPluginClient) NoRelease(ctx context.Context, in *NoReleaseHook_Request, opts ...grpc.CallOption) (*NoReleaseHook_Response, error) {
 	out := new(NoReleaseHook_Response)
-	err := c.cc.Invoke(ctx, "/HooksPlugin/NoRelease", in, out, opts...)
+	err := c.cc.Invoke(ctx, HooksPlugin_NoRelease_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -136,7 +144,7 @@ func _HooksPlugin_Init_Handler(srv interface{}, ctx context.Context, dec func(in
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/HooksPlugin/Init",
+		FullMethod: HooksPlugin_Init_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(HooksPluginServer).Init(ctx, req.(*HooksInit_Request))
@@ -154,7 +162,7 @@ func _HooksPlugin_Name_Handler(srv interface{}, ctx context.Context, dec func(in
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/HooksPlugin/Name",
+		FullMethod: HooksPlugin_Name_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(HooksPluginServer).Name(ctx, req.(*HooksName_Request))
@@ -172,7 +180,7 @@ func _HooksPlugin_Version_Handler(srv interface{}, ctx context.Context, dec func
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/HooksPlugin/Version",
+		FullMethod: HooksPlugin_Version_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(HooksPluginServer).Version(ctx, req.(*HooksVersion_Request))
@@ -190,7 +198,7 @@ func _HooksPlugin_Success_Handler(srv interface{}, ctx context.Context, dec func
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/HooksPlugin/Success",
+		FullMethod: HooksPlugin_Success_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(HooksPluginServer).Success(ctx, req.(*SuccessHook_Request))
@@ -208,7 +216,7 @@ func _HooksPlugin_NoRelease_Handler(srv interface{}, ctx context.Context, dec fu
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/HooksPlugin/NoRelease",
+		FullMethod: HooksPlugin_NoRelease_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(HooksPluginServer).NoRelease(ctx, req.(*NoReleaseHook_Request))
diff --git a/pkg/provider/provider.pb.go b/pkg/provider/provider.pb.go
index a911cc9..cc1c236 100644
--- a/pkg/provider/provider.pb.go
+++ b/pkg/provider/provider.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.28.1
-// 	protoc        v3.21.12
+// 	protoc-gen-go v1.31.0
+// 	protoc        v4.24.3
 // source: pkg/provider/provider.proto
 
 package provider
diff --git a/pkg/provider/provider_grpc.pb.go b/pkg/provider/provider_grpc.pb.go
index 53d310f..ad749b2 100644
--- a/pkg/provider/provider_grpc.pb.go
+++ b/pkg/provider/provider_grpc.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
-// - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.21.12
+// - protoc-gen-go-grpc v1.3.0
+// - protoc             v4.24.3
 // source: pkg/provider/provider.proto
 
 package provider
@@ -18,6 +18,16 @@ import (
 // Requires gRPC-Go v1.32.0 or later.
 const _ = grpc.SupportPackageIsVersion7
 
+const (
+	ProviderPlugin_Init_FullMethodName          = "/ProviderPlugin/Init"
+	ProviderPlugin_Name_FullMethodName          = "/ProviderPlugin/Name"
+	ProviderPlugin_Version_FullMethodName       = "/ProviderPlugin/Version"
+	ProviderPlugin_GetInfo_FullMethodName       = "/ProviderPlugin/GetInfo"
+	ProviderPlugin_GetCommits_FullMethodName    = "/ProviderPlugin/GetCommits"
+	ProviderPlugin_GetReleases_FullMethodName   = "/ProviderPlugin/GetReleases"
+	ProviderPlugin_CreateRelease_FullMethodName = "/ProviderPlugin/CreateRelease"
+)
+
 // ProviderPluginClient is the client API for ProviderPlugin service.
 //
 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
@@ -41,7 +51,7 @@ func NewProviderPluginClient(cc grpc.ClientConnInterface) ProviderPluginClient {
 
 func (c *providerPluginClient) Init(ctx context.Context, in *ProviderInit_Request, opts ...grpc.CallOption) (*ProviderInit_Response, error) {
 	out := new(ProviderInit_Response)
-	err := c.cc.Invoke(ctx, "/ProviderPlugin/Init", in, out, opts...)
+	err := c.cc.Invoke(ctx, ProviderPlugin_Init_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -50,7 +60,7 @@ func (c *providerPluginClient) Init(ctx context.Context, in *ProviderInit_Reques
 
 func (c *providerPluginClient) Name(ctx context.Context, in *ProviderName_Request, opts ...grpc.CallOption) (*ProviderName_Response, error) {
 	out := new(ProviderName_Response)
-	err := c.cc.Invoke(ctx, "/ProviderPlugin/Name", in, out, opts...)
+	err := c.cc.Invoke(ctx, ProviderPlugin_Name_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -59,7 +69,7 @@ func (c *providerPluginClient) Name(ctx context.Context, in *ProviderName_Reques
 
 func (c *providerPluginClient) Version(ctx context.Context, in *ProviderVersion_Request, opts ...grpc.CallOption) (*ProviderVersion_Response, error) {
 	out := new(ProviderVersion_Response)
-	err := c.cc.Invoke(ctx, "/ProviderPlugin/Version", in, out, opts...)
+	err := c.cc.Invoke(ctx, ProviderPlugin_Version_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -68,7 +78,7 @@ func (c *providerPluginClient) Version(ctx context.Context, in *ProviderVersion_
 
 func (c *providerPluginClient) GetInfo(ctx context.Context, in *GetInfo_Request, opts ...grpc.CallOption) (*GetInfo_Response, error) {
 	out := new(GetInfo_Response)
-	err := c.cc.Invoke(ctx, "/ProviderPlugin/GetInfo", in, out, opts...)
+	err := c.cc.Invoke(ctx, ProviderPlugin_GetInfo_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -77,7 +87,7 @@ func (c *providerPluginClient) GetInfo(ctx context.Context, in *GetInfo_Request,
 
 func (c *providerPluginClient) GetCommits(ctx context.Context, in *GetCommits_Request, opts ...grpc.CallOption) (*GetCommits_Response, error) {
 	out := new(GetCommits_Response)
-	err := c.cc.Invoke(ctx, "/ProviderPlugin/GetCommits", in, out, opts...)
+	err := c.cc.Invoke(ctx, ProviderPlugin_GetCommits_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -86,7 +96,7 @@ func (c *providerPluginClient) GetCommits(ctx context.Context, in *GetCommits_Re
 
 func (c *providerPluginClient) GetReleases(ctx context.Context, in *GetReleases_Request, opts ...grpc.CallOption) (*GetReleases_Response, error) {
 	out := new(GetReleases_Response)
-	err := c.cc.Invoke(ctx, "/ProviderPlugin/GetReleases", in, out, opts...)
+	err := c.cc.Invoke(ctx, ProviderPlugin_GetReleases_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -95,7 +105,7 @@ func (c *providerPluginClient) GetReleases(ctx context.Context, in *GetReleases_
 
 func (c *providerPluginClient) CreateRelease(ctx context.Context, in *CreateRelease_Request, opts ...grpc.CallOption) (*CreateRelease_Response, error) {
 	out := new(CreateRelease_Response)
-	err := c.cc.Invoke(ctx, "/ProviderPlugin/CreateRelease", in, out, opts...)
+	err := c.cc.Invoke(ctx, ProviderPlugin_CreateRelease_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -164,7 +174,7 @@ func _ProviderPlugin_Init_Handler(srv interface{}, ctx context.Context, dec func
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ProviderPlugin/Init",
+		FullMethod: ProviderPlugin_Init_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ProviderPluginServer).Init(ctx, req.(*ProviderInit_Request))
@@ -182,7 +192,7 @@ func _ProviderPlugin_Name_Handler(srv interface{}, ctx context.Context, dec func
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ProviderPlugin/Name",
+		FullMethod: ProviderPlugin_Name_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ProviderPluginServer).Name(ctx, req.(*ProviderName_Request))
@@ -200,7 +210,7 @@ func _ProviderPlugin_Version_Handler(srv interface{}, ctx context.Context, dec f
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ProviderPlugin/Version",
+		FullMethod: ProviderPlugin_Version_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ProviderPluginServer).Version(ctx, req.(*ProviderVersion_Request))
@@ -218,7 +228,7 @@ func _ProviderPlugin_GetInfo_Handler(srv interface{}, ctx context.Context, dec f
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ProviderPlugin/GetInfo",
+		FullMethod: ProviderPlugin_GetInfo_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ProviderPluginServer).GetInfo(ctx, req.(*GetInfo_Request))
@@ -236,7 +246,7 @@ func _ProviderPlugin_GetCommits_Handler(srv interface{}, ctx context.Context, de
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ProviderPlugin/GetCommits",
+		FullMethod: ProviderPlugin_GetCommits_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ProviderPluginServer).GetCommits(ctx, req.(*GetCommits_Request))
@@ -254,7 +264,7 @@ func _ProviderPlugin_GetReleases_Handler(srv interface{}, ctx context.Context, d
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ProviderPlugin/GetReleases",
+		FullMethod: ProviderPlugin_GetReleases_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ProviderPluginServer).GetReleases(ctx, req.(*GetReleases_Request))
@@ -272,7 +282,7 @@ func _ProviderPlugin_CreateRelease_Handler(srv interface{}, ctx context.Context,
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/ProviderPlugin/CreateRelease",
+		FullMethod: ProviderPlugin_CreateRelease_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(ProviderPluginServer).CreateRelease(ctx, req.(*CreateRelease_Request))
diff --git a/pkg/semrel/structs.pb.go b/pkg/semrel/structs.pb.go
index bb06472..3215eab 100644
--- a/pkg/semrel/structs.pb.go
+++ b/pkg/semrel/structs.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.28.1
-// 	protoc        v3.21.12
+// 	protoc-gen-go v1.31.0
+// 	protoc        v4.24.3
 // source: pkg/semrel/structs.proto
 
 package semrel
diff --git a/pkg/updater/updater.pb.go b/pkg/updater/updater.pb.go
index 8656147..a0a691f 100644
--- a/pkg/updater/updater.pb.go
+++ b/pkg/updater/updater.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.28.1
-// 	protoc        v3.21.12
+// 	protoc-gen-go v1.31.0
+// 	protoc        v4.24.3
 // source: pkg/updater/updater.proto
 
 package updater
diff --git a/pkg/updater/updater_grpc.pb.go b/pkg/updater/updater_grpc.pb.go
index d00ce66..f473329 100644
--- a/pkg/updater/updater_grpc.pb.go
+++ b/pkg/updater/updater_grpc.pb.go
@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
-// - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.21.12
+// - protoc-gen-go-grpc v1.3.0
+// - protoc             v4.24.3
 // source: pkg/updater/updater.proto
 
 package updater
@@ -18,6 +18,14 @@ import (
 // Requires gRPC-Go v1.32.0 or later.
 const _ = grpc.SupportPackageIsVersion7
 
+const (
+	FilesUpdaterPlugin_Init_FullMethodName     = "/FilesUpdaterPlugin/Init"
+	FilesUpdaterPlugin_Name_FullMethodName     = "/FilesUpdaterPlugin/Name"
+	FilesUpdaterPlugin_Version_FullMethodName  = "/FilesUpdaterPlugin/Version"
+	FilesUpdaterPlugin_ForFiles_FullMethodName = "/FilesUpdaterPlugin/ForFiles"
+	FilesUpdaterPlugin_Apply_FullMethodName    = "/FilesUpdaterPlugin/Apply"
+)
+
 // FilesUpdaterPluginClient is the client API for FilesUpdaterPlugin service.
 //
 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
@@ -39,7 +47,7 @@ func NewFilesUpdaterPluginClient(cc grpc.ClientConnInterface) FilesUpdaterPlugin
 
 func (c *filesUpdaterPluginClient) Init(ctx context.Context, in *FilesUpdaterInit_Request, opts ...grpc.CallOption) (*FilesUpdaterInit_Response, error) {
 	out := new(FilesUpdaterInit_Response)
-	err := c.cc.Invoke(ctx, "/FilesUpdaterPlugin/Init", in, out, opts...)
+	err := c.cc.Invoke(ctx, FilesUpdaterPlugin_Init_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -48,7 +56,7 @@ func (c *filesUpdaterPluginClient) Init(ctx context.Context, in *FilesUpdaterIni
 
 func (c *filesUpdaterPluginClient) Name(ctx context.Context, in *FilesUpdaterName_Request, opts ...grpc.CallOption) (*FilesUpdaterName_Response, error) {
 	out := new(FilesUpdaterName_Response)
-	err := c.cc.Invoke(ctx, "/FilesUpdaterPlugin/Name", in, out, opts...)
+	err := c.cc.Invoke(ctx, FilesUpdaterPlugin_Name_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -57,7 +65,7 @@ func (c *filesUpdaterPluginClient) Name(ctx context.Context, in *FilesUpdaterNam
 
 func (c *filesUpdaterPluginClient) Version(ctx context.Context, in *FilesUpdaterVersion_Request, opts ...grpc.CallOption) (*FilesUpdaterVersion_Response, error) {
 	out := new(FilesUpdaterVersion_Response)
-	err := c.cc.Invoke(ctx, "/FilesUpdaterPlugin/Version", in, out, opts...)
+	err := c.cc.Invoke(ctx, FilesUpdaterPlugin_Version_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -66,7 +74,7 @@ func (c *filesUpdaterPluginClient) Version(ctx context.Context, in *FilesUpdater
 
 func (c *filesUpdaterPluginClient) ForFiles(ctx context.Context, in *FilesUpdaterForFiles_Request, opts ...grpc.CallOption) (*FilesUpdaterForFiles_Response, error) {
 	out := new(FilesUpdaterForFiles_Response)
-	err := c.cc.Invoke(ctx, "/FilesUpdaterPlugin/ForFiles", in, out, opts...)
+	err := c.cc.Invoke(ctx, FilesUpdaterPlugin_ForFiles_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -75,7 +83,7 @@ func (c *filesUpdaterPluginClient) ForFiles(ctx context.Context, in *FilesUpdate
 
 func (c *filesUpdaterPluginClient) Apply(ctx context.Context, in *FilesUpdaterApply_Request, opts ...grpc.CallOption) (*FilesUpdaterApply_Response, error) {
 	out := new(FilesUpdaterApply_Response)
-	err := c.cc.Invoke(ctx, "/FilesUpdaterPlugin/Apply", in, out, opts...)
+	err := c.cc.Invoke(ctx, FilesUpdaterPlugin_Apply_FullMethodName, in, out, opts...)
 	if err != nil {
 		return nil, err
 	}
@@ -136,7 +144,7 @@ func _FilesUpdaterPlugin_Init_Handler(srv interface{}, ctx context.Context, dec
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/FilesUpdaterPlugin/Init",
+		FullMethod: FilesUpdaterPlugin_Init_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(FilesUpdaterPluginServer).Init(ctx, req.(*FilesUpdaterInit_Request))
@@ -154,7 +162,7 @@ func _FilesUpdaterPlugin_Name_Handler(srv interface{}, ctx context.Context, dec
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/FilesUpdaterPlugin/Name",
+		FullMethod: FilesUpdaterPlugin_Name_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(FilesUpdaterPluginServer).Name(ctx, req.(*FilesUpdaterName_Request))
@@ -172,7 +180,7 @@ func _FilesUpdaterPlugin_Version_Handler(srv interface{}, ctx context.Context, d
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/FilesUpdaterPlugin/Version",
+		FullMethod: FilesUpdaterPlugin_Version_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(FilesUpdaterPluginServer).Version(ctx, req.(*FilesUpdaterVersion_Request))
@@ -190,7 +198,7 @@ func _FilesUpdaterPlugin_ForFiles_Handler(srv interface{}, ctx context.Context,
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/FilesUpdaterPlugin/ForFiles",
+		FullMethod: FilesUpdaterPlugin_ForFiles_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(FilesUpdaterPluginServer).ForFiles(ctx, req.(*FilesUpdaterForFiles_Request))
@@ -208,7 +216,7 @@ func _FilesUpdaterPlugin_Apply_Handler(srv interface{}, ctx context.Context, dec
 	}
 	info := &grpc.UnaryServerInfo{
 		Server:     srv,
-		FullMethod: "/FilesUpdaterPlugin/Apply",
+		FullMethod: FilesUpdaterPlugin_Apply_FullMethodName,
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 		return srv.(FilesUpdaterPluginServer).Apply(ctx, req.(*FilesUpdaterApply_Request))
-- 
GitLab