From 23f0534dcad69fca4410f080eb919be868da070a Mon Sep 17 00:00:00 2001 From: Yossi Mesika Date: Thu, 5 Mar 2026 13:42:10 +0000 Subject: [PATCH 1/2] Add trustDomains and notTrustDomains to AuthzPolicy source --- security/v1alpha1/ca_grpc.pb.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/security/v1alpha1/ca_grpc.pb.go b/security/v1alpha1/ca_grpc.pb.go index d0dc59baac..59957ad976 100644 --- a/security/v1alpha1/ca_grpc.pb.go +++ b/security/v1alpha1/ca_grpc.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.5.1 +// - protoc-gen-go-grpc v1.6.1 // - protoc (unknown) // source: security/v1alpha1/ca.proto @@ -85,7 +85,7 @@ type IstioCertificateServiceServer interface { type UnimplementedIstioCertificateServiceServer struct{} func (UnimplementedIstioCertificateServiceServer) CreateCertificate(context.Context, *IstioCertificateRequest) (*IstioCertificateResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method CreateCertificate not implemented") + return nil, status.Error(codes.Unimplemented, "method CreateCertificate not implemented") } func (UnimplementedIstioCertificateServiceServer) mustEmbedUnimplementedIstioCertificateServiceServer() { } @@ -99,7 +99,7 @@ type UnsafeIstioCertificateServiceServer interface { } func RegisterIstioCertificateServiceServer(s grpc.ServiceRegistrar, srv IstioCertificateServiceServer) { - // If the following call pancis, it indicates UnimplementedIstioCertificateServiceServer was + // If the following call panics, it indicates UnimplementedIstioCertificateServiceServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. From b076804b8da47d7d3d9cfff3f074148b0b4403be Mon Sep 17 00:00:00 2001 From: Yossi Mesika Date: Mon, 9 Mar 2026 12:41:59 +0000 Subject: [PATCH 2/2] Release note and lint fix --- security/v1alpha1/ca_grpc.pb.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/security/v1alpha1/ca_grpc.pb.go b/security/v1alpha1/ca_grpc.pb.go index 59957ad976..d0dc59baac 100644 --- a/security/v1alpha1/ca_grpc.pb.go +++ b/security/v1alpha1/ca_grpc.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.6.1 +// - protoc-gen-go-grpc v1.5.1 // - protoc (unknown) // source: security/v1alpha1/ca.proto @@ -85,7 +85,7 @@ type IstioCertificateServiceServer interface { type UnimplementedIstioCertificateServiceServer struct{} func (UnimplementedIstioCertificateServiceServer) CreateCertificate(context.Context, *IstioCertificateRequest) (*IstioCertificateResponse, error) { - return nil, status.Error(codes.Unimplemented, "method CreateCertificate not implemented") + return nil, status.Errorf(codes.Unimplemented, "method CreateCertificate not implemented") } func (UnimplementedIstioCertificateServiceServer) mustEmbedUnimplementedIstioCertificateServiceServer() { } @@ -99,7 +99,7 @@ type UnsafeIstioCertificateServiceServer interface { } func RegisterIstioCertificateServiceServer(s grpc.ServiceRegistrar, srv IstioCertificateServiceServer) { - // If the following call panics, it indicates UnimplementedIstioCertificateServiceServer was + // If the following call pancis, it indicates UnimplementedIstioCertificateServiceServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O.