You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New: EndpointVerificationStrategy.ClusterMembers - Similar verification as EndpointVerificationStrategy.Any but also adds verified cluster members to the EndpointPool.
New: IEtcdClient.Statistics
GetLeaderStatistics - Retrieve the statistical information for leader of the etcd cluster
GetServerStatistics - Retrieve the statistical information for the server (Which server depends on how the EndpointPool was built)
GetStoreStatistics - Retrieve the etcd backing store statistics (For which server depends on how the EndpointPool was built)
Breaking Change: IEtcdClient.Enqueue has been moved to IEtcdClient.Atomic.Enqueue
Breaking Change: IKeyDataValueConverter overhaul
object ReadString(string value) has been refactored into T Read<T>(string value)
string WriteString(object value) has been refactored into string Write<T>(T value)
Change: The following have been annotated with [Serializable]