This is an automated email from the ASF dual-hosted git repository.

blankensteiner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-dotpulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 683d2b7  Make ready for release 5.1.0
683d2b7 is described below

commit 683d2b78e630265402f8550c87a09bba26539231
Author: Daniel Blankensteiner <[email protected]>
AuthorDate: Wed Nov 19 09:37:28 2025 +0100

    Make ready for release 5.1.0
---
 CHANGELOG.md                                             | 2 +-
 src/DotPulsar/Internal/FuncRemoteCertificateValidator.cs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 869e534..b9ae859 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this 
file.
 
 The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres to 
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
-## [Unreleased]
+## [5.1.0-rc.1] - 2025-11-19
 
 ### Added
 
diff --git a/src/DotPulsar/Internal/FuncRemoteCertificateValidator.cs 
b/src/DotPulsar/Internal/FuncRemoteCertificateValidator.cs
index eb51d25..7ffb4d5 100644
--- a/src/DotPulsar/Internal/FuncRemoteCertificateValidator.cs
+++ b/src/DotPulsar/Internal/FuncRemoteCertificateValidator.cs
@@ -22,7 +22,7 @@ public sealed class FuncRemoteCertificateValidator : 
IValidateRemoteCertificate
 {
     private readonly Func<object, X509Certificate?, X509Chain?, 
SslPolicyErrors, bool> _validator;
 
-    public FuncRemoteCertificateValidator(Func<object, X509Certificate?, 
X509Chain?, SslPolicyErrors, bool> validator) => _validator = validator;        
+    public FuncRemoteCertificateValidator(Func<object, X509Certificate?, 
X509Chain?, SslPolicyErrors, bool> validator) => _validator = validator;
 
     public bool Validate(object sender, X509Certificate? certificate, 
X509Chain? chain, SslPolicyErrors sslPolicyErrors) => _validator(sender, 
certificate, chain, sslPolicyErrors);
 }

Reply via email to