Repository: mesos Updated Branches: refs/heads/master 082d10e5f -> 4f780f939
Mentioned `Credential` protobuf change in 0.26 in `uprades.md`. Review: https://reviews.apache.org/r/39908 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4f780f93 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/4f780f93 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/4f780f93 Branch: refs/heads/master Commit: 4f780f93921c1a247eca8906f12d6013daa514bb Parents: 082d10e Author: Isabel Jimenez <[email protected]> Authored: Tue Nov 3 16:47:12 2015 -0800 Committer: Michael Park <[email protected]> Committed: Tue Nov 3 17:21:28 2015 -0800 ---------------------------------------------------------------------- CHANGELOG | 7 ++++--- docs/upgrades.md | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/4f780f93/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index 75f7355..7624c9a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,7 @@ Release Notes - Mesos - Version 0.26.0 (WIP) -------------------------------------------- ** API Changes: + * [MESOS-3560] - Fix JSON-based credential files by changing protobuf `Credential` field `secret` from bytes to string. * [MESOS-3824] - Add /frameworks endpoint to master @@ -159,7 +160,7 @@ This release also includes several bug fixes and stability improvements. * [MESOS-2559] - Do not use RunTaskMessage.framework_id. * [MESOS-2660] - ROOT_CGROUPS_Listen and ROOT_IncreaseRSS tests are flaky * [MESOS-2862] - mesos-fetcher won't fetch uris which begin with a " " - * [MESOS-2868] - --attributes flag in slave cannot take a value with ':' + * [MESOS-2868] - --attributes flag in slave cannot take a value with ':' * [MESOS-2882] - Duplicate name-value env-vars in '-e' option of docker run * [MESOS-2900] - Display capabilities in state.json * [MESOS-2989] - Changing to "framework" from "framwork" @@ -222,8 +223,8 @@ This release also includes several bug fixes and stability improvements. * [MESOS-2947] - Authorizer Module: Implementation, Integration & Tests * [MESOS-2951] - Inefficient container usage collection * [MESOS-2965] - Add implicit cast to string operator to Path. - * [MESOS-2967] - Missing doxygen documentation for libprocess socket interface - * [MESOS-3020] - Expose major, minor and patch components from stout Version + * [MESOS-2967] - Missing doxygen documentation for libprocess socket interface + * [MESOS-3020] - Expose major, minor and patch components from stout Version * [MESOS-3054] - update gitignore * [MESOS-3093] - Support HTTPS requests in libprocess * [MESOS-3112] - Fetcher should perform cache eviction based on cache file usage patterns. http://git-wip-us.apache.org/repos/asf/mesos/blob/4f780f93/docs/upgrades.md ---------------------------------------------------------------------- diff --git a/docs/upgrades.md b/docs/upgrades.md index 3854e59..c7bf6a2 100644 --- a/docs/upgrades.md +++ b/docs/upgrades.md @@ -13,6 +13,7 @@ This document serves as a guide for users who wish to upgrade an existing mesos * REASON_MEM_LIMIT -> REASON_CONTAINER_LIMITATION_MEMORY * REASON_EXECUTOR_PREEMPTED -> REASON_CONTAINER_PREEMPTED +**NOTE** `Credential` protobuf was changed. `Credential` field `secret` is now a string, it used to be bytes. This will affect framework developers and language bindings ought to update their generated protobuf with the new version. This fixes JSON based credentials file support. ## Upgrading from 0.24.x to 0.25.x
