2015.8.8.2 release notes

Adds banner notifiying user when they are viewing release notes for an old release
This commit is contained in:
Jacob Hammons 2016-03-29 06:38:04 -06:00
parent 5877a19f59
commit 596444e2b4
2 changed files with 28 additions and 22 deletions

View File

@ -154,15 +154,19 @@
</nav>
<!--end navbar-->
{% if build_type == "develop" and on_saltstack %}
{% if "topics/releases" in pagename and "0" in pagename and not release in pagename and not "In Progress" in title %}
<div id="dev-notification">
<div class="alert alert-warning dev-notification-text" role="alert"><i class="glyphicon glyphicon-warning-sign"></i> These release notes are for an old release of Salt. This release might contain known security and other issues that are fixed in the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Release notes for the latest release" href="{{ release }}.html">latest release</a>.</div>
</div>
{% elif build_type == "develop" and on_saltstack %}
<div id="dev-notification">
<div class="alert alert-warning dev-notification-text" role="alert"><i class="glyphicon glyphicon-cog"></i> You are viewing docs from the develop branch, some of these features are not yet released.</div>
</div>
{% endif %}
{% if build_type == "inactive" and on_saltstack %}
{% elif build_type == "inactive" and on_saltstack %}
<div id="dev-notification">
<div class="alert alert-warning dev-notification-text releaselinks" role="alert"><i class="glyphicon glyphicon-cog"></i> You are viewing docs from a branch that is no longer active. You might want to view docs for the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a> release instead.</div>
<div class="alert alert-warning dev-notification-text releaselinks" role="alert"><i class="glyphicon glyphicon-warning-sign"></i> You are viewing docs from a branch that is no longer active. You might want to view docs for the <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a> release instead.</div>
</div>
{% endif %}

View File

@ -2,8 +2,27 @@
Salt 2015.8.8 Release Notes
===========================
.. important:: 2015.8.8.2 was released shortly after 2015.8.8 to fix several
known issues. If you installed 2015.8.8 before 03/30/2016, you likely have
installed 2015.8.8 and can optionally upgrade (find out which version you
have installed using ``salt --version``. The latest version is
``2015.8.8.2``).
Salt 2015.8.8.2
===============
Salt 2015.8.8.2 includes fixes for the following known issues in 2015.8.8:
- :issue:`32044`: Key master with value [...] has an invalid type of list Error
- :issue:`32004`: Failed to import module win_dacl Error
- :issue:`32114`: Wrong validation type for file_ignore_glob key
- :issue:`31969`: Fix file.managed for windows
Salt 2015.8.8
=============
Security Fix
============
------------
CVE-2016-3176: Insecure configuration of PAM external authentication service
@ -17,23 +36,6 @@ for bringing this issue to our attention.
This update defines the PAM eAuth ``service`` that users authenticate against
in the Salt Master configuration.
Known Issues
============
Failed to import module win_dacl Error
--------------------------------------
:issue:`32004`: This error occurs on Solarish platforms, a fix is being
investigated.
Key master with value [...] has an invalid type of list Error
-------------------------------------------------------------
:issue:`32044`: This error occurs in multimaster environments, a fix is being
investigated.
Read Before Upgrading Debian 7 (Wheezy) from 2015.8.7 to 2015.8.8
-----------------------------------------------------------------