From a77ca4bfa6cf51a774a5e155ed92086ecef95588 Mon Sep 17 00:00:00 2001 From: Simon Ferquel Date: Mon, 19 Oct 2020 12:02:00 +0200 Subject: [PATCH] Update changelogs for Docker Desktop edge 2.4.2.0 (#11550) * Update changelogs for Docker Desktop edge 2.4.2.0 Signed-off-by: Simon Ferquel * Fix edge release notes date Signed-off-by: Simon Ferquel * Add note about Vulnerability scanning Signed-off-by: Simon Ferquel --- docker-for-mac/edge-release-notes.md | 28 +++++++++++++++++++++++ docker-for-windows/edge-release-notes.md | 29 ++++++++++++++++++++++++ 2 files changed, 57 insertions(+) diff --git a/docker-for-mac/edge-release-notes.md b/docker-for-mac/edge-release-notes.md index cd431609e3..5268e963ca 100644 --- a/docker-for-mac/edge-release-notes.md +++ b/docker-for-mac/edge-release-notes.md @@ -11,6 +11,34 @@ This page contains information about Docker Desktop Edge releases. Edge releases For information about Stable releases, see the [Stable release notes](release-notes.md). For Docker Desktop system requirements, see [What to know before you install](install.md#what-to-know-before-you-install). +## Docker Desktop Community 2.4.2.0 +2020-10-19 + +### New + +- If you have enabled [Vulnerability Scanning](https://docs.docker.com/docker-hub/vulnerability-scanning/) in Docker Hub, the scan results will now appear in Docker Desktop. + +### Upgrades + +- [Docker Engine 20.10.0 beta1](https://github.com/docker/docker-ce/blob/0fc7084265b3786a5867ec311d3f916af7bf7a23/CHANGELOG.md) +- [Docker Compose CLI - 0.1.22](https://github.com/docker/compose-cli/releases/tag/v0.1.22) +- [Linux kernel 5.4.39](https://hub.docker.com/layers/linuxkit/kernel/5.4.39-f39f83d0d475b274938c86eaa796022bfc7063d2/images/sha256-8614670219aca0bb276d4749e479591b60cd348abc770ac9ecd09ee4c1575405?context=explore). +- [Kubernetes 1.19.2](https://github.com/kubernetes/kubernetes/releases/tag/v1.19.2) +- [Go 1.15.2](https://github.com/golang/go/issues?q=milestone:Go1.15.2+label:CherryPickApproved) + +### Bug fixes and minor changes + +- When sharing Linux directories (`/var`, `/bin`, etc) with containers, Docker Desktop avoids watching paths in the host file system. +- When sharing a file into a container (e.g. `docker run -v ~/.gitconfig`) Docker Desktop does not watch the parent directory. Fixes [docker/for-mac#4981](https://github.com/docker/for-mac/issues/4981). +- gRPC FUSE: fix `chown` when the file is read-only. Fixes `rabbitmq`, see [docker/for-mac#4964](https://github.com/docker/for-mac/issues/4964). +- gRPC FUSE: generate `ATTRIB` inotify events as well as `MODIFY`. Fixes [docker/for-mac#4962](https://github.com/docker/for-mac/issues/4962). +- gRPC FUSE: return `EOPNOTSUPP` from `fallocate` for unsupported modes. Fixes `minio`. See [docker/for-mac#4964](https://github.com/docker/for-mac/issues/4964). +- Fixed an issue related to NFS mounting. See [docker/for-mac#4958](https://github.com/docker/for-mac/issues/4958). +- Always flush file system caches synchronously on container start. See [docker/for-mac#4943](https://github.com/docker/for-mac/issues/4943). +- Allow symlinks to point outside of shared volumes. Fixes [docker/for-mac#4862](https://github.com/docker/for-mac/issues/4862). +- Diagnostics: avoid hanging when Kubernetes is in a broken state. +- Fixed automatic start on log in. See [docker/for-mac#4877] and [docker/for-mac#4890]. + ## Docker Desktop Community 2.4.1.0 2020-10-01 diff --git a/docker-for-windows/edge-release-notes.md b/docker-for-windows/edge-release-notes.md index ec5e58c368..9aeb6ca6f6 100644 --- a/docker-for-windows/edge-release-notes.md +++ b/docker-for-windows/edge-release-notes.md @@ -11,6 +11,35 @@ This page contains information about Docker Desktop Edge releases. Edge releases For information about Stable releases, see the [Stable release notes](release-notes.md). For Docker Desktop system requirements, see [What to know before you install](install.md#what-to-know-before-you-install). +## Docker Desktop Community 2.4.2.0 +2020-10-19 + +### New + +- If you have enabled [Vulnerability Scanning](https://docs.docker.com/docker-hub/vulnerability-scanning/) in Docker Hub, the scan results will now appear in Docker Desktop. + +### Upgrades + +- [Docker Engine 20.10.0 beta1](https://github.com/docker/docker-ce/blob/0fc7084265b3786a5867ec311d3f916af7bf7a23/CHANGELOG.md) +- [Docker Compose CLI - 0.1.22](https://github.com/docker/compose-cli/releases/tag/v0.1.22) +- [Linux kernel 5.4.39](https://hub.docker.com/layers/linuxkit/kernel/5.4.39-f39f83d0d475b274938c86eaa796022bfc7063d2/images/sha256-8614670219aca0bb276d4749e479591b60cd348abc770ac9ecd09ee4c1575405?context=explore) +- [Kubernetes 1.19.2](https://github.com/kubernetes/kubernetes/releases/tag/v1.19.2) +- [Go 1.15.2](https://github.com/golang/go/issues?q=milestone:Go1.15.2+label:CherryPickApproved) + +* Deprecation + - Docker Desktop cannot be installed on Windows 1703 (build 15063) anymore. + +### Bug fixes and minor changes + +- Fixed an issue that can intermittently cause the WSL 2 backend to fail to start. +- Fixed an issue related to NFS mounting. See [docker/for-mac#4958](https://github.com/docker/for-mac/issues/4958). +- Fixed an issue with http proxy exclude lists containing entries such as `localhost` or `127.0.0.1`. Fixes [docker/for-win#8750](https://github.com/docker/for-win/issues/8750). +- When WSL integration process unexpectedly stops, the user is now notified and can decide to restart it or not, instead of always try to restart it in a loop. fixes [docker/for-win#8968](https://github.com/docker/for-win/issues/8968). +- Fixed an issue related to container logs that lag under heavy load. Fixes [docker/for-win#8216](https://github.com/docker/for-win/issues/8216). +- Diagnostics: avoid hanging when Kubernetes is in a broken state. +- When sharing a file into a container (e.g. `docker run -v ~/.gitconfig`) Docker Desktop does not watch the parent directory. Fixes [docker/for-mac#4981](https://github.com/docker/for-mac/issues/4981). +- Always flush file system caches synchronously on container start. See [docker/for-mac#4943](https://github.com/docker/for-mac/issues/4943). + ## Docker Desktop Community 2.4.1.0 2020-10-01