You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by dl...@apache.org on 2014/11/15 08:22:37 UTC

svn commit: r1639842 [3/3] - in /mesos/site: publish/ publish/documentation/getting-started/ publish/documentation/latest/getting-started/ publish/documentation/latest/mesos-c++-style-guide/ publish/documentation/latest/upgrades/ publish/documentation/...

Modified: mesos/site/source/documentation/latest/getting-started.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/getting-started.md?rev=1639842&r1=1639841&r2=1639842&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/getting-started.md (original)
+++ mesos/site/source/documentation/latest/getting-started.md Sat Nov 15 07:22:36 2014
@@ -10,8 +10,8 @@ There are different ways you can get Mes
 
 1. Download the latest stable release from [Apache](http://mesos.apache.org/downloads/) (***Recommended***)
 
-        $ wget http://www.apache.org/dist/mesos/0.20.0/mesos-0.20.0.tar.gz
-        $ tar -zxf mesos-0.20.0.tar.gz
+        $ wget http://www.apache.org/dist/mesos/0.20.1/mesos-0.20.1.tar.gz
+        $ tar -zxf mesos-0.20.1.tar.gz
 
 2. Clone the Mesos git [repository](http://git-wip-us.apache.org/repos/asf/mesos.git) (***Advanced Users Only***)
 

Modified: mesos/site/source/documentation/latest/mesos-c++-style-guide.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-c%2B%2B-style-guide.md?rev=1639842&r1=1639841&r2=1639842&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/mesos-c++-style-guide.md (original)
+++ mesos/site/source/documentation/latest/mesos-c++-style-guide.md Sat Nov 15 07:22:36 2014
@@ -108,3 +108,10 @@ Try<Owned<LocalAuthorizer>> authorizer =
 
 * Rvalue references.
 * Variadic templates.
+* Mutexes.
+    * std::mutex.
+    * std::lock_guard<std::mutex>.
+    * std::unique_lock<std::mutex>.
+* Shared from this.
+    * class T : public std::enable_shared_from_this<T>.
+    * shared_from_this().

Modified: mesos/site/source/documentation/latest/upgrades.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/upgrades.md?rev=1639842&r1=1639841&r2=1639842&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/upgrades.md (original)
+++ mesos/site/source/documentation/latest/upgrades.md Sat Nov 15 07:22:36 2014
@@ -6,6 +6,18 @@ layout: documentation
 
 This document serves as a guide for users who wish to upgrade an existing mesos cluster. Some versions require particular upgrade techniques when upgrading a running cluster. Some upgrades will have incompatible changes.
 
+## (WIP) Upgrading from 0.21.x to 0.22.x
+
+**NOTE**: The Authentication API has changed slightly in this release to support additional authentication mechanisms. The change from 'string' to 'bytes' for AuthenticationStartMessage.data has no impact on C++ or the over-the-wire representation, so it only impacts pure language bindings for languages like Java and Python that use different types for UTF-8 strings vs. byte arrays.
+
+```
+message AuthenticationStartMessage {
+  required string mechanism = 1;
+  optional bytes data = 2;
+}
+```
+
+
 ## Upgrading from 0.20.x to 0.21.x
 
 **NOTE** Disabling slave checkpointing has been deprecated; the slave --checkpoint flag has been deprecated and will be removed in a future release.