From e37b28bd288b1c2007a0d79d4aef60c071caa813 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Tue, 18 Aug 2020 09:23:24 -0700 Subject: [PATCH] CHANGELOG: add v3.4.11 Signed-off-by: Gyuho Lee --- CHANGELOG-3.4.md | 37 ++++++++++++++++++++++++++++++++++++- CHANGELOG-3.5.md | 6 ++++-- 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index 1cf95d1e2..9c797e36f 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -6,9 +6,44 @@ Previous change logs can be found at [CHANGELOG-3.3](https://github.com/etcd-io/ The minimum recommended etcd versions to run in **production** are 3.2.28+, 3.3.18+, and 3.4.2+. +
+ +## [v3.4.11](https://github.com/etcd-io/etcd/releases/tag/v3.4.11) (2020-08-18) + +See [code changes](https://github.com/etcd-io/etcd/compare/v3.4.10...v3.4.11) and [v3.4 upgrade guide](https://github.com/etcd-io/etcd/blob/master/Documentation/upgrades/upgrade_3_4.md) for any breaking changes. + +### etcd server + +- Improve [`runtime.FDUsage` call pattern to reduce objects malloc of Memory Usage and CPU Usage](https://github.com/etcd-io/etcd/pull/11986). +- Add [`etcd --experimental-watch-progress-notify-interval`](https://github.com/etcd-io/etcd/pull/12216) flag to make watch progress notify interval configurable. + +### Package `clientv3` + +- Remove [excessive watch cancel logging messages](https://github.com/etcd-io/etcd/pull/12187). + - See [kubernetes/kubernetes#93450](https://github.com/kubernetes/kubernetes/issues/93450). + +### Package `runtime` + +- Optimize [`runtime.FDUsage` by removing unnecessary sorting](https://github.com/etcd-io/etcd/pull/12214). + +### Metrics, Monitoring + +- Add [`os_fd_used` and `os_fd_limit` to monitor current OS file descriptors](https://github.com/etcd-io/etcd/pull/12214). + +### Go + +- Compile with [*Go 1.12.17*](https://golang.org/doc/devel/release.html#go1.12). + + + +
+ + + + ## [v3.4.10](https://github.com/etcd-io/etcd/releases/tag/v3.4.10) (2020-07-16) See [code changes](https://github.com/etcd-io/etcd/compare/v3.4.9...v3.4.10) and [v3.4 upgrade guide](https://github.com/etcd-io/etcd/blob/master/Documentation/upgrades/upgrade_3_4.md) for any breaking changes. @@ -25,7 +60,7 @@ See [code changes](https://github.com/etcd-io/etcd/compare/v3.4.9...v3.4.10) and ### Breaking Changes - Changed behavior on [existing dir permission](https://github.com/etcd-io/etcd/pull/11798). - Previously, the permission was not checked on existing data directory and the directory used for automatically generating self-signed certificates for TLS connections with clients. Now a check is added to make sure those directories, if already exist, has a desired permission of 700 on Linux and 777 on Windows. - + ### Go - Compile with [*Go 1.12.17*](https://golang.org/doc/devel/release.html#go1.12). diff --git a/CHANGELOG-3.5.md b/CHANGELOG-3.5.md index 7867b48a4..dfebdcfca 100644 --- a/CHANGELOG-3.5.md +++ b/CHANGELOG-3.5.md @@ -151,6 +151,8 @@ Note that any `etcd_debugging_*` metrics are experimental and subject to change. ### Package `clientv3` +- Remove [excessive watch cancel logging messages](https://github.com/etcd-io/etcd/pull/12187). + - See [kubernetes/kubernetes#93450](https://github.com/kubernetes/kubernetes/issues/93450). - Add [`TryLock`](https://github.com/etcd-io/etcd/pull/11104) method to `clientv3/concurrency/Mutex`. A non-blocking method on `Mutex` which does not wait to get lock on the Mutex, returns immediately if Mutex is locked by another session. - Fix [client balancer failover against multiple endpoints](https://github.com/etcd-io/etcd/pull/11184). - Fix [`"kube-apiserver: failover on multi-member etcd cluster fails certificate check on DNS mismatch"`](https://github.com/kubernetes/kubernetes/issues/83028). @@ -221,8 +223,8 @@ Note that any `etcd_debugging_*` metrics are experimental and subject to change. ### Go -- Require [*Go 1.14+*](https://github.com/etcd-io/etcd/pull/11110). -- Compile with [*Go 1.14*](https://golang.org/doc/devel/release.html#go1.14) +- Require [*Go 1.15+*](https://github.com/etcd-io/etcd/pull/11110). +- Compile with [*Go 1.15*](https://golang.org/doc/devel/release.html#go1.15) ### Project Governance