diff --git a/CHANGELOG/CHANGELOG-3.4.md b/CHANGELOG/CHANGELOG-3.4.md index 686d13da3..9f8235a80 100644 --- a/CHANGELOG/CHANGELOG-3.4.md +++ b/CHANGELOG/CHANGELOG-3.4.md @@ -9,10 +9,14 @@ Previous change logs can be found at [CHANGELOG-3.3](https://github.com/etcd-io/ ### etcd server - Add [`etcd --tls-min-version --tls-max-version`](https://github.com/etcd-io/etcd/pull/15486) to enable support for TLS 1.3. - Add [`etcd --listen-client-http-urls`](https://github.com/etcd-io/etcd/pull/15620) flag to support separating http server from grpc one, thus giving full immunity to [watch stream starvation under high read load](https://github.com/etcd-io/etcd/issues/15402). +- Change [http2 frame scheduler to random algorithm](https://github.com/etcd-io/etcd/pull/15478) - Fix [server/embed: fix data race when starting both secure & insecure gRPC servers on the same address](https://github.com/etcd-io/etcd/pull/15518) - Fix [server/auth: disallow creating empty permission ranges](https://github.com/etcd-io/etcd/pull/15621) - Fix [wsproxy did not print log in JSON format](https://github.com/etcd-io/etcd/pull/15662). - Fix [CVE-2021-28235](https://nvd.nist.gov/vuln/detail/CVE-2021-28235) by [clearing password after authenticating the user](https://github.com/etcd-io/etcd/pull/15655). +- Fix [etcdserver may panic when parsing a JWT token without username or revision](https://github.com/etcd-io/etcd/pull/15677). +- Fix [Watch response traveling back in time when reconnecting member downloads snapshot from the leader](https://github.com/etcd-io/etcd/pull/15520). +- Fix [Requested watcher progress notifications are not synchronised with stream](https://github.com/etcd-io/etcd/pull/15697). ### Package `clientv3` - Reverted the fix to [auth invalid token and old revision errors in watch](https://github.com/etcd-io/etcd/pull/15542). @@ -22,6 +26,9 @@ Previous change logs can be found at [CHANGELOG-3.3](https://github.com/etcd-io/ - Compile binaries using [Go 1.19.8](https://github.com/etcd-io/etcd/pull/15652). - Upgrade [golang.org/x/net to v0.7.0](https://github.com/etcd-io/etcd/pull/15333). +### Docker image +- Fix [etcd docker images all tagged with amd64 architecture](https://github.com/etcd-io/etcd/pull/15681) +
## v3.4.24 (2023-02-16) diff --git a/CHANGELOG/CHANGELOG-3.5.md b/CHANGELOG/CHANGELOG-3.5.md index 92b24e834..9b7fd3bac 100644 --- a/CHANGELOG/CHANGELOG-3.5.md +++ b/CHANGELOG/CHANGELOG-3.5.md @@ -16,9 +16,11 @@ Previous change logs can be found at [CHANGELOG-3.4](https://github.com/etcd-io/ - Fix [aligning zap log timestamp resolution to microseconds](https://github.com/etcd-io/etcd/pull/15240). Etcd now uses zap timestamp format: `2006-01-02T15:04:05.999999Z0700` (microsecond instead of milliseconds precision). - Fix [wsproxy did not print log in JSON format](https://github.com/etcd-io/etcd/pull/15661). - Fix [CVE-2021-28235](https://nvd.nist.gov/vuln/detail/CVE-2021-28235) by [clearing password after authenticating the user](https://github.com/etcd-io/etcd/pull/15653). +- Fix [etcdserver may panic when parsing a JWT token without username or revision](https://github.com/etcd-io/etcd/pull/15676). +- Fix [Requested watcher progress notifications are not synchronised with stream](https://github.com/etcd-io/etcd/pull/15695). ### Package `netutil` -- Fix [consistently format IPv6 addresses for comparison](https://github.com/etcd-io/etcd/pull/15187) +- Fix [consistently format IPv6 addresses for comparison](https://github.com/etcd-io/etcd/pull/15187). ### Package `clientv3` - Fix [etcd might send duplicated events to watch clients](https://github.com/etcd-io/etcd/pull/15274).