You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by qi...@apache.org on 2018/09/30 07:04:37 UTC

[mesos] 03/03: Added MESOS-9231 in CHANGELOG and updated upgrades.md.

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

qianzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 7aaef1979a10de5e11548123d1985474b143854b
Author: Qian Zhang <zh...@gmail.com>
AuthorDate: Sun Sep 30 09:55:12 2018 +0800

    Added MESOS-9231 in CHANGELOG and updated upgrades.md.
    
    Review: https://reviews.apache.org/r/68887
---
 CHANGELOG        | 1 +
 docs/upgrades.md | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/CHANGELOG b/CHANGELOG
index 3eeb5b0..f38aa8c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -10,6 +10,7 @@ Release Notes - Mesos - Version 1.7.1 (WIP)
   * [MESOS-8545] - AgentAPIStreamingTest.AttachInputToNestedContainerSession is flaky.
   * [MESOS-9131] - Health checks launching nested containers while a container is being destroyed lead to unkillable tasks.
   * [MESOS-9228] - SLRP does not clean up plugin containers after it is removed.
+  * [MESOS-9231] - `docker inspect` may return an unexpected result to Docker executor due to a race condition.
   * [MESOS-9267] - Mesos agent crashes when CNI network is not configured but used.
   * [MESOS-9279] - Docker Containerizer 'usage' call might be expensive if mount table is big.
 
diff --git a/docs/upgrades.md b/docs/upgrades.md
index e8a7cb6..576b42d 100644
--- a/docs/upgrades.md
+++ b/docs/upgrades.md
@@ -54,6 +54,7 @@ We categorize the changes as follows:
       <li>A <a href="#1-7-x-volume-mode-support">Volume mode support</a></li>
       <li>C <a href="#1-7-x-create-disk">`CREATE_DISK` and `DESTROY_DISK` operations and ACLs</a></li>
       <li>A <a href="#1-7-x-resource-provider-acls">Resource Provider ACLs</a></li>
+      <li>C <a href="#1-7-x-update-minimal-docker-version">Update the minimal supported Docker version</a></li>
     </ul>
   </td>
 
@@ -467,6 +468,10 @@ We categorize the changes as follows:
 
 * A new `ViewResourceProvider` ACL has been introduced to control which principals are allowed to call the `GET_RESOURCE_PROVIDERS` agent API.
 
+<a name="1-7-x-update-minimal-docker-version"></a>
+
+* To specify the `--type=container` option for the `docker inspect <container_name>` command, the minimal supported Docker version has been updated from 1.0.0 to 1.8.0 since Docker supported `--type=container` for the `docker inspect` command starting from 1.8.0.
+
 <a name="1-7-x-enforce-container-ports"></a>
 
 * A new [`--enforce_container_ports`](configuration/agent.md#enforce_container_ports) flag has been added to toggle whether the [`network/ports`](isolators/network-ports.md) isolator should enforce TCP ports usage limits.