{% assign product = siteTree[currentLanguage][currentVersion].products[currentProduct] %} {% assign currentVersionObject = allVersions[currentVersion] %}

{{ currentVersionObject.planTitle }} release notes

{% for patch in releaseNotes %}

{{ currentVersionObject.versionTitle }} {{ patch.version }}

{% if patch.release_candidate %} Release Candidate {% endif %}

{{ patch.date | date: "%B %d, %Y" }}

{{ patch.intro }}
{% for section in patch.sections %}
{% include release-notes-category-label %}
    {% for note in section[1] %}
  • {% if note.heading %} {% assign slug = note.heading | slugify %}

    {{ note.heading }}

      {% for subNote in note.notes %}
    • {{ subNote }}
    • {% endfor %}
    {% else %} {{ note }} {% endif %}
  • {% endfor %}
{% endfor %}
{% endfor %}