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/10/19 02:50:43 UTC

[mesos] 03/03: Added MESOS-9231 to the 1.4.3 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 9df18f03a105403ee8744b173372809471da9edd
Author: Qian Zhang <zh...@gmail.com>
AuthorDate: Fri Oct 19 10:06:16 2018 +0800

    Added MESOS-9231 to the 1.4.3 CHANGELOG and updated upgrades.md.
---
 CHANGELOG        |  1 +
 docs/upgrades.md | 10 +++++-----
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index f81d91c..44df0b7 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1380,6 +1380,7 @@ Release Notes - Mesos - Version 1.4.3 (WIP)
   * [MESOS-9151] - Container stuck at ISOLATING due to FD leak.
   * [MESOS-9170] - Zookeeper doesn't compile with newer gcc due to format error.
   * [MESOS-9196] - Removing rootfs mounts may fail with EBUSY.
+  * [MESOS-9231] - `docker inspect` may return an unexpected result to Docker executor due to a race condition.
   * [MESOS-9279] - Docker Containerizer 'usage' call might be expensive if mount table is big.
   * [MESOS-9283] - Docker containerizer actor can get backlogged with large number of containers.
 
diff --git a/docs/upgrades.md b/docs/upgrades.md
index 576b42d..f8166be 100644
--- a/docs/upgrades.md
+++ b/docs/upgrades.md
@@ -54,7 +54,6 @@ 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>
 
@@ -173,6 +172,7 @@ We categorize the changes as follows:
       <li>A <a href="#1-4-x-bounding-capabilities">Support for explicit bounding capabilities</a></li>
       <li>C <a href="#1-4-x-agent-recovery">Agent recovery post reboot</a></li>
       <li>C <a href="#1-4-x-xfs-no-enforce">XFS disk isolator support for not enforcing disk limits</a></li>
+      <li>C <a href="#1-4-x-update-minimal-docker-version">Update the minimal supported Docker version</a></li>
     </ul>
   </td>
 
@@ -468,10 +468,6 @@ 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.
@@ -602,6 +598,10 @@ We categorize the changes as follows:
 
 * The `Resources` class in the internal Mesos C++ library changed its behavior to only support post-`RESERVATION_REFINEMENT` format. If a framework is using this internal utility, it is likely to break if the `RESERVATION_REFINEMENT` capability is not enabled.
 
+<a name="1-4-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.
+
 ## Upgrading from 1.2.x to 1.3.x ##
 
 <a name="1-3-x-disallow-old-agents"></a>